@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;
}

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

#wrapper {
	min-width: 320px;
	max-width: 1023px;
	margin: 0 auto;
}

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

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

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

.sp-br {
	display: block;
}

/* [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;
}

/*共通
----------------------------------------------------------------------------------------------------*/
.st {
	width: fit-content;
	margin: auto;
	width: 60%;
}

.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%);
	}

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

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

	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 {
	/* margin: 1rem 0; */
}

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

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

#hero {
	position: relative;
	background: url(./../img/bg/head-bg.jpg) no-repeat center;
	background-size: cover;
	overflow: hidden;
	min-height: 667px;
	padding-top: 1rem;
}

@media screen and (max-width:600px) {
	#hero {
		max-height: 720px;
	}
}

.header-flex {
	display: flex;
	align-items: center;
	flex-direction: column;
	top: 40%;
	gap: 1rem;
	max-width: 440px;
	transform: translateY(-50%);
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
}

.header-left {
	display: flex;
	gap: 2rem;
	width: 80%;
	align-items: center;
	text-align: center;
}

.hero-logo {
	width: 50%;
}

.hero-rocket {
	/* position: absolute;
	bottom: 20vw;
	left: 12%; */
	width: 50%;
	z-index: 1;
}

.char-flex {
	width: 22%;
	display: flex;
	gap: 2rem;
	position: absolute;
	bottom: 10%;
	right: 12%;
}


@media screen and (max-width:600px) {
	.char-flex {
		width: 30%;
		bottom: 14%;
	}
}


.header-right {
	width: 80%;
	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: 60px;
}


.hero-rate dl {
	overflow: hidden;
}


.rate-flex {
	display: flex;
}

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







.menuAct {
	display: block !important;
	animation: 0.3s menuView ease-in-out forwards;
	transform: scaleY(1);
}

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

#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);
}

#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);
}

.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: 320px;
	max-width: 900px;
	margin: 0 auto;
	overflow: hidden;
	padding: 4px;
}


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

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

#scroll-bg {
	position: sticky;
	top: 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: unset;
	bottom: 0;
	left: 1rem;
	height: fit-content;
	z-index: 10;
	width: 18%;
	gap: 12px;
}

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

.fixed-start {
	display: block;
}

.flex-row {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem 8px;
}

.col {
	width: 100%;
}

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

.col-3 {
	width: calc(50% - 12px);
}

.col-4 {
	width: calc(68% - 12px);
}

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

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


.point-relative {
	position: relative;
}

.minute-flex {
	display: flex;
	justify-content: space-evenly;
	width: 64%;
	max-height: 10vw;
	position: absolute;
	left: 0;
	right: 0;
	top: 6vw;
	margin: auto;
}

.minute-flex .digit {
	max-width: 33%;
}

.minute-flex .digit img {
	vertical-align: bottom;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.rate-flex2 {
	display: flex;
}

.rate-relative {
	position: relative;
}

.rate-inner-flex2 {
	width: 70%;
	display: flex;
	position: absolute;
	left: 10vw;
	top: 12vw;
}




.btn-box {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}
.btn-box-sub {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.btn-relative {
	position: relative;
}

.btn-gif {
	width: 12vw;
	position: absolute;
	right: 2vw;
	top: -6vw;
}

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

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

.btn-box__flex>*>img:first-child {
	width: 100%;
}

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

.simulation-box {
	position: relative;
	margin-top: 4rem;
}

.simulation-box::before {
	position: absolute;
	content: "";
	top: -6vw;
	left: 2%;
	background: url('./../img/item/boy_normal.gif');
	display: block;
	width: 12vw;
	height: 12vw;
	background-size: contain;
}

.simulation-box::after {
	position: absolute;
	content: "";
	top: -6vw;
	right: 2%;
	background: url('./../img/item/girl_normal.gif');
	display: block;
	width: 12vw;
	height: 12vw;
	background-size: contain;
}

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

.simulation-box-inner {
	padding: 1rem;
	padding-top: 20vw;
	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: auto;
	height: 9vw;
	object-fit: contain;
}

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

.simulation-box input[type=number] {
	height: 4rem;
	font-size: 2rem;
	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: 2rem;
	height: 2rem;
	background: url(./../img/item/arrow_green.png)no-repeat center;
	position: absolute;
	left: -2rem;
	background-size: contain;
}

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

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

.simulation-contents {
	margin: auto;
}

.select_cnt {
	padding-left: 10vw;
}

.group-site {
	padding-bottom: 12px;
}

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

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

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

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

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

.st-group::before {
	content: "";
	background: url("./../img/item/boy_enjoy.gif");
	width: 12vw;
	height: 12vw;
	background-size: contain;
	position: absolute;
	top: -2vw;
	left: 8%;
}

.st-group::after {
	content: "";
	background: url("./../img/item/girl_enjoy.gif");
	width: 12vw;
	height: 12vw;
	background-size: contain;
	position: absolute;
	top: -2vw;
	right: 8%;
}

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

.group img {
	height: 80px;
	width: 100%;
	object-fit: contain;
}
.group-list-portal{
    padding: 0 !important;
}
.group-list-portal img{
    height: 100% !important;
}

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


#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 1rem;
	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: 40px;
	height: 40px;
	object-fit: contain;
}

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

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

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

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

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

/*フッター
----------------------------------------------------------------------------------------------------*/
footer {
	padding-bottom: constant(safe-area-inset-bottom);
}

.pagetop {
	display: none !important;
	position: fixed;
	/*適宜変更*/
	right: 0px;
	/*適宜変更*/
	z-index: 99;
	/*適宜変更・削除*/

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


.pagetop img {
	width: 100px;
}

.pagetop.act {
	bottom: 10rem;
}



footer {
	background: #0f0f0fd9;
	width: 100%;
	margin: 4rem 0 0;
	overflow: hidden;
	position: absolute;
	bottom: 0;
	height: 80vh;
}

.foot-inner {
	position: relative;
	padding: 40px 12px;
}

.foot-inner ul {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr;
	gap: 8vw 2vw;
	margin: auto;
}

.foot-inner li {
	width: 100%;
}

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

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

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

.foot-inner__item {
    flex: 0 0 100%;
}

.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;
    flex-direction: unset !important;
    margin: unset !important;
    gap: 1rem !important;
}

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

.footer__nav-link {
    font-size: 14px !important;
    font-weight: normal !important;
}

.fxfoot {
	max-width: 600px;
	width: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
