@charset "utf-8";
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* 81-lxh */
/* clearfix */	
.clearfix:after {content: "";display: block;clear: both;}
/* flex */	
.flex,.flexA,.flexB,.flexC {display: flex;flex-wrap: wrap;}
.flexA {justify-content: space-around;}
.flexB {justify-content: space-between;}
.flexC {justify-content: center;}
/*------------------------------------------------------------
	common
------------------------------------------------------------*/
.content {
	margin: 0 auto;
	max-width: 70.6rem;
}
@media all and (max-width: 896px) {
	.content {
		margin: 0 1.5rem;
		max-width: inherit;
	}
}
/* headline */
.headline01 {
	margin-bottom: 1.2rem;
	text-align: center;
}
.headline01 img {
	height: 12.9rem;
}
.headline02 {
	margin: 0 -0.1rem 2.7rem -0.3rem;
	text-align: center;
}
.headline02 img {
	width: 100%;
}
@media all and (max-width: 896px) {
	.headline01 img {
		height: 9rem;
	}
	.headline02 img {
		max-width: 35rem;
	}
}


/* comPhoto */
.comPhoto {
	margin-bottom: 1.6rem;
}
.comPhoto img {
	width: 100%;
	border-radius: 1rem;
}
/* comMidTxt */
.comMidTxt {
	margin-bottom: 2.8rem;
	text-align: center;
	line-height: 1.89;
}
/* comTextList */
.comTextList {
	margin-bottom: 0.8rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem 0.5rem;	
	font-size: 2rem;
}
.comTextList dt {
	padding-left: 3rem;
	width: 9rem;
	position: relative;
}
.comTextList dt img {
	position: absolute;
	left: 0;
	top: 0.3rem;
	width: 2.4rem;
}
.comTextList dd {
	width: calc(100% - 10rem);
}
.comNotesList {
	margin-bottom: 2.7rem;
	font-weight: 400;
	line-height: 1.89;
	letter-spacing: 0.04rem;
}
@media all and (max-width: 896px) {
	.comTextList {
		font-size: 1.6rem;
		gap: 0.8rem 0;
	}
	.comTextList dt img {
		top: 0.4rem;
		width: 1.8rem;
	}
	.comTextList dt {
		width: 7rem;
		padding-left: 2.2rem;
	}
	.comTextList dd {
		width: calc(100% - 7rem);
	}
	.comNotesList {
		line-height: 1.5;
	}
	
}
/* comBtn */
.comBtn a {
	padding: 0 4.5rem 0 3rem;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	max-width: 35rem;
	height: 5.4rem;
	color: #FFF;
	border-radius: 2.7rem;
	background: #bf99db url(../img/common/icon02.png) no-repeat right 3rem center / 0.9rem;
	letter-spacing: 0.08rem;
	border: 0.2rem solid #bf99db;
}
.comBtn a:has(.sub) {
	padding: 0 1rem;	
	background-image: none !important;
}
.comBtn a:has(.sub) .sub {
	padding: 0 2rem 0 0;
	display: inline-block;
	background: url(../img/common/icon02.png) no-repeat right 0.9rem center / 0.9rem;
}
.comBtn.blue a {
	background-color: #5D98DD;
	border-color: #5D98DD;
}
.comBtn.purple a {
	background-color: #BF99DB;
	border-color: #BF99DB;
}
.comBtn.pink a {
	background-color: #FAA2D1;
	border-color: #FAA2D1;
}
.comBtn.accordion a {
	padding: 0 1rem;	
	background-image: none !important;
}
.comBtn.accordion a span {
	padding-right: 1.7rem;
	position: relative;	
}
.comBtn.accordion a span::after {
	margin-top: -0.3rem;
	width: 1.5rem;
	height: 0.9rem;
	position: absolute;
	right: -0.8rem;
	top: 50%;
	content: '';
	background: url(../img/common/icon01.png) no-repeat right center / 100%;
	transition: 0.3s;
}
.comBtn.accordion.on a {
	max-width: 100%;
}
.comBtn.accordion.on a span::after {
	transform: rotate(180deg);	
}
.accordionBox {
	position: relative;
	z-index: 20;
}
.accordionBox .comBtn {
	position: relative;
	z-index: 2;
}
.accordionBox .inner {
	padding: 8.3rem 3.8rem 3rem;
	width: 100%;
	display: none;
	position: absolute;
	left: 0;
	top: 0;
	background-color: #FFF;
	border: 0.2rem solid #BF99DB;
	border-radius: 3rem;
}
.accordionBox table {
	width: 100%;
	border-collapse: collapse;
}
.accordionBox table th,
.accordionBox table td {
	padding: 0.7rem 1rem;
	font-weight: 400;
	font-size: 1.6rem;
	letter-spacing: 0.1rem;
	border-bottom: 0.2rem solid #BF99DB;
	border-top: 0.2rem solid #BF99DB;
}
.accordionBox table th {
    width: 16rem;
    border-right: 0.2rem solid #BF99DB;
}
.accordionBox:has(.blue) .inner,
.accordionBox:has(.blue) .inner table th,
.accordionBox:has(.blue) .inner table td {
	border-color: #5D98DD;
}
@media all and (min-width: 897px) {
	.comBtn a:hover {
		color: #bf99db;
		background-color: #FFF;
		background-image: url(../img/common/icon02_purple.png);
	}
	.comBtn.accordion a:hover {
		color: #FFF;
		background-color: #bf99db;
	}
	.comBtn.accordion.blue a:hover {
		color: #FFF;
		background-color: #5D98DD;
	}
	.comBtn.blue a:hover {
		color: #5D98DD;
		background-image: url(../img/common/icon02_purple.png);
	}
	.comBtn a:has(.sub):hover .sub {
		background-image: url(../img/common/icon02_purple.png);
	}
	.comBtn.purple a:hover {
		color: #BF99DB;
	}
	.comBtn.pink a:hover {
		color: #FAA2D1;
	}
	.comBtn.pink a:has(.sub):hover .sub {
		background-image: url(../img/common/icon02_pink.png);
	}
}
@media all and (max-width: 896px) {
	.comBtn.accordion a span::after {
		width: 1.3rem;
  		height: 0.7rem;
	}
	.comBtn a:has(.sub) .sub {
		background-size: 0.6rem auto;
	}
	.accordionBox .inner {
		padding: 8.3rem 1.2rem 3rem;
	}
	.accordionBox table th,
	.accordionBox table td {
		padding: 0.7rem 1rem;
		font-size: 1.3rem;
		letter-spacing: 0;
	}
	.accordionBox table th {
		width: 13rem;
	}
}

