@charset "UTF-8";
/* CSS Document */

main .inner{
	width: 1100px;
	margin: auto;
}

header .iconWrap.secret {
	display: block;
	position: absolute;
	width: 200px;
	height: 200px;
	left:0;
	right:0;
	top:50px;
	bottom:0;
	margin: auto;
	opacity: 0.0;
	transition-duration:1.0s;
}

header .iconWrap.secret.active {
	top:0;
	opacity: 1;
}

.header .iconWrap img{
	width: 100%;	
}

.tabArea{
	position: relative;
	border-bottom:solid 12px #5e5e5c;
}

.tabGroup{
	display: flex;
	justify-content:space-between;
	width: 764px;
	margin: auto;
}

.tab{
	color:#FFF;
	font-size: 18px;
	width: 28%;
    padding: 15px 15px 30px 15px;
    list-style:none;
    text-align:left;
    cursor:pointer;
	border-radius: 10px 10px 0 0;
	opacity: 0.9;
	background-color:#e6e6de;
	transition: all 0.2s ease-out;
	box-sizing: border-box;
	position: relative;
}

.tab:hover{
	opacity: 1;
	background-color:#9E9E9E;
}


.tab .num{
	position: absolute;
	right:10px;
	top:10px;
	font-size: 40px;
	font-weight: bold;
	color: #FFF;
}

.tab:before{
	content: "";
	background-image: url(../img/secret/arrow.svg);
	width: 200px;
	height: 7px;
	background-repeat: no-repeat;
	position: absolute;
	left:-220px;
	bottom:0px;
	bottom: -3px;
	opacity: 0;
	transition: all 0.5s ease-out;
}

.tab.is-active:before{
	content: "";
	left:-20px;
	opacity: 1;
}

.tab.is-active:after{
	content: "Secret";
	color: #c8c8c8;
	position: absolute;
	bottom:0;
	left:10px;
	font-size: 18px;
	font-family: house-script, sans-serif;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 1px;
}

.contentsGroup{
    background:#fff;
	overflow-x: hidden;
}

.contentsArea{
	padding: 0;
    display:none;
	transition-duration:1.0s;
}

.tab.is-active{
	opacity: 1;
	background-color:#5e5e5c;
}

.contentsArea.is-show{
    display:block;
	animation: show 1s linear 0s;
}

@keyframes show{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}

/*詳細ボタンで展開*/
.section01 .detailArea,
.section02 .detailArea{
	display: none;
}

.intro{
	position: relative;
	background-color: #e6e6de;
	padding: 50px 0;
}

.intro .inner{
	width: 840px;
	margin: auto;
	padding: 0;
}

.intro .inner h2{
	float: left;
	width: 50%;
	font-size: 34px;
	font-weight: bold;
	line-height: 1.7em;
	letter-spacing: -1px;
}

.intro .inner .textWrap{
	font-size: 12px;
	line-height: 1.8em;
	float: right;
	width: 48%;
}

.intro_type01 .inner h2{
	width: 20%;
	line-height: 1em;
}

.intro_type01 .inner .textWrap{
	width: 75%;
}

#secret01 .bottomArea{
	width: 100%;
	height: 550px;
	overflow: hidden;
	position: relative;
	display: block;
}

#secret01 .bottomArea:after{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	background: -moz-linear-gradient(top, #FFF, rgba(255,255,255,0));
	background: -webkit-linear-gradient(top, #FFF, rgba(255,255,255,0));
	background: linear-gradient(to bottom, #FFF, rgba(255,255,255,0));	
	width: 100%;
	height: 300px;
}

#secret01 .bottomArea img{
	width: 100%;
}

.contentsWrap01{
	margin-bottom: 60px;
	position: relative;
}

.contentsWrap01 .textWrap02{
	width: 840px;
	margin: auto;
}

.contentsWrap01 .infoArea{
	position: relative;
	margin-bottom: 50px;
}

.contentsWrap01 .infoArea:before{
	content: "";
	position: absolute;
	left:0;
	top: 0;
	background-color: #4c4948;
	width: 15px;
	height: 100%;
}

.contentsWrap01 .inner{
	width: 1100px;
	margin: auto;
}

.contentsWrap01 .imgWrap{
	float: left;
	width: 50%;
}

#secret02 .contentsWrap01 .imgWrap{
	float: left;
	width: 60%;
}

#secret02 .contentsWrap01 .infoWrap {
	float: right;
	width: 35%;
}

.contentsWrap01 img{
	width: 100%;
}

.contentsWrap01 .infoWrap{
	float: right;
	width: 45%;
}

.contentsWrap01 .infoWrap h3{
	margin-bottom: 20px;
}

.contentsWrap01 .infoWrap h3 .text{
	display: block;
	font-size: 35px;
	font-weight: bold;
	line-height: 1.5em;
}

