/*__________________________________________________

  TOP背景
  __________________________________________________*/

.bg-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 1;
}

.bg-layer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: bottom;
	background-repeat: no-repeat;
}

.bg-morning {
	background-image: url('../../../assets/images/sun.webp');
	opacity: 1;
}

.bg-evening {
	background-image: url('../../../assets/images/sunset.webp');
	opacity: 0;
}

#about {
	scroll-margin-top: 100px;
}

/*__________________________________________________

  hero
  __________________________________________________*/

.top-hero-wrapper {
	position: relative;
	width: 100%;
	z-index: 3;
}

.hero-logo-area {
	position: relative;
	width: 100%;
	height: auto;
	overflow: visible;
	padding-bottom: 0;
}

.hero-key-visual {
	width: 100%;
	/* max-width: 1400px; */
	margin: 0 auto;
	position: relative;
	z-index: 5;
}

.hero-key-visual img {
	width: 100%;
	height: auto;
	display: block;
}

.water-section {
	position: relative;
	width: 100%;
	/* border: 5px solid #ffffff; */
	overflow: hidden;
	z-index: 2;
}

.water-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	pointer-events: none;
	filter: url(#water-wave);
	transform: scale(1.05);
}

.bounce-container {
	/* animation: moveX 2.2s cubic-bezier(0.215, 0.610, 0.355, 1.000) forwards; */
	position: relative;
	margin-top: 35px;
	width: 100%;
	display: flex;
	justify-content: center;
	z-index: 999;
}

.bounce-img-wrap {
	display: block;
	transform-origin: bottom center;
	/* animation: moveY 2.2s linear forwards; */
	/* animation-delay: 0.5s;
	animation-fill-mode: backwards; */
}

.loaded .bounce-img-wrap {
  animation: moveY 2s ease-out forwards;
  animation-delay: 0.2s; 
}

.bounce-img {
	width: 180px;
	height: auto;
	border-radius: 50%;
	box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
	display: block;
	/* animation: rotateBall 2.2s cubic-bezier(0.215, 0.610, 0.355, 1.000) forwards; */
}

/* --------------------------------------------------
  ローダー完了後
-------------------------------------------------- */
body.is-loaded .bounce-container {
	animation: moveX 2.2s cubic-bezier(0.215, 0.610, 0.355, 1.000) forwards;
}

body.is-loaded .bounce-img-wrap {
	animation: moveY 2.2s linear forwards;
}

body.is-loaded .bounce-img {
	animation: rotateBall 2.2s cubic-bezier(0.215, 0.610, 0.355, 1.000) forwards;
}

.hero-content {
	position: relative;
	z-index: 11;
	width: 100%;
	margin-top: 30px;
	margin-bottom: 160px;
	text-align: center;
}

@media (max-width: 768px) {
	.bounce-img {
		width: 30vw;
	}

	.hero-content {
		position: relative;
		z-index: 11;
		width: 100%;
		margin-top: 30px;
		margin-bottom: 80px;
		text-align: center;
	}
}

@keyframes moveX {
	0% {
		transform: translateX(-120vw);
	}

	100% {
		transform: translateX(0);
	}
}

@keyframes rotateBall {
	0% {
		transform: rotate(-540deg);
	}

	100% {
		transform: rotate(0deg);
	}
}

