@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;500;700&display=swap');
/*設定する場合→ 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 {
	position: relative;
	min-height: 100dvh;
	background: #FFFFFF;
	font-family: "M PLUS Rounded 1c", sans-serif, Meiryo, Tahoma, Verdana, Arial;
	color: var(--black);
	background: #00C2CC;
}

#wrapper {
	width: 100%;
	min-width: 600px;
	overflow: hidden;
}

img {
	vertical-align: bottom;
	max-width: 100%;
	width: fit-content;

}

input[type=text],
input[type=tel],
input[type=email],
input[type=submit],
input[type=number],
input[type=button] {
	-webkit-appearance: none;
	border: 1px solid var(--gray);
}

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

/*共通
----------------------------------------------------------------------------------------------------*/
:root {
	--white: #ffffff;
	--black: #161616;
	--gray: #e9e9e9;
	--s_green: #b1ffeb;
	--green: #00CC66;
	--lightgreen: #EDFFFB;
	--pink: #FFD7E3;
	--red: #ff4900;
	--yellow: #FFFDEB;

	--text-light: var(--white);

	--table-color: var(--black);
	--button-color: var(--black);
	--button-text-color: #00C2CC;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type="number"] {
	-moz-appearance: textfield;
}


section {
	position: relative;
	overflow: hidden;
}

.content {
	width: 90vw;
	min-width: 600px;
	max-width: 1200px;
	padding: 2vw 0 0;
	margin: auto;
	overflow: hidden;
}

.content_hero {
	padding: 2vw 0;
}

.content__flex {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.content_simulation {
	max-width: unset;
	/* padding: unset; */
	margin: unset;
	width: 100%;
}

.content_simulation>* {
	flex: 1 1 calc(50% - (1rem/2));
	min-width: 495px;
}

@media (max-width:1023px) {
	.content_simulation>* {
		margin: auto 1rem;
		width: 100%;
	}
}

.st {
	width: fit-content;
	margin: 2rem auto;
	width: 40vw;
	z-index: 9;
}

.rate-box {
	display: flex;
	align-items: start;
}

.rate-box__item {
	width: fit-content;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.rate-box__num {
	display: block;
	height: 10vw;
	width: auto;
	object-fit: contain;
	transition: .5s;
}

.rate-box__decimal {
	display: block;
	height: 4.6vw;
	width: auto;
	transition: .5s;
}

/*  */

.hl_text-lg {
	font-size: 2rem !important;
}

/*  */
.bg-white {
	background-color: #fff;
}

.bg-yellow {
	background-color: var(--yellow);
}

.bg-green {
	background-color: #00C2CC;
}

/*  */

.hero .bottom-deco {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
}

.bottom-deco_normal {
	position: relative;
}

.bottom-deco__img {
	width: 100%;
}

/*  */

.accent {
	position: absolute;
	bottom: 0vw;
	width: 100%;
	height: 50%;
	max-height: 400px;
	z-index: 0;

	transform-origin: bottom center;
	cursor: pointer;

	animation: swaying 8s infinite linear;
}

.accent:hover {
	animation: jump 1s forwards;
	animation-timing-function: linear(0, 1.32, 0.87, 1.05, 0.98, 1.01, 1, 1);
}

.accent_right {
	right: -30%;
}

.accent_left {
	left: -30%;
}

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

@keyframes swaying {
	0% {
		transform: rotate(2deg);
	}

	25% {
		transform: rotate(0deg);
	}

	50% {
		transform: rotate(-2deg);
	}

	75% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(2deg);
	}
}

@keyframes jump {
	0% {
		bottom: 0;
	}

	50% {
		bottom: 1vw;
	}

	100% {
		bottom: 0;
	}
}

/*ヘッダー
----------------------------------------------------------------------------------------------------*/
header {}

.header__inner {}

.header__logo {
	display: none;
}
.header__right {}

.header__right-top {
	position: fixed;
	right: 0;
	padding: 1rem;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 1rem;
}

.header__ul {
	display: flex;
	border: .3vw solid var(--pink);
	border-radius: 100px;
	overflow: hidden;
	box-shadow: 4px 4px #00C2CC;
}

.header__li {}

.header__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 4vw;
	min-width: 10vw;
	background: var(--white);
}

.header__link-text {
	font-weight: 500;
	font-size: 1.2vw;
}

.header__link-en {
	color: var(--pink);
	font-size: .8vw;
	line-height: .8vw;
}