.contentsWrap01 .infoWrap h3 .ruby{
	display: inline-block;
	margin-bottom: 20px;
	font-size: 24px;
	padding: 0 10px;
	box-sizing: border-box;
	border-bottom: 1px solid #4c4948;
	font-family: house-script, sans-serif;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 1px;
}

.contentsWrap01 .infoWrap h3.type01 .ruby{
	margin-bottom: 0;
	padding: 0;
	border-bottom: none;
	transform: rotate( -10deg );
}

.contentsWrap01 .infoWrap h3.type01 .text{
	display: block;
}

#secret01 .btnArea{
	text-align: center;
	margin-top: 130px;
	padding: 0 20px;
}

#secret01 .btnWrap{
	display: inline-block;
	padding: 5px 30px;
	box-sizing: border-box;
	background-color: #4c4948;
	color: #FFF;
	font-size: 12px;
	text-align: center;
	letter-spacing: 1px;
	margin-top: 40px;
}

#secret01 .btnWrap:hover{
	background-color: #FFF;
	color: #4c4948;
	border: 1px solid #4c4948;
	box-sizing: border-box;
}

#secret01 .btnWrap.active{
	background-color: #FFF;
	color: #4c4948;
	border: 1px solid #000;
}


.contentsWrap01 .textWrap{
	font-size: 12px;
	line-height: 1.8em;
}

.contentsWrap01 .textWrap02 {
	width: 840px;
	font-size: 12px;
	line-height: 2em;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 1;
}








.contentsWrap01_type01 .imgGroup{
	float: left;
	width: 540px;
}

.contentsWrap01_type01 .infoWrap{
	float: right;
	width: 280px;
}

.contentsWrap01_type01 .infoWrap h3 .text{
	font-size: 25px;
}

.contentsWrap01_type01 .imgGroup li{
	float: left;
	width: 47%;
	position: relative;
	margin-right: 6%;
}

.contentsWrap01_type01 .imgGroup li:before{
	content: "";
	position: absolute;
	background-image:url(../img/secret/arrow02.svg);
	background-repeat: no-repeat;
	width: 18px;
	height: 40px;
	right:-25px;
	top:0;
	bottom: 0;
	margin: auto;	
}


.contentsWrap01_type01 .imgGroup li:last-child{
	margin-right: 0;
}

.contentsWrap01_type01 .imgGroup li:last-child:before{
	content: none;
}

.contentsWrap01_type01 .imgGroup li img{
	width: 100%;
}

.contentsWrap02 {
	position: relative;
	padding-top: 100px;
}

.contentsWrap02 h4,
.contentsWrap04 h4{
	font-size: 25px;
	font-weight: bold;
	position: relative;
	margin-bottom: 20px;
	
}

.contentsWrap02 h4:before,
.contentsWrap04 h4:before{
	content: "";
	position: absolute;
	bottom:-10px;
	left:0;
	width: 0;
	height: 1px;
	background-color: #4c4948;
	transition: all 800ms 0s ease;
}

.contentsWrap02 h4:after,
.contentsWrap04 h4:after{
	content: "";
	position: absolute;
	bottom: -12px;
	right: 100%;
	background-image: url(../img/secret/arrow_tip.svg);
	background-repeat: no-repeat;
	width: 10px;
	height: 5px;
	transition: all 800ms ease;
}

.contentsWrap02 h4.active:before,
.contentsWrap04 h4.active:before{
	width: 100%;
}

.contentsWrap02 h4.active:after,
.contentsWrap04 h4.active:after{
	right: -2px;
}

.contentsWrap02 h4 .ruby,
.contentsWrap04 h4 .ruby{
	display: inline-block;
	margin-bottom: 0;
	font-size: 24px;
	box-sizing: border-box;
	font-family: house-script, sans-serif;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 1px;
	transform: rotate( -10deg );
}

.contentsWrap02 h4 .text,
.contentsWrap04 h4 .text{
	display: block;
}

.contentsWrap02 .inner{
	width: 1100px;
	margin: auto;
}

.contentsWrap02{
	margin-bottom: 100px;
	position: relative;
}

.contentsWrap02 .inner{
	position: relative;
	z-index: 1;
}

.contentsWrap02 .imgWrap{
	width: 45%;
	float: left;
}

.contentsWrap02 .imgWrap img{
	width: 100%;
}

.contentsWrap02 .infoWrap{
	width: 50%;
	float: right;
}

.contentsWrap02 .infoWrap .textWrap,
.contentsWrap04 .infoGroup .textWrap{
	font-size: 12px;
	line-height: 1.8em;
}

#secret01 .contentsWrap02 .imgWrap02{
	width: 35%;
	position: absolute;
	right: 0;
	top: 20%;
	z-index: 0;
}

.contentsWrap02 .imgWrap02 img{
	width: 100%;
}

#secret01 .contentsWrap03{
	position: relative;
	margin-bottom: 50px;
}

#secret01 .contentsWrap03 .imgWrap03{
	width: 45%;
	float: left;
	position: relative;
}

