@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;700&display=swap');

* {
	box-sizing: border-box;
}

/* html {
  scroll-behavior: smooth;00
} */

a {
	word-break: break-all;
	transition: 0.3s all;
}

a:hover {
	opacity: 0.7;
}

body {
	position: relative;
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 1.5;
	font-size: 17px;
	color: #22517b;
}

/* グーグルマップ・レスポンシブレイアウト */
.gmap-wrap {
	position: relative;
	height: 0;
	padding-bottom: 36.9%;	/* 縦横比の指定 */
	overflow: hidden;
}

.gmap-wrap iframe,
.gmap-wrap object,
.gmap-wrap embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

img {
	max-width: 100%;
}

.pad-1rem {
	padding-left: 1rem;
	padding-right: 1rem;
}

.flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.grid {
	display: grid;
}
.grid.col-2 {
	column-gap: 1fr 1fr;
}
.grid.col-2 {
	column-gap: 1fr 1fr 1fr;
}

.w1920 {
	max-width: 1920px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.w1880 {
	max-width: 1920px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}


/************************************************************************************
*	header
**************************************************************************************/
.header {
	position: sticky;
	top: 0;
	background-color: white;
	border-bottom: solid 1px #22517b;
	z-index: 200;
}
.header .bar {
	background-color: #1C547B;
	height: 14px;
}
.header .inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 115px;
	padding-left: 2rem;
	padding-right: 1.5rem;
}
.header .h-menu {
	display: flex;
	align-items: center;
	padding-left: 20px;
}
.header .h-list {
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
}
.header .h-list li {
	padding: 0 25px;
	margin: 3px 0;
	border-right: solid 1px #22517b;
}
.header .h-list li:first-child {
	border-left: solid 1px #22517b;
}
.header .h-list li a {
	text-decoration: none;
	font-weight: 500;
	color: #22517b;
}
.header .buy-link {
	margin-left: 50px;
}
.header .buy-link a {
	width: 255px;
	height: 74px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 500;
	background-color: #ff4b51;
	border-radius: 50px;
	text-decoration: none;
}
.header .buy-link .cart {
	margin-right: 10px;
}
.header .buy-link .arrow {
	margin-left: 40px;
	transition: 0.3s all;
}
.header .buy-link:hover .arrow {
	transform: translateX(10px);
}

@media screen and (max-width: 1300px) {
	.header .h-list li {
		padding: 0 15px;
	}
	.header .buy-link a {
		width: 210px;
		height: 64px;
		font-size: 16px;
	}
	.header .buy-link {
		margin-left: 30px;
	}
	.header .buy-link .arrow {
		margin-left: 20px;
	}
	.header .h-list li a {
		font-size: 16px;
	}
}
@media screen and (max-width: 1000px) {
	.header .bar {
		height: 10px;
	}
	.header .inner {
		height: 70px;
	}
	.header .h-menu {
		display: none;
	}
}
@media screen and (max-width: 480px) {
	.h-logo img {
		width: 200px;
	}
}


/************************************************************************************
*	メイン
**************************************************************************************/
#topContainer {
	position: relative;
}
#imageContainer {
	position: absolute;
	overflow: hidden; /* 画像がはみ出さないように */
	touch-action: none; /* デフォルトのタッチ操作を無効化（必要に応じて） */
	/* width: 100%; */
	height: 1000px;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: -1;
	transition: 0.3s all;
	opacity: 0;
}
#imageContainer.active {
	opacity: 1;
}
#imageContainer .cap-list {
	position: relative;
	width: 100%;
	height: 100%;
}
#imageContainer img {
	position: absolute;
  width: auto;
  height: auto;
  max-width: 30%; /* 各画像の最大幅を調整 */
  max-height: 80%; /* 各画像の最大高さを調整 */
  transform: translateY(0); /* 初期位置の translateY をリセット */
	z-index: -1;
}
#cap1 {
	left: 6.25%;
	top: 80px;
}
#cap2 {
	left: 13.54%;
	top: 215px;
}
#cap3 {
	left: 5.73%;
	top: 500px;
}
#cap4 {
	right: 2.9%;
	top: 68px;
}
#cap5 {
	right: 10.1%;
	top: 340px;
}
#cap6 {
  right: 3.28%;
	top: 500px;
}

