@charset "utf-8";
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
*{
	box-sizing: border-box;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	font-size: 1em;
}
html {
	font-size: 62.5%;
}
body, table, input, textarea, select, option {
	font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "Yu Gothic medium", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
img {
	vertical-align: top;
	max-width: 100%;
	height: auto;
}
a, a:link {
	color: #000;
	text-decoration: none;
}
a:visited {
	color: #000;
}
a:hover {
	color: #000;
}
a:active {
	color: #000;
}
/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
	min-width: 1024px;
	color: #000;
	font-size: 1.6rem;
	line-height: 1.625;
	letter-spacing: 0.06em;
	font-weight: bold;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	background-color: #FFF;
}
body.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
}
#container {
	overflow: hidden;
	text-align: left;
}
#main {
	display: block;
}
a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}
@media all and (min-width: 961px) {
	body.fixed {
		overflow-y: scroll;
	}
	.sp {
		display: none !important;
	}
}
@media all and (max-width: 960px) {
	body {
		min-width: inherit;
		font-size: 2.67vw;
		line-height: 1.6;
		letter-spacing: 0.03em;
	}
	a:hover, a:hover img {
		opacity: 1 !important;
	}
	.pc {
		display: none !important;
	}
	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}
}
/*------------------------------------------------------------
	gHeader
------------------------------------------------------------*/
#gHeader {
	padding: 28px 40px 23px min(4.69vw,90px);
	background-color: #C45C83;
}
#gHeader .hBox {
	max-width: 1515px;
	/* margin: 0 auto; */
	margin: 0 auto 0 0;
}
#gHeader .hBox h1 {
	margin-right: 20px;
	width: 234px;
}
#gHeader .hBox h1 a{
	display: block;
	line-height: 0;
}
#gHeader .hBox h1 a img{
	width: 100%;
}
#gHeader .hBox .textBox {
	width: 400px;
}
#gHeader .hBox .text {
	color: #fff;
	font-size: 1.8rem;
	font-weight: 500;
}
.fixed .menu {
	position: fixed;
}
.menu {
	width: 80px;
	height: 80px;
	position: fixed;
	right: 0;
	top: 0;
	cursor: pointer;
	z-index: 103;
	background-color: #C45C83;
}
.hamburger{
	transform: rotate(0deg);
	transition: transform 0.3s ease;
	position: relative;
	width: 80px;
	height: 80px;
	display: flex;
  justify-content: center;
  align-items: center;
}

/***** 真ん中のバーガー線 *****/
.menu .hamburger span {
  /* 線の長さと高さ */
	width: 62.5%;
	height: 6px;
  /* バーガー線の色 */
  background-color: #fff;
  /* バーガー線の位置基準として設定 */
  position: relative;
  transition: transform 0.3s ease;
	border-radius: 100vh;
	display: block;
}

/***** 上下のバーガー線 *****/
.menu .hamburger span::before,
.menu .hamburger span::after {
  content: "";
  /* 基準線と同じ大きさと色 */
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: transform 0.3s ease;
	border-radius: 100vh;
}
  /* 上の線の位置 */
.menu .hamburger span::before {
  transform: translateY(-18px);
}
  /* 下の線の位置 */
.menu .hamburger span::after {
  transform: translateY(18px);
}

/***** メニューオープン時 *****/
.menu.on .hamburger {
  transform: rotate(180deg);
}
/* 真ん中の線を透明に */
.menu.on .hamburger span {
  background-color: transparent;
	transition: background-color 0.3s ease;
}
.menu.on .hamburger span::before {
  /* 上の線を傾ける */
  transform: rotate(135deg);
}
.menu.on .hamburger span::after {
  /* 上の線を傾ける */
  transform: rotate(-135deg);
}