/* trimming */
#secret01 .contentsWrap03 .img {
	width: 100%;
	height: 420px;
	overflow: hidden;
	position: relative;
	display: block;
}

#secret01 .img img,
#secret03 .img img{
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
}

#secret01 .section01 .img img {
	top: 50%;
}

#secret01 .section02 .bottomArea .img img {
	top: 50%;
}

#secret01 .section03 .img img {
	top: 50%;
}

#secret01 .section04 .img img {
	top: 50%;
}

#secret03 .img img {
	top: 50%;
}


#secret01 .contentsWrap03 .infoGroup{
	width: 600px;
	float: right;
}

#secret01 .contentsWrap03 .infoGroup li{
	margin-bottom: 20px;
}

#secret01 .contentsWrap03 .infoGroup li .imgWrap{
	width: 300px;
	float: right;
}

#secret01 .contentsWrap03 .infoGroup li .textWrap {
	float: left;
	width: 280px;
	font-size: 12px;
	line-height: 2em;
	letter-spacing: 1px;
	position: relative;
	height: 120px;
}

#secret01 .contentsWrap03 .infoGroup li .textWrap .text {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin: auto;
}


#secret01 .contentsWrap03 .infoGroup li .textWrap .text .title{
	font-size: 25px;
	font-weight: bold;
	position: relative;
	display: block;
	margin-bottom: 20px;
}

#secret01 .contentsWrap03 .infoGroup li .textWrap .text .title:before{
	content: "";
	position: absolute;
	bottom:-10px;
	left:0;
	width: 0;
	height: 1px;
	background-color: #4c4948;
	transition: all 800ms 0s ease;
}

#secret01 .contentsWrap03 .infoGroup li .textWrap .text .title:after{
	content: "";
	position: absolute;
	bottom: -12px;
	right: 100%;
	background-image: url(../img/secret/01/arrow_tip.svg);
	background-repeat: no-repeat;
	width: 10px;
	height: 5px;
	transition: all 800ms 0s ease;
}

#secret01 .contentsWrap03 .infoGroup li .textWrap .text .title.active:before{
	content: "";
	width: 100%;
}

#secret01 .contentsWrap03 .infoGroup li .textWrap .text .title.active:after{
	content: "";
	right: -2px;
}



#secret01 .contentsWrap03 .infoGroup li:last-child .imgWrap{
	float: left;
}

#secret01 .contentsWrap03 .infoGroup li:last-child .textWrap{
	float: right;
	width: 210px;
}

#secret01 .contentsWrap03 .infoGroup li img{
	width: 100%;
}

#secret01 .contentsWrap04{
	position: relative;
	margin-bottom: 40px;
}

#secret01 .contentsWrap04 .imgGroup{
	float: left;
	width: 340px;
}

#secret01 .contentsWrap04 .infoGroup{
	float: right;
	width: 650px;
}

#secret01 .contentsWrap04 .infoGroup li{
	margin-bottom: 400px;
}

#secret01 .contentsWrap04 .infoGroup li:last-child{
	margin-bottom: 0;
}

#secret01 .contentsWrap04 .infoGroup li.num02 {
	position: absolute;
	right: 0;
	bottom: 52%;
	margin-bottom: 0;
	width: 55%;
}

#secret01 .contentsWrap04 .imgGroup li{
	margin-bottom: 30px;
}

#secret01 .contentsWrap04 .imgGroup li:last-child{
	margin-bottom: 0;	
}

#secret01 .contentsWrap04 .imgGroup img{
	width: 100%;
}

#secret01 .contentsWrap04 .img {
	width: 100%;
	height: 294px;
	overflow: hidden;
	position: relative;
	display: block;
}

#secret01 .section03 .contentsWrap05{
	margin-bottom: 100px;
}

.contentsWrap05 .inner{
	width: 1100px;
	margin: auto;
	padding: 0;
}

.contentsWrap05 .imgWrap{
	width: 550px;
	float: right;
}

.contentsWrap05 .infoWrap{
	float: left;
	width: 420px;
	padding-top: 30px;
}

.contentsWrap05 .imgWrap .caption{
	display: block;
	font-size: 12px;
	text-align: right;
	margin-top: 10px;
}

.contentsWrap05 .imgWrap img{
	width: 100%;	
}

.contentsWrap05 .infoWrap .textWrap{
	font-size: 12px;
	line-height: 1.8em;
}

.contentsWrap05 h4{
	font-size: 25px;
	font-weight: bold;
	position: relative;
	margin-bottom: 30px;
	padding-bottom: 10px;
}

.contentsWrap05 h4:before{
	content: "";
	position: absolute;
	bottom:-10px;;
	left:0;
	width: 100%;
	height: 1px;
	background-color: #4c4948;
}

.contentsWrap06 .inner{
	width: 1100px;
	margin: 0 auto 50px	
}

