		
	
		.main_img img {
			width: 100vw;
			height: auto;
			position: absolute;
			bottom: 0;
			left: 50%;
			transform: translateX(-50%);
			visibility: hidden;
			/* 初期状態では非表示 */
		}

		.img1 {
			visibility: visible;
			/* 初期状態で表示 */
		}


		.animation-container {
    width: 100vw; /* または、アニメーションの範囲としたい幅 */
    overflow: hidden;
    position: relative; /* 子要素のabsolute配置の基準とする */
}




		.kumo {
			position: absolute;
			top: 0;
			z-index: 2;
			width: 100vw;
			height: 40vh;
			background-image: url('../img-re/kumo.svg');
			background-repeat: repeat-x;
			background-position: 0 0;
			animation: moveKumo 120s linear infinite;
			/* ゆっくり動く初期設定 */
		}

		.kumo2 {
			position: absolute;
			top: 0;
			z-index: 3;
			width: 100vw;
			height: 40vh;
			background-image: url('../img-re/kumo2.svg');
			background-repeat: repeat-x;
			background-position: 0 0;
			animation: moveKumo2 240s linear infinite;
			/* もっとゆっくり動く初期設定 */
		}

		/* 背景を右から左に動かすアニメーション */
		@keyframes moveKumo {
			0% {
				background-position: 0 0;
			}

			100% {
				background-position: -200vw 0;
			}
		}

		@keyframes moveKumo2 {
			0% {
				background-position: 0 0;
			}

			100% {
				background-position: -200vw 0;
			}
		}


		.hikouki {
			position: absolute;
			top: 0;
			z-index: 1;
			width: 100vw;
			height: 40vh;
			overflow: hidden;
		}

		.hikouki img {
			position: absolute;
			bottom: 0;
			right: -100px;
			width: auto;
			height: auto;

			/* アニメーション: 15秒間、2秒遅延して開始 */
			animation: moveHikouki 20s ease-in-out infinite;
			animation-delay: 2s;

			/* スムーズな動きのための最適化 */
			will-change: transform;
		}

		/* アニメーション定義 */
		@keyframes moveHikouki {
			0% {
				transform: translate(0, 0);
				/* 初期位置: 右下 */
			}

			100% {
				transform: translate(-50vw, -40vh);
				/* 目的地: 画面の中央上 */
			}
		}

		.tori {
			position: absolute;
			z-index: 5;
			width: 150px;
			/* 画像のサイズに合わせて調整 */
			height: 50vh;
			/* 高さを50vhに設定 */
			top: 0;
			/* 垂直方向で中央に配置 */
			left: -100px;
			/* 初期位置を左外に設定 */
			animation: moveRight 30s ease-in-out infinite;
		}

		.tori-img {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			/* 画像のサイズに合わせて調整 */
			height: 100%;
			visibility: hidden;
			/* 初期状態は非表示 */
		}

		.tori1 {
			visibility: visible;
			/* 初期状態で表示 */
		}

		@keyframes moveRight {
    0% {
        left: -100px;
    }
    100% {
        left: calc(100vw + 150px); /* ビューポートの幅 + .toriの幅 */
    }
}
#fullpage{max-width: 100vw;
		overflow-x: hidden;}


		.run {
			position: absolute;
			bottom: 130px;
			z-index: 5;
			width: 140px;
			/* 必要に応じてサイズを調整 */
			height: 75px;
			/* 必要に応じてサイズを調整 */
			left: 60%;
			/* アニメーションの開始位置 */
			animation: moveLeft 30s linear;
			/* 5秒で左に移動し、無限ループ */
			animation-fill-mode: forwards;
			/* アニメーション後に最後の状態を保持 */
		}

		.run-img {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			visibility: hidden;
			/* 初期状態では非表示 */
		}

		.img1 {
			visibility: visible;
			/* 最初に表示される画像 */
		}

		@keyframes moveLeft {
			0% {
				left: 50%;
				/* 開始位置 */
			}

			100% {
				left: -10%;
				/* 終了位置 */
			}
		}

		.bike {
			position: absolute;
			bottom: 160px;
			z-index: 4;
			width: 60px;
			/* 必要に応じてサイズを調整 */
			height: 60px;
			/* 必要に応じてサイズを調整 */
			left: 40%;
			/* アニメーション開始位置 */
			animation: moveBike 5s linear;
			/* 5秒かけて40%から60%に移動 */
			/* 2秒の遅延 */
			animation-fill-mode: forwards;
			/* アニメーション後に最後の状態を保持 */
		}


		.bike-img {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			visibility: hidden;
			/* 初期状態では非表示 */
		}

		.bike1 {
			visibility: visible;
			/* 最初に表示される画像 */
		}

		@keyframes moveBike {
			0% {
				left: 35%;
				/* 開始位置 */
			}

			100% {
				left: 55%;
				/* 終了位置 */
			}
		}


		.walk {
			display: none;
			position: absolute;
			bottom: 170px;
			z-index: 3;
			width: 60px;
			/* 必要に応じてサイズを調整 */
			height: 60px;
			/* 必要に応じてサイズを調整 */
			left: 40%;
			/* アニメーション開始位置 */
			animation: moveWalk 60s linear forwards;
			/* 5秒かけて40%から55%に移動 */
			animation-delay: 2s;
			/* 2秒の遅延 */
		}

		.walk-img {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			visibility: hidden;
			/* 初期状態では非表示 */
		}

		.walk1 {
			visibility: visible;
			/* 最初に表示される画像 */
		}

		@keyframes moveWalk {
			0% {
				left: 45%;
				/* 開始位置 */
			}

			100% {
				left: -10%;
				/* 終了位置 */
			}
		}

		.hito {

			position: absolute;
			bottom: 140px;
			z-index: 5;
			width: 350px;
			/* 必要に応じてサイズを調整 */
			height: 60px;
			/* 必要に応じてサイズを調整 */
			left: 20%;
			/* アニメーション開始位置 */

		}

		.hito img {
			position: absolute;
			width: 100%;
			height: auto;


		}

		.tcp2 {
			z-index: 9;
		}