/* comBg */
.comBg {
	padding: 4.1rem 0 14.7rem;
	position: relative;
	background-color: #FFEDF6;
}
.comBg .content {
	position: relative;
	z-index: 1;
}
.comBg::before {
	width: 100%;
	height: 40rem;
	position: absolute;
	left: 0;
	top: -34.5rem;
	content: '';
	background: url(../img/index/bg04.png) no-repeat top center / 100%;
}
.comBg.bgBlue {
	background-color: #CFEDFF;
}
.comBg.bgBlue::before {
	background-image: url(../img/index/bg02.png);
}
.comBg.bgWhite {
	background-color: #FFF;
}
.comBg.bgWhite::before {
	background-image: url(../img/index/bg03.png);
}
@media all and (max-width: 896px) {
	.comBg {
		padding: 4rem 0 10rem;
	}
	.comBg::before {
		top: -45vw;
		height: 50vw;
	}
}

/* headLine03 */
.headLine03 {
	margin-bottom: 3.1rem;
	padding: 3.1rem 0 3.4rem;
	color: #3259A3;
	font-size: 2.2rem;
	position: relative;
	z-index: 10;
	text-align: center;
	letter-spacing: 0.08em;
}
.headLine03::after {
	content: '';
	position: absolute;
	left: 0;
	top: 1.2rem;
	bottom: 1.2rem;
	width: 100%;
	background: url(../img/common/title_bg02.png) repeat-y left top / 100% auto;
	z-index: -2;
}
.headLine03::before {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: url("../img/common/title_bg01.png") no-repeat left top,url("../img/common/title_bg01.png") no-repeat left bottom;
	background-size: 100% auto;
	content: "";
	z-index: 5;
}
@media all and (max-width: 896px) {
	.headLine03 {
		margin: 3.1rem auto 3.1rem;
		max-width: 34.5rem;
		padding: 2.4rem 0 2.8rem;
		font-size: 1.8rem;
	}
	.headLine03::after {
		top: 6%;
		bottom: 6%;
	}
}