.contentsWrap06 .imgWrap{
	width: 100%;
	margin-bottom: 20px;
}

.contentsWrap06 .textWrap{
	font-size: 13px;
	line-height: 2em;
}

.contentsWrap06 img{
	width: 100%;	
}

.contentsWrap07{
	margin-bottom: 40px;
}

.contentsWrap07 .inner{
	width: 1100px;
}

.contentsWrap07 .imgWrap img{
	width: 100%;
}

.contentsWrap07 .infoWrap{
	float: right;
	width: 450px;
	padding-top: 90px;
}

.contentsWrap07 .textWrap{
	font-size: 13px;
	line-height: 2em;
}

#secret03 .btnWrap {
	display: inline-block;
	padding: 5px 30px;
	box-sizing: border-box;
	background-color: #4c4948;
	color: #FFF;
	font-size: 12px;
	text-align: center;
	letter-spacing: 1px;
	margin-top: 40px;
}

.contentsWrap07{
	position: relative;
}

.contentsWrap07 .imgWrap04{
	width: 50%;
	float: left;
	position: relative;
}

.contentsWrap07 .imgWrap04 .img {
	width: 100%;
	height: 360px;
	overflow: hidden;
	position: relative;
	display: block;
}

#secret01 .section01{
	padding: 100px 0 140px;
}

#secret01 .section02{
	margin-bottom: 100px;
}

#secret01 .section03{
	padding-top: 70px;
}

#secret01 .section03 .contentsWrap01 .inner {
	position: relative;
	top: 50px;
}

#secret02 .section01{
	padding: 100px 0 0;
}

#secret01 {
	padding-bottom: 100px;
}

#secret02 {
	padding-bottom: 100px;
}

#secret03 {
	background-color: #2e0c00;
	color: #FFF;
	padding-bottom: 100px;
}

#secret03 .intro {
	background-color: #1a1a1a;
}

#secret03 .contentsGroup {
	background-color: #2e0c00;
	overflow: hidden;
}

#secret03 .section01{
	padding: 100px 0 0;
}


#secret01 .ownerArea{
	position: relative;
}

#secret01 .ownerArea:before{
	content: "";
	width: 15px;
	height: 96px;
	background-color:#4c4948;
	position: absolute;
	left:0;
	top:90px;
}

#secret01 .ownerArea .inner{
	width: 1100px;
	margin: auto;
	padding: 20px 0 20px 50px;
	box-sizing: border-box;
	z-index: 10;
	position: relative;
	background-color: #e6e6de;
}

#secret01 .ownerArea .inner:before{
	content: "";
	width: 10px;
	height: 188px;
	position: absolute;
	left:0;
	bottom:0;
	background-color:#c8c8be;
}

#secret01 .ownerArea .inner .infoWrap{
	float: left;
	width: 45%;
}

#secret01 .ownerArea .inner .infoWrap h4 .job{
	font-size: 18px;
	display: block;
	border-bottom: 1px solid #000;
	margin-bottom: 10px;
	padding-bottom: 10px;
}

#secret01 .ownerArea .inner .infoWrap h4 .name{
	font-size: 35px;
	font-weight: bold;
}

#secret01 .ownerArea .inner .infoWrap h4{
	font-size: 20px;
	margin-bottom: 40px;
}

#secret01 .ownerArea .inner .infoWrap .textWrap{
	font-size:12px;
	line-height: 1.8em;
	padding: 0 20px 0 0;
	letter-spacing: 1px;
}

#secret01 .ownerArea .inner .imgWrap{
	float: right;
	width: 55%;
}

#secret01 .ownerArea .inner .imgWrap img{
	width: 100%;
}

#secret01 .ownerArea:after {
	content: "";
	width: 50%;
	height: 100%;
	background-color: #e6e6de;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}

#secret01 .ownerArea .title{
	display: block;
	
}

.contentsWrap01 .infoWrap .appealList{
	margin-top: 40px;
}

.contentsWrap01 .infoWrap .appealList li {
	font-size: 12px;
	letter-spacing: 1px;
	margin-bottom: 30px;
	position: relative;
	padding-left: 35px;
	line-height: 1.5em;
}

.contentsWrap01 .infoWrap .appealList li:before{
	content: "";
	position: absolute;
	background-image: url(../img/secret/02/icon_num01.svg);
	background-repeat: no-repeat;
	width: 50px;
	height: 47px;
	left:-20px;
	top:-19px;
}

.contentsWrap01 .infoWrap .appealList li.num02:before{
	content: "";
	background-image: url(../img/secret/02/icon_num02.svg);
}

.contentsWrap01 .infoWrap .appealList li.num03:before{
	content: "";
	background-image: url(../img/secret/02/icon_num03.svg);
}

#secret02 .flowList{
	width: 1100px;
	margin: auto;
}

#secret02 .flowList li img{
	width: 100%;
}
	
