@charset "utf-8";
/* CSS Document */
@import url(//fonts.googleapis.com/earlyaccess/notosansjapanese.css);
/*設定する場合→ font-family:'Noto sans japanese', sans-serif; を追加*/
/*同時に他のWEBフォントを使う場合はhtml側に記載すること*/

* {
	box-sizing: border-box;
}

a {
	text-decoration: none;
	color: inherit;

	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

a:hover {
	opacity: .7;
}

body {
	font-size: 14px;
	background: #FFFFFF;
	font-family: Meiryo, Tahoma, Verdana, Arial, sans-serif;
}

#wrapper {
	min-width: 1024px;
}

img {
	width: 100%;
	vertical-align: bottom;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=submit],
input[type=button] {
	-webkit-appearance: none;
	border: 1px solid #999999;
}

input[type=submit] {
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

.for-sp {
	display: none !important;
}

/* [type=number]矢印非表示 */
/* Chrome、Safari、EdgeなどのWebKitベースのブラウザ用 */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox用 */
input[type="number"] {
	-moz-appearance: textfield;
}

/*共通
----------------------------------------------------------------------------------------------------*/
::-webkit-scrollbar {
	display: none;
}

.st {
	width: fit-content;
	margin: auto;
}

.st {
	width: 50%;
}

.rocketAct {
	animation: rocket_move 1s ease 0s;
}

.startWalk {
	display: flex !important;
}

.page-transition-animation {
	position: absolute;
	top: 0;
	z-index: 999;
	width: 100%;
	height: 100%;
	background: #ff9d35;
	animation: curtainRises .3s .2s ease-in forwards;
}

.page-transition-animation-inner {
	position: absolute;
	top: 0;
	z-index: 999;
	display: block;
	width: 100%;
	height: 100%;
	background: #ffcc00;
	animation: curtainRises .2s ease-in forwards;
}

.lum-lightbox {
	z-index: 999;
}

@keyframes bg_scroll {
	0% {
		background-position-x: 100%;
	}

	100% {
		background-position-x: 0%;
	}
}

@keyframes rocket_move {
	0% {
		transform: translateX(100%) translateY(-50%);
	}

	100% {
		transform: translateX(0%) translateY(-50%);
	}
}

@keyframes rocket_scrollX {
	0% {
		right: -400px;
	}

	100% {
		right: 100%;
	}
}



@keyframes boing-anim {
	10% {
		transform: translateY(-1.2rem);
	}

	/*少し縮む*/
	40% {
		transform: translateY(-1.4rem);
	}

	/*縮む*/
	50% {
		transform: translateY(0);
	}

	/*反動で縦長*/
	60% {
		transform: translateY(-0.8rem);
	}

	/*また反動で縮む*/
	70% {
		transform: translateY(0);
	}

	/*反動が小さく*/
	90% {
		transform: translateY(-0.4rem);
	}

	/*最後の震え*/
	100% {
		transform: translateY(0);
	}

	/*元に戻る*/
}


@keyframes menuView {
	0% {
		transform: scaleY(0);
	}

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

@keyframes menuHide {
	0% {
		transform: scaleY(1);
	}

	100% {
		transform: scaleY(0);
	}
}

@keyframes menuInnerView {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

/* 遷移アニメーション */
@keyframes curtainRises {
	0% {
		height: 100%;
	}

	100% {
		height: 0%;
	}
}

.banner-box {
	display: block;
	margin: auto;
	width: 100%;
	max-width: 800px;
}

.banner-box img {
	width: 100%;
}

/*ヘッダー
----------------------------------------------------------------------------------------------------*/

#hero {
	position: relative;
	background: url('./../img/bg/head-bg.jpg') no-repeat center;
	background-size: cover;
	overflow: hidden;
	height: 100vh;
	z-index: 2;
}

.header-flex {
	display: flex;
	gap: 4em;
}

.header-left {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 30%;
	text-align: center;
}


.hero-rocket {
	position: absolute;
	top: 55vh;
	transform: translateY(-50%);
	width: 20%;
	min-width: 380px;
}

.char-flex {
	display: flex;
	gap: 4rem;
	position: absolute;
	top: calc(100vh - 200px);
}

.header-right {
	width: 70%;
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.fixed-menu {
	position: fixed;
	top: 12px;
	right: 12px;
	cursor: pointer;
	z-index: 999;
}

.fixed-menu img {
	width: 100px;
}


.hero-rate dl {
	overflow: hidden;
}


.rate-flex {
	display: flex;
}

.rate-inner-flex {
	display: flex;
}

#menu {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: #ffcc00;
	z-index: 9999;
	overflow: hidden;
	transform: scaleY(0);
}

.menuAct {
	animation: 0.3s menuView ease-in-out forwards;
}

.menuHide {
	animation: 0.3s menuHide ease-in-out forwards;
}


#menu_close {
	position: absolute;
	right: 12px;
	top: 12px;
	cursor: pointer;
}

#menu_close img {
	width: 40px;
}

#menu_title {
	display: block;
	width: clamp(12.5rem, 8.2386rem + 18.1818vw, 21.875rem);
	margin: auto;
	margin-top: 1rem;
	margin-bottom: 2rem;
}