/* headLine04 */
.headLine04 {
	padding: 1.1rem 0;
	font-size: 2.4rem;
	margin: 0 auto 2.1rem;
	max-width: 57.2rem
}
.headLine04::before {
	display: none;
}
.headLine04::after {
	top: 0;
	bottom: 0;
}
@media all and (max-width: 896px) {
	.headLine04 {
		font-size: 1.8rem;
	}
}


/* pop */
body.popFix {
	touch-action: none;
	overscroll-behavior: none;
}
.pop {
	width: 70.6rem;
	margin: 0 auto;
	padding: 6rem 0;
}
.pop .popBox {
	padding: 3.5rem 3.9rem 7rem;
	background-color: #fff;
	border-radius: 1rem;
	min-height: 60.5rem;
}
.pop .close {
	width: 11.1rem;
	margin: 3rem auto 0;
	cursor: pointer;
	transition: .3s;
}
.pop .close:hover {
	opacity: 0.7;
}
.pop#pop02 {
	width: 50rem;
}
.pop .popSub {
	padding: 2.6rem 2.5rem 2.2rem;
	background-color: #FCFCFC;
	border-radius: 1rem;
}
.pop .popSub .pho {
	margin-bottom: 1.2rem;
	width: auto;
}
.pop .popSub .pho img {
	width: 100%;
	border-radius: 1rem;
}
.pop .popSub .ttl {
	margin-bottom: 0.7rem;
	font-weight: 700;
	font-size: 2rem;
	letter-spacing: 0.02em;
}
.pop .popSub p {
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 1.625;
}
.mfp-bg {
	background: rgb(183, 183, 183) !important;
	opacity: 1 !important;
	mix-blend-mode: multiply;
}
.mfp-container {
	overflow-y: auto;
}
@media all and (max-width: 896px) {
	.pop {
		width: auto !important;
	}
	.pop .popBox {
		padding: 3rem 1.5rem;
	}
	.pop .pho {
		width: auto;
	}
	.pop .close {
		margin: 2rem auto 0;
	}
	.pop#pop02 {
		width: auto;
	}
	.pop .popSub {
		padding: 2rem;
	}
	.pop .popSub .ttl {
		font-size: 1.8rem;
	}
	.pop .popSub p {
		font-size: 1.4rem;
	}
}


/*------------------------------------------------------------
	scheduleBox BLUE
------------------------------------------------------------*/
.scheduleBox {
	position: relative;
	min-height: 5.4rem;
    margin-top: 1rem;
}
.scheduleBox .sub {
	padding: 0 4.5rem;
	border-radius: 3rem;
	background-color: #fff;
    transition: all 0.3s;
	transform-origin: top center;
	border: 0 solid #76D0FF;
	max-height: 0;
	overflow: hidden;
}
.scheduleBox .sub.show {
	padding: 8.4rem 3.8rem 3.4rem;
    transition: all 1.5s;
	max-height: 100rem;
	border: 0.2rem solid #76D0FF;
}
.scheduleBox h3 {
    margin: 0 auto;
    padding: 1.1rem 0.5rem 1.1rem 1.5rem;
    width: 57rem;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #FFF;
    letter-spacing: 0.05em;
    background-color: #76D0FF;
    border-radius: 2.7rem;
    transition: .3s;
    cursor: pointer;
    border: 0.2rem solid #76D0FF;
}
.scheduleBox h3 span {
	padding-right: 2.5rem;
	position: relative;
}
.scheduleBox h3 span::after {
	width: 1.5rem;
	height: 0.9rem;
	position: absolute;
	z-index: 1;
	top: 1rem;
	right: 0;
	content: "";
	background: url(../img/icon07.png) no-repeat left center / 100%;
}
.scheduleBox table {
	width: 100%;
	border-collapse: collapse;
}
.scheduleBox table th,
.scheduleBox table td {
	padding: 0 1rem;
	text-align: left;
	font-size: 1.6rem;
	font-weight: 400;

	letter-spacing: 0.05em;
	line-height: 2.35;
	border-top: 0.2rem solid #76D0FF;
	vertical-align: top;
	word-break: break-all;
}
.scheduleBox table th {
	width: 26%;
	border-right: 0.2rem solid #76D0FF;
}
.scheduleBox table tr:last-child th,
.scheduleBox table tr:last-child td {
	border-bottom: 0.2rem solid #76D0FF;
}
.scheduleBox h3.on {
	width: 100%;
	color: #fff;
	border-color: #76D0FF;
	background-color: #76D0FF;
}
.scheduleBox h3.on span::after {
	background-image: url(../img/icon09_on.png)
}
@media all and (max-width: 896px) {
	.scheduleBox {
		min-height: 4.8rem;
	}
	.scheduleBox .sub {
		padding: 0 1.5rem;
	}
	.scheduleBox .sub.show {
		padding: 7rem 1.5rem 2rem;
	}
	.scheduleBox h3 {
		width: 30rem;
	}
	.scheduleBox h3 span::after {
		width: 1.3rem;
		top: 0.7rem;
	}
	.scheduleBox table th,
	.scheduleBox table td {
		padding: 0.5rem;
		font-size: 1.4rem;
		line-height: 1.5;
	}
	.scheduleBox table th {
		width: 30%;
	}
}