#secret02 .flowList>li{
	float: left;
	width: 30%;
	margin-right: 5%;
	margin-bottom: 50px;
}

#secret02 .flowList>li.num01{
	width: 100%;
	float: none;
	margin-right: 0;
	margin-bottom: 60px;
}

#secret02 .flowList>li .imgGroup,
#secret02 .flowList>li .imgWrap{
	margin-bottom: 20px;
}

#secret02 .flowList>li.num01 .infoWrap{
	width: 90%;
	margin: auto;
}

#secret02 .flowList>li.num01 .infoWrap h4{
	width: 20%;
	float: left;
	font-size: 25px;
	line-height: 1.5em;
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

#secret02 .flowList>li.num01 .infoWrap .textWrap{
	width: 75%;
	float: left;
	font-size: 12px;
	line-height: 1.7em;
}

#secret02 .flowList>li .infoWrap{
	width: 90%;
}

#secret02 .flowList>li .infoWrap h4{
	font-size: 25px;
	line-height: 1.5em;
	padding-bottom: 10px;
	margin-bottom: 20px;
	position: relative;
}

#secret02 .flowList>li .infoWrap h4:before{
	content: "";
	position: absolute;
	bottom:0;
	left:0;
	width: 0;
	height: 1px;
	background-color: #4c4948;
	transition: all 800ms 0s ease;
}

#secret02 .flowList>li .infoWrap h4:after{
	content: "";
	position: absolute;
	bottom: -2px;
	right: 100%;
	background-image: url(../img/secret/arrow_tip.svg);
	background-repeat: no-repeat;
	width: 10px;
	height: 5px;
	transition: all 800ms ease;
}

#secret02 .flowList>li .infoWrap h4.active:before{
	content: "";
	width: 100%;
}

#secret02 .flowList>li .infoWrap h4.active:after{
	content: "";
	right: -2%;
}

#secret02 .flowList>li.num01 .infoWrap h4:before,
#secret02 .flowList>li.num01 .infoWrap h4:after{
	content: none;
}

#secret02 .flowList>li .infoWrap h4 .small{
	font-size: 17px;
}

#secret02 .flowList>li.num01 .infoWrap h4:after {
	content: none;
}

#secret02 .flowList>li .infoWrap h4 .text{
	display: block;
}

#secret02 .flowList>li .infoWrap h4 .text:before{
	content: "1";
	position: absolute;
	left: -44px;
	top: 25px;
	color: #33b495;
	font-size: 75px;
	font-weight: bold;
	font-family: house-script, sans-serif;
	font-weight: 400;
	font-style: normal;
}


#secret02 .flowList>li.num01 .infoWrap h4 .text:before{
	content: "1";
	left: -30px;
	top: 5px;
}
#secret02 .flowList>li.num02 .infoWrap h4 .text:before{
	content: "2";
}


#secret02 .flowList>li.num03 .infoWrap h4 .text:before{
	content: "3";
}

#secret02 .flowList>li.num04 .infoWrap h4 .text:before{
	content: "4";
}


#secret02 .flowList>li.num05 .infoWrap h4 .text:before{
	content: "5";
}


#secret02 .flowList>li.num06 .infoWrap h4 .text:before{
	content: "6";
}


#secret02 .flowList>li.num07 .infoWrap h4 .text:before{
	content: "7";
}

#secret02 .flowList>li .infoWrap .textWrap{
	font-size: 12px;
	line-height: 1.7em;
}

#secret02 .flowList>li.num01 .imgGroup li{
	float: left;
	width: 50%;
}

#secret02 .flowList>li.num04,
#secret02 .flowList>li.num07
{
	margin-right: 0;
}


.onlyPC{
	display: block;
}

.onlySP{
	display: none;
}


/*画面サイズが1600px以下の場合*/
@media screen and (max-width: 1600px) {
	#secret01 .contentsWrap02 .imgWrap02 {
		width: 35%;
		position: absolute;
		right: 0;
		top: 50%;
		z-index: 0;
	}
}

/*画面サイズが1400px以下の場合*/
@media screen and (max-width: 1400px) {

}

/*画面サイズが1200px以下の場合*/
@media screen and (max-width: 1200px) {
	
	main .inner{
		width: auto;
		margin: auto;
		padding: 0 20px;
	}
	
	.contentsWrap01 .inner {
		width: auto;
		margin: auto;
	}
	
	.contentsWrap02 .inner {
		width: auto;
		margin: auto;
	}
	
	#secret01 .contentsWrap03 .infoGroup {
		width: 50%;
	}
	
	#secret01 .contentsWrap02 .imgWrap02{
		width: 40%;
		top: 50%;
	}
	
	#secret01 .contentsWrap03 .infoGroup li .imgWrap {
		width: 50%;
	}
	
	#secret01 .contentsWrap03 .infoGroup li .textWrap {
		width: 50%;
	}
	
	#secret01 .contentsWrap04 .infoGroup {
		width: 65%;
	}
	
	#secret01 .contentsWrap04 .imgGroup {
		width: 30%;
	}
	
	#secret01 .contentsWrap04 .infoGroup li.num02 {
		width: 65%;
	}
	
	#secret01 .contentsWrap04 .infoGroup li {
		margin-bottom: 450px;
	}
	
	#secret01 .bottomArea {
		height: 450px;
	}
}