#menu_title img {
	width: 100%;
}

.menu-inner {
	position: relative;
	max-width: 1200px;
	min-width: 300px;
	margin: auto;
}

.text-menu,
.btn-menu {
	opacity: 0;
	width: clamp(21.875rem, 14.7727rem + 30.303vw, 37.5rem);
	margin: auto;
}


.menuAct .text-menu,
.menuAct .btn-menu {
	animation: 0.2s menuInnerView 0.7s ease-out forwards;
}

.text-menu li {
	margin: auto;
	margin-bottom: clamp(2.4rem, 1.6727rem + 3.103vw, 4rem);
	width: fit-content;
}

.btn-menu li {
	margin-bottom: 2rem;
}

.text-menu li a {
	display: block;
	font-size: clamp(2rem, 1.6667rem + 1.7778vw, 3rem);
	font-weight: bold;
	text-align: center;
	width: 100%;
	padding: 0 clamp(0rem, -0.9091rem + 3.8788vw, 2rem);
}

.text-menu li a:hover {
	opacity: 1;
	background: url(./../img/item/menu-arrow.png) no-repeat;
	background-position-x: 0;
	background-size: contain;
}

.btn-menu li .btn-relative {
	display: block;
}

.btn-menu li .btn-gif {
	width: clamp(1.875rem, 1.5909rem + 1.2121vw, 2.5rem);
	right: 1rem;
	top: -1rem;
}

/*メインコンテンツ
----------------------------------------------------------------------------------------------------*/

.content {
	min-width: 1024px;
	max-width: 1200px;
	padding: 12px;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
}


#fixed-content {
	width: 100%;
	position: relative;
	top: 100vh;
	z-index: 1;
	scrollbar-width: none;
	overflow: -moz-scrollbars-none;
}

#fixed-content>.content {
	transform: translateY(-80vh);
}

#scroll-bg {
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: -1;
	height: 100vh;
	background: url('./../img/bg/scroll_bg.jpg') no-repeat 0 0;
	background-size: cover;
	animation: bg_scroll 120s linear infinite;
}


.fixed-walking {
	position: absolute;
	top: 80vh;
	bottom: 0;
	left: 4rem;
	height: fit-content;
	display: flex;
	z-index: 1;
}

.fixed-rocket {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	z-index: 1;
	animation: rocket_scrollX 5s linear infinite;
}

.flex-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 8rem 1rem;
}

.col {
	width: 100%;
}

.col-2 {
	width: calc(33.3% - 2rem);
}

.col-3 {
	width: calc(50% - 1rem);
}

.col-4 {
	width: 68%;
}

.rate-with-line {
	margin: 0 auto;
	position: relative;
}

.rate-with-line img {
	position: absolute;
	top: -100px;
}

.point-relative {
	position: relative;
}

.minute-flex {
	display: flex;
	width: 64%;
	height: clamp(5.625rem, -5.284rem + 17.045vw, 7.5rem);
	justify-content: center;
	position: absolute;
	left: 0;
	right: 0;
	top: 70px;
	margin: auto;
}

.minute-flex__img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.rate-flex2 {
	display: flex;
}

.rate-relative {
	position: relative;
}