/*------------------------------------------------------------
	scheduleBox PURPLE
------------------------------------------------------------*/
.scheduleBox02 {
	position: relative;
	min-height: 5.4rem;
    margin-top: 1rem;
}
.scheduleBox02 .sub {
	padding: 0 4.5rem;
	border-radius: 3rem;
	background-color: #fff;
    transition: all 0.3s;
	transform-origin: top center;
	border: 0 solid #BF99DB;
	max-height: 0;
	overflow: hidden;
}
.scheduleBox02 .sub.show {
	padding: 8.4rem 3.8rem 3.4rem;
    transition: all 1.5s;
	max-height: 100rem;
	border: 0.2rem solid #BF99DB;
}
.scheduleBox02 h3 {
    margin: 0 auto;
    padding: 1.1rem 0.5rem 1.1rem 1.5rem;
    width: 57rem;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #FFF;
    letter-spacing: 0.05em;
    background-color: #BF99DB;
    border-radius: 2.7rem;
    transition: .3s;
    cursor: pointer;
    border: 0.2rem solid #BF99DB;
}
.scheduleBox02 h3 span {
	padding-right: 2.5rem;
	position: relative;
}
.scheduleBox02 h3 span::after {
	width: 1.5rem;
	height: 0.9rem;
	position: absolute;
	z-index: 1;
	top: 1rem;
	right: 0;
	content: "";
	background: url(../img/icon07.png) no-repeat left center / 100%;
}
.scheduleBox02 table {
	width: 100%;
	border-collapse: collapse;
}
.scheduleBox02 table th,
.scheduleBox02 table td {
	padding: 0 1rem;
	text-align: left;
	font-size: 1.6rem;
	font-weight: 400;

	letter-spacing: 0.05em;
	line-height: 2.35;
	border-top: 0.2rem solid #BF99DB;
	vertical-align: top;
	word-break: break-all;
}
.scheduleBox02 table th {
	width: 26%;
	border-right: 0.2rem solid #BF99DB;
}
.scheduleBox02 table tr:last-child th,
.scheduleBox02 table tr:last-child td {
	border-bottom: 0.2rem solid #BF99DB;
}
.scheduleBox02 h3.on {
	width: 100%;
	color: #fff;
	border-color: #BF99DB;
	background-color: #BF99DB;
}
.scheduleBox02 h3.on span::after {
	background-image: url(../img/icon09_on.png)
}
@media all and (max-width: 896px) {
	.scheduleBox02 {
		min-height: 4.8rem;
	}
	.scheduleBox02 .sub {
		padding: 0 1.5rem;
	}
	.scheduleBox02 .sub.show {
		padding: 7rem 1.5rem 2rem;
	}
	.scheduleBox02 h3 {
		width: 30rem;
	}
	.scheduleBox02 h3 span::after {
		width: 1.3rem;
		top: 0.7rem;
	}
	.scheduleBox02 table th,
	.scheduleBox02 table td {
		padding: 0.5rem;
		font-size: 1.4rem;
		line-height: 1.5;
	}
	.scheduleBox02 table th {
		width: 30%;
	}
}