.menuBox {
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 100;
	transform: translateX(100%);
	transition: transform 0.3s ease;
}
.menuBox.on {
	transform: translateX(0);
}
.menuWrap {
	padding: 114px 40px;
	width: 492px;
	height: 100%;
	margin-left: auto;
	min-height: 100%;
	box-sizing: border-box;
	background: #C45C83;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6);
	overflow: auto;
}
.menuBack{
	background: rgba(0,0,0, 0.6);
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
	z-index: 50;
}
.menuBox.on + .menuBack{
	opacity: 1;
	visibility: visible;
}
.menuWrap h2 {
	margin-bottom: 30px;
	padding: 0 0 13px 0;
	position: relative;
	border-bottom: 2px solid #fff;
}
.menuWrap .menuList .textList{
	margin-bottom: 50px;
}
.menuWrap .menuList .textList{
	line-height: 0;
}
.menuWrap .menuList .textList li a{
	display: inline-block;
}
.menuWrap .menuList .textList li a:hover{
	opacity: 0.7;
}
.menuWrap .menuList .textList01{
	margin-bottom: 38px;
}
.menuWrap .menuList .textList02 {
	display: grid;
	grid-template-columns: repeat(2,auto);
	gap: 34px 20px;
}

.menuWrap .linkList li {
	margin-bottom: 20px;
	text-align: center;
}
.menuWrap .linkList li:last-child {
	margin-bottom: 0
}

.menuWrap .linkList li a {
	display: block;
	padding: 17px 0 14px;
	color: #fff;
	background: #42805F;
	filter: drop-shadow(0px 3px 6px rgba(0,0,0,0.16));
	transform: translateZ(0);
	border: 3px solid #fff;
	border-radius: 5px;
}
.menuWrap .linkList li a img{
	filter: drop-shadow(0px 3px 6px rgba(0,0,0,0.16));
	transform: translateZ(0);
}
.menuWrap .linkList li a:hover {
	background: #1A5D39;
}
.menuWrap .linkList li:last-child a {
	background-color: #C45C83;
}
.menuWrap .linkList li:last-child a:hover {
	opacity: 0.7;
}
@media all and (max-width: 960px) {
	#gHeader {
		height: 10.67vw;
		padding: 3.2vw 0 3.2vw 5.33vw;
	}
	#gHeader .hBox {
		max-width: inherit;
		align-items: center;
	}
	#gHeader .hBox h1 {
		width: 33.6vw;
		margin-right: 1.6vw;
	}
	#gHeader .hBox .textBox {
		width: auto;
	}
	#gHeader .hBox .text {
		font-size: 1.87vw;
	}
	.menu ,
	.hamburger{
		width: 10.67vw;
		height: 10.67vw;
	}
	.menu .hamburger span {
    height: 0.8vw;
	}
	.menu .hamburger span::before{
		transform: translateY(-2.4vw);
	}
	.menu .hamburger span::after{
		transform: translateY(2.4vw);
	}
	.menuWrap {
		padding: 23.2vw 8vw 49.2vw;
		width: 100%;
		height: 100vh;
		margin-left: 0;
		min-height: inherit;
	}
	.menuWrap h2{
		margin-bottom: 5.5vw;
		padding-bottom: 3vw;
		border-width: 0.4vw;
	}
	.menuWrap h2 img{
		width: 35.73vw;
	}
	.menuWrap .menuList .textList {
    display: grid;
    grid-template-columns: 35.2vw 43.73vw;
		gap: 7.33vw 4.53vw;
		margin-bottom: 9.8vw;
	}
	.menuWrap .menuList .textList01 {
		margin-bottom: 7.3vw;
	}
	.menuWrap .menuList .textList li a img{
		width: auto;
		height: 3.2vw;
	}
	.menuWrap .linkList li {
    margin-bottom: 4vw;
	}
	.menuWrap .linkList li a{
		padding: 4vw 0 3.3vw;
		filter: drop-shadow(0px 0.4vw 0.8vw rgba(0,0,0,0.16));
		border-width: 0.4vw;
		border-radius: 0.67vw;
	}
	.menuWrap .linkList li a img{
		height: 4.54vw;
	}
	.menuWrap .linkList li:nth-of-type(3) a img{
		height: 4.39vw;
	}


}
/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#gFooter {
	padding: 48px 32px 50px;
	color: #fff;
	font-size: 1.8rem;
	background-color: #C45C83;
	position: relative;
}
#gFooter .content{
	display: grid;
	grid-template-columns: 1fr 438px;
	gap: min(4.9%,84px);
	max-width: 1070px;
	min-width: 960px;
	width: 100%;
}
#gFooter .footer__box{
	display: grid;
	grid-template-columns: 55.56% 1fr;
	grid-template-rows: auto auto auto;
	gap: 0 7.22%;
	margin-left: 10px;
	margin-top: 4px;
}
#gFooter .footer__box .text {
	position: relative;
	left: -7px;
	margin-bottom: 20px;
	font-size: 1.6rem;
	font-weight: normal;
	grid-row: 1 / 1;
	grid-column: 1 / 3;
}
#gFooter .footer__box .fLogo {
	margin-bottom: 11px;
	grid-row: 2 / 3;
	grid-column: 1 / 2;
}
#gFooter .footer__box .fLogo a{
	display: block;
	line-height: 0;
}
#gFooter .footer__box .address,
#gFooter .footer__box  p {
	font-size: 1.6rem;
	font-weight: normal;
	line-height: 1.3;
}
#gFooter .footer__box .wrap{
	grid-row: 2 / 4;
	grid-column: 2 / 3;
}
#gFooter .footer__box .wrap .tel {
	display: block;
	margin: 14px 0 10px;
	line-height: 0;
}
#gFooter .footer__box .wrap .tel a {
	display: block;
}
#gFooter .footer__box .fMail {
	letter-spacing: 0.08em;
}
#gFooter .footer__box .address{
	grid-row: 3 / 4;
	grid-column: 1 / 2;
}
#gFooter .link a {
	border-radius: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 124px;
	background: #C45C83;
	filter: drop-shadow(3px 3px 6px rgba(0,0,0,0.16));
	transform: translateZ(0);
	border: 5px solid #fff;
	margin-top: 6px;
}
#gFooter .link a:hover {
	opacity: 0.7;
}

