@charset "utf-8";
/* iplus..CSS Document */
/* font(Noto Sans Japanese) */
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New&family=Zen+Old+Mincho&display=swap');
/*  General CSS*/

/*  共通 */
.fs12{font-size: 12px;}.fs18{font-size: 18px;}.fs20 {font-size: 20px;}.fs22{font-size: 22px;}.fs26{font-size: 26px;}.fs32 {font-size: 32px;}
.mb10{margin-bottom: 10px !important;}.mb20{margin-bottom: 20px !important;}.mb30{margin-bottom: 30px !important;}
.mb50 {margin-bottom: 50px !important;}.mb100{margin-bottom: 100px !important;}
.center {text-align: center;}.center_l {text-align: center;}.right {text-align: right;}.left {text-align: left;}
.flexbox {
	-webkit-display: flex;
	display: flex;
	-webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	width: 100%;
}
.c3 {width: 30%;}
.c3 img {height: auto !important;}
.sp_on {display: none;}
.a-hover:hover {
	transition-property: all;
	transition: 0.3s linear;
	opacity: 0.6;
}
.text {line-height: 220%;}
.wb {font-weight: bold;}
.fcB {color: #bda25d;}
.fcW {color: #ffffff;}
.fG {font-family: "Zen Kaku Gothic New", sans-serif;}

/* ヘッダー
------------------------------------------------------------*/
#body {
	position: relative;
	display: block;
	width: 100%;
}
header {
	position: absolute;
	width: 100%;
	padding: 15px;
	z-index: 99;
}
h1 {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 14px;	
}
header .logo {
	display: block;
	margin: auto;
	width: 15vw;
}
/* fv
------------------------------------------------------------*/
.fv-area {
	width: 100%;
	height: 43vw;
	background-image: url("../images/fv-bg.webp");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 100%;
	position: relative;
}
.fv-area .copy {
	position: absolute;
	width: 44%;
	left: 0;
	top: 45%;
}
.fv-area .copy .main {
	font-size: 3.6vw;
	font-weight: bold;
	text-align: right;
}
.fv-area .copy .main::after {
	content: '';
	display: block;
	width: 100%;
	height: 10px;
	background: url("../images/fv-line.svg") no-repeat;
	margin: 5% 0;
}
.fv-area .copy .sub {
	font-size: 2vw;
	padding-left: 15%;
}
.fv-area .illust {
	position: absolute;
	width: 46%;
	right: 6%;
	bottom: 0;
}

/* contents
------------------------------------------------------------*/
#wrap::before {
	content: '';
	display: block;
	width: 100%;
	height: 10vw;
	background: url("../images/decoration01.svg") no-repeat;
	background-size: cover;
}
#container {
	background: #3e2111;
	padding: 0 15px;
}
.message {
	max-width: 1200px;
	width: 90%;
	margin: 0 auto;
	padding: 50px 0 100px;
}
.message .contents {width: 50%;}
.message .title {margin-bottom: 30px;}
.message .title p {
	color: rgba(189,162,93,.4);
	font-size: 80px;
	line-height: 100%;
}
.message .movie {width: 45%;}
.message a {
	display: block;
	width: 500px;
	margin: 0 auto 10px;
}
.movie-area {
	width: 100%;
	padding: 100px 0;
	background: url("../images/movie-bg.webp") no-repeat;
	background-size: cover;
	background-position: center center;
}
.movie-area ul {
	max-width: 1200px;
	width: 90%;
	margin: auto;
}
.movie-area li {width: 48%;}
.movie-area .title p {
	color: rgba(255,255,255,.4);
	font-size: 80px;
	line-height: 100%;
}
.chapter {
	width: 100%;
	padding: 100px 0 15vw;
	position: relative;
}
.chapter::after {
	display: block;
	width: 100%;
	height: 8.8vw;
	content: '';
	background: url("../images/decoration02.svg") no-repeat;
	background-size: cover;
	position: absolute;
	bottom: 0;
}
.inner {
	max-width: 1200px;
	width: 90%;
	margin: auto;
}
.chapter .title p {
	color: rgba(255,255,255,.4);
	font-size: 80px;
	line-height: 100%;
}
.movie-detail > li:nth-child(1),
.movie-detail > li:nth-child(3) {width: 25%;}
.movie-detail > li:nth-child(2) {width: 46%;}
.accordion {
	width: 100%;
	background: #ffffff;
	border-radius: 10px;
	position: relative;
	padding: 20px 20px 40px;
}
.accordion summary {
	list-style: none;
	cursor: pointer;
}
.accordion summary::-webkit-details-marker {display: none;}
.accordion summary::after {
    content: '';
	display: block;
	position: absolute;
	width: 90%;
	height: 20px;
	border-radius: 10px;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background-color: rgba(62,33,17,.5);
	background-image: url("../images/arrow-dwn.svg");
	background-repeat: no-repeat;
	background-position: center center;
}
.accordion[open] summary::after {background-image: url("../images/arrow-up.svg");}
.accordion .accordion-inner {
    transform: translateY(-10px);
	display: none;
    transition: transform .5s, opacity .5s;
}
.accordion[open] .accordion-inner {
    transform: none;
    display: block;
}
.accordion summary .en {
	font-size: 50px;
	position: absolute;
	left: 0;
	top: -50px;
}
.accordion summary h3 {
	text-align: center;
	padding: 10px 0;
}
.accordion summary .illust {
	text-align: center;
	margin-bottom: 20px;
}
.movie-detail > li:nth-child(1) summary .illust img,
.movie-detail > li:nth-child(3) summary .illust img {width: 83%;}
.movie-detail > li:nth-child(2) summary .illust img {width: 42%;}
.accordion-inner .detail {
	border-top: solid 2px #3e2111;
	border-bottom: solid 2px #3e2111;
	margin-bottom: 20px;
}
.accordion-inner .detail dl {padding: 20px 0;}
.accordion-inner .time {margin-bottom: 20px;}
.accordion-inner .detail ul li {
	width: 50%;
	border: 1px dotted #3e2111;
	padding: 10px;
	display: flex;
	flex-wrap: nowrap;
}
.accordion-inner .detail ul li span {
	color: #bda25d;
	padding-right: 5px;
}
.price {
	width: 100%;
	padding: 0 0 15vw;
	background-color: #ffffff;
	position: relative;
}
.price::after {
	display: block;
	width: 100%;
	height: 8.8vw;
	content: '';
	background: url("../images/decoration03.svg") no-repeat;
	background-size: cover;
	position: absolute;
	bottom: 0;
}
.price .title p {
	color: rgba(62,33,17,.4);
	font-size: 80px;
	line-height: 100%;
}
.price-plan li:nth-child(1),
.price-plan li:nth-child(3) {width: 25%;}
.price-plan li:nth-child(2) {width: 50%;}
.price-plan li div {margin-bottom: 20px;}
.price-plan li a {
	display: block;
	text-align: center;
	font-weight: bold;
	font-size: 24px;
	border: 1px solid #000000;
	padding: 1vw;
	border-radius: 50px;
	margin: auto;
	
}
.price-plan li:nth-child(1) a {
	background-color: #ffffff;
	border: solid 1px #e8dec6;
	border-bottom: 10px solid #e8dec6;
}
.price-plan li:nth-child(2) a {
	width: 50%;
	color: #ffffff;
	background-color: #bda25d;
	border: solid 1px #bda25d;
	border-bottom: 10px solid #6d5520;
}
.price-plan li:nth-child(3) a {
	color: #ffffff;
	background-color: #54769e;
	border: solid 1px #54769e;
	border-bottom: 10px solid #17314c;
}
.consul-area {
	width: 100%;
	position: relative;
	border-top: 4px solid #96631a;
	border-bottom: 4px solid #96631a;
	padding: 10% 5% 5% 40%;
	margin-top: 130px;
}
.consul-area dl dt {margin-bottom: 5%;}
.consul-area ul li {position: absolute;}
.consul-area ul li:first-child {
	width: 32%;
	top: -8%;
	left: 23%;
	z-index: 99;
}
.consul-area ul li:first-child::after {
	content: '';
	display: block;
	width: 62px;
	height: 30px;
	background: url("../images/hukidashi-ashi.png") no-repeat;
	background-size: 100%;
	position: relative;
	top: -5px;
	left: 0;
}
.consul-area ul li:last-child {
	width: 34%;
	bottom: -7%;
	left: 0;
	z-index: 1;
}
.note-area {
	max-width: 880px;
	width: 90%;
	margin: auto;
	padding: 0 0 50px;
}
.note-area dl dt {
	border-bottom: 1px solid #bda25d;
	padding-bottom: 30px;
	margin-bottom: 30px;
}
#pagetop:hover {opacity: 0.5 !important;}
#pagetop {
	position: fixed;
	right: 20px;
	bottom: 20px;
	opacity: 0;
	pointer-events: auto;
	transition: .5s;
}
#pagetop.visible {
  opacity: 1;
  pointer-events: auto;
}
/* フッター
------------------------------------------------------------*/
.footer-inner {
	width: 100%;
	background-color: #3e2111;
	padding: 50px 0;
}
.footer-inner .flexbox {
	max-width: 650px;
	width: 60%;
	margin: 0 auto 50px;
}
.footer-inner .flexbox a {
	width: 47%;
	display: block;
	background-color: #ffffff;
	border: solid 1px #bda25d;
	border-bottom: 10px solid #bda25d;
	text-align: center;
	font-weight: bold;
	padding: 3% 0;
	border-radius: 50px;
}
.footer-logo {
	display: block;
	width: 270px;
	margin: auto;
}
.cc {
	background-color: #bda25d;
	text-align: center;
	font-weight: bold;
	padding: 1%;
}