.pop {
	width: 70.6rem;
	margin: 0 auto;
	padding: 6rem 0;
}
.pop .popBox {
	padding: 3.5rem 3.9rem 7rem;
	background-color: #fff;
	border-radius: 1rem;
}
.pop .popTtl {
	margin-bottom: 2rem;
	color: #872FA2;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.41;
	text-align: center;
	background: url(../img/pop_ttl_bg.png) no-repeat center center;
	background-size: auto 2.1rem;
}
.pop .topText {
	margin-bottom: 1.7rem;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.7;
}
.pop .popTitle {
	margin: 0 0 1.3rem -0.9rem;
	color: #872FA2;
	font-size: 2.0rem;
	font-weight: 700;
	overflow: hidden;
}
.pop .popTitle span {
	width: fit-content;
	display: block;
	position: relative;
}
.pop .popTitle span::before {
	position: absolute;
	left: 100%;
	top: 54%;
	width: 1000rem;
	height: 0.2rem;
	background-color: #872FA2;
	content: "";
}
.pop .textList {
	margin-bottom: 3.6rem;
}
.pop .textList li:not(:last-child) {
	margin-bottom: 2.5rem;
}
.pop .textList p {
	line-height: 1.33;
    padding-left: 1em;
    text-indent: -1em;
    margin-bottom: 10px;
}
.pop .textList p .sml {
	margin-top: -0.5rem;
	display: block;
	color: #D30101;
}
.pop .textList .ttl {
	margin-bottom: 1.7rem;
	color: #872FA2;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.4;
}
.pop .pho {
	width: 44rem;
	margin: 0 auto;
	overflow: hidden;
	border-radius: 1rem;
}
.pop .pho img {
	width: 100%;
}
.pop .close {
	width: 11.1rem;
	margin: 3rem auto 0;
	cursor: pointer;
	transition: .3s;
}
.pop .close:hover {
	opacity: 0.7;
}
.pop .popBox02 .topText {
	margin-bottom: 0.8rem;
}
.pop .popBox02 .time {
	margin: -1rem 0 2.6rem;
	color: #872FA2;
	font-size: 2rem;
	font-weight: 700;
}
.pop .popBox02 .txt {
	margin: -0.8rem 0 1.1rem;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.4;
}
.pop .textUl {
	margin-bottom: 5.2rem;
}
.pop .textUl li:not(:last-child) {
	margin-bottom: 3.2rem;
}
.pop .textUl .ttl {
	margin-bottom: 0.8rem;
	padding: 0.4rem 0.8rem 0.7rem;
	font-size: 2rem;
	font-weight: 700;
	color: #fff;
	background-color: #872FA2;
	border-radius: 0.6rem;
} 
.pop .textUl .title {
	margin-bottom: 1rem;
	color: #872FA2;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.4;
}
.pop .textUl p + .title {
	margin-top: 1.6rem;
}
.pop .textUl p {
	line-height: 1.33;
}
.pop .btmTxt {
	margin-bottom: -1.3rem;
	text-align: center;
	font-weight: 700;
	font-size: 2rem;
	color: #872FA2;
}
.pop .btmTxt a {
	color: #872FA2;
}
.pop#pop03,
.pop#pop04, 
.pop#pop05{
	width: 55rem;
}
.pop .popSub {
	padding: 2.5rem 2.4rem 1.9rem;
	background-color: #fff;
	border: 1px solid #872FA2;
	border-radius: 1rem;
}
.pop .popSub .pho {
	margin-bottom: 1rem;
	width: auto;
}
.pop .popSub .ttl {
	margin-bottom: 0.3rem;
	font-weight: 700;
	font-size: 2.2rem;
	color: #872FA2;
	letter-spacing: 0.02em;
}
.pop .popSub p {
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 1.625;
}


.snow {
  /*雪の色*/
  color: snow;
  /*雪の大きさ*/
  font-size: 13px;
  /*初期位置*/
  position: fixed;
  top: -5%;
  /*雪を適当な幅で降らせる*/
  text-shadow:
  5vw   -100px 2px,
  10vw  -400px 3px,
  20vw  -500px 4px,
  30vw  -580px 1px,
  39vw  -250px 2px,
  42vw  -340px 5px,
  56vw  -150px 2px,
  63vw  -180px 0,
  78vw  -220px 4px,
  86vw  -320px 9px,
  94vw  -170px 70px;
  /*雪アニメーション1*/
  animation: roll 20s linear infinite;
	z-index: 100;
}
  /*2つめの雪アニメーション*/
.snow2nd{animation: anim 15s linear infinite;}

@keyframes roll {
    0% {transform:rotate(0deg);}
   90% {opacity:1;}
   100% {transform:rotate(20deg);top:100%;opacity:0;}
}
@keyframes anim {
  100% {color:transparent;top:150%;}
}



.yt_wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.yt_wrap iframe {
  width: 100%;
  height: 100%;
}