.main-menu {
	background: unset;
	border: unset;
	outline: unset;
	cursor: pointer;
	padding: unset;
}

.main-menu__img {
	height: 4vw;
	width: auto;
}

.header__right-bottom {
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 999;
	text-align: right;
	padding: 1rem;
}

.circle-btn {
	display: block;
	margin-bottom: 1rem;
}

.circle-btn__img {
	width: 4vw;
}

@media (max-width:1200px) {
	.subpage .header__right-bottom {
		display: none;
	}
}

#fixNavigation {
	transition: .5s;
	position: fixed;
	z-index: 9998;
	width: 100%;
	min-width: 500px;
	height: 100dvh;
	right: 0;
	background: #00000075;
}

.main-navigation__inner {
	position: fixed;
	width: 40%;
	height: 100vh;
	min-width: 300px;
	max-width: 599px;
	right: 0;
	background: #00C2CC;
}

.navigation {
	padding: 7vw 2rem 0;
}

.navigation__nav {
	width: 100%;
	gap: 4px;
	background: #fff;
	border-radius: 45px;
	border: 10px solid var(--black);
	color: var(--black);
	padding: 1vw 4vw;
}

.navigation__nav-item {
	margin-bottom: .5rem;
}

.navigation__link {
	display: flex;
	align-items: center;
	justify-content: center;
	/*  */
	width: 100%;
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 1.2;
	letter-spacing: 2px;
	padding: 5px;
}


/*メインコンテンツ
----------------------------------------------------------------------------------------------------*/
#main {}

/* ヒーローセクション */

.hero {
	position: relative;
	height: 100vh;
	min-height: 50vw;
	max-height: 50vw;
	overflow: hidden;
}


.hero__character {
	position: absolute;
	bottom: 0%;
	right: 10%;
}

.hero__character2 {
	position: absolute;
	bottom: 0%;
	left: 7%;
}

.hero__character-img {
	height: 46vw;
	width: auto;
}

.hero__character2-img {
	height: 46vw;
	width: auto;
}




.hero .rate-box {
	gap: 1vw;
}

.hero__now-rate {
	width: 16vw;
	margin: auto;
}

.hero__now-rate-img {}

.hero__ttl {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 6vw;
	width: 24vw;
	margin: auto;
}

.hero__ttl-img {}

.hero-rate {}

.hero-rate__bg {}

.hero-rate {
	position: absolute;
	top: 40%;
	left: 0;
	right: 0;
	margin: auto;
	transform: translateY(-50%);
	width: fit-content;
	max-width: 30vw;
}

.hero-rate__item {
	position: absolute;
	top: 48%;
	left: 21%;
	transform: translateY(-50%);
	width: fit-content;
}

.hero__caption {
	position: absolute;
	bottom: 6%;
	left: 0;
	right: 0;
	margin: auto;
	width: fit-content;
}

.hero__caption-img {
	width: 34vw;
}

.valid-num-of-time {
	position: absolute;
	left: 36%;
	top: 8%;
	color: #a9e5c6;
}

#num_of_next {
	color: var(--pink);
}

.valid-num-of-time__item {
	justify-content: center;
	font-size: 2.4vw;
	font-weight: bold;
	letter-spacing: 0.2rem;
}


/* ３つのポイント */
.three-point {
	position: relative;
}

.three-point__inner {
	display: flex;
	gap: .2rem;
}

.three-point__img {}

.shortest-time {
	position: absolute;
	right: 0%;
	left: 0;
	bottom: 36%;
	margin: auto;
}

.shortest-time__children {
	display: flex;
	justify-content: center;
	margin: auto;
}

.shortest-time__child {
	height: clamp(3rem, -2.000rem + 13.333vw, 8rem);
}

.shortest-time__img {
	height: 100%;
}


/* ボタン */

.button-box {
	width: 80vw;
	max-width: 800px;
	margin: auto;
	position: relative;
}

.button-box__flex {
	display: flex;
	align-items: baseline;
	gap: .2rem;
	/*  */
	margin-bottom: 1rem;
}

.button-box__flex-item {
	flex: 0 1 50%;
}

.image-button {
	display: block;
}

.image-button__image {
	display: block;
	margin: auto;
}

.image-button_mt {
	margin-top: 2rem;
}




/* 現在の買取率 */

.rate-list {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}

.rate-list__item {
	position: relative;
	flex: 0 0 calc(25% - .75rem);
}

.rate-list__bg {}