@media all and (max-width: 1200px) {
	#gFooter .footer__box .address, 
	#gFooter .footer__box p{
		font-size: 1.4rem;
	}
}

@media all and (max-width: 960px) {
	#gFooter {
		padding: 6.67vw 0;
	}

	#gFooter .footer__box .address{
		margin-top: 0.93vw;
	}
	#gFooter .footer__box .address,
	#gFooter .footer__box p,
	#gFooter .footer__box .text {
		font-size: 2.13vw;
		text-align: center;
	}
	#gFooter .footer__box .text {
		margin-bottom: 1.5vw;
		left: 0;
	}
	#gFooter .footer__box .fLogo {
		margin-bottom: 2.4vw;
	}
	#gFooter .footer__box .fLogo a{
		width: 39.63vw;
		margin: 0 auto;
	}
	#gFooter .content,
	#gFooter .footer__box{
		display: block;
		margin: 0 auto;
		min-width: unset;
	}
	#gFooter .footer__box .wrap .tel{
		width: 26.4vw;
		margin: 0 auto 0.8vw;
	}

	#gFooter .link {
		width: auto;
		margin-top: 3.1vw;
		border-width: 0.67vw;
	}
	#gFooter .link a{
		width: 56vw;
		height: 9.33vw;
		margin: 0 auto;
		border-radius: 1.33vw;
		filter: drop-shadow(0.4vw 0.4vw 0.8vw rgba(0,0,0,0.16));
		border-width: 0.67vw;
	}
	#gFooter .link a img{
		width: 49.75vw;
		line-height: 0;
		display: block;
	}
}


/* btn */
.btn-area {
	padding-bottom: 188px;
  width: 960px;
  margin: 0 auto;
}
.btn-area .btnBox{
  position: relative;
}
.btn-area a{
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  height: 150px;
  background: #C45C83;
  filter: drop-shadow(0px 3px 6px rgba(0,0,0,0.16));
	transform: translateZ(0);
}
.btn-area a:hover{
  background: #AA3360;
}

@media (max-width:960px) {
	.btn-area {
    padding-bottom: 16vw;
    width: 87.07vw;
  }
	.btn-area a {
    height: 13.54vw;
    border-radius: 2vw;
  }
}


/* video共通設定 */
.video{
  width: 100%;
}
.video a {
  position: relative;
  line-height: 1;
  display: block;
}
/* hover */
	.video a::before {
		content: "";
		display: block;
		width: 100%;
		height: 100%;
		background: rgba(255, 255, 255, 0.1);
		position: absolute;
		top: 0;
		left: 0;
	}
	.video a:hover::before  {
		background: rgba(0, 0, 0, 0.1);
	}

