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

/* PC用設定 */
@media screen and (min-width:751px) { 
	
}

/* ------------------------------------------------------------
共通
------------------------------------------------------------ */
:root {
	--text-color: #333333;
	--primary-color: #E3007F;
	--accent-color: #A897D8;
	--red-color: #EE0000;
	--font-serif: "Zen Old Mincho", serif;
	--font-eb-garamond: "EB Garamond", serif;
}
.main__wrap{
	padding-top: 66px;
	background-color: #fff;
	background: url(../img/bg01.svg);
	color: var(--text-color);
	line-height: 1.5;
	font-size: 14px;
	font-family:'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Arial", "Verdana", "sans-serif";
	font-weight: 400;
}
.main__wrap *{box-sizing: border-box;}
img{
	display: block;
	width: 100%;
	height: auto;
}
figure {
	margin: 0 auto;
  width: 100%;
}
figcaption .caption {
	margin-left: auto;
  margin-right: 0;
  width: fit-content;
	font-size: 12px;
}

a:hover img {opacity: 1;}

.container{
	width: 92%;
	margin: 0 auto;
	max-width: 650px;
}
.container02{
	width: 92%;
	margin: 0 auto;
	max-width: 750px;
}
.indent li,.txt-note.indent{
	padding-left: 1em;
  text-indent: -1em;
}
.fc-red{color: var(--red-color);}
.txt-link{
	color: #73839E;
	text-decoration: underline;
	font-weight:bold;
}
.txt-note{font-size: 12px;}
.note__list{
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.note__list li{
	font-size: 12px;
	color: #B3B3B3;
}

.note__list li.fc-red{color: var(--red-color);}

.center {text-align: center;}
.right {text-align: right;}
.left {text-align: left;}
.bold {font-weight: bold;}

.mgbS{margin-bottom: 8px;}
.mgbM{margin-bottom: 16px;}
.mgbL{margin-bottom: 24px;}

.mgtS{margin-top: 8px;}
.mgtM{margin-top: 16px;}
.mgtL{margin-top: 24px;}

.pdtS{padding-top: 8px;}
.pdtM{padding-top: 16px;}
.pdtL{padding-top: 24px;}

.pdbM{padding-bottom: 16px;}

.credit{
	font-size: 12px;
	padding-top: 8px;
	text-align: center;
}

/* PC用設定 */
@media screen and (min-width:751px) { 
	a img{transition: all 0.5s;}
	.main__wrap{padding-top: 90px;}
	.pc_center {text-align: center;}

	.mgbM{margin-bottom: 24px;}
	.mgbL{margin-bottom: 32px;}

	.mgtM{margin-top: 24px;}
	.mgtL{margin-top: 32px;}

	.pdtM{padding-top: 24px;}
	.pdtL{padding-top: 32px;}

	.pdbM{padding-bottom: 24px;}

}


/* ------------------------------------------------------------
アコーディオン
------------------------------------------------------------ */
.acc__body {display: none;}
.acc__btn {
	font-weight: bold;
  width: fit-content;
  margin: 0 auto;
  color: #000;
	background-color: #fff;
  position: relative;
  padding: 6px 56px 6px 28px;
	border-radius: 20px;
	cursor: pointer;
	transition: all 0.3s;
}
.acc__btn span {
	position: absolute;
	background-color: #000;
	height: 20px;
	width: 20px;
	border-radius: 100%;
	right: 25px;
	top: 50%;
	transform: translateY(-50%);
}
.acc__btn span::before,
.acc__btn span::after {
	content: "";
	background-color: #fff;
	position: absolute;
	width: 12px;
	height: 2px;
	transform: translate(-50%,-50%);
	top: 50%;
	left: 50%;
	transition: transform 0.3s;
}
.acc__btn span::before {transform: translate(-50%,-50%) rotate(90deg);}
.acc__btn.open span::before {transform: translate(-50%,-50%);}
.acc__body{
	margin-top: 16px;
	/* background-color: #fff; */
	color: #fff;
	/* padding: 12px; */
}

/* PC用設定 */
@media screen and (min-width:751px) {
}


/* ------------------------------------------------------------
voice-btn
------------------------------------------------------------ */
.voice-btn__block{
	margin-bottom: 16px;
}
a.voice-btn{display: block;}
.voice-btn{position: relative;}

/* PC用設定 */
@media screen and (min-width:751px) { 
	.voice-btn__outer{
		margin-bottom: 8px;
		padding: 8px;
	}
	.voice-btn__pc{
		background-color: #B3B3B3;
		border: 1px solid #000000;
		padding: 16px;
	}
	.voice-btn__flex{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.voice-btn__txt{
		color: #fff;
		padding-right: 16px;
	}
	.voice-btn__txt .txt01{
		font-weight: bold;
		font-size: 20px;
		margin-bottom: 8px;
	}
	.voice-btn__img {
		background-color: #fff;
		width: 120px;
		height: 120px;
		box-sizing: border-box;
		flex-shrink: 0;
		position: relative;
	}
	
}


/* ------------------------------------------------------------
アニメーション
------------------------------------------------------------ */
/* フェードイン(初期値) */
.js__fadeUp{
	opacity: 0; /* 最初は非表示 */
	transform: translateY(15px); /* 下に30pxの位置から */
	transition: opacity .8s, transform .8s; /* 透過率と縦方向の移動を0.8秒 */
}
/* フェードイン(スクロールした後) */
.js__fadeUp.is-inview {
	opacity: 1; /* 表示領域に入ったら表示 */
	transform: translateY(0); /* 30px上に移動する */
	/* transition-delay: .2s; */ /* フェード開始を0.3秒遅らせる */
}

/* ブラー*/
.js__blurAnime{
	opacity: 0; /* 最初は非表示 */
}
.js__blurAnime.is-inview{
	animation-name: blurAnime;
	animation-duration: 1.6s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes blurAnime{
	from {
		filter: blur(10px);
	opacity: 0;
	}

	to {
		filter: blur(0);
	opacity: 1;
	}
}

/* ストローク */
/***************************************************
 * Generated by SVG Artista on 2/25/2026, 2:36:49 PM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/
 .js__stroke01{
	opacity: 0;
 }
 .is-inview .js__stroke01{
	animation-name: animate-svg-stroke-1;
	animation-duration: 1.2s;
	animation-fill-mode: both;
	animation-timing-function:ease-in-out;
}
@keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 202px;
    stroke-dasharray: 202px;
		opacity: 0;
  }

  100% {
    stroke-dashoffset: 404px;
    stroke-dasharray: 202px;
		opacity: 1;
  }
}

.js__stroke02{
	opacity: 0;
 }

.is-inview .js__stroke02 {
  animation-name: animate-svg-stroke-2;
	animation-duration: 1.2s;
	animation-fill-mode: both;
	/* animation-delay: .3s; */
	animation-timing-function:ease-in-out;
}

@keyframes animate-svg-stroke-2 {
  0% {
    stroke-dashoffset: 202px;
    stroke-dasharray: 202px;
		opacity: 0;
  }

  100% {
    stroke-dashoffset: 404px;
    stroke-dasharray: 202px;
		opacity: 1;
  }
}




/* ------------------------------------------------------------
#mv
------------------------------------------------------------ */
.mv__block{
	background: url(../img/bg-mv_pc.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.mv__block{
		padding: 32px 0;
	}
	.mv__block h1{
		max-width: 750px;
		margin: 0 auto;
	}
}

/* ------------------------------------------------------------
#intro
------------------------------------------------------------ */
.sec__wrap{
	padding: 32px 0;
}
/* .intro__lead--group{
	padding: 20px 0;
	background: url(../img/intro-obj01.svg),url(../img/intro-obj02.svg);
	background-repeat: no-repeat;
	background-position: top left,bottom right;
} */
 .intro__lead--group{
	padding: 32px 8px;
	position: relative;
 }
 .intro__lead--obj01{
	position: absolute;
	top: 0;
	left: 0;
 }
 .intro__lead--obj02{
	position: absolute;
	bottom: 0;
	right: 0;
 }
.intro__lead{
	font-family:var(--font-serif);
	font-weight: 600;
	text-align: center;
	font-size: 18px;
	line-height: 1.7;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.sec__wrap{
		padding: 64px 0;
	}
	.intro__lead--group {
    background-size: 48px;
		padding: 30px;
}
.intro__lead{
	font-size: 20px;
}
}

/* ------------------------------------------------------------
#Point
------------------------------------------------------------ */
.point__lead{
	text-align: center;
	font-size: 16px;
	margin-bottom: 24px;
}
.cont-inner{
	padding: 0 14px;
}
#Point.sec__wrap{
	background: url(../img/bg02.png),linear-gradient(180deg,rgba(125, 188, 203, 1) 0%, rgba(213, 207, 239, 1) 100%);
}
.point__list{
	display: flex;
	flex-direction: column;
	gap: 32px;
}
.point__list--item{
	background-color: #fff;
	padding: 32px 15px 15px;
	position: relative;
	box-shadow: 0 2rem 2rem -2rem rgb(0 0 0 / 30%);
}
.point__list--wp{
	display: block;
	width: 96px;
	position: absolute;
	top:-10px;
	left: -8px;
}
.point__list--lead{
	color: var(--accent-color);
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 10px;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.point__list--item {
    padding: 40px 24px 24px;
}
.point__list--wp{
	width: 120px;
	top:-16px;
	left: -10px;
}
.point__list--lead{
	font-size: 20px;
}
.point__list--txt{
	font-size: 16px;
}
}



/* ------------------------------------------------------------
#Numazu
------------------------------------------------------------ */
.numazu__head{
	background: var(--primary-color);
	color: #fff;
	font-size: 22px;
	text-align: center;
	font-weight: 900;
	padding: 6px;
	border-radius: 4px;
	border: 1px solid #000;
	position: relative;
	margin-bottom: 24px;
}
.numazu__head::before,.numazu__head::after{
	display: block;
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #fff;
	border: 1px solid #000;
	position: absolute;
	top:50%;
	transform: translateY(-50%);
}
.numazu__head::before{
	left:8px;
}
.numazu__head::after{
	right:8px;
}
.numazu-event__list{
	display: flex;
	flex-direction: column;
	gap: 32px;
}
.numazu-event__list--head{
	color: var(--primary-color);
	font-weight: bold;
	font-size: 18px;
	text-align: center;
	position: relative;
	margin-bottom: 16px;
}
.numazu-event__list--head::before,.numazu-event__list--head::after{
	display: block;
	content: "";
	width: 7px;
	height: 26px;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top:50%;
	transform: translateY(-50%);
}
.numazu-event__list--head::before{
	background-image: url(../img/obj-head-left.svg);
	left: 0;
}
.numazu-event__list--head::after{
	background-image: url(../img/obj-head-right.svg);
	right: 0;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.numazu__head{
		font-size: 25px;
		padding: 8px;
		margin-bottom: 32px;
	}
	.numazu-event__list{
		gap: 40px;
	}
	.numazu-event__list--head{
		font-size: 20px;
	}
	.numazu-event__list--txt{
		font-size: 16px;
	}
}






/* ------------------------------------------------------------
#
------------------------------------------------------------ */
/* PC用設定 */
@media screen and (min-width:751px) { 
	
}





/* ------------------------------------------------------------
bottom
------------------------------------------------------------ */
.bottom__wrap{background-color: #fff;}
.oshitabi_btn--block{padding: 40px 30px;}
.oshitabi_btn{
	display: block;
	border: 3px solid #000000;
	color: #000000;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	padding: 15px;
	position: relative;
}
.oshitabi_btn::after{
	content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
  right: 16px;
  top: 50%;
}

/* PC用設定 */
@media screen and (min-width:751px) { 
	.oshitabi_btn--block{
		max-width: 640px;
		margin: 0 auto;
	}
	.oshitabi_btn{
		transition: all .3s;
		width: 360px;
		margin: 32px auto;
	}
	.oshitabi_btn:hover{
		background-color: #000000;
		color: #fff;
	}
	.oshitabi_btn:hover:after{
		border-top: 2px solid #fff;
  	border-right: 2px solid #fff;
	}
}

/* ------------------------------------------------------------
topへ戻るボタン
------------------------------------------------------------ */
.pagetop-btn{
  position: fixed;
  bottom: 20px;
  right: 10px;
  transition: .3s;
	width: 56px;
  z-index: 99;
  opacity: 0;/*デフォルトで非表示にする*/
}

/*このクラスが付与されると表示する*/
.pagetop-btn.active{opacity: 1;}

/*このクラスが付与されると表示する*/
.pagetop-btn.absolute{
  position: absolute;
  top: -70px;
  bottom: auto;
}

/* PC用設定 */
@media screen and (min-width:751px){
	.pagetop-btn{
		right: 24px;
	}
}

/* ------------------------------------------------------------
終了措置
SP
<a href="#" target="_blank" class="voice-btn inactive">
		<img src="img/btn_voice.png" alt="" width="345" height="">
		<p class="event-end event-end-block">終了しました</p>
</a>

PC
<div class="voice-btn__img">
		<img src="img/100x100.png" alt="二次元コード" width="100" height="100">
		<p class="event-end event-end-block">終了しました</p>
</div>
------------------------------------------------------------ */
.inactive{pointer-events: none;}
.cs{
	background-color: rgba(255, 255, 255, 0.9);
	color: var(--primary-color);
	font-weight: bold;
	text-align: center;
	padding: 6px;
}
.event-end{
	color: var(--red-color);
	background-color: rgba(255, 255, 255, 0.9);
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	border: 2px solid var(--red-color);
	padding: 6px;
}
.event-end-block{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
  justify-content: center;
}
/* .cs.event-end-block{
	width: 100%;
	height: 100%;
} */
/* PC用設定 */
@media screen and (min-width:751px){
	.cs.event-end-block{
	width: 100%;
	height: 100%;
	border-radius: 0;
}
	/* .event-end.event-end-block{
		width: 75%;
		height: 75%;
	} */
}



