@charset "utf-8";
/* CSS Document */

body{
	margin: 0;
}

.sticky-container{
	margin: 0;
	font-family: "din-2014", YuGothic, "Yu Gothic Medium", "Hiragino Sans", Meiryo, sans-serif;
}

.sticky-container img{
	display: block;
	line-height: 0;
}

.pc-box{
	display: none;
}

.wrapper{
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
}

@media(min-width:750px){
.sticky-container {
		display: flex;
		justify-content: center;
		background-color: #cd071e;
		position: relative;
	}

	/* 左右の親枠共通の固定設定 */
	.pc-box {
		position: fixed;
		top: 0;
		width: 32%; /* 左右の余白幅（レイアウトに合わせて調整可） */
		height: 100vh;
		display: flex;
		justify-content: center;
		align-items: center;
		z-index: 10;
		pointer-events: none; /* メイン領域の操作を邪魔しない */
	}

	/* 1つ目の pc-box（左側） */
	.sticky-container > .pc-box:first-of-type {
		left: 0;
	}

	/* 2つ目の pc-box（右側） */
	.sticky-container > .pc-box:last-of-type {
		left: auto;
		right: 0; /* 右端にピタッと固定 */
	}

	.pc-box__left img {
		width: 50vh;
		pointer-events: auto;
	}

	.pc-box__right img {
		width: 22vh;
		filter: brightness(0) invert(1);
		pointer-events: auto;
	}

	.wrapper {
		width: 35%;
		margin: 0 auto;
		border-left: solid 10px #fff;
		border-right: solid 10px #fff;
	}
	
	/* アニメーションなし（transitionを指定しない）でパキッと切替 */
	.sticky-container.bg-yellow {
		background-color: #F4DE3D !important; /* map */
	}

	.sticky-container.bg-red {
		background-color: #a8151b !important; /* china */
	}

	.sticky-container.bg-koria {
		background-color: #faf2e7 !important; /* koria */
	}

	.sticky-container.bg-india {
		background-color: #088c90 !important; /* india */
	}

	.sticky-container.bg-foot {
		background-color: #f4de3d !important; /* foot（※必要に応じて希望の色に変更してください） */
	}
	
.pc-box__left img {
    /* transition: filter 0.3s ease; */ /* 必要に応じてアニメーションを追加 */
}

/* bg-koria クラスが付いている（koriaエリアにいる）ときだけ指定 */
.sticky-container.bg-koria .pc-box__left img {
    filter: brightness(0) !important;
}	
	
.sticky-container.bg-koria .pc-box__right img {
    filter: brightness(0) !important;
}	
	
}

/*===================================

				map

====================================*/

.map{
	background-color: #F4DE3D;
	padding: 5% 0;
	position: relative;
}

.map p{
	text-align: center;
	font-size: .8rem;
	letter-spacing: .8px;
	line-height: 2;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	font-weight: 600;
	color: #FFFFFF;
	margin: 5% auto 10%;
}

/* 1. 横移動を担当する親枠 */
.map_kazari_wrapper {
  width: 23%;
  margin: 0 auto;
  /* 左から右への横移動だけを指定 */
  animation: flow-right 8s linear infinite;
}

/* 2. 上下ゆれを担当する画像本体 */
.map_kazari {
  width: 100%; /* 親枠の幅いっぱいに広げる */
  height: auto;
  display: block;
  /* 上下ゆれ・回転だけを指定 */
  animation: floating 4s ease-in-out infinite alternate;
}

/* ★ 左から右へ横切るアニメーション */
@keyframes flow-right {
  0% {
    /* 画面の左外側からスタート */
    transform: translateX(-150%);
  }
  100% {
    /* 画面の右外側（画面幅 + 自身の幅）へ移動 */
    transform: translateX(400%);
  }
}

/* 上下ゆれのアニメーション */
@keyframes floating {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
  100% {
    transform: translateY(0px) rotate(-5deg);
  }
}

.map .map-title{
	font-family: "din-2014", YuGothic, "Yu Gothic Medium", "Hiragino Sans", Meiryo, sans-serif;
	font-size: 2.5rem;
	line-height: 1.5;
	margin: 5% auto;
}