.ttl-area {
	padding: 150px 2rem 0;
	text-align: center;
}
.change-area {
	position: relative;
	padding-top: 55px;
	padding-bottom: 35px;
	text-align: center;
	max-width: 1000px;
	width: 100%;
	margin: 0 auto 150px;
}
.chara1 {
	position: absolute;
	left: 2%;
	bottom: 0;
	animation-delay: 1.05s !important;
}
.chara2 {
	position: absolute;
	right: 2%;
	bottom: 0;
	animation-delay: 1.65s !important;
}
.change-area a {
	position: relative;
	display: inline-block;
	border-radius: 50%;
}
.change-area a:hover {
	opacity: 1;
}
.change-area a img {
	animation-delay: 2.4s !important;
	filter: drop-shadow(5px 9px 0 #c21c24);
	transition: 0.3s all;
} 
.change-area a img:hover {
	/* transform: scale(1.1); */
	transform: translate(5px, 9px);
	filter: drop-shadow(0 0 0 #c21c24);
  cursor: pointer; /* マウスカーソルをポインターに変更 */
}

.layer {
	position: relative;
	margin-top: 55px;
}
.bg-metamor {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	z-index: -2;
}
.bg-metamor .top {
	background-image: url(../img/bg-top.png);
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	width: 100%;
	height: 75px;
}
.bg-metamor .mid {
	background-color: #f3f1ea;
	width: 100%;
	height: calc(100% - 150px);
}
.bg-metamor .bot {
	background-image: url(../img/bg-bot.png);
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: cover;
	width: 100%;
	height: 75px;
}
@media screen and (max-width: 1920px) {
	.bg-metamor .top,
	.bg-metamor .bot {
		background-size: auto;
	}
}


.parallax-container {
	display: block;
	width: 100%;
	overflow: hidden; /* スクロールバーを隠す */
	height: 1700px; /* 高さの設定 */
}

.parallax-layer {
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: top center;
	background-size: auto;
	position: absolute;
}
.layer-1 {
	z-index: 11; /* 背景 */
}
.layer-2 {
	margin-top: 15%;
	z-index: 12;
}
.layer-3 {
	z-index: 13;
}
.metamor {
	height: 1500px;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	background-attachment: fixed;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.layer-4 {
	margin-top: 20%;
	z-index: 14; /* 最前面 */
}

.blur-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px; /* 上端のぼかし領域 */
  background: linear-gradient(to top, rgba(255, 255, 255, 0), #f3f1ea); /* 透明から白へのグラデーション */
  pointer-events: none; /* クリックイベントを透過させる */
}
.blur-overlay.bottom {
  top: auto;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #f3f1ea); /* 透明から白へのグラデーション */
}


#metamorphosis {
	padding-top: 100px;
}
.kago {
	position: relative;
	overflow: hidden;
	max-width: 1366px;
	width: 100%;
	padding-top: 220px;
	padding-bottom: 80px;
	margin: 40px auto 0;
}
.kago-img	{
	display: block;
	margin: auto;
	opacity: 0;
  /* transform: translateY(20px) scale(0);
	transition: 0.3s all; */
	transform: scale(0.1) translateY(100px); /* 初期サイズをかなり小さく、下方向に移動 */
	/* transition: transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275); */
	transition: transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 2), opacity 0.7s cubic-bezier(0.175, 0.885, 0.32, 2);
	transition-delay: 0.4s;
}
.kago-inner.active .kago-img {
	transform: scale(1) translateY(0);
  opacity: 1;
}
.kago-effect {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
  display: block;
  height: auto;
  /* transform-origin: center center;
  transform: scale(0);
  opacity: 0;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out; */
	z-index: -1;
}
.chara3 {
	position: absolute;
	left: 0;
	opacity: 0;
	/* animation-delay: 1.2s !important; */
	transition: 1.0s all;
	transition-delay: 1.0s;
	animation-delay: 2.5s !important;
}
.chara3.active {
	opacity: 1;
	animation: shake 3s infinite;
}
.chara4 {
	position: absolute;
	right: 0;
	opacity: 0;
	/* animation-delay: 1.6s !important; */
	transition: 1.0s all;
	transition-delay: 1.0s;
	animation-delay: 4s !important;
}
.chara4.active {
	opacity: 1;
	animation: shake 3s infinite;
}
@keyframes shake {
	0% {
		transform: rotate(0)
	}

	6%,
	18%,
	30%,
	42% {
		transform: rotate(10deg)
	}

	12%,
	24%,
	36% {
		transform: rotate(-10deg)
	}

	48% {
		transform: rotate(0)
	}

	100% {
		transform: rotate(0)
	}
}


.kago-txt {
	font-size: 48px;
	color: #1c547b;
	text-align: center;
	font-weight: bold;
	line-height: 1.1;
	margin-top: 5px;
}
.kago-txt .red {
	font-size: 60px;
	color: #ff4b51;
	font-weight: bold;
	line-height: 1.1;
}

.resorce {
	position: relative;
	max-width: 1920px;
	width: 100%;
	margin: 130px auto 150px;
}
.re-ttl {
	position: relative;
	font-size: 69px;
	font-weight: 500;
	text-align: center;
	line-height: 1.2;
	margin-bottom: 65px;
}
.re-ttl span {
	font-weight: 500;
	display: inline-block;
}
.re-ttl span.red {
	font-size: 80px;
	color: #ff4b51;
	font-weight: bold;
	line-height: 1.1;
}
.re-txt {
	/* display: inline-block; */
	margin: auto;
	text-align: center;
	font-size: 20px;
	line-height: 2;
	text-shadow: 1px 1px 1px white;
}
.re-txt p {
	font-weight: 500;
}
.re-txt p span {
	font-weight: 500;
}
.re-txt span.backline {
  display: inline; /* 行内で背景がテキスト幅に収まるように */
  background-image: linear-gradient(to right, #ffb0b3 50%, transparent 50%);
  background-repeat: repeat-x;
  background-size: 200% 50%; /* グラデーションの幅を広げる */
  background-position: 0 100%; /* 下端に配置 */
}

.resorce .bg-img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: -1;
}
.resorce .bg-img img {
	position: absolute;
}
.re-img1 { left: 4.6%;	top: 0;      animation: fuwafuwa1 1.8s ease-in-out infinite alternate-reverse; }
.re-img2 { left: 5.2%;  top: 145px;  animation: jellyBounce 10s infinite cubic-bezier(0.36, 0, 0.66, -0.56); animation-delay: 3.5s;}
.re-img3 { left: 8.0%;  top: 590px;  animation: fuwafuwa2 1.7s ease-in-out infinite alternate-reverse; }
.re-img4 { right: 0.8%;  top: -30px; animation: jellyBounce 10s infinite cubic-bezier(0.36, 0, 0.66, -0.56); }
.re-img5 { right: 3.12%; top: 285px; animation: fuwafuwa1 2.0s ease-in-out infinite alternate-reverse; }
.re-img6 { right: 4.16%; top: 450px; animation: jellyBounce 10s infinite cubic-bezier(0.36, 0, 0.66, -0.56); animation-delay: 7.0s; }
@keyframes fuwafuwa1 {
  0% {
    transform: translateY(-10%);
  }
	40% {
		transform: (5%);
	}
  100% {
    transform: translateY(10%);
  }
}
@keyframes fuwafuwa2 {
  0% {
    transform: translateY(10%);
  }
	40% {
		transform: (-5%);
	}
  100% {
    transform: translateY(-10%);
  }
}
@keyframes jellyBounce { /* プリンのような独特のバウンド */
  0%, 8% {
    transform: translateY(0) scaleY(1) scaleX(1);
  }
  2% {
    transform: translateY(-5px) scaleY(1.03) scaleX(0.97); /* 縦に伸びて横に縮む */
  }
  4% {
    transform: translateY(0) scaleY(0.97) scaleX(1.03); /* 縦に縮んで横に伸びる */
  }
  6% {
    transform: translateY(-2.5px) scaleY(1.03) scaleX(0.97); /* 少し戻る */
  }
	100% {
		transform: translateY(0) scaleY(1) scaleX(1);
	}
}


/* 横に無限スライド */
.slide-area {
	position: relative;
	overflow: hidden;
}
.slide-txt  {
  width: 200%;
  height: 130px; /* 背景画像の高さに合わせて調整 */
  background-image: url(../img/slide-txt.png), url(../img/slide-txt.png); /* 横長の画像のパスに置き換えてください */
  background-repeat: repeat-x;
  background-position: 0 0, 100% 0; /* 1枚目を左端、2枚目を右端に配置 */
  background-size: 50% auto; /* 幅を半分にする */
  animation: flow 20s linear infinite;
}
@keyframes flow {
  0% { background-position: 0 0, 100% 0; }
  100% { background-position: -100% 0, 0 0; } /* 両方の画像を左に移動 */
}


/* COLUMN NEWS ABOUTUS */
.bg-topContent {
	position: relative;
}

.bg-topContent .bg-top {
	background-image: url(../img/bg-top.png);
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	width: 100%;
	height: 75px;
}
.bg-topContent .bg-bot {
	background-image: url(../img/bg-bot.png);
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: cover;
	width: 100%;
	height: 75px;
}

.top-column {
	padding-top: 75px;
	/* padding-bottom: 85px; */
	background-color: #f3f1ea;
	margin: auto;
}
.top-column .flex {
	align-items: flex-start;
}
.col-left,
.col-right {
	width: 49.4%;
	max-width: 930px;
}
.col-ttl {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: flex-start;
	border-radius: 30px;
	background-color: #1C547B;
	padding: 2px 20px 12px 40px;
	color: white;
	margin-bottom: 15px;
}
.col-ttl .en,
.col-ttl .en span {
	font-size: 110px;
	line-height: 1;
	font-weight: 500;
}
.col-ttl .jp,
.col-ttl .jp span {
	font-size: 30px;
	font-weight: bold;
}
.col-ttl span.red {
	color: #ff4b51;
}
.card {
	position: relative;
}
.card > img {
	display: block;
	border-radius: 30px;
}
.card .txtarea {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	border-radius: 0 0 30px 30px;
	background-color: white;
	color: #1c547b;
	font-weight: 500;
	padding: 20px 23px 40px;
}
.card .txtarea .date {
	font-size: 23px;
	margin-bottom: 20px;
	font-weight: 500;
}
.card .txtarea .ttl {
	font-size: 30px;
	font-weight: 500;
}

.card-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.card-list li {
	position: relative;
}
.card-list li > img {
	display: block;
	border-radius: 18px;
}
.card-list li .txtarea {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	background-color: white;
	border-radius: 0 0 18px 18px;
	color: #1C547B;
	font-weight: 500;
	padding: 12px 15px 23px 25px;
}
.card-list li .txtarea .date,
.card-list li .txtarea .ttl {
	font-weight: 500;
}
.card-list .view-more a {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	background-color: white;
	border-radius: 30px;
	font-size: 41px;
	color: #1C547B;
	text-decoration: none;
}
.card-list .view-more a:hover {
	color: white;
	background-color: #1C547B;
	opacity: 1;
}
.card-list .view-more a img {
	display: block;
	margin: 45px auto 0;
}
.card-list .view-more a .arrow {
	position: relative;
	display: block;
	width: 86px;
	height: 86px;
	border-radius: 50%;
	background-color: #1C547B;
	margin: 45px auto 0;
}
.card-list .view-more a .arrow::before {
	position: absolute;
	content: '';
	display: inline-block;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	transition: 0.3s all;
	z-index: 10;
	border-radius: 50%;

	background-color: white;
	-webkit-mask-image: url(../img/mask.png);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-image: url(../img/mask.png);
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
}

.top-news{
	background-color: #f3f1ea;
	padding-top: 85px;
}
.news-left {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24.46%;
	background-color: #1C547B;
	border-radius: 20px;
	min-height: 437px;
	text-decoration: none;
	border: solid 1px #1c547b;
	color: white;
}
.news-left:hover {
	background-color: white;
	color: #1C547B;
}
.news-right {
	width: 74.46%;
	border-radius: 20px;
	background-color: white;
	min-height: 437px;
	padding: 70px 40px 70px 60px;
}
.news-ttl {
	text-align: center;
}
.news-ttl .en {
	font-size: 75px;
	font-weight: 500;
	line-height: 1;
}
.news-ttl .en .red {
	color: #ff4b51;
	font-weight: 500;
}
.news-ttl .jp {
	font-size: 30px;
	font-weight: 500;
}
.news-more {
	display: block;
	margin: 45px auto 0;
	border: solid 1px #1c547b;
	border-radius: 50%;
}
.news-table,
.news-table tbody {
	display: block;
	width: 100%;
}
.news-table tr {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	text-align: left;
	margin-bottom: 33px;
}
.news-table tr:last-child {
	margin-bottom: 0;
}
.news-table td {
	width: 120px;
	font-size: 16px;
	font-weight: 500;
}
.news-table .cate {
	color: white;
}
.news-table .cate span {
	display: inline-block;
	padding: 2px 14px;
	border-radius: 30px;
	background-color: #22517b;
	font-weight: 500;
}
.news-table .cate.cat-event span {
	background-color: #ff4b51;
}
.news-table th {
	width: calc(98% - 240px);
	font-size: 16px;
	font-weight: 500;
}
.news-table th a,
.news-table th span {
	color: #22517b;
	text-decoration: none;
	/* pointer-events: none; */
	font-weight: 500;
}

.top-about {
	background-color: #f3f1ea;
	padding-top: 120px;
	padding-bottom: 300px;
	background-image: url(../img/bg-about.png);
	background-position: center bottom;
	background-size: auto;
	background-repeat: no-repeat;
	overflow: hidden;
}
.about-inner {
	position: relative;
	text-align: center;
	z-index: 1;
}
.abo-img {
	position: absolute;
	z-index: -1;
}
.abo-img.img1 {
	top: 100px;
	left: 2.2%;
}
.abo-img.img2 {
	top: 470px;
	left: 14.5%;
}
.abo-img.img3 {
	top: 130px;
	right: -4.4%;
}
.abo-ttl .en {
	font-size: 110px;
	font-weight: 500;
	line-height: 1;
}
.abo-ttl .en .red {
	color: #ff4b51;
	font-weight: 500;
}
.abo-ttl .jp {
	position: relative;
	font-size: 40px;
	font-weight: bold;
	margin-top: 15px;
	background-color: white;
	padding: 0 15px;
	display: inline-block;
}
.abo-ttl2 {
	line-height: 1.3;
	font-size: 50px;
	font-weight: 500;
	margin: 50px auto;
	text-shadow: 1px 1px 1px white;
}
.abo-txt {
	line-height: 2.2;
	text-shadow: 1px 1px 1px white;
}
.about-more {
	margin: 80px auto;
}
.link-more {
	position: relative;
	color: white;
	background-color: #22517b;
	border-radius: 50px;
	text-decoration: none;
	display: flex;
	align-items: center;
	max-width: 348px;
	height: 90px;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s all;
	border: solid 1px #22517b;
}
.link-more:hover {
	opacity: 1;
	/* background-color: white; */
	/* color: #22517b; */
}
.link-more span {
	display: block;
}
.link-more img {
	position: absolute;
	right: 35px;
	top: 0;
	bottom: 0;
	margin: auto;
	border: solid 1px #1c547b;
	border-radius: 50%;
	transition: 0.3s all;
}
.link-more:hover img {
	transform: translateX(10px);
}

.find {
	padding-top: 130px;	
	padding-bottom: 25px;
}
.find .inner {
	position: relative;
	max-width: 1820px;
	margin-left: auto;
	margin-right: auto;
}
.find-map {
	position: relative;
	max-width: 1580px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.find-cap-list img {
	position: absolute;
}
#find-cap1 { top: 100px; left: 0.5%;  animation: fuwafuwa4 1.75s ease-in-out infinite alternate-reverse; }
#find-cap2 { top: 570px; left: 5.5%;  animation: fuwafuwa3 1.8s ease-in-out infinite alternate-reverse; }
#find-cap3 { top: 710px; left: 1.5%;  animation: fuwafuwa4 1.85s ease-in-out infinite alternate-reverse; }
#find-cap4 { top: 170px; right: 1.0%; animation: fuwafuwa3 1.83s ease-in-out infinite alternate-reverse; }
#find-cap5 { top: 290px; right: 6.6%; animation: fuwafuwa4 1.78s ease-in-out infinite alternate-reverse; }
#find-cap6 { top: 790px; right: 0.5%; animation: fuwafuwa3 1.73s ease-in-out infinite alternate-reverse; }
@keyframes fuwafuwa3 {
  0% {
    transform: translateY(-3%);
  }
	40% {
		transform: (1.5%);
	}
  100% {
    transform: translateY(3%);
  }
}
@keyframes fuwafuwa4 {
  0% {
    transform: translateY(3%);
  }
	40% {
		transform: (-1.5%);
	}
  100% {
    transform: translateY(-3%);
  }
}

.find-ttl {
	position: absolute;
	left: 0;
	top: -70px;
	animation: poyon-poyon 4s infinite;
	z-index: 5;
}
@keyframes poyon-poyon {
  0% {
    transform: scale(1);
  }
  5% {
    transform: scale(1.1, 0.9); /* 少し潰れて横に広がる */
  }
	10% {
    transform: scale(0.9, 1.1); /* 縦に伸びる */
  }
  15% {
    transform: scale(1.05, 0.95); /* 少し潰れる */
  }
  20% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}

img[usemap],
map area {
  cursor: url(../img/glass128.png) 55 44, crosshair;
}
map area {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
	img[usemap],
	map area {
		cursor: url(../img/glass64.png) 28 21, crosshair;
	}
}
@media screen and (max-width: 480px) {
	img[usemap],
	map area {
		cursor: url(../img/glass32.png) 14 11, crosshair;
	}
}

.find-img {
	position: absolute;
	display: none;
	pointer-events: none;
	z-index: 50;
}
#find1 { top: 110px; left: 14%; }
#find2 { top: -230px; left: 40%; }
#find3 { top: 235px; left: 52%; }

.chara5 {
	position: absolute;
	left: 0;
	top: 180px;
}
.chara6 {
	position: absolute;
	right: 45px;
	top: 550px;
}

.world {
	margin-top: 90px;
	margin-bottom: 25px;
}
.world .inner {
	position: relative;
	max-width: 1540px;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 45px;
}
.world .imgarea {
	position: absolute;
	/* width: 765px; */
	width: 49.6%;
	height: 585px;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	background-image: url(../img/world-img.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.world-cap-list img {
	position: absolute;
}
#wd-cap1 { top: 72px; left: 3.56%;     animation: fuwafuwa4 1.75s ease-in-out infinite alternate-reverse; }
#wd-cap2 { top: 20px; left: 41.42%;    animation: fuwafuwa3 1.8s ease-in-out infinite alternate-reverse;  }
#wd-cap3 { top: 67px; right: 3.68%;    animation: fuwafuwa3 1.85s ease-in-out infinite alternate-reverse; }
#wd-cap4 { bottom: 86px; right: 35.6%; animation: fuwafuwa4 1.78s ease-in-out infinite alternate-reverse; }
#wd-cap5 { bottom: 93px; right: 1.55%; animation: fuwafuwa3 1.73s ease-in-out infinite alternate-reverse; }

.world .txtarea {
	padding-top: 170px;
	padding-bottom: 100px;
	background-image: url(../img/world-bg.png);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: contain;
	max-width: 1400px;
	margin-right: auto;
}
.world .txtbox {
	position: relative;
	max-width: 660px;
	width: 55%;
	margin-left: 110px;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	z-index: 2;
}
.world .txtbox .txt {
	margin-top: 40px;
	font-weight: bold;
	text-shadow: 1px 1px 1px white;
}
.world .link-more {
	margin: 50px auto 0;
}
.chara7 {
	position: absolute;
	left: 0;
	bottom: 45px;
}
.chara8 {
	position: absolute;
	right: 8.67%;
	bottom: 0;
}

@media screen and (max-width: 1920px) {
	.col-ttl .en,
	.col-ttl .en span {
		font-size: 5.729166666666666vw;
	}
}

@media screen and (max-width: 1640px) {
	.find-ttl {
		width: 50vw;
		top: -4.2682926829268295vw;
	}
	.chara5 {
		width: 34.756097560975604vw;
		top: 10.975609756097562vw;
	}
	.chara6 {
		width: 18.170731707317074vw;
		/* top: 33.53658536585366vw; */
	}

	.re-img2 {
		width: 389px;
	}
	.re-img4 {
		width: 361px;
	}
	.re-img6 {
		width: 355px;
	}

	.col-ttl {
		margin-bottom: 10px;
	}
	.card .txtarea {
		padding-bottom: 35px;
	}
	.card .txtarea .date {
		font-size: 21px;
		margin-bottom: 10px;
	}
	.card .txtarea .ttl {
		font-size: 26px;
	}
}
@media screen and (max-width: 1600px) {
	.news-ttl .en {
		font-size: 4.6875vw;
	}
	.news-ttl .jp {
		font-size: 1.875vw;
	}
	.abo-ttl .en { font-size: 6.875vw; }
	.abo-ttl .jp { font-size: 2.5vw; }
	.abo-ttl2 { font-size: 3.125vw; }
	.abo-img.img1 { width: 27.375vw; }
	.abo-img.img2 { width: 11.4375vw; top: 29.375vw; }
	.abo-img.img3 { width: 32.375vw; }

	.world .imgarea {
		width: 47.75vw;
		height: 36.5625vw;
	}
}
@media screen and (max-width: 1400px) {
	#find1 {
		width: 42.07142857142857vw;
		top: 7.857142857142857vw;
	}
	#find2 {
		width: 41.5vw;
		top: -16.428571428571427vw;
	}
	#find3 {
		width: 42.714285714285715vw;
		top: 16.785714285714285vw;
	}
	.chara6 {
		right: 25px;
		width: 18.170731707317074vw;
		top: 42.857142857142854vw;
	}

	.card-list li .txtarea {
		font-size: 16px;
	}
	.card-list .view-more a {
		font-size: 34px;
	}
	.card-list .view-more a img {
		margin-top: 30px;
		width: 60px;
	}
	.abo-txt {
		line-height: 2;
		font-size: 16px;
	}
	.find-cap-list {
		display: none;
	}
}

@media screen and (max-width: 1200px) {
	.kago-img {
		width: 50%;
	}
	.chara3 {
		width: 203px;
	}
	.chara4 {
		width: 242px;
	}
	.kago-txt {
		font-size: 42px;
		line-height: 1.3;
	}
	.kago-txt .red {
		font-size: 48px;
		line-height: 1.3;
	}
	.re-ttl {
		font-size: 52px;
		line-height: 1.3;
	}
	.re-ttl span.red {
		font-size: 60px;
		line-height: 1.3;
	}
	.re-img2 {
		width: 288px;
	}
	.re-img4 {
		width: 271px;
	}
	.re-img6 {
		width: 266px;
	}
}
@media screen and (max-width: 1000px) {
	.kago-txt {
		font-size: 34px;
		margin-top: 10px;
	}
	.kago-txt .red {
		font-size: 40px;
	}
	.re-ttl {
		font-size: 36px;
		font-weight: bold;
	}
	.re-ttl span {
		font-weight: bold;
	}
	.re-ttl span.red {
		font-size: 44px;
	}
	.re-txt {
		font-size: 18px;
		line-height: 1.8;
	}
	.re-img2 {
		width: 240px;
		left: 1.2%;
	}
	.re-img3 {
		top: 460px;
	}
	.re-img4 {
		width: 226px;
	}
	.re-img5 {
		top: 220px;
	}
	.re-img6 {
		width: 222px;
		top: 355px;
		right: 2%;
	}
	
	.col-left,
	.col-right {
		width: 100%;
		max-width: 800px;
		margin-left: auto;
		margin-right: auto;
	}
	.card {
		margin-bottom: 20px;
	}
	.col-ttl {
		padding: 8px 20px 12px 40px;
	}
	.col-ttl .en,
	.col-ttl .en span {
		font-size: 60px;
	}
	.top-news .flex {
		max-width: 800px;
		margin-left: auto;
		margin-right: auto;
	}
	.news-ttl .en {
		font-size: 50px;
	}
	.news-ttl .jp {
		font-size: 17px;
	}
	.news-left,
	.news-right {
		width: 100%;
	}
	.news-left {
		min-height: auto;
    justify-content: flex-start;
		padding: 10px 20px 10px 40px;
		margin-bottom: 10px;
	}
	.news-left > div {
		width: 100%;
		display: flex;
		align-items: center;
    justify-content: space-between;
	}
	.news-ttl {
		display: flex;
		align-items: flex-end;
	}
	.news-ttl .jp {
		margin-left: 5px;
	}
	.news-more {
		width: 40px;
		margin: 0;
	}
	.news-right {
		padding: 50px 30px 40px;
		min-height: auto;
	}

	.top-about {
		background-size: 165%;
		padding-bottom: 200px;
	}

	.abo-ttl,
	.abo-ttl2 {
		width: 60%;
		margin-right: auto;
		margin-left: 0;
		text-align: left;
		padding-left: 5%;
	}
	.abo-ttl .en {
		font-size: 70px;
	}	
	.abo-ttl .jp {
		font-size: 24px;
	}
	.abo-ttl2 {
		font-size: 28px;
	}
	.abo-img.img1 {
		top: auto;
		bottom: 120px;
	}
	.abo-img.img2 {
		top: auto;
		bottom: 90px;
	}
	.abo-img.img3 {
		top: -10%;
		right: 3%;
		width: 34%;
	}
	.abo-txt {
		width: 60%;
		margin-left: auto;
		margin-right: 0;
		text-align: left;
	}
	.world .txtbox {
		width: 55%;
		margin-left: 5%;
		font-size: 19px;
	}
	.world .txtbox .txt {
		margin-top: 30px;
	}
	.world .link-more {
		margin-top: 40px;
		height: 70px;
		max-width: 300px;
	}
	#wd-cap1 { width: 88px; }
	#wd-cap2 { width: 105px; }
	#wd-cap3 { width: 77px; }
	#wd-cap4 { width: 97px; }
	#wd-cap5 { width: 88px; }
	.chara7 { width: 133px; }
	.chara8 { width: 150px; }
}
@media screen and (max-width: 768px) {
	.change-area {
		max-width: 580px;
	}
	.chara1 {
		width: 219px;
		bottom: 20px;
	}
	.chara2 {
		width: 180px;
		bottom: 20px;
	}	
	.chara3 {
		width: 152px;
		top: 80px;
		left: 4%;
	}
	.chara4 {
		width: 181px;
		top: 80px;
		right: 4%;
	}
	.cap-list #cap1 { width: 196px; }
	.cap-list #cap2 { width: 202px; }
	.cap-list #cap3 { width: 200px; }
	.cap-list #cap4 { width: 191px; right: -7.0%; }
	.cap-list #cap5 { width: 201px; right: 1.0%; }
	.cap-list #cap6 { width: 169px; right: -5.0%; }

	.change-area a img {
		width: 150px;
	}

	/* .parallax-layer {
		background-size: 300%;
	} */

	.kago-txt {
		font-size: 28px;
	}
	.kago-txt .red {
		font-size: 34px;
	}
	.re-ttl {
		font-size: 30px;
	}
	.re-ttl span.red {
		font-size: 36px;
	}
	.re-txt {
		font-size: 16px;
	}
	.re-img1 { width: 95px;  top: px; }
	.re-img2 { width: 168px; top: px; }
	.re-img3 { width: 76px;  top: 400px; }
	.re-img4 { width: 158px; top: px; }
	.re-img5 { width: 69px;  top: 150px; }
	.re-img6 { width: 155px; top: 330px; }

	.col-ttl .en,
	.col-ttl .en span {
		font-size: 48px;
	}
	.col-ttl .jp,
	.col-ttl .jp span {
		font-size: 22px;
	}
	.card .txtarea {
		padding-bottom: 30px;
	}
	.card .txtarea .date {
		font-size: 20px;
		margin-bottom: 5px;
	}
	.card .txtarea .ttl {
		font-size: 24px;
	}
	.card-list li .txtarea {
		padding: 10px 10px 20px 15px;
	}

	.news-ttl .en {
		font-size: 40px;
	}
	.news-ttl .jp {
		font-size: 16px;
	}
	.news-table tr {
		justify-content: flex-start;
		align-items: center;
		margin-bottom: 15px;
	}
	.news-table th {
		width: 100%;
		margin-top: 8px;
		margin-left: 12px;
	}
	.news-table td {
		width: 100px;
	}
	.news-table .cate {
		width: auto;
	}

	.abo-ttl .jp {
		font-size: 18px;
	}
	.abo-ttl .en {
		font-size: 50px;
	}
	.abo-ttl2 {
		font-size: 23px;
	}
	.abo-txt br.pc {
		display: none;
	}
	.abo-img.img1 {
		top: 41%;
		bottom: auto;
	}
	.abo-img.img2 {
		top: 68%;
		bottom: auto;
	}
	.find {
		padding-top: 16vw;
	}
	.world .imgarea {
		position: relative;
	}
	.world .txtarea {
		padding-top: 0;
		margin-top: -40px;
		background-size: 100% 100%;
    background-position: center;
	}
	.world .txtbox {
		width: 90%;
		padding-top: 90px;
		margin-left: auto;
		margin-right: auto;
		font-size: 17px;
	}
	.world .txtbox .ttl {
		max-width: 450px;
		width: 100%;
	}
	#wd-cap2 {
		top: 0;
    left: 0;
    bottom: 0;
		margin: auto;
	}
	#wd-cap4 {
		top: 0;
		bottom: 0;
		right: 0;
		margin: auto;
	}
	.chara7 {
		width: 100px;
		bottom: 0;
	}
	.chara8 {
		width: 112px;
		right: 1.67%;
		bottom: 0;
	}
}
@media screen and (max-width: 550px) {
	.chara1 {
		bottom: 30px;
	}
	.chara2 {
		bottom: 30px;
	}

	.resorce .bg-img {
		opacity: 0.4;
	}

	.col-ttl .en,
	.col-ttl .en span {
		font-size: 36px;
	}
	.col-ttl .jp,
	.col-ttl .jp span {
		font-size: 17px;
		line-height: 1.1;
	}
	
	.card .txtarea {
		padding: 15px 18px 22px;
	}
	.card .txtarea .date {
		font-size: 16px;
		margin-bottom: 0;
	}
	.card .txtarea .ttl {
		font-size: 18px;
		line-height: 1.3;
	}
	.card {
		margin-bottom: 12px;
	}
	.card-list {
		gap: 12px;
	}
	.card-list li .txtarea {
		padding: 10px 10px 12px 15px;
	}
	.card-list li .txtarea .date {
		font-size: 13px;
	}
	.card-list li .txtarea .ttl {
		line-height: 1.3;
		font-size: 15px;
	}
	.card-list .view-more a {
		font-size: 28px;
	}
	.card-list .view-more a img {
		margin-top: 20px;
		width: 45px;
	}
	.top-about {
		background-size: 245%;
		padding-bottom: 180px;
	}
	.abo-ttl,
	.abo-ttl2,
	.abo-txt {
		width: 100%;
		margin-left: auto;
		margin-right: auto;
		padding-left: 0;
		text-align: center;
	}
	.abo-ttl2 {
		margin: 40px auto;
	}
	.abo-txt {
		text-align: left;
		max-width: 450px;
		margin-left: auto;
		margin-right: auto;
		line-height: 1.8;
	}
	.top-about .imgarea {
		display: flex;
		justify-content: space-around;
		align-items: self-start;
		margin-top: 30px;
	}
	.top-about .imgarea > img {
		width: 45%;
	}
	.abo-img.img1,
	.abo-img.img3 {
		position: relative;
		top: auto;
		bottom: auto;
		left: auto;
		right: auto;
	}
	.find-ttl {
		position: relative;
		width: 80%;
		/* margin-bottom: 30px; */
		margin-bottom: 30vw;
	}
	.chara5 {
    /* width: 40%; */
    /* top: 27%; */
		left: 0;
    right: 0;
    margin: auto;
    top: 24%;
    width: 60%;
	}
	.chara6 {
		/* width: 22%; */
		/* top: 74%;	 */
		/* right: -1%; */
		width: 30%;
		top: 85%;
		right: -2%;
	}

	.link-more {
		/* height: 70px; */
		/* font-size: 19px; */
		height: 60px;
		max-width: 270px;
		font-size: 16px;
	}
	.world .inner {
		margin-bottom: 60px;
	}
	.world .imgarea {
		width: 56.75vw;
		height: 42.5625vw;
	}
	.world .txtbox {
		font-size: 15px;
	}
	.world .txtarea {
		padding-bottom: 45px;
	}
	#wd-cap1 { width: 66px; }
	#wd-cap2 { width: 79px; }
	#wd-cap3 { width: 58px; }
	#wd-cap4 { width: 73px; }
	#wd-cap5 { width: 66px; display: none; }
	.chara7 {
		bottom: -45px;
	}
	.chara8 {
		bottom: -45px;
	}
}
@media screen and (max-width: 480px) {
	.chara1 {
		width: 164px;
		bottom: 65px;
	}
	.chara2 {
		width: 135px;
		bottom: 65px;
	}
	.change-area a img {
		width: 125px;
	}
	.parallax-container {
		height: 1400px;
	}
	.parallax-layer {
		background-size: 450%;
	}
	.parallax-layer.layer-4 {
		background-size: 330%;
	}
	.layer-2 {
		margin-top: 25%;
	}
	.metamor {
		height: 1200px;
	}
	/* .chara3 {
		width: 127px;
	}
	.chara4 {
		width: 151px;
	} */
	.kago-img {
		width: 66%;
	}
	.kago-txt {
		font-size: 24px;
	}
	.kago-txt .red {
		font-size: 28px;
	}

	.re-ttl {
		font-size: 24px;
	}
	.re-ttl span.red {
		font-size: 28px;
	}
	.re-txt {
		font-size: 3.3333333333333335vw;
	}

	.card-list li .txtarea .date {
		font-size: 2.5 vw;
	}
	.card-list li .txtarea .ttl {
		font-size: 3.125vw;		
	}
	.card-list .view-more a {
		font-size: 5.41666vw;
	}
	.card-list .view-more a img {
		width: 9.375vw;
		margin-top: 4.16666vw;
	}

	.news-table td {
		font-size: 14px;
	}
	.news-table th {
		font-size: 15px;
	}

	/* .cap-list #cap4 { right: 0.58%; }
	.cap-list #cap5 { right: 2.02%; }
	.cap-list #cap6 { right: 0.65%; } */
	
	/* .cap-list #cap3,
	.cap-list #cap6 { display: none; } */
}