.rate-inner-flex2 {
	display: flex;
	position: absolute;
	left: 110px;
	top: 136px;
	width: clamp(20.75rem, -7.614rem + 44.318vw, 25.625rem);
}

.btn-box {
	display: flex;
	flex-direction: column;
	gap: 4rem;
}

.btn-box-sub {
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

.btn-relative {
	position: relative;
}

.btn-gif {
	width: fit-content;
	max-width: 100px;
	position: absolute;
	right: 40px;
	top: -40px;
}

.btn-box__flex {
	display: flex;
	gap: 2rem;
}

.btn-box__flex>* {
	flex: 0 1 50%;
}

.btn-box__flex img {
	width: 100%;
}

.hover-btn:hover {
	opacity: 1;
	animation: .8s boing-anim linear forwards;
}

.image-button_spacial-rate {
	width: fit-content;
	margin: 0 auto;
}

.simulation-box {
	position: relative;
}

.simulation-box::before {
	position: absolute;
	top: -40px;
	left: 10%;
	content: url('./../img/item/boy_normal.gif');
	display: block;
	width: fit-content;
	height: fit-content;
}

.simulation-box::after {
	position: absolute;
	top: -40px;
	right: 10%;
	content: url('./../img/item/girl_normal.gif');
	display: block;
	width: fit-content;
	height: fit-content;
}

.simulation-box .flex-row {
	row-gap: 2rem;
}

.simulation-box-inner {
	padding: 1rem;
	padding-top: 280px;
	padding-bottom: 4rem;
	background: -moz-radial-gradient(50% 42.37%, circle farthest-corner, rgba(255, 236, 210, 1) 47.06%, rgba(255, 207, 123, 1) 100%);
	background: -webkit-radial-gradient(50% 42.37%, circle farthest-corner, rgba(255, 236, 210, 1) 47.06%, rgba(255, 207, 123, 1) 100%);
	background: -webkit-gradient(radial, 50% 42.37%, 347.91, 50% 42.37%, 739.3, color-stop(0.4706, rgba(255, 236, 210, 1)), color-stop(1, rgba(255, 207, 123, 1)));
	background: -o-radial-gradient(50% 42.37%, circle farthest-corner, rgba(255, 236, 210, 1) 47.06%, rgba(255, 207, 123, 1) 100%);
	background: -ms-radial-gradient(50% 42.37%, circle farthest-corner, rgba(255, 236, 210, 1) 47.06%, rgba(255, 207, 123, 1) 100%);
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Stlye=2);";
	background: radial-gradient(50% 42.37%, circle farthest-corner, rgba(255, 236, 210, 1) 47.06%, rgba(255, 207, 123, 1) 100%);
	border-style: Solid;
	border-color: #C4AA76;
	border-color: rgba(196, 170, 118, 1);
	border-width: 10px;
	filter: progid:DXImageTransform.Microsoft.Alpha(Stlye=2);
}

.simulation-box label {
	position: relative;
	display: flex;
	margin-bottom: 1rem;
	align-items: center;
}

.simulation-box label img {
	width: fit-content;
}

.simulation-box input[type=radio] {
	display: none;
}

.simulation-box input[type=number] {
	height: 6rem;
	font-size: 4rem;
	padding: 12px;
	padding-right: 0;
	border-radius: 8px;
	width: 100%;
}

.simulation-box input[type=number]:focus {
	outline: 4px solid blue !important;
}

.cnt-input:first-of-type:checked+label::before {
	content: "";
	display: block;
	width: 4rem;
	height: 4rem;
	background: url(./../img/item/arrow_green.png)no-repeat center;
	position: absolute;
	left: -4rem;
}

.cnt-input:last-of-type:checked+label::before {
	content: "";
	display: block;
	width: 4rem;
	height: 4rem;
	background: url(./../img/item/arrow_blue.png)no-repeat center;
	position: absolute;
	left: -4rem;
}

.simulation-box .st {
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	top: -60px;
}

.simulation-contents {
	width: 80%;
	margin: auto;
}

.select_cnt {
	padding-left: 150px;
}

.group-site .flex-row {
	gap: 1rem 1rem;
}

.ly-even {
	padding-bottom: 150px;
	background: url(./../img/item/boy_girl_enjoy.gif) no-repeat;
	background-size: 20%;
	background-position: 50% 100%;
}