.map-base{
	position: relative;
	margin: 5% 0 0;
}

.map-base ul{
	padding: 0;
	list-style: none;
}

.map-base ul li{
	width: 20%;
	position: absolute;
}

.map-base ul li:nth-child(1){
	top: 10%;
	right: 7%;
	width: 18%;
}

.map-base ul li:nth-child(2){
	top: 10%;
	right: 30%;
	width: 18%;
}

.map-base ul li:nth-child(3){
	top: 23%;
	right: 45%;
}

.map-base ul li:nth-child(4){
	bottom: 48%;
	left: 11%;
}

.map-base ul li:nth-child(5){
	bottom: 30%;
	left: 13%;
	width: 21%;
}

.map-base ul li:nth-child(6){
	top: 29%;
	right: 9%;
	width: 11%;
}

.map-base ul li:nth-child(7){
	top: 33%;
	right: 32%;
	width: 12%;
}

.map-base ul li:nth-child(8){
	bottom: 43%;
	left: 15%;
	width: 14%;
}

@media(min-width:750px){
.map p{
	font-size: 1.1rem;
}
}

/*===================================

		main-contents

====================================*/

.main-contents{
	margin: 0 auto;
}

.contents-inner{
	margin: 0 auto;
	position: relative;
}

/*---------- china ----------*/
#china{
	padding: 3% 0;
	background-color: #a8151b;
}

.china{
	background-color: #a8151b;
	padding: 3% 0;
}

/*---------- 共通 ----------*/

.inner-main{
	padding: 5% 0;
	position: relative;
}

.icon{
	width: 20%;
	padding-left: 3%;
	margin: 3% 0;
}

.text{
	padding-left: 3%;
	color: #fff;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	font-weight: 600;
	margin: 5% 0;
}

.text p{
	margin: 2% 0;
	font-size: .8rem;
	letter-spacing: .5px;
	line-height: 1.8;
}

.text .text-01{
	font-size: 1.3rem;
	line-height: 1.3;
}

.text .text-02{
	font-size: 2.2rem;
	line-height: 1.3;
}

.text .text-03{
	font-size: 1.2rem;
	line-height: 1.3;
	font-family: "din-2014", YuGothic, "Yu Gothic Medium", "Hiragino Sans", Meiryo, sans-serif;
}

.text .text-04{
	font-size: 1rem;
	line-height: 1.1;
}

.food{
	position: relative;
	margin: 8% 0;
	padding-bottom: 3%;
}

.food .main-img{
	width: 93%;
}

.food a img{
	width: 27%;
	position: absolute;
	bottom: 0;
	right: 3%;
}

.icon-right{
	width: 20%;
	padding-left: 0%;
	box-sizing: border-box;
	margin-left: 76%;
}

.text-right{
	text-align: right;
	padding-right: 3%;
}

.food-right .main-img{
	margin-left: 7%;
}

.food-right a img{
	right: auto;
	left: 3%;
}

@media(min-width:750px){
.text p{
	font-size: .95rem;
	letter-spacing: .5px;
}
}

/*---------- china飾り ----------*/

.chaina_othre1{
	position: absolute;
	right: 5%;
	top: 1.5%;
	width: 14%;
	animation: swingCenter 2s ease-in-out infinite alternate;
	transform-origin: center center;
}

.chaina_othre2{
	position: absolute;
	right: 5%;
	top: 20%;
	width: 24%;
	animation: upDown 2s ease-in-out infinite alternate;
	transform-origin: center center;
}

.chaina_othre3{
	position: absolute;
	left: 0;
	top: 50%;
	width: 24%;
	animation: swingTranslate 2s ease-in-out infinite alternate;
}

.chaina_othre4{
	position: absolute;
	right: 0;
	bottom: 3%;
	width: 24%;
	animation: swingTranslate 2s ease-in-out infinite alternate;
}

.chaina_othre5{
	position: absolute;
	left: 3%;
	bottom: 25%;
	width: 24%;
	animation: upDown 2s ease-in-out infinite alternate;
	transform-origin: center center;
}


/*---------- animation ----------*/