.natlogo {  
  position: absolute;
  left: 31%;
  top: 12vh;
  z-index: 4;
  width: 38%;
  opacity: 0; /* 初期は非表示 */
}

/* 初回用（ローディング終了後にアニメ開始） */
.natlogo.show {
  animation: bounceIn 2s ease forwards;
  animation-delay: 3s; /* ローディング終了後に3秒待って開始 */
}

/* 2回目以降（即アニメーション） */
.natlogo.immediate {
  animation: bounceIn 2s ease forwards;
  animation-delay: 0s !important;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  50% {
    opacity: 1;
    transform: translateY(10px);
  }
  70% {
    transform: translateY(-5px);
  }
  90% {
    transform: translateY(2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

		.natlogo img {
			width: 100%;
		}



		.expand-image {
			position: absolute;
			bottom: 30vh;
			left: 0;
			transform: translate(-50%, -50%) scale(1);
			/* 初期状態は拡大している（サイズ0） */
			opacity: 0;
			/* 初期状態は透明 */
			transition: transform 1.5s ease, opacity 1.5s ease;
			/* アニメーションを設定 */
			max-width: 45%;
		}

		@keyframes pulseOnce {
			0% {
				transform: scale(1);
			}

			5% {
				transform: scale(1.05);
			}

			10% {
				transform: scale(1);
			}

			100% {
				transform: scale(1);
			}
		}

		.expand-image.visible {
			opacity: 1;
			transform: translate(-50%, -50%) scale(1);
			animation: pulseOnce 5s infinite;
		}

		.expand-image.visible.delay {
			transition-delay: 1.5s;
			/* 1.5秒後に透明になる */
			opacity: 1;
			/* 最終的に透明にする */
		}

		.main_1 {
			position: relative;
			width: 80%;
			min-height: 100vh;
			font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
			line-height: 2.5em;
			margin: 0 auto;
		}

		.main_iro {
			background-color: #A5C502;
			color: #fff;
		}

		.main_iro .rec_title {
			color: #fff;
		}

		.main_iro2 .rec_title {
			color: #3b387e;
		}

		.main_iro3 .rec_title {
			color: #4770b9;
		}

		.rec_title {
			color: #333;
			font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
			font-weight: bolder;
			padding-bottom: 50px;
			line-height: 1.2em;
			font-size: 4.5em;
		}

		.rec_main_r {
			width: 50%;
			float: right;
			padding-top: 25vh;
		}

		.main_1_btn {
			position: absolute;
			bottom: 10vh;
			display: flex;
			/* 子要素を横並びにする */
			justify-content: center;
			/* 全体を中央揃え */
		}

		.main_1_btn div {
			background-color: #fff;
			color: #599934;
			border: 2px solid #599934;
			width: 15vw;
			height: 15vw;
			border-radius: 300px;
			margin: 1vw;
			display: flex;
			justify-content: center;
			/* 横方向の中央揃え */
			align-items: center;
			/* 縦方向の中央揃え */
			text-align: center;
			/* テキストを中央揃え */
			flex-direction: column;
			/* 画像とテキストを縦に並べる */
			line-height: 1.2em;
			font-size: 1.2em;
		}

		.main_iro2 .main_1_btn div {
			color: #ca890d;
			border: 2px solid #ca890d;
		}

		.main_iro3 .main_1_btn div {
			color: #3562ab;
			border: 2px solid #3562ab;
		}


		.main_iro2 {
			background-color: #f5e5d4;
		}

		.main_iro2 .rec_main_r {

			float: left;
		}

		.main_iro2 .main_1_btn {
			right: 0
		}

		.main_iro2 .expand-image {
			right: 0;
			left: auto;

		}

		.image-wrapper {
			padding-top: 15vh;
			position: relative;
			display: inline-block;
			overflow: hidden;
			max-width: 45%;
			opacity: 0;
			transition: opacity 1s ease;
			/* フェードイン効果 */
		}



		.image-wrapper.visible2 {
			opacity: 1;
		}




		.main_iro2 .image-wrapper {
			float: right;
		}

		.image-wrapper img {
			display: block;
			width: 100%;
			height: auto;
		}

		.cover {
			display: none;
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			/* 回転させるために大きめに設定 */
			height: 100%;
			/* 回転させるために大きめに設定 */
			background-color: #8db200;
			/* 背景色を設定 */
			transition: transform 0.7s ease-out;
			/* スライド時のアニメーション */
			transform: rotate(45deg) translate(0, 0);
			/* 45度回転させた状態で初期位置 */
			transform-origin: center;
			/* 回転の中心を指定 */
		}

		.main_iro2 .cover {
			background-color: #f5e5d4;
			/* 背景色を設定 */

		}

		.main_iro3 .cover {
			background-color: #fff;
			/* 背景色を設定 */

		}

		.image-wrapper.visible2 .cover {
			transform: rotate(45deg) translate(0, 100%);
			/* 45度回転を維持しつつ、下に移動 */
		}

		.en_title {
			font-size: 2em;
			font-family: "futura-pt-bold", sans-serif;
			font-size: 3em;
			font-weight: 700;
			font-style: normal;
			padding-bottom: 20px;
			color: #599934;
		}


		.main_iro2 .en_title {
			color: #dcb530;

		}

		.main_iro3 .en_title {
			color: #e95b4c;

		}

		.main_iro4 .en_title {
			color: #333;

		}

		.main_iro4 {
			background-color: #f3f3f3;
			
		}

		.main_iro4 .main_1 {
			padding-top: 100px;
			min-height: 90vh;
			
		}

		.re_pho {
			height: 0;
			/* 初期高さ */
			width: 20%;
			background-color: #bad6ec;
			float: left;
			margin: 0.3%;
			transition: height 0.8s ease-out;
			/* 高さのアニメーション */
			transform-origin: bottom;
			/* アニメーションの起点を底辺に */
			overflow: hidden;
			display: flex;
			/* フレックスボックスを適用 */
			align-items: center;
			/* 縦方向の中央揃え */
			justify-content: center;
			/* 横方向の中央揃え */
			position: relative;
		}


		.re_pho.active {
			height: 50vh;
			/* スクロール検知後の高さ */
		}

		.re_pho img {
			height: 50vh;
			width: auto;
		}

		.re_pho_box {
			position: absolute;
			bottom: 20%;
			height: 50vh;
			width: 100%;
			left: 0;
			display: flex;
			align-items: flex-end;
			/* 下ぞろえ */
			justify-content: center;
			/* 必要に応じて中央ぞろえなども追加 */
		}

		.caption {
			padding-top: 50%;
			padding-left: 30px;
			padding-right: 30px;
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background-color: rgba(0, 0, 0, 0.5);
			/* 黒の半透明フィルタ */
			color: white;
			opacity: 0;
			transition: opacity 0.3s ease;
			font-size: 1.2em;
			text-align: left;
			box-sizing: border-box;
		}

		.caption .cap1 {
			font-size: 0.6em;
			border: 1px solid;
			padding: 10px;
			margin-bottom: 10px;
		}

		.caption .cap2 {
			font-size: 1.2em;
			border-top: 1px solid;
			display: table-cell;
		}

		.re_pho:hover .caption {
			opacity: 1;
			/* ホバー時に表示 */
		}

		.main_iro5 {
			background-image: url('../img-re/office.png');
			background-size: cover;
		}


		.main_iro5 .main_1 {
			padding-top: 100px;
			min-height: 50vh;
		}

		.main_iro5 .en_title {
			color: #4770b9;

		}
.rec_en_btn {
    width: 30%;
    height: 20vh;
    background-color: #f2ebf0;
    margin: 1.5%;
    float: left;
    display: flex;
    flex-direction: column; /* ←追加 */
    font-weight: bolder;
    align-items: center;
    justify-content: center;
    color: #4c3414;
    font-size: 1.2em;
    position: relative;
    transition: background-color 0.3s ease, color 0.3s ease;
}

		/* ホバー時のスタイル */
		.rec_en_btn:hover {
			background-color: #eabd28;
			color: #7b6443;
		}

		/* imgの初期位置 */
		.rec_en_btn img {
			position: absolute;
			bottom: 20px;
			right: 20px;
			transition: right 0.3s ease;
			/* 位置変更時のフェード効果 */
		}

		/* ホバー時にimgの位置を変更 */
		.rec_en_btn:hover img {
			right: 10px;
		}

		.mic {
			display: inline-flex;
			/* Flexboxを使用 */
			align-items: center;
			/* 縦方向に中央揃え */
			justify-content: center;
			/* 横方向に中央揃え */
			color: #3562ab;
			border: 2px solid #3562ab;
			padding: 20px 30px;
			background-color: #fff;
			font-size: 1.2em;
			border-radius: 30px;
			gap: 10px;
			/* アイコンとテキスト間の余白 */
			position: absolute;
			bottom: 10%;
			right: 0;
		}

		.mic img {
			max-height: 40px;
		}

		#fullpage {
			overflow-x: hidden;
		}

		@media (max-width: 1550px) {
			.main_1 {
				position: relative;
				width: 90%;
				min-height: 100vh;
				font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
				line-height: 2.5em;
				margin: 0 auto;
			}

			.image-wrapper {
				width: 45%;
			}

			.rec_main_r {
				font-size: 0.8em;
			}

			.main_1_btn div {
				font-size: 0.9em;
			}

			.image-wrapper img {
				display: block;
				width: 80%;
				height: auto;
			}

			.re_pho.active {
				height: 50vh;
			}

			.re_pho_box {

				height: 50vh;

			}

			.caption {
				padding-top: 50%;

			}

			.mic {

				bottom: 5%;

			}

			.hito {
				bottom: 12vh;
				width: 19vw;
			}

			.run {

				bottom: 13vh;

				width: 110px;

				height: 60px;

			}


			.bike {
				position: absolute;
				bottom: 160px;
				z-index: 4;
				width: 40px;
				/* 必要に応じてサイズを調整 */
				height: 40px;
				/* 必要に応じてサイズを調整 */
				/* アニメーション開始位置 */
				animation: moveBike 5s linear;
				/* 5秒かけて40%から60%に移動 */
				/* 2秒の遅延 */
				animation-fill-mode: forwards;
				/* アニメーション後に最後の状態を保持 */
				left: 55%;
			}


			.bike-img {
				position: absolute;
				top: 0;
				left: 0;
				width: 100%;
				height: 100%;
				visibility: hidden;
				/* 初期状態では非表示 */
			}

			.bike1 {
				visibility: visible;
				/* 最初に表示される画像 */
			}

			@keyframes moveBike {
				0% {
					left: 25%;
					/* 開始位置 */
				}

				100% {
					left: 55%;
					/* 終了位置 */
				}
			}

			.tori {
				width: 130px;
				height: 50vh;

			}

			.hikouki img {
				width: 60px;
			}


		}


		@media (max-width: 1550px) {


			.run {

				bottom: 13vh;

				width: 100px;

				height: 55px;

			}

			.bike {
				bottom: 16vh;
				width: 40px;
				height: 40px;

			}

			.tori {
				width: 100px;


			}

			.hikouki img {
				width: 60px;
			}




		}


		@media (max-width: 768px) {

			.arc3 .arc-b,
			.arc4 .arc-b {
				width: calc((100% - clamp(0.313rem, -1.707rem + 4.21vw, 2.5rem)) / 2);
			}

			.sub_menu_1 {
				width: calc(100% - 20px);
				height: calc(38vh - 20px);
				padding: 10px;
				position: relative;
			}

			.sub_menu_2 {
				width: calc(100% - 20px);
				height: calc(19% - 20px);
				padding: 10px;
				position: relative;
			}



			.sub_menu_2 .sub_menu {
				width: calc(50% - 3px);
				float: left;
				background: #fff;
				height: calc(100% - 2px);
				border: 1px dotted #eee;
			}



			.sub_menu_ch {
				display: none;
			}




			.header_nav {
				position: absolute;
				z-index: 1;
				color: #fff;
				width: 100%;
				justify-content: space-between;
				display: block;
				align-items: center;
				max-width: 100vw;
			}

			.menu-container {
				width: 100%;
				position: absolute;
				top: 12.5vh;
				left: 0;
			}


			.hn_right ul li:not(:last-child) {
				margin-left: 0 !important;
			}

			.header_nav .arrow_u a {
				color: #333;
			}

			.arrow1 {
				border-color: transparent transparent #333 #333;
			}

			.ch-ar {
				width: 80%;
			}

			.contact-box,


			.header_nav img {
						width: calc(100vw - 100px);
			}

			.common_dl dl {
				display: block;
			}

			.copy {
				position: relative;
				top: calc(50% - 8em);
				font-size: 0.8em;
			}

			.title {
				font-size: 2.5em;
			}

			.top_text img {
				max-width: 60%
			}

			.rec_btn {
				width: 70vw;
				height: 10vh;
				position: fixed;
				bottom: 20px;
				right: 15vw;
				z-index: 9;
				opacity: 0;
				transition: opacity 1s ease-in;
			}

			.contents_box span {
				text-align: left;
				display: inline-block;
				font-size: 1.2em;
				line-height: 2em;
				margin-bottom: 15px;
			}

			.cont_text {
				padding-bottom: 0;
			}

			.g_icon_gr_1 {
				overflow: hidden;
				width: 100%;
			}

			.g_icon_gr_2 {
				width: 100%;
			}

			.g_icon_gr_3 {
				width: 100%;
			}

			.g_icon {
				width: calc(50% - 20px);
				height: calc(32vw - 20px);
			}

			.giconimg {
				width: 60px !important;
				margin: 0 auto;
			}

			.company_text_oo {

				position: relative;
			}

			.main_contents2 {
				width: 100%;
				height: auto;
				overflow: hidden;
				position: relative;
				padding: 50px 0;
			}

			.g_icon_gr_3 .g_icon {
				width: calc(50% - 20px);
			}

			.gkaku {
				top: calc(32vw - 40px) !important;
			}

			.gsect1 {
				left: calc(50% - 25px);
				top: 20px !important;
			}

			.gsect2 {
				left: calc(50% - 25px);
				top: calc(64vw + 20px) !important;
			}


			.gsect3 {
				left: calc(50% - 25px);
				top: calc(128vw + 20px) !important;
			}

			.g_title_c {
				position: absolute;
				width: 60px;
				top: -10px;
				height: 60px;
				font-size: 0.8em;
				border-radius: 300px;
				line-height: 1.5em;
				z-index: 5;
				display: flex;
				justify-content: center;
				align-items: center;
				color: white;
				text-align: center;
			}

			.company_text_01 {
				position: relative;
				width: 100%;
			}

			.company_text_01 .cont_text {
				text-align: center;
				padding: 20px 10%;
			}

			.btn {
				position: relative;
				right: 0%;
				bottom: 15%;
				color: #333;
				width: 256px;
				height: 45px;
				line-height: 45px;
				width: 100%;
				transition: all 0.3s;
			}

			.rec_bn2 {
				height: 20vh;
				width: 100%;
				overflow: hidden;
				margin-top: 15px;
			}

			.mon .company_img {
				height: 160%;
			}

			.company_img img {
				object-position: left;
				/* ★ここを追加または変更します */
			}

			.mon .company_img img {
				object-position: center;
			}

			.recc .company_img2 img {
				height: 100%;
				width: 100%;
				object-position: calc(50% + 70px) center;
				/* 右に50pxずらす */
				object-fit: cover;
			}

			.contents_box h2 {
				font-size: 1.8em;
			}

			.topics {
				width: 100%;
				float: left;
				margin: 1%;
				overflow: hidden;
				position: relative;
			}

			.topics_img {
				width: 100%;
				height: 150px;
			}

			.info_all_box .contents_box {
				padding-top: 0;
			}


			.main_contents3 {
				max-width: 80%;
				margin: 0 auto;
				height: auto;
				padding-bottom: 80px;
			}

			.foot_ac {
				width: 100%;
				float: right;
				line-height: 2em;
			}

			.foot_ch {
				width: calc(33% - 10px);
				float: left;
				padding: 5px;
				padding-top: 30px;
				font-size: 1em;
			}

			.news_info {
				width: 100%;
			}

			.news_news {
				padding: 3px 15px !important;
				margin-left: 20px;
				margin-bottom: 0px !important;
			}

			.news_rec {
				padding: 3px 15px !important;
				margin-left: 20px;
				margin-bottom: 0px !important;
			}

			.header_nav img {
				margin-top: 0px;
			}

			.nav_scr .header_nav img {
				max-height: 500px;
			}

			.arrow_u {
				border-bottom: 1px dotted #333;
			}

			.arrow1 {
				position: absolute;
				left: 30px;
				z-index: 9;
			}


			.sub_menu_pr {
				font-size: 1.0em;
				padding: 10px 0;
			}

			.ch-ar {
				width: 50%;
				font-size: 1.3em;
			}


			.sub_menu_4 {
				font-size: 0.8em
			}

			.company_img {
				width: 100%;
				height: 100%;
				overflow: hidden;
				position: absolute;
				top: 0;
				left: 0;
				object-fit: cover;
			}

			.run {
				bottom: auto;
				top: 670px;
				width: 70px;
				height: 37px;
			}

			@keyframes moveLeft {
				0% {
					left: 50%;
					/* 開始位置 */
				}

				100% {
					left: -100%;
					/* 終了位置 */
				}
			}

			/* 背景を右から左に動かすアニメーション */
			@keyframes moveKumo {
				0% {
					background-position: 0 0;
				}

				100% {
					background-position: -300vw 0;
				}
			}

			@keyframes moveKumo2 {
				0% {
					background-position: 0 0;
				}

				100% {
					background-position: -300vw 0;
				}
			}



			.bike {
				bottom: auto;
				top: 660px;
				width: 30px;
				height: 30px;
				animation: moveBike 5s linear;
			}

			/* アニメーション定義 */
			@keyframes moveHikouki {
				0% {
					transform: translate(0, 0);
					/* 初期位置: 右下 */
				}

				100% {
					transform: translate(-150vw, -40vh);
					/* 目的地: 画面の中央上 */
				}
			}

			.hito {
				bottom: auto;
				top: 700px;
				width: 200px;
			}

			/* デフォルト（初回用：5秒遅延） */
.natlogo { 
  position: absolute;
  left: 20%;
  top: 300px;
  z-index: 4;
  width: 60%;

  /* 初期は透明にして非表示 */
  opacity: 0;

}

/* 初回用（ローディング終了後にアニメ開始） */
.natlogo.show {
  animation: bounceIn 2s ease forwards;
  animation-delay: 3s; /* ローディング終了後に3秒待って開始 */
}

/* 2回目以降（即アニメーション） */
.natlogo.immediate {
  animation: bounceIn 2s ease forwards;
  animation-delay: 0s !important;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  50% {
    opacity: 1;
    transform: translateY(10px);
  }
  70% {
    transform: translateY(-5px);
  }
  90% {
    transform: translateY(2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

			.image-wrapper {
			padding-top: 0;
			position: absolute;
			display: inline-block;
			overflow: hidden;
			max-width: 100%;
			opacity: 0;
			transition: opacity 1s ease;
			/* フェードイン効果 */
        width: 100%;
    }

.rec_main_r {
    width: 100%;
    float: right;
    padding-top: 0;font-size: 1.1em;
}
.expand-image {
    position: relative;
    bottom: auto;
    left: 10%;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    transition: transform 1.5s ease, opacity 1.5s ease;
    max-width: 90%;
}
    .image-wrapper img
 {
        width: 90%;margin:0 auto;

    }
	.rec_title {
    font-size: 2.5em;
}
    .main_1 {
        position: relative;
        width: 90%;
        min-height: auto;
        font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
        line-height: 2.5em;
        margin: 0 auto;padding-bottom: 25vh;overflow: hidden;
    }
.main_1_btn {
    bottom: 5vh;
    display: flex
;
    justify-content: center;
}

.main_1_btn div {
    background-color: #fff;
    color: #599934;
    border: 2px solid #599934;
    width: 15vh;
    height: 15vh;
    border-radius: 300px;
    margin: 1vw;
    display: flex
;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    line-height: 1.2em;
    font-size: 1em;padding:10px;
}
.main_1_btn img{max-width:13vw;}

    .main_iro2 .main_1 {
        padding-bottom: ;
;
    }

	.main_iro2 .main_1_btn {
    right: auto;
}

.main_iro3{padding-top:30px;}
.re_pho_box {
    position: relative;
    bottom: 20%;
      width: 100%;
    left: 0;
    display: block;
    align-items: flex-end;
    justify-content: center;
}

.re_pho {
    height: 0;
    width: 100%;
    background-color: #4770b9;
    float: left;
    margin: 0;
    transition: height 0.8s ease-out;
    transform-origin: bottom;
    overflow: hidden;
display: block;
    align-items: center;
    justify-content: center;
    position: relative;
}
    .re_pho.active {
       height: 200px;margin-bottom:3px;
    }

	.re_pho img {
    height: 100%;
    width: 50%;
    object-fit: cover;
    object-position: center 20%; /* 20%ぐらいで上から50px相当になるかも */
}
  .caption { right: 0;left: auto;
    height: 100%;font-size: 1.1em;line-height: 1.8em;
    width: 50%;
    padding: 10px;
    opacity: 1;
    background-color: rgba(0, 0, 0, 0);

    display: flex;              
    flex-direction: column;     /* 縦に並べる */
    justify-content: center;    /* 縦方向の中央寄せ */
    align-items: center;        /* 横方向の中央寄せ */
    text-align: center;
}

	.rec_en_btn {
    width: 100%;
    height: 10vh;
    background-color: #f2ebf0;
    margin: 1.5%;
    float: left;
    display: flex
;
    font-weight: bolder;
    align-items: center;
    justify-content: center;
    color: #4c3414;
    font-size: 1.2em;
    position: relative;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.main_iro5 .main_1 {
    padding-top: 100px;
    min-height: auto;padding-bottom: 100px;
}

.caption .cap1 {
    font-size: 0.8em;
    border: 1px solid;
    padding: 3px 10px;
    margin-bottom: 10px;
}

		}