/*画面サイズが1100px以下の場合*/
@media screen and (max-width: 1100px) {
	#secret01 .contentsWrap04 .infoGroup li.num02 {
		bottom: 50%;
	}
}

/*画面サイズが1000px以下の場合*/
@media screen and (max-width: 1000px) {
	
	.tabGroup {
		justify-content: space-evenly;
		width: auto;
	}
	
	.intro .inner {
		width: auto;
		margin: auto;
		padding: 0 20px;
	}
	
	.intro .inner h2 {
		width: 50%;
		font-size: 25px;
	}
	
	
	.intro .inner .textWrap {
		font-size: 12px;
		width: 45%;
	}
	
	.contentsWrap01 .infoArea:before {
		content: "";
		width: 5px;
	}
	
	.contentsWrap01 .inner,
	.contentsWrap02 .inner,
	.contentsWrap05 .inner{
		width: auto;
		margin: auto;
		padding: 0 20px;
	}
	
	.contentsWrap01 .imgWrap,
	.contentsWrap02 .imgWrap,
	.contentsWrap05 .imgWrap{
		float: left;
		width: 30%;
	}
	
	.contentsWrap01 .infoWrap,
	.contentsWrap02 .infoWrap,
	.contentsWrap05 .infoWrap{
		float: right;
		width: 65%;
	}
	
	.contentsWrap01 .textWrap02 {
		width: auto;
		line-height: 1.8em;
		padding: 0 20px;
		position: relative;
	}
	
	#secret01 .bottomArea:after{
		content: "";
		height: 250px;
	}
	
	#secret02 .contentsWrap01 .imgWrap{
		width: 30%;
	}

	#secret02 .contentsWrap01 .infoWrap {
		width: 65%;
	}

	#secret01 .bottomArea {
		height: 350px;
	}
	
	#secret01 .section03 .bottomArea,
	#secret01 .section04 .bottomArea {
		height: 200px;
	}
	
	#secret01 .section03 .img img,
	#secret01 .section04 .img img{
		top: 50%;
	}
	
	#secret01 .contentsWrap02 .imgWrap02 {
		width: 50%;
		top: auto;
		bottom: -120px;
	}
	
	#secret01 .contentsWrap02 .inner {
		width: auto;
		margin: auto;
	}
	
	#secret01 .contentsWrap03 .infoGroup {
		width: 50%;
	}
	
	#secret01 .contentsWrap03 .infoGroup li .imgWrap {
		width: 50%;
	}
	
	#secret01 .contentsWrap03 .infoGroup li .textWrap {
		width: 45%;
		font-size: 12px;
		height: auto;
	}
	
	#secret01 .contentsWrap03 .infoGroup li:last-child .textWrap {
		width: 40%;
		
	}

	#secret01 .contentsWrap04 .infoGroup li.num02 {
		position: relative;
		right: auto;
		bottom: auto;
		margin-bottom: 30px;
		width: auto;
	}
	
	#secret01 .contentsWrap04 .infoGroup li {
		margin-bottom: 30px;
	}
	
	
	#secret01 .contentsWrap04 .infoGroup {
		width: 65%;
	}
	
	#secret01 .contentsWrap04 .imgGroup {
		width: 25%;
	}
	
	#secret01 .contentsWrap04 .infoGroup li {
		margin-bottom: 20px;
	}
	
	#secret01 .contentsWrap04 .infoGroup li.num02 {
		position: relative;
		right: auto;
		bottom: auto;
		margin-bottom: 20px;
		width: 100%;
	}
	
	#secret01 .contentsWrap05 h4 {
		font-size: 20px;
		margin-bottom: 20px;
		padding-bottom: 5px;
	}
	
	#secret01 .ownerArea .inner {
		width: 90%;
		padding: 20px 0 20px 50px;
	}
	
	#secret02 .flowList{
		width: auto;
		padding: 0 20px;
	}
	
	#secret02 .flowList>li .infoWrap h4 .text:before {
		content: "";
		position: absolute;
		left: -38px;
		top: 13px;
		font-size: 60px;
	}
	
	#secret02 .flowList>li .infoWrap {
		width: 90%;
		margin: auto;
		margin-left: 10%;
	}
	
	
	#secret02 .flowList>li .infoWrap h4 .text {
		font-size: 20px;
		padding-bottom: 5px;
		margin-bottom: 10px;
	}
	
	#secret02 .flowList>li .infoWrap h4 .text .small {
		font-size: 10px;
	}
	
	#secret02 .flowList>li .infoWrap h4 .text:before {
		content: "";
		position: absolute;
		left: -30px;
		top: 13px;
		font-size: 40px;
	}
	
	#secret02 .flowList>li .infoWrap h4 {
		padding-bottom: 0;
	}
	
	.contentsWrap01_type01 .imgGroup {
		width: 50%;
	}
	
	.contentsWrap01_type01 .imgGroup li {
		width: 45%;
		margin-right: 10%;
	}

	.contentsWrap01_type01 .imgGroup li:before {
		content: "";
		right: -30px;
		width: 15px;
		height: 25px;
	}
	
	.contentsWrap01_type01 .infoWrap {
		width: 45%;
	}
	
	.contentsWrap06 .inner {
		width: auto;
		padding: 0 20px;
	}
	
	.contentsWrap07 .inner{
		width: auto;
		padding: 0 20px;
	}
	
	.contentsWrap07 .infoWrap {
		width: 45%;
		padding-top: 50px;
	}
	
	.contentsWrap07 .imgWrap04 {
		width: 50%;
	}
	
}