@keyframes swingCenter {
    0% {
        /* 反時計回りに15度回転 */
        transform: rotate(-5deg);
    }
    100% {
        /* 時計回りに15度回転 */
        transform: rotate(5deg);
    }
}


@keyframes upDown {
    0% {
        /* 上に10ピクセル動かします（Yは縦方向を意味します） */
        transform: translateY(-10px);
    }
    100% {
        /* 下に10ピクセル動かします */
        transform: translateY(10px);
    }
}

@keyframes swingTranslate {
    0% {
        transform: translateX(-20px);
    }
    100% {
        transform: translateX(20px);
    }
}

/*---------- koria ----------*/
#koria{
	background-color: #faf2e7;
	background-image: url("../images/koria_bg.png");
	background-size: contain;
}

.koria .text{
	color: #000;
}

.koria .food .main-img{
	width: 100%;
	padding-bottom: 3%;
	margin: 0;
}

.koria .food a img{
	width: 27%;
	position: absolute;
	bottom: -7%;
	right: 3%;
}


/*---------- koria飾り ----------*/

.koria_other{
	position: absolute;
	right: 5%;
	top: 6%;
	width: 24%;
	animation: swingCenter 2s ease-in-out infinite alternate;
	transform-origin: center center;
}

/*---------- india ----------*/
#india{
	padding: 3% 0;
	background-color: #088c90;
}

.india{
	background-color: #088c90;
	padding: 3% 0;
}

.india .india-bg1{
	background-image: url("../images/india_bg1.png");
	background-size: 60% auto;
	background-repeat: no-repeat;
	background-position: right 5%;
}

.india .india-bg2{
	background-image: url("../images/india_bg2.png");
	background-size: 60% auto;
	background-repeat: no-repeat;
	background-position: left 10%;
}


/*---------- india飾り----------*/

.india_pos{
	position: absolute;
	top: 50%;
}

/* 全体の枠：はみ出た画像を隠す */
.india-loop-container {
  width: 100%;
  overflow: hidden;
}

/* 画像の設定 */
.india_other1 {
  /* 画像のサイズ（お好みの大きさに変更してください） */
  width: 35%; /* 例: 幅300pxに縮小 */
  height: auto;
  display: block;

  /* 右から左へ横切るアニメーション */
  animation: singleImageRightToLeft 15s linear infinite;
}

/* ★ 画面の右外から左外へ移動するキーフレーム */
@keyframes singleImageRightToLeft {
  0% {
    /* 画面の右端（外側）からスタート */
    transform: translateX(100vw);
  }
  100% {
    /* 画面の左端（完全に見えなくなる外側）へ移動 */
    transform: translateX(-100%);
  }
}

.pdtop{
	padding-top: 10%;
}



.foot{
	background-color: #f4de3d;
	padding: 5% 0;
}

.foot h2{
	font-family: "din-2014", YuGothic, "Yu Gothic Medium", "Hiragino Sans", Meiryo, sans-serif;
	font-size: 2.5rem;
	line-height: 1.5;
	margin: 5% auto;
	color: #fff;
	text-align: center;
	letter-spacing: .5px;
}

.foot ul{
	padding: 0;
	list-style: none;
	display: flex;
	column-gap: 10px;
	grid-row-gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
	width: 90%;
	margin: 0 auto;
}

.foot ul li{
	width: calc(33.3% - 10px);
}

.foot ul li p{
	margin: 2% 0;
	font-size: .7rem;
	font-weight: 600;
	letter-spacing: 1px;
	text-align: center;
}

	.all{
		display: block;
		width: 90%;
		margin: 15% auto 15%;
		text-align: center;
		background-color: #fff;
		color: #f4de3d;
		font-size: 2.0rem;
		text-decoration: none;
		position: relative;
		line-height: 1.8;
		border-radius: 100px;
		letter-spacing: 1px;
	}

	.all:after{
		display: inline-block;
		position: absolute;
		top: 50%;
		right: 15px;
		width: 5px;
		height: 5px;
		border-top: 2px solid #f4de3d;
		border-right: 2px solid #f4de3d;
		content: "";
		transform: translateY(-50%) rotate(45deg);
	}