/************************************************************************************
*	single
**************************************************************************************/
.news-head {
	padding: 60px 1rem;
	background-color: black;
	text-align: center;
}
.news-head-ttl {
	position: relative;
	display: inline-block;
	font-size: 40px;
	padding: 4px 45px;
	font-weight: 500;
	line-height: 1.2;
	z-index: 1;
}
.news-head-ttl::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	transform: skewX(-10deg);
	background-color: white;
	z-index: -1;
}
.single-wrap {
	max-width: 1200px;
	width: 100%;
	margin: 80px auto 60px;
}
.entry-title {
	font-size: 24px;
	font-weight: bold;
}
.entry-content {
	padding: 60px 0;
}
.back-btn {
	position: relative;
	overflow: hidden;
	width: 130px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	border-radius: 15px;
	font-size: 18px;
	background-color: #2396BA;
	text-decoration: none;
	margin: auto;
}


/************************************************************************************
*	footer
**************************************************************************************/
.footer {
	padding: 70px 1rem 85px;
}
.f-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	max-width: 1320px;
	margin: auto;
}
.footer .name {
	font-size: 30px;
	font-weight: bold;
}
.footer .address {
	font-weight: bold;
	margin-top: 40px;
	font-size: 16px;
}
.footer .telfax {
	font-weight: bold;
	margin-top: 25px;
	font-size: 16px;
}
.footer .telfax a {
	text-decoration: none;
	color: #22517b;
}
.f-right {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	padding-top: 85px;
}
.f-list {
	margin-left: 65px;
}
.f-right .f-list:first-of-type {
	margin-left: 0;
}
.f-list li {
	position: relative;
	padding-left: 34px;
	margin-bottom: 15px;
}
.f-list li::before {
	position: absolute;
	content: url(../img/f-list.png);
	left: 0;
}
.f-list li.sub {
	margin-left: 30px;
	padding-left: 10px;
	margin-bottom: 5px;
}
.f-list li.sub::before {
	content: '';
	display: block;
	width: 4.5px;
	height: 2px;
	background-color: #ff4b51;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}
.f-list li a {
	color: #22517b;
	text-decoration: none;
	font-weight: bold;
}
.f-bot {
	max-width: 1320px;
	width: 100%;
	color: #9eb3c5;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	margin: auto;
	margin-top: 50px;
	font-size: 16px;
}
.f-bot .privacy-link {
	margin-left: auto;
	color: #9eb3c5;
	text-decoration: none;
}

@media screen and (max-width: 900px) {
	.f-logo {
		width: 350px;
	}
}
@media screen and (max-width: 768px) {
	.f-left,
	.f-right {
		width: 100%;
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
	}
}
@media screen and (max-width: 600px) {
	.footer {
		padding-bottom: 60px;
	}
	.f-bot {
		font-size: 15px;
	}
	.f-bot .privacy-link {
		order: -1;
		margin-bottom: 25px;
		margin-right: 15px;
	}
	.f-bot .copyright {
		width: 100%;
		text-align: center;
	}
}
@media screen and (max-width: 480px) {
	.footer .name {
		font-size: 23px;
	}
	.f-left {
		text-align: center;
	}
	.f-right {
		display: none;
	}
	.f-bot .privacy-link {
		font-size: 13px;
	}
}


/************************************************************************************
*	アニメーション
**************************************************************************************/
/* ポップイン */
.pop-animation {
	transform: scale(0.1) translateY(100px); /* 初期サイズをかなり小さく、下方向に移動 */
	opacity: 0; /* 初期状態を透明に */
	/* transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1), opacity 1s cubic-bezier(0.22, 1, 0.36, 1); */
	transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 1s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* 弾むようなイージング */
}
.pop-animation.active {
	transform: scale(1) translateY(0); /* 本来のサイズと位置に戻る */
	opacity: 1; /* 完全に見えるように */
}

/* 下からフェードイン */
.fade-in-bottom {
  opacity: 0; /* 最初は完全に透明にする */
  transform: translateY(50px); /* 最初は少し下に移動させておく */
}
.fade-in-bottom.active {
	/* animation-play-state: running; */
	animation: fadeInBottom 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes fadeInBottom {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ぷるるん */
.pururun {
  animation: pururunAnimation 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1; /* アニメーション名、時間、イージング、繰り返し回数 */
}
@keyframes pururunAnimation {
  0% { transform: translateY(0); }
  30% { transform: translateY(-10px) scaleY(1.1); } /* 少し上に伸びる */
  60% { transform: translateY(5px) scaleY(0.9); }  /* 少し下に縮む */
  80% { transform: translateY(-2px) scaleY(1.05); } /* わずかに上に伸びる */
  100% { transform: translateY(0) scaleY(1); }    /* 元に戻る */
}

/* きらん（ホバー時） */
.kiran {
	position: relative;
	overflow: hidden;
}
.kiran:hover {
	opacity: 1;
}
.kiran::after {
	background-color: #fff;
  content: "";
  display: block;
  position: absolute;
  top: -100px;
  left: 0;
  width: 30px;
  height: 100%;
  opacity: 0;
  transition: cubic-bezier(0.32, 0, 0.67, 0);
}
.kiran:hover::after {
	animation: kiran 0.5s linear;
}
@keyframes kiran {
  0% {
    transform: scale(2) rotate(45deg);
    opacity: 0;
  }
  20% {
    transform: scale(20) rotate(45deg);
    opacity: 0.6;
  }
  40% {
    transform: scale(30) rotate(45deg);
    opacity: 0.4;
  }
  80% {
    transform: scale(45) rotate(45deg);
    opacity: 0.2;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

/* 中心から広がるワイプ */
.wipe-in {
  position: relative;
  overflow: hidden;
  white-space: nowrap; /* テキストが改行しないように */
}
.wipe-in::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: black; /* 背景色に合わせて調整 */
  transform-origin: center;
  transform: scaleX(1);
  animation: wipeInAnim 0.7s ease-out forwards;
}
.wipe-in span {
  color: transparent; /* 初期状態ではテキストを透明に */
  animation: textFadeIn 0.7s ease-out forwards 0.3s; /* 少し遅れてテキストを表示 */
}
@keyframes wipeInAnim {
  0% { transform: scaleX(1); }
  100% { transform: scaleX(0); }
}
@keyframes textFadeIn {
  0% { color: transparent; }
  100% { color: black; } /* テキストの色に合わせて調整 */
}

/* 縦方向への展開 */
.vertical-reveal {
  position: relative;
  overflow: hidden;
}
.vertical-reveal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white; /* 背景色に合わせて調整 */
  transform-origin: top;
  transform: scaleY(1);
  animation: verticalRevealAnim 0.6s ease-out forwards;
}
.vertical-reveal.bottom-to-top::before {
  transform-origin: bottom;
}
.vertical-reveal span {
  color: transparent; /* 初期状態ではテキストを透明に */
  animation: textFadeIn 0.6s ease-out forwards 0.3s; /* 少し遅れてテキストを表示 */
}
@keyframes verticalRevealAnim {
  0% { transform: scaleY(1); }
  100% { transform: scaleY(0); }
}
@keyframes textFadeIn {
  0% { color: transparent; }
  100% { color: black; } /* テキストの色に合わせて調整 */
}

/* バウンスイン */
.bounce-in {
  opacity: 0;
  transform: scale(0.7);
}
.bounce-in.active {
	animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
}
@keyframes bounceIn {
  0% { opacity: 0; transform: scale(0.7); }
  60% { opacity: 1; transform: scale(1.1); }
  100% { opacity: 1; transform: scale(1); }
}

/* 回転しながらフェードイン */
.rotate-fade-in {
  opacity: 0;
  transform: rotate(-20deg);
}
.rotate-fade-in.active {
	animation: rotateFadeIn 0.7s ease-out forwards;
}
@keyframes rotateFadeIn {
  0% { opacity: 0; transform: rotate(-20deg); }
  100% { opacity: 1; transform: rotate(0); }
}

/* スライドイン (下から) */
.slide-in-bottom {
	display: inline-block;
  opacity: 0;
  transform: translateY(25px);
}
.slide-in-bottom.active {
	animation: slideInBottom 0.5s ease-out forwards;
}
@keyframes slideInBottom {
  0% { opacity: 0; transform: translateY(50px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* 横方向への展開 */
.fainleft {
	display: inline-block;
	clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
.fainleft.active {
	animation: righttop 1s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
}
@keyframes righttop {
	0% {
		clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
	}

	100% {
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
	}
}