/*画面サイズが680px以下の場合*/
@media screen and (max-width: 680px) {
	
	header .iconWrap.secret {
		width: 150px;
		height: 150px;
	}
	
	.aboutList li{
		font-size: 12px;
	}
	
	#secret01 .section01{
		padding: 50px 0;		
	}
	
	#secret01 .ownerArea:before {
		content: "";
		width: 5px;
		height: 96px;
	}
	
	#secret01 .ownerArea .inner:before {
		content: "";
		width: 5px;
	}
	
	#secret01 .contentsWrap02 h4, #secret01 .contentsWrap04 h4 {
		font-size: 20px;
		margin-bottom: 20px;
	}
	
	.contentsWrap01 .infoWrap h3 .text {
		font-size: 25px;
	}
	
	.contentsWrap01 {
		margin-bottom: 30px;
	}
	
	#secret01 .contentsWrap03 .imgWrap03 {
		width: 100%;
		float: auto;
		margin-bottom: 30px;
	}
	
	#secret01 .contentsWrap03 .infoGroup {
		width: auto;
		float: none;
	}
	
	#secret01 .contentsWrap03 .infoGroup li .textWrap {
		width: 50%;
		height: auto;
		padding-top: 10px;
	}
	
	#secret01 .contentsWrap03 .infoGroup li .imgWrap {
		width: 45%;
		float: right;
	}
	
	#secret01 .contentsWrap03 .infoGroup li:last-child .textWrap {
		float: right;
		width: 50%;
	}
	
	#secret01 .contentsWrap03 .infoGroup li .textWrap .text .title {
		font-size: 20px;
	}
	
	#secret03 {
		padding-bottom: 50px;
	}
	
	.contentsWrap07 .imgWrap04 .img {
		height: 260px;
	}
	
	#secret01 .section01,
	#secret02 .section01,
	#secret03 .section01{
		padding: 50px 0 0;
	}
	
}