.rate-list__inner {
	position: absolute;
	left: 0;
	right: 0;
	top: 47%;
	z-index: 1;
	transform: translateY(-50%);
	/*  */
	width: clamp(6.25rem, -0.568rem + 18.182vw, 12.5rem);
	margin: auto;
	padding: 2px;
	/*  */
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}


.rate-list__inner_line {
	position: absolute;
	top: 50%;
	/*  */
	width: clamp(6.25rem, 2.159rem + 10.909vw, 10rem);
}

.rate-type {
	position: absolute;
	z-index: 1;
	top: 5%;
	left: 35%;
}

.rate-type__img {
	width: clamp(4.375rem, -1.420rem + 15.455vw, 9.688rem);
}

.rate-list .rate-box__item {}

.rate-list .rate-box__num {
	min-width: 31px;
	width: auto;
	object-fit: contain;
	/* height: clamp(2.5rem, -0.635rem + 8.347vw, 5.625rem); */
	height: clamp(2.6rem, 0.600rem + 5.333vw, 7rem)
}

.rate-list .rate-box__decimal {
	width: auto;
	max-height: clamp(1.563rem, -0.142rem + 4.545vw, 3.125rem);
	object-fit: contain;
}

.rate-list .rate-box__decimal:first-child {
	height: 3vw;
}

.rate-list__card-image {
	width: clamp(1.6rem, -0.200rem + 4.8vw, 3.4rem);
	height: clamp(1.6rem, -0.200rem + 4.8vw, 3.4rem);
	position: absolute;
	left: 4.2%;
	top: 3.8%;
	border-radius: 50%;
	overflow: hidden;
}

.rate-list__card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rate-list__card-name {
	position: absolute;
	left: 0;
	right: 0;
	top: 24%;
	text-align: center;
	word-break: break-all;
	font-weight: bold;
	font-size: clamp(0.625rem, 0.000rem + 1.667vw, 1.25rem);
	display: flex;
	justify-content: center;
	align-items: center;
	transform: translateY(-50%);
}

.valid-num {
	text-align: center;
	position: absolute;
	bottom: 16%;
	width: 100%;
}

.valid-num__text {
	transition: opacity .5s;
	font-weight: bold;
	font-size: 1.5vw;
}

.valid-num_color {
	color: #fff;
}

.valid-num_color_rp {
	color: #fff;
}



/* 買取シミュレーション */

.arrow-table {}

.arrow-table_bg-cream {
	border-radius: 40px 0 0 40px;
	background: var(--yellow);
	padding: 4rem 2rem;
	box-shadow: inset 0.5rem 0.5rem 1rem #d3d2a7;
	height: fit-content;
}

@media (max-width:1023px) {
	.arrow-table_bg-cream {
		border-radius: 40px;
	}
}

.arrow-table__align-base {
	margin: unset;
}

.arrow-table__tr {
	margin-bottom: 2rem;
	position: relative;
}


.arrow-table__th {
	font-size: 1.4rem;
	text-align: center;
	font-weight: 500;
	margin: 1rem auto;
}

.arrow-table__th_text-left {
	text-align: left;
}


.arrow-table__td {
	position: relative;
}

.radio-btn-box {
	padding: 1rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	/*  */
	margin: auto;
}

.radio-btn {
	flex: 0 1 calc(33.3% - (2rem/3));
}

.radio-btn__input {
	display: none;
}

.radio-kinds {}

.radio-btn__label {
	display: block;
	position: relative;
	/*  */
	cursor: pointer;
	color: var(--white);
}


.radio-kinds:checked+.radio-btn__label {
	color: var(--black);
}

.radio-btn_ellipse {
	background: var(--black);
	height: 4vw;
	display: block;
	color: #fff;
	border-radius: 2vw;
}

@media (max-width:1023px) {
	.radio-btn {
		flex: 0 1 calc(20% - (4rem/5));
	}

	.radio-btn_ellipse {
		height: 8vw;
		border-radius: 4vw;
	}
}

.radio-count_first:checked+.radio-btn_ellipse,
.radio-count_first_a:checked+.radio-btn_ellipse,
.radio-btn_first:checked+.radio-btn_ellipse,
.radio-rep-method:checked+.radio-btn_ellipse {
	background: #00C2CC;
}

.radio-count_repeat:checked+.radio-btn_ellipse,
.radio-btn_repeat:checked+.radio-btn_ellipse {
	background: #ff4900;
}


.radio-btn__img {
	position: absolute;
	left: 6%;
	top: 50%;
	z-index: 1;
	width: clamp(2rem, -0.286rem + 3.571vw, 4rem);
	height: clamp(2rem, -0.286rem + 3.571vw, 4rem);
	object-fit: cover;
	transform: translateY(-50%);
	border-radius: 2rem;
}