/*----------------------------------------------------------*/
/* ブレイクポイント
------------------------------------------------------------*/
/* 1024px以下から
------------------------------------------------------------*/
@media only screen and (max-width:1024px){
	a[href^="tel:"]{pointer-events: auto;}.text {line-height: 180%;}
	.fs16,.fs18,.fs20 {font-size: 14px;}.fs22 {font-size: 16px;}
	.fs26,.fs32{font-size: 18px;}
	.mb100 {margin-bottom: 50px !important;}.mb50 {margin-bottom: 30px !important;}
	.message .title p,
	.movie-area .title p,
	.chapter .title p,
	.price .title p {font-size: 40px;}
	.accordion summary .en {
		font-size: 40px;
		top: -40px;
	}
	.price-plan li a {font-size: 16px;}
	.price-plan li:nth-child(1) a {border-bottom: 5px solid #e8dec6;}
	.price-plan li:nth-child(2) a {border-bottom: 5px solid #6d5520;}
	.price-plan li:nth-child(3) a {border-bottom: 5px solid #17314c;}
}

/* 750px以下から
------------------------------------------------------------*/
@media only screen and (max-width:750px){
	.sp_non {display: none;}
	.sp_on {display: block;}
	.center_l {text-align: left;}
	#pagetop img {width: 40px;}
	header {padding: 5px;}
	h1 {font-size: 12px;}
	header .logo {width: 150px;}
	.fv-area {
		height: 120vw;
		background-position: center 90%;
		background-size: 150%;
	}
	.fv-area .copy {
		width: 80%;
		left: 50%;
		transform: translateX(-50%);
		top: 22%;
	}
	.fv-area .copy .main {
		font-size: 6vw;
		text-align: center;
	}
	.fv-area .copy .sub {
		font-size: 3.5vw;
		padding-left: 0;
		text-align: center;
	}
	.fv-area .illust {
		width: 70%;
		right: 0;
		left: 0;
		margin: 0 auto;
		bottom: 0;
	}
	#container {padding: 0 10px;}
	.message {padding: 30px 0 80px;}
	.message .contents {
		width: 100%;
		margin-bottom: 30px;
	}
	.message .contents p {text-align: center;}
	.message .title {
		margin-bottom: 20px;
		text-align: center;
	}
	.message .movie {width: 100%;}
	.message a {
		display: block;
		width: 80%;
		margin: 0 auto 10px;
	}
	.message a img {height: auto;}
	.movie-area {padding: 80px 0;}
	.movie-area li {width: 100%;}
	.movie-area li:first-child {margin-bottom: 50px;}
	.movie-area .title {text-align: center;}
	.chapter {padding: 80px 0 20vw;}
	.movie-detail > li:nth-child(1) {width: 48%;order: 2;}
	.movie-detail > li:nth-child(3) {width: 48%;order: 3;}
	.movie-detail > li:nth-child(2) {
		width: 100%;
		order: 1;
		margin-bottom: 40px;
	}
	.price {padding: 30px 0 20vw;}
	.price-plan li:nth-child(2) {
		width: 100%;
		order: 1;
		margin-bottom: 30px;
	}
	.price-plan li:nth-child(1) {
		width: 50%;
		order: 2;
	}
	.price-plan li:nth-child(3) {
		width: 50%;
		order: 3;
	}
	.consul-area {
		padding: 65% 5% 10% 5%;
		margin-top: 30%;
	}
	.consul-area dl dt {margin-bottom: 5%;}
	.consul-area ul li {position: absolute;}
	.consul-area ul li:first-child {
		width: 80%;
		top: -15%;
		left: 50%;
		transform: translateX(-50%);
	}
	.consul-area ul li:first-child::after {
		width: 40px;
		height: 20px;
		top: -5px;
		left: 65%;
	}
	.consul-area ul li:last-child {
		width: 55%;
		bottom: auto;
		top: 10%;
		left: 50%;
		transform: translateX(-50%);
	}
	.note-area {padding: 50px 0 30px;}
	.footer-inner .flexbox a {
		width: 100%;
		border-bottom: 5px solid #bda25d;
		padding: 5% 0;
	}
	.footer-inner .flexbox a:first-child {margin-bottom: 6%;}
	.footer-logo {width: 150px;}
	.footer-logo img {height: auto;}
	
	
}