.video .open{
  margin-top: -73px;
  position: absolute;
  width: 148px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  top: 50%;
}

.fancybox-bg {
	background: #000;
}
.fancybox-is-open .fancybox-bg {
	opacity: 0.6;
}
.fancybox-content {
	background-color: transparent;
}
.pop {
	padding: 0;
	display: none;
}
.pop .popClose {
	margin-bottom: 10px;
	text-align: right;
}
.pop .popClose a {
	display: inline-block;
	color: #fff;
}

.movieBox{
	width: 560px;
	aspect-ratio: 16 / 9;
}
.movieBox iframe{
  width: 100%;
  height: 100%;
}

.videoList{
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 0 84px;
}
.videoList li{
	padding-bottom: 48px;
	margin-bottom: 48px;
	position: relative;
}
.videoList li::after{
	content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-size: 6px 3px;
  background-repeat: repeat-x;
  background-image: url(../img/common/circle01.svg);
}

.videoList li .shop__info a:hover,
.videoList li .text a:hover{
	opacity: 0.7;
}
.videoList li .shop__info a:hover,
.videoList li .shop__info a:hover span,
.videoList li .text a:hover{
	text-decoration: underline;
}
.videoList:last-of-type::after {
	content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-size: 6px 3px;
  background-repeat: repeat-x;
  background-image: url(../img/common/circle01.svg);
}
@media (min-width:961px) {
	.videoList:last-of-type li::after {
		content: none;
	}
	.videoList:last-of-type li{
		margin-bottom: 0;
	}
}

.videoList li p.title{
	font-weight: bold;
	font-size: 2.4rem;
	letter-spacing: 0.05em;
	line-height: 1.25;
	margin-bottom: 15px;
}

.videoList li h3{
	margin-bottom: 30px;
}
.videoList li dl {
	margin-top: 15px;
	position: relative;
	line-height: 1.33;
	font-weight: normal;
	display: grid;
	grid-template-columns: 104px 1fr;
}
.videoList li dl::before {
	position: absolute;
	width: 2px;
	left: 102px;
	top: 5px;
	bottom: 0;
	background-color: #707070;
	content: "";
}
.videoList li dt:first-of-type {
	margin-top: 2px;
}
.videoList li dt {
	padding: 0 0 0 16px;
	background-size: 12px 12px;
  letter-spacing: 0.08em;
	position: relative;
	font-weight: normal;
}
.videoList li dt::before {
	content: "";
	display: block;
	position: absolute;
	width: 13px;
	height: 13px;
	top: 4px;
	left: 0;
	background: #C45C83;
}
.videoList li dd {
	padding: 0 0 0 20px;
	letter-spacing: 0;
	line-height: 1.5;
}
.videoList li dd a {
	display: block;
}
.videoList li dd:not(:nth-of-type(2)) a ,
.videoList li dd a span {
	color: #1966A6;
	text-decoration: underline;
}
.videoList li dd a span {
	display: inline-block;
}
.videoList li .text{
	margin-top: 13px;
	line-height: 1.5;
	letter-spacing: 0;
	font-weight: normal;
	text-align: justify;

	line-break: strict;
	overflow-wrap: break-word;
	word-wrap: break-word;
}

.movie .video{
  width: 606px;
  margin: 0 auto;
	padding: 28.88px 0;
}

.background{
  background-image: url(../img/common/body_bg.jpg);
	background-repeat: repeat-y;
	background-position: top center;
	background-size: contain;
}

/* past */
.past .videoList li h3{
	margin-bottom: 20px;
}
.sec_title_shadow{
	filter: drop-shadow(0px 3px 6px rgba(0,0,0,0.16));
	transform: translateZ(0);
}
.sec_title{
  width: 100%;
  height: 216px;
  display: flex;
  justify-content: center;
  align-items: center;
	clip-path: inset(0 50%);
	transition: 1s;
}
.sec_title.on{
	clip-path: inset(0 0);
}
.past .past__movie{
  position: relative;
  margin-bottom: 80px;
}
.past .past__movie .movie{
	padding-bottom: 134px;
	padding-top: 134px;
}
.past .past__movie .fukidashi,
.past .past__movie .headlineBox .chara{
  position: absolute;
}
.past .past__movie .fukidashi,
.past__movie .fukidashi img{
	transition: 0.3s;
}
.past .past__movie .headlineBox .chara{
	overflow: hidden;
}
.past .past__movie .headlineBox .headline{
  width: 100%;
  height: 65px;
  text-align: center;
  padding: 9px 0 8px;
  border-radius: 10px;
  position: relative;
  z-index: 10;
  background: url(../img/common/movie_headline_back.svg)no-repeat top center / cover;
}
.past .past__movie .video:hover {
	transition: 0.3s;
}
.past .past__movie .video:hover ~ .fukidashi{
	transform: scale(1.1);
}