@keyframes moveY {
	0% {
		transform: translateY(-400px) scale(1, 1);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}

	30% {
		transform: translateY(0) scale(1, 1);
		animation-timing-function: ease-out;
	}

	33% {
		transform: translateY(0) scale(1.3, 0.7);
		animation-timing-function: ease-in;
	}

	36% {
		transform: translateY(0) scale(1, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	55% {
		transform: translateY(-160px) scale(0.95, 1.05);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}

	74% {
		transform: translateY(0) scale(1, 1);
		animation-timing-function: ease-out;
	}

	76% {
		transform: translateY(0) scale(1.15, 0.85);
		animation-timing-function: ease-in;
	}

	78% {
		transform: translateY(0) scale(1, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	88% {
		transform: translateY(-40px) scale(0.98, 1.02);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}

	98% {
		transform: translateY(0) scale(1, 1);
		animation-timing-function: ease-out;
	}

	100% {
		transform: translateY(0) scale(1, 1);
	}
}

@media (min-width:2000px) {
	@keyframes moveY {
	0% {
		transform: translateY(-800px) scale(1, 1);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}

	30% {
		transform: translateY(0) scale(1, 1);
		animation-timing-function: ease-out;
	}

	33% {
		transform: translateY(0) scale(1.3, 0.7);
		animation-timing-function: ease-in;
	}

	36% {
		transform: translateY(0) scale(1, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	55% {
		transform: translateY(-460px) scale(0.95, 1.05);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}

	74% {
		transform: translateY(0) scale(1, 1);
		animation-timing-function: ease-out;
	}

	76% {
		transform: translateY(0) scale(1.15, 0.85);
		animation-timing-function: ease-in;
	}

	78% {
		transform: translateY(0) scale(1, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	88% {
		transform: translateY(-140px) scale(0.98, 1.02);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}

	98% {
		transform: translateY(0) scale(1, 1);
		animation-timing-function: ease-out;
	}

	100% {
		transform: translateY(0) scale(1, 1);
	}
}

}

@media (min-width:3000px) {
	@keyframes moveY {
	0% {
		transform: translateY(-1200px) scale(1, 1);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}

	30% {
		transform: translateY(0) scale(1, 1);
		animation-timing-function: ease-out;
	}

	33% {
		transform: translateY(0) scale(1.3, 0.7);
		animation-timing-function: ease-in;
	}

	36% {
		transform: translateY(0) scale(1, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	55% {
		transform: translateY(-800px) scale(0.95, 1.05);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}

	74% {
		transform: translateY(0) scale(1, 1);
		animation-timing-function: ease-out;
	}

	76% {
		transform: translateY(0) scale(1.15, 0.85);
		animation-timing-function: ease-in;
	}

	78% {
		transform: translateY(0) scale(1, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	88% {
		transform: translateY(-140px) scale(0.98, 1.02);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}

	98% {
		transform: translateY(0) scale(1, 1);
		animation-timing-function: ease-out;
	}

	100% {
		transform: translateY(0) scale(1, 1);
	}
}

}


/*__________________________________________________

  INTRODUCTION
  __________________________________________________*/

.content-intro {
	max-width: 1120px;
	width: 100%;
	margin: 0 auto;
	padding: 0;
}

.content-intro h2.title {
	max-width: 100%;
	width: 50%;
	margin: 0 auto;
	padding: 0;
	text-align: center;
}

.content-intro .txt-box {
	transform: translateY(clamp(-100px, -7vw, 0px));
	position: relative;
	z-index: 1;
	top: -70px;
	width: 100%;
}

@media only screen and (max-width: 1170px) {
	.content-intro {
		max-width: 100%;
		width: 90%;
		margin: 0 auto;
	}
}

@media only screen and (max-width: 768px) {
	.content-intro {
		max-width: 100%;
		width: 90%;
		margin: 0 auto;
	}

	.content-intro h2.title {
		position: relative;
		z-index: 2;
		max-width: 100%;
		width: 70%;
		margin: 0 auto;
		padding: 0;
		text-align: center;
	}

	.content-intro .txt-box {
		position: relative;
		z-index: 1;
		top: -45px;
		width: 100%;
	}
}

/*__________________________________________________

  ABOUT
  __________________________________________________*/

.content-about {
	/* max-width: 1120px; */
	/* max-width: 980px; */
	max-width: 1000px;
	width: 100%;
	margin: 60px auto 90px auto;
	text-align: center;
}

.content-about h2.title {
	max-width: 100%;
	width: 50%;
	margin: 0 auto;
	padding: 0;
	text-align: center;
}

.bubble-box01 {
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding: 0;
}

.bubble-box01 .detail {
	position: absolute;
	z-index: 2;
	top: 35%;
	left: 10%;
	width: 47%;
	height: 100%;
}

.bubble-box01 .caution {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.bubble-box01 .caution .unit {
	position: absolute;
	z-index: 2;
	top: 57%; 
	/* top: 57%; */
	left: 60%;
}

.bubble-box01 .caution .unit p.txt01 {
	width: 70%;
	margin: 0 0 10px 0;
	color: #004980;
	font-family: "source-han-sans-jp-variable", sans-serif;
	font-variation-settings: "wght" 350;
	/* font-size: clamp(12px, 1.34cqw, 15px); */
	font-size: clamp(12px, 1.429cqw, 14px);
	/* font-size: clamp(12px, 1.229cqw, 14px); */
	/* line-height: 1.5; */
	line-height: 1.4;
	text-indent: -1em;
	padding-left: 1em;
	text-align: justify;
}

.bubble-box02 {
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding: 0;
}

.bubble-box02 .detail {
	position: absolute;
	z-index: 2;
	top: 23%;
	left: 10%;
	width: 47%;
	height: 100%;
}

.bubble-box02 .detail-sub {
	position: absolute;
	z-index: 2;
	top: 63%;
	left: 44%;
	width: 42%;
	height: 100%;
}

.bubble-box02 .detail-sub .title {
	margin: 0 0 40px -17%;
	color: #004980;
	font-family: "source-han-sans-jp-variable", sans-serif;
	font-variation-settings: "wght" 600;
	font-size: clamp(16px, 2.41cqw, 27px);
	text-align: center;
}

.bubble-box02 .caution {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.bubble-box02 .caution .unit {
	position: absolute;
	z-index: 2;
	top: 23%;
	/* top: 22%; */
	left: 63%;
}

.bubble-box02 .caution .unit p.txt01 {
	width: 77%;
	margin: 0 0 10px 0;
	color: #004980;
	font-family: "source-han-sans-jp-variable", sans-serif;
	font-variation-settings: "wght" 350;
	/* font-size: clamp(12px, 1.34cqw, 15px); */
	font-size: clamp(12px, 1.429cqw, 14px);
	;
	/* line-height: 1.5; */
	line-height: 1.4;
	text-indent: -1em;
	padding-left: 1em;
	text-align: justify;
}

.bubble-box03 {
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding: 0;
}

.bubble-box03 .detail {
	position: absolute;
	z-index: 2;
	top: 23%;
	left: 10%;
	width: 47%;
	height: 100%;
}

.bubble-box03 .caution {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.bubble-box03 .caution .unit {
	position: absolute;
	z-index: 2;
	top: 52%;
	/* top: 49%; */
	left: 61%;
}

.bubble-box03 .caution .unit p.txt01 {
	width: 72%;
	margin: 0 0 10px 0;
	color: #004980;
	font-family: "source-han-sans-jp-variable", sans-serif;
	font-variation-settings: "wght" 350;
	/* font-size: clamp(12px, 1.34cqw, 15px); */
	font-size: clamp(12px, 1.429cqw, 14px);
	/* font-size: clamp(12px, 1.229cqw, 14px); */
	/* line-height: 1.5; */
	line-height: 1.4;
	text-indent: -1em;
	padding-left: 1em;
	text-align: justify;
}

.bubble-box04 {
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding: 0;
}

.bubble-box04 .detail {
	position: absolute;
	z-index: 2;
	top: 33%;
	left: 10%;
	width: 48%;
	height: 100%;
}

.bubble-box04 .caution {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.bubble-box04 .caution .unit {
	position: absolute;
	z-index: 2;
	top: 60%;
	left: 63.5%;
}

.bubble-box04 .caution .unit p.txt01 {
	width: 70%;
	margin: 0 0 10px 0;
	color: #004980;
	font-family: "source-han-sans-jp-variable", sans-serif;
	font-variation-settings: "wght" 350;
	/* font-size: clamp(12px, 1.34cqw, 15px); */
	font-size: clamp(12px, 1.429cqw, 14px);
	;
	/* line-height: 1.5; */
	line-height: 1.4;
	text-indent: -1em;
	padding-left: 1em;
	text-align: justify;
}

.bubble-box04 .caution .unit p.txt02 {
	width: 70%;
	margin: 0 0 10px 0;
	color: #004980;
	font-family: "source-han-sans-jp-variable", sans-serif;
	font-variation-settings: "wght" 350;
	/* font-size: clamp(12px, 1.34cqw, 15px); */
	font-size: clamp(12px, 1.429cqw, 14px);
	;
	/* line-height: 1.5; */
	line-height: 1.4;
	text-align: justify;
}

.unit-period {
	display: flex;
	justify-content: flex-start;
	margin: 0 0 10px 0;
}

.unit-period .period-title {
	width: 5.4rem;
	height: 2em;
	margin: 0 15px 0 0;
	padding: 5px 0;
	background: #00b1b8;
	border-radius: 10px;
	font-family: "source-han-sans-jp-variable", sans-serif;
	font-variation-settings: "wght" 500;
	font-size: clamp(12px, 1.34cqw, 15px);
	letter-spacing: 3px;
	text-align: center;
}

.unit-period .period-box {
	flex: 1 1 0;
	min-width: 0;
	text-align: left;
}

.unit-place {
	display: flex;
	justify-content: flex-start;
	margin: 0 0 10px 0;
}

.unit-place .place-title {
	width: 5.4rem;
	height: 2em;
	margin: 0 15px 0 0;
	padding: 5px 0;
	background: #00b1b8;
	border-radius: 10px;
	font-family: "source-han-sans-jp-variable", sans-serif;
	font-variation-settings: "wght" 500;
	font-size: clamp(12px, 1.34cqw, 15px);
	letter-spacing: 3px;
	text-align: center;
	flex-shrink: 0;
}

.unit-place .place-box {
	margin: -5px 0 0 0;
	line-height: 1.5;
	text-align: left;
	flex: 1 1 0;
	min-width: 0;
}

.unit-time {
	display: flex;
	justify-content: flex-start;
	margin: 0 0 10px 0;
}

.unit-time .time-title {
	width: 5.4rem;
	height: 2em;
	margin: 0 15px 0 0;
	padding: 5px 0;
	background: #00b1b8;
	border-radius: 10px;
	font-family: "source-han-sans-jp-variable", sans-serif;
	font-variation-settings: "wght" 500;
	font-size: clamp(12px, 1.34cqw, 15px);
	letter-spacing: 3px;
	text-align: center;
}

.unit-time .time-box {
	color: #004980;
	font-family: "source-han-sans-jp-variable", sans-serif;
	font-variation-settings: "wght" 500;
	font-size: clamp(15px, 2.41cqw, 27px);
	line-height: 1;
	text-align: left;
}

.unit-price {
	display: flex;
	justify-content: flex-start;
	margin: 0 0 10px 0;
}

.unit-price .price-title {
	width: 5.4rem;
	height: 2em;
	margin: 0 15px 0 0;
	padding: 5px 0;
	background: #00b1b8;
	border-radius: 10px;
	font-family: "source-han-sans-jp-variable", sans-serif;
	font-variation-settings: "wght" 500;
	font-size: clamp(12px, 1.34cqw, 15px);
	letter-spacing: 3px;
	text-align: center;
}

.unit-price .price-box {
	color: #004980;
	font-family: "source-han-sans-jp-variable", sans-serif;
	font-variation-settings: "wght" 500;
	font-size: clamp(15px, 2.41cqw, 27px);
	line-height: 1;
	text-align: left;
}

/* 名古屋会場シャッフル抽選詳細 */
.unit-place-sub {
	display: flex;
	justify-content: flex-start;
	margin: 0 0 10px 0;
}

.unit-place-sub .place-title {
	width: 8rem;
	height: 2em;
	margin: 0 15px 0 0;
	padding: 5px 0;
	background: #00b1b8;
	border-radius: 10px;
	font-family: "source-han-sans-jp-variable", sans-serif;
	font-variation-settings: "wght" 500;
	font-size: clamp(12px, 1.34cqw, 15px);
	letter-spacing: 3px;
	text-align: center;
}

.unit-place-sub .place-box {
	color: #004980;
	font-family: "source-han-sans-jp-variable", sans-serif;
	font-variation-settings: "wght" 500;
	font-size: clamp(15px, 2.14cqw, 24px);
	line-height: 1;
	text-align: left;
}

.unit-time-sub {
	display: flex;
	justify-content: flex-start;
	margin: 0 0 10px 0;
}

.unit-time-sub .time-title {
	width: 8rem;
	height: 2em;
	margin: 0 15px 0 0;
	padding: 5px 0;
	background: #00b1b8;
	border-radius: 10px;
	font-family: "source-han-sans-jp-variable", sans-serif;
	font-variation-settings: "wght" 500;
	font-size: clamp(12px, 1.34cqw, 15px);
	letter-spacing: 3px;
	text-align: center;
}

.unit-time-sub .time-box {
	color: #004980;
	font-family: "source-han-sans-jp-variable", sans-serif;
	font-variation-settings: "wght" 500;
	font-size: clamp(15px, 2.14cqw, 24px);
	line-height: 1;
	text-align: left;
}

/* about共通 */
span.type01 {
	color: #004980;
	font-family: margin-mvb, sans-serif;
	font-weight: 800;
	font-style: normal;
	font-size: clamp(22px, 3.21cqw, 36px);
	line-height: 0.8;
}

span.type02 {
	color: #004980;
	font-family: margin-mvb, sans-serif;
	font-weight: 800;
	font-style: normal;
	font-size: clamp(31px, 4.82cqw, 54px);
	line-height: 1;
}

span.type03 {
	color: #004980;
	font-family: "source-han-sans-jp-variable", sans-serif;
	font-variation-settings: "wght" 350;
	font-size: clamp(16px, 2.14cqw, 24px);
}

span.type04 {
	color: #004980;
	font-family: "source-han-sans-jp-variable", sans-serif;
	font-variation-settings: "wght" 600;
	font-size: clamp(16px, 2.5cqw, 28px);
}

span.type05 {
	color: #004980;
	font-family: "source-han-sans-jp-variable", sans-serif;
	font-variation-settings: "wght" 600;
	font-size: clamp(16px, 2.05cqw, 23px);
}

span.type06 {
	color: #004980;
	font-family: "source-han-sans-jp-variable", sans-serif;
	font-variation-settings: "wght" 500;
	font-size: clamp(12px, 1.52cqw, 17px);
}

span.type07 {
	color: #004980;
	font-family: "source-han-sans-jp-variable", sans-serif;
	font-variation-settings: "wght" 350;
	/* font-size: clamp(12px, 1.16cqw, 13px); */
	font-size: clamp(12px, 1.282cqw, 15px); /* 12px～15px（1170pxコンテナ基準）*/
}

span.type08 {
	color: #004980;
	font-family: "source-han-sans-jp-variable", sans-serif;
	font-variation-settings: "wght" 600;
	font-size: clamp(14px, 2.14cqw, 24px);
}

span.type09 {
	color: #004980;
	font-family: "source-han-sans-jp-variable", sans-serif;
	font-variation-settings: "wght" 600;
	font-size: clamp(16px, 2.59cqw, 29px);
}

span.line {
	background: linear-gradient(transparent 70%, #ffef93 0%);
	font-feature-settings: "palt";
	padding: 3px 5px 0 5px;
	-webkit-box-decoration-break: clone;
	/* Safari用 */
	box-decoration-break: clone;
	/* 各行に装飾を適用 */
}

/* キャラクター設定 */
.character01 {
	position: relative;
	width: 100%;
	margin: 0 auto;
}

.character01 .character-box {
	position: absolute;
	z-index: 3;
	top: 23px;
	left: 62%;
	max-width: 100%;
	width: 22%;
}

.character02 {
	position: relative;
	width: 100%;
	margin: 0 auto;
}

.character02 .character-box {
	position: absolute;
	z-index: 3;
	top: -140px;
	left: 0%;
	max-width: 100%;
	width: 27%;
}

.character03 {
	position: relative;
	width: 100%;
	margin: 0 auto;
}

.character03 .character-box {
	position: absolute;
	z-index: 3;
	top: -220px;
	left: 0%;
	max-width: 100%;
	width: 25%;
}

.character04 {
	position: relative;
	width: 100%;
	margin: 0 auto;
}

.character04 .character-box {
	position: absolute;
	z-index: 3;
	top: -90px;
	left: 75%;
	max-width: 100%;
	width: 28%;
}

.character05 {
	position: relative;
	width: 100%;
	margin: 0 auto;
}

.character05 .character-box {
	position: absolute;
	z-index: 3;
	top: -42px;
	left: 49%;
	max-width: 100%;
	width: 23%;
}

.character06 {
	position: absolute;
	z-index: 3;
	left: 0;
	right: 0;
	max-width: 1120px;
	width: 100%;
	margin: 0 auto;
}

.character06 .character-box {
	position: absolute;
	z-index: 10;
	/* top: -820px; */
	top: -748px;
	left: 50px;
	max-width: 100%;
	width: 19%;
}

@media only screen and (max-width: 1170px) {
	.content-about {
		max-width: 100%;
		width: 90%;
		margin: 60px auto 90px auto;
	}

	.character06 {
		position: absolute;
		z-index: 3;
		left: 0;
		right: 0;
		max-width: 1120px;
		width: 100%;
		margin: 0 auto;
	}

	.character06 .character-box {
		position: absolute;
		z-index: 10;
		top: -750px;
		left: 50px;
		max-width: 100%;
		width: 20%;
	}
}

@media only screen and (max-width: 984px) {
	.content-about {
		max-width: 100%;
		width: 90%;
		margin: 60px auto 90px auto;
	}

	.content-about h2.title {
		max-width: 100%;
		width: 70%;
		margin: 0 auto 60px auto;
		padding: 0;
		text-align: center;
	}

	.bubble-box01-wrap {
		width: 100%;
		container-type: inline-size;
	}

	.bubble-frame01 {
		box-sizing: border-box;
		border-style: solid;
		border-width: 30.16cqw 30.16cqw 21.14cqw 1.69cqw;
		border-image-source: url("../../../assets/images/top_bubble_sp_a.svg");
		border-image-slice: 214 214 150 12;
		border-image-repeat: stretch;
		background-color: #ffffff;
		background-clip: padding-box;
		padding: 20px 12px;
	}

	.bubble-frame01 .detail {
		width: calc(100% + 29.52cqw);
		height: 100%;
	}

	.bubble-frame01 .caution {
		width: calc(100% + 29.52cqw);
		height: 100%;
	}

	.bubble-frame01 .caution .unit {
		width: 90%;
		margin: 30px auto 0 auto;
		padding: 0 12px 0 0;
	}

	.bubble-frame01 .caution .unit p.txt01 {
		width: 100%;
		margin: 0 0 10px 0;
		color: #004980;
		line-height: 1.5;
		text-indent: -1em;
		padding-left: 1em;
		font-size: clamp(0.75rem, 0.656rem + 0.4vw, 0.938rem); /* 12px-15pxで可変 */
		text-align: justify;
	}

	.bubble-frame01 .caution .unit p.txt02 {
		width: 100%;
		margin: 20px 0 10px 0;
		line-height: 1.5;
		text-align: justify;
	}

	.bubble-box02-wrap {
		width: 100%;
		container-type: inline-size;
	}

	.bubble-frame02 {
		width: 100%;
		margin: 60px 0 0 0;
	}

	.bubble-frame02-upper {
		box-sizing: border-box;
		border-style: solid;
		border-width: 40.59cqw 27.29cqw 9.10cqw 1.68cqw;
		border-image-source: url("../../../assets/images/top_bubble_sp_b_upper_fixed.svg");
		border-image-slice: 290 195 65 12;
		border-image-repeat: stretch;
		background-color: #ffffff;
		background-clip: padding-box;
		padding: 20px 12px;
	}

	.bubble-frame02-lower {
		box-sizing: border-box;
		border-style: solid;
		border-width: 9.24cqw 27.29cqw 2.52cqw 1.68cqw;
		border-image-source: url("../../../assets/images/top_bubble_sp_b_lower_fixed.svg");
		border-image-slice: 66 195 18 12;
		border-image-repeat: stretch;
		background-color: #ffffff;
		background-clip: padding-box;
		padding: 20px 12px;
	}

	.bubble-frame02-upper .detail,
	.bubble-frame02-upper .caution {
		width: calc(100% + 26.15cqw);
	}

	.bubble-frame02-lower .detail-sub {
		width: calc(100% + 19.47cqw);
	}

	.bubble-frame02-lower .detail-sub .title {
		color: #004980;
		margin: 0 auto 20px auto;
		color: #004980;
		font-family: "source-han-sans-jp-variable", sans-serif;
		font-variation-settings: "wght" 600;
		font-size: clamp(1rem, 0.65rem + 1.48vw, 1.69rem); /* 16px-27pxで可変 */
		text-align: center;
	}

	.bubble-frame02-upper .caution .unit {
		width: 90%;
		margin: 30px auto 0 auto;
		padding: 0 12px 0 0;
	}

	.bubble-frame02-upper .caution .unit p.txt01 {
		width: 100%;
		margin: 0 0 10px 0;
		color: #004980;
		font-size: clamp(0.75rem, 0.656rem + 0.4vw, 0.938rem); /* 12px-15pxで可変 */
		line-height: 1.5;
		text-indent: -1em;
		padding-left: 1em;
		text-align: justify;
	}

	.bubble-box03-wrap {
		width: 100%;
		margin: 60px 0 0 0;
		container-type: inline-size;
	}

	.bubble-frame03 {
		box-sizing: border-box;
		border-style: solid;
		border-width: 30.16cqw 30.16cqw 21.14cqw 1.69cqw;
		border-image-source: url("../../../assets/images/top_bubble_sp_c.svg");
		border-image-slice: 214 214 150 12;
		border-image-repeat: stretch;
		background-color: #ffffff;
		background-clip: padding-box;
		padding: 20px 12px;
	}

	.bubble-frame03 .detail,
	.bubble-frame03 .caution {
		width: calc(100% + 29.52cqw);
		height: 100%;
	}

	.bubble-frame03 .caution .unit {
		width: 90%;
		margin: 30px auto 0 auto;
		padding: 0 12px 0 0;
	}

	.bubble-frame03 .caution .unit p.txt01 {
		width: 100%;
		margin: 0 0 10px 0;
		color: #004980;
		font-size: clamp(0.75rem, 0.656rem + 0.4vw, 0.938rem); /* 12px-15pxで可変 */
		line-height: 1.5;
		text-indent: -1em;
		padding-left: 1em;
		text-align: justify;
	}

	.bubble-frame03 .caution .unit p.txt02 {
		width: 100%;
		margin: 20px 0 10px 0;
		line-height: 1.5;
		text-align: justify;
	}

	.bubble-box04-wrap {
		width: 100%;
		container-type: inline-size;
	}

	.bubble-frame04 {
		box-sizing: border-box;
		border-style: solid;
		border-width: 30.16cqw 30.16cqw 21.14cqw 1.69cqw;
		border-image-source: url("../../../assets/images/top_bubble_sp_d.svg");
		border-image-slice: 214 214 150 12;
		border-image-repeat: stretch;
		background-color: #ffffff;
		background-clip: padding-box;
		padding: 20px 12px;
	}

	.bubble-frame04 .detail,
	.bubble-frame04 .caution {
		width: calc(100% + 29.52cqw);
		height: 100%;
	}

	.bubble-frame04 .caution .unit {
		width: 90%;
		margin: 30px auto 0 auto;
		padding: 0 12px 0 0;
	}

	.bubble-frame04 .caution .unit p.txt01 {
		width: 100%;
		margin: 0 0 10px 0;
		color: #004980;
		font-size: clamp(0.75rem, 0.656rem + 0.4vw, 0.938rem);
		/* 12px-15pxで可変 */
		line-height: 1.5;
		text-indent: -1em;
		padding-left: 1em;
		text-align: justify;
	}

	.bubble-frame04 .caution .unit p.txt02 {
		width: 100%;
		margin: 20px 0 10px 0;
		color: #004980;
		font-size: clamp(0.75rem, 0.656rem + 0.4vw, 0.938rem);
		/* 12px-15pxで可変 */
		line-height: 1.5;
		text-align: justify;
	}

	.unit-period {
		display: flex;
		justify-content: flex-start;
		margin: 0 0 10px 0;
	}

	.unit-period .period-title {
		width: 3.6rem;
		height: 2em;
		margin: 0 5px 0 0;
		padding: 5px 0;
		background: #00b1b8;
		border-radius: 5px;
		letter-spacing: 1px;
		text-align: center;
	}

	.unit-period .period-box {
		flex: 1 1 0;
		min-width: 0;
		text-align: left;
	}

	.unit-place {
		display: flex;
		justify-content: flex-start;
		margin: 0 0 10px 0;
	}

	.unit-place .place-title {
		width: 3.6rem;
		height: 2em;
		margin: 0 5px 0 0;
		padding: 5px 0;
		background: #00b1b8;
		border-radius: 5px;
		letter-spacing: 1px;
		text-align: center;
		flex-shrink: 0;
	}

	.unit-place .place-box {
		margin: -5px 0 0 0;
		line-height: 1.3;
		text-align: left;
		flex: 1 1 0;
		min-width: 0;
	}

	.unit-time {
		display: flex;
		justify-content: flex-start;
		margin: 0 0 10px 0;
	}

	.unit-time .time-title {
		width: 3.6rem;
		height: 2em;
		margin: 0 5px 0 0;
		padding: 5px 0;
		background: #00b1b8;
		border-radius: 5px;
		letter-spacing: 1.5px;
		text-align: center;
	}

	.unit-time .time-box {
		line-height: 1.5;
		text-align: left;
	}

	.unit-price {
		display: flex;
		justify-content: flex-start;
		margin: 0 0 10px 0;
	}

	.unit-price .price-title {
		width: 3.6rem;
		height: 2em;
		margin: 0 5px 0 0;
		padding: 5px 0;
		background: #00b1b8;
		border-radius: 5px;
		letter-spacing: 1.5px;
		text-align: center;
	}

	.unit-price .price-box {
		line-height: 1.5;
		text-align: left;
	}

	.unit-place-sub {
		display: flex;
		justify-content: flex-start;
		margin: 0 0 10px 0;
	}

	.unit-place-sub .place-title {
		width: 6rem;
		height: 2em;
		margin: 0 5px 0 0;
		padding: 5px 0;
		background: #00b1b8;
		border-radius: 5px;
		letter-spacing: 1px;
		text-align: center;
	}

	.unit-place-sub .place-box {
		line-height: 1.5;
		text-align: left;
	}

	.unit-time-sub {
		display: flex;
		justify-content: flex-start;
		margin: 0 0 10px 0;
	}

	.unit-time-sub .time-title {
		width: 6rem;
		height: 2em;
		margin: 0 5px 0 0;
		padding: 5px 0;
		background: #00b1b8;
		border-radius: 5px;
		letter-spacing: 1px;
		text-align: center;
	}

	.unit-time-sub .time-box {
		line-height: 1.5;
		text-align: left;
	}

	/* about共通 */
	span.type01 {
		color: #004980;
		font-family: margin-mvb, sans-serif;
		font-weight: 800;
		font-style: normal;
		font-size: clamp(1.38rem, 0.93rem + 1.88vw, 2.25rem);
		/* 22px-36pxで可変 */
		line-height: 0.8;
	}

	span.type02 {
		color: #004980;
		font-family: margin-mvb, sans-serif;
		font-weight: 800;
		font-style: normal;
		font-size: clamp(1.94rem, 1.21rem + 3.09vw, 3.38rem);
		/* 31px-54pxで可変 */
		line-height: 1;
	}

	span.type03 {
		color: #004980;
		font-family: "source-han-sans-jp-variable", sans-serif;
		font-variation-settings: "wght" 350;
		font-size: clamp(1rem, 0.75rem + 1.07vw, 1.5rem);
		/* 16px-24pxで可変 */
	}

	span.type04 {
		color: #004980;
		font-family: "source-han-sans-jp-variable", sans-serif;
		font-variation-settings: "wght" 600;
		font-size: clamp(1rem, 0.62rem + 1.61vw, 1.75rem);
		/* 16px-28pxで可変 */
	}

	span.type05 {
		color: #004980;
		font-family: "source-han-sans-jp-variable", sans-serif;
		font-variation-settings: "wght" 600;
		font-size: clamp(1rem, 0.78rem + 0.94vw, 1.44rem);
		/* 16px-23pxで可変 */
	}

	span.type06 {
		color: #004980;
		font-family: "source-han-sans-jp-variable", sans-serif;
		font-variation-settings: "wght" 500;
		font-size: clamp(0.75rem, 0.59rem + 0.67vw, 1.06rem);
		/* 12px-17pxで可変 */
	}

	span.type07 {
		color: #004980;
		font-family: "source-han-sans-jp-variable", sans-serif;
		font-variation-settings: "wght" 350;
		font-size: clamp(0.88rem, 0.75rem + 0.54vw, 1.13rem);
		/* 14px-18pxで可変 */
	}

	span.type08 {
		color: #004980;
		font-family: "source-han-sans-jp-variable", sans-serif;
		font-variation-settings: "wght" 600;
		font-size: clamp(0.88rem, 0.56rem + 1.34vw, 1.5rem);
		/* 14px-24pxで可変 */
	}

	span.type09 {
		color: #004980;
		font-family: "source-han-sans-jp-variable", sans-serif;
		font-variation-settings: "wght" 600;
		font-size: clamp(1rem, 0.59rem + 1.74vw, 1.81rem);
		/* 16px-29pxで可変 */
	}

	/* キャラクター設定 */
	.character01 {
		position: relative;
		width: 100%;
		margin: 0 auto;
	}

	.character01 .character-box {
		position: absolute;
		z-index: 3;
		top: -20px;
		left: 58%;
		max-width: 100%;
		width: 26%;
	}

	.character02 {
		position: relative;
		width: 100%;
		margin: 0 auto;
	}

	.character02 .character-box {
		position: absolute;
		z-index: 3;
		top: -97px;
		left: 0%;
		max-width: 100%;
		width: 33%;
	}

	.character03 {
		position: relative;
		width: 100%;
		margin: 0 auto;
	}

	.character03 .character-box {
		position: absolute;
		z-index: 3;
		top: 130px;
		left: 70%;
		max-width: 100%;
		width: 30%;
	}

	.character04 {
		position: relative;
		width: 100%;
		margin: 0 auto;
	}

	.character04 .character-box {
		position: absolute;
		z-index: 3;
		top: 40px;
		left: 68%;
		max-width: 100%;
		width: 32%;
	}

	.character05 {
		position: relative;
		width: 100%;
		margin: 0 auto;
	}

	.character05 .character-box {
		position: absolute;
		z-index: 3;
		top: -5px;
		left: 55%;
		max-width: 100%;
		width: 28%;
	}

	.character06 {
		position: absolute;
		width: 100%;
		margin: 0 auto;
	}

	.character06 .character-box {
		position: relative;
		z-index: 10;
		top: -550px;
		left: 45px;
		max-width: 100%;
		width: 24%;
	}
}

@media only screen and (max-width: 768px) {
	/* .character05 {
		position: absolute;
		width: 100%;
		margin: 0 auto;
	}

	.character05 .character-box {
		position: relative;
		z-index: 10;
		top: -5px;
		left: 55%;
		max-width: 100%;
		width: 24%;
	}
 */
	.character06 {
		position: absolute;
		width: 100%;
		margin: 0 auto;
	}

	.character06 .character-box {
		position: relative;
		z-index: 10;
		top: -472px;
		left: 40px;
		max-width: 100%;
		width: 22%;
	}
}

@media only screen and (max-width: 605px) {
	.character06 {
		position: absolute;
		width: 100%;
		margin: 0 auto;
	}

	.character06 .character-box {
		position: relative;
		z-index: 10;
		top: -445px;
		left: 20px;
		max-width: 100%;
		width: 23%;
	}
}

@media only screen and (max-width: 430px) {
	.character06 {
		position: absolute;
		z-index: 3;
		left: 0;
		right: 0;
		max-width: 100%;
		width: 100%;
		margin: 0 auto;
	}

	.character06 .character-box {
		position: absolute;
		z-index: 10;
		top: -525px;
		left: 20px;
		max-width: 100%;
		width: 26%;
	}
}

@media only screen and (max-width: 414px) {

	/* キャラクター設定 */
	.character01 {
		position: relative;
		width: 100%;
		margin: 0 auto;
	}

	.character01 .character-box {
		position: absolute;
		z-index: 3;
		top: -44px;
		left: 58%;
		max-width: 100%;
		width: 29%;
	}

	.character02 {
		position: relative;
		width: 100%;
		margin: 0 auto;
	}

	.character02 .character-box {
		position: absolute;
		z-index: 3;
		top: -55px;
		left: 0%;
		max-width: 100%;
		width: 39%;
	}

	.character03 {
		position: relative;
		width: 100%;
		margin: 0 auto;
	}

	.character03 .character-box {
		position: absolute;
		z-index: 3;
		top: 90px;
		left: 63%;
		max-width: 100%;
		width: 36%;
	}

	.character04 {
		position: relative;
		width: 100%;
		margin: 0 auto;
	}

	.character04 .character-box {
		position: absolute;
		z-index: 3;
		top: 40px;
		left: 68%;
		max-width: 100%;
		width: 36%;
	}

	.character05 {
		position: relative;
		width: 100%;
		margin: 0 auto;
	}

	.character05 .character-box {
		position: absolute;
		z-index: 3;
		top: -22px;
		left: 55%;
		max-width: 100%;
		width: 31%;
	}

	.character06 {
		position: absolute;
		z-index: 3;
		left: 0;
		right: 0;
		max-width: 100%;
		width: 100%;
		margin: 0 auto;
	}

	.character06 .character-box {
		position: absolute;
		z-index: 10;
		top: -511px;
		left: 20px;
		max-width: 100%;
		width: 29%;
	}
}

/*__________________________________________________

  ATTENTION
  __________________________________________________*/

.content-attention {
	/* max-width: 1120px; */
	max-width: 980px;
	width: 100%;
	margin: 0 auto 0 auto;
	padding: 0 0 60px 0;
}

.content-attention h2.title {
	max-width: 100%;
	width: 50%;
	margin: 160px auto 60px auto;
	padding: 0;
	text-align: center;
}

.content-attention h3.title {
	display: flex;
	align-items: center;
	width: 500px;
	height: 56px;
	padding: 5px 20px;
	/* background-color: #00b1b8; */
	background-color: #9b5fe0;
	color: #ffffff;
	font-family: "source-han-sans-jp-variable", sans-serif;
	font-variation-settings: "wght" 400;
	font-size: clamp(0.938rem, 0.75rem + 0.833vw, 1.375rem);
	/* 15px-22pxで可変 */
	letter-spacing: 3px;
	border-radius: 28px;
	text-align: left;
}

.content-attention p.txt {
	width: 100%;
	margin: 0 auto 30px auto;
	padding: 0 0 0 20px;
	color: #004980;
	font-family: "source-han-sans-jp-variable", sans-serif;
	font-variation-settings: "wght" 400;
	font-size: clamp(0.875rem, 0.768rem + 0.476vw, 1.125rem);
	line-height: 1.5em;
	text-align: left;
}

@media only screen and (max-width: 768px) {
	.content-attention {
		max-width: 90%;
		width: 100%;
		margin: 0 auto 0 auto;
	}

	.content-attention h2.title {
		max-width: 100%;
		width: 70%;
		margin: 30px auto 60px auto;
		padding: 0;
		text-align: center;
	}

	.content-attention h3.title {
		width: 88%;
		height: 36px;
		padding: 5px 15px;
		/* background-color: #00b1b8; */
		background-color: #9b5fe0;
		letter-spacing: 1.5px;
		border-radius: 18px;
		text-align: left;
	}

	.content-attention p.txt {
		width: 100%;
		margin: 0 auto 30px auto;
		padding: 0 0 0 15px;
		line-height: 1.5em;
		text-align: left;
	}
}