.ly-odd {
	background: url(./../img/item/boy_girl_enjoy.gif) no-repeat;
	background-size: 20%;
	background-position: 80% 100%;
}

.group-site .st {
	width: 80%;
}

.st-group {
	position: relative;
	margin-bottom: 4rem;
}

.st-group::before {
	content: url("./../img/item/boy_enjoy.gif");
	width: fit-content;
	height: fit-content;
	position: absolute;
	top: -20px;
	left: 40px;
}

.st-group::after {
	content: url("./../img/item/girl_enjoy.gif");
	width: fit-content;
	height: fit-content;
	position: absolute;
	top: -20px;
	right: 40px;
}

.group {
	background: #ffefe1;
	box-shadow: 12px 12px #231815;
	padding: 1rem;
	border-radius: 12px;
}

.group img {
	height: 80px;
	width: 100%;
	object-fit: contain;
}

.group-list-portal {
	padding: 0 !important;
}

.group-list-portal img {
	height: 112px !important;
	width: 100%;
}


/* エラーポップアップ */


#modal {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: #ebd0ffa3;
	z-index: 999;
}

.modal-inner {
	position: relative;
	width: 60%;
	max-width: 1200px;
	min-width: 320px;
	padding: 4rem 2rem;
	margin: auto;
	background: #fff;
	border-radius: 8px;
	top: 50%;
	transform: translateY(-50%);
}

.absolute-img {
	position: absolute;
	left: 2%;
	top: -20px;
}

.close-button {
	position: absolute;
	right: 1%;
	top: -20px;
}

.absolute-img img {
	width: 80px;
	height: 80px;
	object-fit: contain;
}

.close-button img {
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.modal-inner .text-box {
	font-weight: bold;
	font-size: 1.8rem;
	line-height: 1.5;
}

.modal-btn-box {
	display: flex;
	justify-content: space-evenly;
	margin: 1.8rem auto;
	min-width: 300px;
	max-width: 600px;
}

.modal-btn-box .btn-contents {
	width: 48%;
}

.modal-btn-box .btn-contents button {
	width: 100%;
	height: 4rem;
	font-size: 2rem;
	font-weight: bold;
	box-shadow: #000 0rem 1rem;
	border-radius: 8px;
}


/*フッター
----------------------------------------------------------------------------------------------------*/
.pagetop {
	position: fixed;
	bottom: -400px;
	/*適宜変更*/
	right: 1%;
	/*適宜変更 これはコンテンツ幅の右に合わせる場合の指定です*/
	z-index: 99;
	/*適宜変更・削除*/

	display: inline-block;
	/*必要があれば適宜変更*/
	transition: 0.7s;
}

.pagetop img {
	width: 180px;
}

.pagetop.act {
	bottom: 100px;
}

footer {
	position: absolute;
	background: #0f0f0fd9;
	width: 100%;
	margin: 100px 0 0;
	height: 60vh;
	bottom: 0;
}

.foot-inner {
	padding: 60px 0;
}

.foot-inner ul {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3em;
	margin: auto;
}

.foot-inner a {
	display: block;
	width: 100%;
	color: #fff;
	font-weight: bold;
	font-size: 28px;
	letter-spacing: 2px;
}

.foot-inner small {
	color: #fff;
	text-align: center;
	margin: 5em 0 0;
	display: block;
	width: 100%;
}

.foot-inner--flex {
	display: flex;
	flex-wrap: wrap;
	max-width: 1100px;
	margin: auto;
	gap: 0 2rem;
}

.foot-inner__item {
	flex: 0 0 calc(50% - 1rem);
}

.footer__ttl {
	color: #fff;
	font-size: 1.125rem;
	font-weight: 600;
	border-bottom: 1px solid;
	margin-bottom: .5rem;
	padding-bottom: .5rem;
}

.footer__nav {
	display: flex !important;
	flex-wrap: wrap;
	margin: unset !important;
	gap: 1rem !important;
}

.footer__nav-item {
	flex: 0 1 calc(50% - 1rem / 2);
}

.footer__nav-link {
	font-size: 1rem !important;
	font-weight: normal !important;
}


.fxfoot {
	width: fit-content;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

.fxfoot img {
	width: fit-content;
	max-width: 600px;
}