@media (max-width:960px) {
	.background{
		background-image: url(../img/common/sp_body_bg.jpg);
	}
	.movie .video{
		width: 66.67vw;
		padding: 3.18vw 0;
	}
	.video .open{
		width: 22.8vw;
		margin-top: -8vw;
	}
	.pop {
    padding: 70px 20px 20px;
    box-sizing: border-box;
    width: 100%;
	}
	.pop .popInner{
		margin-bottom: 33px;
	}
	.movieBox{
		width: 100%;
	}
	.videoList{
			display: block;
			/* width: 66.67vw; */
			width: 86.67vw;
			margin: 0 auto;
	}
	.videoList li h3{
		margin-bottom: 4.53vw;
	}
	.videoList li img{
		width: 100%;
	}
	.videoList li dl{
		grid-template-columns: 22vw 1fr;
		margin-top: 2.53vw;
	}
	.videoList li dt {
    padding: 0 0 0 3.73vw;
		letter-spacing: 0;
		margin-top: 0.3vw;
	}
	.videoList li dt::before {
    width: 2.8vw;
    height: 2.8vw;
    top: 0.8vw;
    left: 0;
	}
	.videoList li dd{
		padding-left: 3.2vw;
	}
	.videoList li dl::before {
    width: 0.27vw;
    left: 22vw;
    top: 1vw;
	}
	.videoList li .text{
		margin-top: 2.03vw;
		line-height: inherit;
	}
	.videoList li{
		padding-bottom: 7vw;
    margin-bottom: 7vw;
		font-size: 3.73vw;
	}
	.videoList li::after,
	.videoList:last-of-type::after{
		height: 0.4vw;
		background-size: 0.8vw 0.4vw;
	}
	.videoList:last-of-type li:last-of-type{
		margin-bottom: 0;
	}
	.videoList:last-of-type::after{
		content: none;
	}
	.videoList li dd a {
		color: #1966A6;
		text-decoration: underline;
	}
	.sec_title{
		height: 21.33vw;
	}
	.sec_title_shadow{
    filter: drop-shadow(0 0.4vw 0.8vw rgba(0,0,0,0.16));
	}
	.past .past__movie .movie{
		padding: 10.6vw 0;
	}
	.past .past__movie .headlineBox {
		width: 86.8vw;
		margin: 0 auto;
	}
	.past .past__movie .headlineBox .headline {
		height: 8.67vw;
    padding: 1.07vw 0;
    border-radius: 1.33vw;
    background: url(../img/common/movie_headline_back.svg)no-repeat top center / cover;
	}
	.past .past__movie .headlineBox .headline img{
		width: 37.18vw;
	}
	.videoList li p.title{
		/* font-size: 5.2vw;  */
		font-size: 4.8vw; 
		margin-bottom: 2.13vw;
		letter-spacing: 0.02em;
  }
	.past .past__movie {
    margin-bottom: 6.67vw;
	}
	.past .videoList li h3{
		margin-bottom: 3.33vw;
	}
	.past .past__movie .video .open{
		width: 16.27vw;
	}
}


#page-top{
	display: none;
}
@media (max-width:960px) {

	#page-top{
		display: block;
		position: fixed;
		bottom: 14.67vw;
		right: 6vw;
		width: 13.33vw;
		height: 13.33vw;
    filter: drop-shadow(0 0.4vw 0.8vw rgba(0,0,0,0.3));
		transform: translateY(30vw) translateZ(0);
		transition: 0.3s ease-in;
		z-index: 999;
	}

	#page-top.up-move {
		transform: translateY(0) translateZ(0);
	}
	#page-top.stop-move {
		position: absolute;
		top: 6.67vw;
	}

}