/*画面サイズが600px以下の場合*/
@media screen and (max-width: 600px) {
	.tab .num {
		top: auto;
		bottom: 10px;
		font-size: 20px;
	}
	
	.tab{
		font-size: 12px;
	}
	
	.tab:before {
		content: "";
		width: 100%;
	}
	
	.intro .inner h2 {
		width: auto;
		font-size: 25px;
		margin-bottom: 20px;
		text-align: center;
		float: none;
	}
	
	.intro .inner .textWrap {
		font-size: 12px;
		width: auto;
		line-height: 1.8em;
		float: none;
	}
	
	.contentsWrap01 .imgWrap,
	.contentsWrap02 .imgWrap,
	.contentsWrap03 .imgWrap,
	.contentsWrap05 .imgWrap{
		float: none;
		width: auto;
		margin-bottom: 20px;
	}
	
	.contentsWrap01 .infoWrap,
	.contentsWrap02 .infoWrap,
	.contentsWrap03 .infoWrap,
	.contentsWrap05 .infoWrap
	{
		float: none;
		width: auto;
	}

	#secret02 .contentsWrap01 .imgWrap{
		float: none;
		width: auto;
	}

	#secret02 .contentsWrap01 .infoWrap {
		float: none;
		width: auto;
	}
	
	#secret01 .contentsWrap02 .imgWrap02 {
		width: auto;
		top: auto;
		bottom: auto;
		position: relative;
	}
	
	#secret01 .bottomArea{
		width: 100%;
		height: 200px;
		overflow: hidden;
		position: relative;
		display: block;
		margin-top: 0;
	}
	
	#secret01 .section03 .bottomArea,
	#secret01 .section04 .bottomArea {
		height: 240px;
	}
	
	#secret01 .contentsWrap02 {
		padding-top: 50px;
	}
	
	#secret01 .section01 .contentsWrap02 {
		margin-bottom: 30px;
	}
	
	#secret01 .contentsWrap03 .imgWrap03 {
		float: none;
	}
	
	#secret01 .contentsWrap03 .img {
		height: 300px;
	}
	
	#secret01 .contentsWrap04 .infoGroup {
		width: auto;
		float: none;
		margin-bottom: 50px;
	}
	
	#secret01 .contentsWrap04 .imgGroup {
		width: auto;
		float: none;
	}
	
	#secret01 .contentsWrap04 .img {
		height: 150px;
	}
	
	#secret01 .btnWrap {
		display: block;
		padding: 15px 30px;
		font-size: 15px;
		margin-top: 30px;
	}
	
	#secret01 .ownerArea .inner .infoWrap h4 {
		margin-bottom: 20px;
	}
	
	#secret01 .ownerArea .inner .imgWrap {
		float: none;
		width: auto;
	}
	
	#secret01 .ownerArea .inner .infoWrap {
		float: none;
		width: auto;
		margin-bottom: 20px;
	}
	
	.contentsWrap01 .infoWrap .appealList {
		margin-top: 40px;
		margin-left: 10px;
	}
	
	
	#secret02 .flowList>li{
		width: 45%;
		margin-right: 10%;
		margin-bottom: 30px;
	}
	
	#secret02 .flowList>li.num01 .infoWrap h4 {
		width: auto;
		font-size: 20px;
		float: none;
		padding-bottom: 5px;
		margin-bottom: 10px;
	}
	
	
	#secret02 .flowList>li.num01 .infoWrap h4:after {
		content: "";
		position: absolute;
		bottom: -3px;
		right: -2%;
		background-image: url(../img/secret/arrow_tip.svg);
		background-repeat: no-repeat;
		width: 10px;
		height: 5px;
		transition: all 800ms ease;
	}
	
	
	
	#secret02 .flowList>li.num01 .infoWrap .textWrap{
		float: none;
		width: auto;
	}
	
	#secret02 .flowList>li.num04,
	#secret02 .flowList>li.num07 {
		margin-right: 10%;
	}
	
	#secret02 .flowList>li:nth-Child(odd){
		margin-right: 0;
	}

	#secret02 .flowList>li.num01{
		width: 100%;
		float: none;
		margin-right: 0;
		margin-bottom: 60px;
	}

	#secret02 .flowList>li .imgGroup,
	#secret02 .flowList>li .imgWrap{
		margin-bottom: 20px;
	}

	#secret02 .flowList>li .infoWrap{
		width: 90%;
	}
	
	#secret02 .flowList>li .infoWrap h4 .small {
		display: block;
		line-height: 1.2em;
	}

	#secret02 .flowList>li.num01 .infoWrap h4:before{
		content: "";
	}
	
	#secret02 .flowList>li.num01 .infoWrap h4:after{
		content: "";
		bottom: -2px;
		right: 100%;
	}
	
	#secret02 .flowList>li.num01 .infoWrap h4.active:after{
		content: "";
		bottom: -2px;
		right: -2%;
	}
	
	.contentsWrap05 .infoWrap{
		margin-bottom: 20px;
	}
	
	
	.contentsWrap01_type01 .imgGroup {
		width: auto;
		float: none;
		margin-bottom: 20px;
	}
	
	.contentsWrap07 .imgWrap04 {
		width: auto;
		float: none;
	}
	
	.contentsWrap07 .infoWrap {
		width: auto;
		padding-top: 20px;
		float: none;
	}
	
	#secret03 .btnWrap {
		display: block;
		padding: 15px 30px;
		font-size: 15px;
		margin-top: 30px;
	}
	
	#secret03 .flowList li .imgWrap{
		margin-bottom: 10px;
	}
	
	#secret03 .flowList li .textWrap{
		font-size: 12px;
		line-height: 1.7em;
		text-align: center;
	}
	
	#secret03 .flowList li:nth-child(5) .textWrap{
		font-size: 16px;
		font-weight: bold;
	}
	
	#secret03 .flowList li img{
		width: 100%;
	}
	
	#secret03 .flowList li{
		margin-bottom: 40px;
		position: relative;
	}
	
	#secret03 .flowList li:before{
		content: "";
		position: absolute;
		background-image: url(../img/secret/arrow02.svg);
		background-repeat: no-repeat;
		transform: rotate(90deg);
		width: 30px;
		height: 40px;
		left:0;
		right:0;
		bottom: -40px;
		margin: auto;
	}
	
	#secret03 .flowList li:nth-child(n+4):before{
		content: none;
	}
	
	.onlyPC{
		display: none;
	}
	
	.onlySP{
		display: block;
	}
}

/*画面サイズが560px以下の場合*/
@media screen and (max-width: 560px) {

}

/*画面サイズが480px以下の場合*/
@media screen and (max-width: 480px) {

}

/*画面サイズが400px以下の場合*/
@media screen and (max-width: 400px) {

}