.radio-btn__name {
	font-weight: 500;
	font-size: clamp(1rem, 0.314rem + 1.071vw, 1.6rem);
	text-align: center;
	word-break: break-all;
	position: absolute;
	top: 50%;
	left: 2rem;
	right: 0;
	margin: auto;
	transform: translateY(-50%);
}

@media (max-width:1023px) {
	.radio-btn__img {
		width: 3.8vw;
		height: 3.8vw;
	}

	.radio-btn__name {
		font-size: clamp(0.8rem, 0.515rem + 0.758vw, 1rem);
	}
}

.radio-btn__text-only {
	left: 0;
	right: 0;
	margin: auto;
	width: fit-content;
	transform: translate(0, -50%);
}

.image_s {}

.radio-count {}

.radio-count+.radio-btn__label,
.radio-panel+.radio-btn__label {
	justify-content: center;
}


.input-item {
	border: none;
	outline: none;
	width: 100%;
	height: 4rem;
	padding: 0.5rem;
	/*  */
	font-size: 3rem;
	font-weight: 600;
	color: var(--dark-purple);
}

.input-normal {
	width: 100%;
	height: 3rem;
	padding: .2rem;
	font-size: 1.6rem;
	color: var(--black);
	border-radius: 8px;
}

.input-number {
	text-align: right;
}

.input-total {
	display: block;
	border: 1px solid var(--gray);
	height: 4rem;
	text-align: right;
}

.input-view-box {
	display: block;
	border: none;
	outline: none;
	text-align: center;
	background: #00C2CC;
	color: var(--white);
	height: 6rem;
	max-width: 800px;
	margin: auto;
}

.input-view-box:focus {
	outline: none;
}

.arrow-table__td:has(.text-yen) {
	position: relative;
}

.arrow-table__td:has(.text-yen)::after {
	content: '円';
	font-size: 1.4rem;
	font-weight: bold;
	color: #fff;

	position: absolute;
	right: 1rem;
	bottom: .4rem;
}

.border {
	position: absolute;
	overflow: hidden;
}

.border_top,
.border_bottom {
	z-index: 1;
}

.border_left,
.border_right {
	top: 1rem;
	bottom: 0;
	height: 100%;
}

.border_left .border__img,
.border_right .border__img {
	height: calc(100% - 1rem);
}

.border_top {
	top: 0;
}

.border_left {
	left: 0;
	bottom: 0;
}

.border_right {
	right: 0;
	bottom: 0;
}

.border_bottom {
	bottom: 0;
}

.border__img {}



/* グループサイト */
.group__list {
	position: relative;
	border-radius: 16px;
	border: 8px solid;
}

.group__ul {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	padding: 8px;
	width: 100%;
	margin: auto;
	background: #fff;
	border-radius: 8px;

	padding: 2vw;
}


.group__ul_even {
	background: none;
}

.group__li {
	flex: 0 1 calc(25% - (6rem/4));
	/*  */
	border-radius: 4px;
	overflow: hidden;
	position: relative;
}

.group__link {
	display: block;
	width: 100%;
	height: 100%;
	text-align: center;
}

.group__img {
	height: 100%;
	max-height: 150px;
	object-fit: contain;
}

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

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

/*フッター
----------------------------------------------------------------------------------------------------*/

/* フッター */
footer {
	width: 100%;
	background: #00c2cc;
	background-size: contain;
}

.footer__global-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	margin: auto;
	width: 100%;
	background: #fff;
	border-radius: 99px;
	border: 4px solid #00C2CC;
	color: var(--black);
	padding: 2vw 2vw;
}

.footer__nav-item {
	flex: 0 1 calc((100%/6) - (5rem/6));
	min-width: 170px;
}

.footer__link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	/*  */
	width: 100%;
	/*  */
	font-weight: 500;
	font-size: 1.2rem;
	letter-spacing: 2px;
	line-height: 1.2;
	text-align: center;
}

small {
	text-align: center;
	margin: 2rem auto;
	display: block;
	font-size: .8rem;
	color: #000;
}

.fix-app {
	position: fixed;
	right: calc(50% - 512px);
	bottom: 20px;
	z-index: 9999;
}

.fix-app img {
	width: 120px;
	height: 120px;
	object-fit: contain;
}

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

.green-license {
	width: fit-content;
	margin: auto;
}