@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;
	padding-bottom: 460px;
	background: #FFFFFF;
	font-family: "M PLUS Rounded 1c", sans-serif, Meiryo, Tahoma, Verdana, Arial;
	color: var(--black);
}

#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: #606060;
	--gray: #e9e9e9;
	--s_green: #b1ffeb;
	--green: #C5FFF0;
	--lightgreen: #EDFFFB;
	--pink: #FFD7E3;
	--red: #ff4870;
	--yellow: #ffd27e;

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

	--table-color: var(--black);
	--button-color: var(--green);
	--button-text-color: var(--black);
}

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;
	margin: auto;
	overflow: hidden;
}

.st {
	width: fit-content;
	margin: auto;
	margin-bottom: 2rem;
	position: absolute;
	left: 0;
	right: 0;
	width: 30vw;
	z-index: 9;
}

.st_rate {
	top: -20vw;
	left: 6vw;
}

.st_simulation {
	width: 30vw;
	top: -12vw;
}

.st_group {
	width: 26vw;
	top: -12vw;
}

.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: 9vw;
	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-green {
	background-color: var(--green);
}

.bg-bottom-space {
	position: relative;
	/*
	padding-bottom: 24vw;
	*/
	padding-bottom: 20vw;
}

.bg-bottom {
	width: 100%;
	position: absolute;
	bottom: -.5rem;
	left: 0;
	right: 0;
}

.accent {
	position: absolute;
}

.accent_top {
	top: -10vw;
	right: -10vw;
	opacity: .5;
}

.accent_bottom {
	bottom: -10vw;
	left: -10vw;
	opacity: .5;
}

.bg-point {
	position: absolute;
	width: 24vw;
}

.bg-point_top-right {
	top: -10vw;
	right: 0vw;
}

.bg-point_bottom-left {
	top: 20vw;
	left: 0;
}

.bg-point_top-right2 {
	top: 2vw;
	right: 0vw;
}

.bg-point_bottom-left2 {
	bottom: 20vw;
	left: 0;
}

.bg-point_right {
	width: 18vw;
	top: -12vw;
	right: 2vw;
}

.bg-point_left {
	width: 10vw;
	top: -10vw;
	left: 5vw;
}

@media (max-width:1280px) {
	.bg-point {
		display: none;
	}
}


@keyframes shake1 {
	0% {
		transform: rotate(-5deg);
	}

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

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

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

	100% {
		transform: rotate(-5deg);
	}
}

@keyframes shake2 {
	0% {
		transform: rotate(5deg);
	}

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

	50% {
		transform: rotate(5deg);
	}

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

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

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

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

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

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

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

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10%);
	}

	to {
		opacity: 1;
		transform: 0%;
	}
}

.fade {
	opacity: 0;
}

.fadein {
	animation: fadeIn 1s 0s linear forwards
}

.button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border: unset;
	font-size: 1.4rem;
	font-weight: 500;
	color: var(--black);
	padding: .5rem 1rem;
	border-radius: 10rem;
	background: var(--green);
	box-shadow: 0px 4px var(--shadow-green);
	min-height: 4rem;
	cursor: pointer;
	transition: all .3s linear;
}

.modal__btn-box .button {
	justify-content: center;
}

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

.header__inner {}

.header__logo {
	position: fixed;
	padding: 1rem;
	z-index: 999;
}

.header__logo-img {
	height: 5vw;
	width: auto;
}

.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 var(--green);
}

.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;
	top: 24vw;
	z-index: 999;
	text-align: right;
	padding: 1rem;
}

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

.circle-btn__img {
	width: 10vw;
}

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

#fixNavigation {
	transition: .5s;
	position: fixed;
	z-index: 9998;
	width: 40%;
	min-width: 500px;
	height: 100dvh;
	right: 0;
	background: linear-gradient(90deg, var(--pink), var(--lightgreen), var(--green));
}

.main-navigation__inner {
	position: relative;
	width: 90%;
	min-width: 300px;
	max-width: 599px;
	left: 0;
	right: 0;
	margin: auto;
}

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

.navigation__nav {
	width: 100%;
	gap: 4px;
	background: #fff;
	border-radius: 45px;
	border: 4px solid var(--pink);
	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;
	min-height: 338px;
	max-height: 56.2vw;
	overflow: hidden;
}

.hero__bg {}

.hero__bg-img {
	width: 100%;
}

.hero__comment {}

.comment {}

.hero__comment-item {
	position: absolute;
	height: 14vw;
	width: 16vw;
	object-fit: contain;
}

.comment__safe {
	left: 0;
	top: 5vw;

	transform-origin: left bottom;
	transform: rotate(-5deg);
	animation: shake1 7s 0s linear infinite;
}

.comment__expensive {
	right: 0;
	top: 6vw;

	transform-origin: right bottom;
	transform: rotate(5deg);
	animation: shake2 7s -1s linear infinite;
}

.comment__speed {
	left: 0;
	bottom: 14vw;
	transform-origin: left bottom;
	transform: rotate(-5deg);
	animation: shake1 7s -1s linear infinite;
}

.hero__character {
	position: absolute;
	bottom: 7%;
	left: 15%;
}

.hero__character2 {
	position: absolute;
	bottom: 7%;
	right: 15%;
}

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

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

.hero-rate {}

.hero-rate__bg {
	animation: shake3 10s 0s linear infinite;
}

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

.hero-rate__item {
	position: absolute;
	top: 48%;
	left: 18%;
	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;
}

.vaild-num-of-time {
	position: absolute;
	right: 9%;
	bottom: 15%;
}

.vaild-num-of-time__item {
	display: flex;
	min-width: 14vw;
	justify-content: center;
}

.valid-num-of-time__img {
	height: 5vw;
	width: auto;
}


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

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

.three-point__img {}

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

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

.shortest-time__child {
	width: clamp(2.313rem, -0.188rem + 6.667vw, 4.813rem);
}

.shortest-time__img {
	object-fit: contain;
}


/* ボタン */

.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--relative {
	position: relative;
}

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

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

.banner-text {}

.banner-text--absolute {
	position: absolute;
	width: fit-content;
}

.banner-text--platina {
	top: 31%;
	left: 26%;
	font-size: min(3rem, 4.5vw);
	font-weight: 800;
	color: #FF6699;
}

.banner-text--coupon {
	bottom: 23%;
	left: 27%;
	font-size: min(2.4rem, 3.8vw);
	font-weight: 800;
	color: #383838;
}

.banner-text--urawaza {
	top: 34%;
	left: 2%;
	font-size: min(1.8rem, 2.8vw);
	font-weight: 800;
	color: #fd6599;
}

.banner-text--urawaza1 {
	bottom: 33%;
	left: 2%;
	font-size: min(2.2rem, 3.5vw);
	font-weight: 800;
	color: #fb6499;
}

.banner-text--urawaza2 {
	top: 4%;
	left: 37%;
	font-size: min(3.6rem, 6vw);
	font-weight: 800;
	color: #fd6599;
}

/* 現在の買取率 */

.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: 60%;
	/*  */
	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);
}

.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.375rem, 0.000rem + 3.667vw, 2.75rem);
	height: clamp(1.375rem, 0.000rem + 3.667vw, 2.75rem);
	position: absolute;
	left: 6%;
	top: 4.8%;
	border-radius: 50%;
	overflow: hidden;
}

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

.rate-list__card-name {
	position: absolute;
	left: clamp(1.438rem, -0.256rem + 4.508vw, 3.125rem);
	right: 0;
	top: clamp(0.625rem, 0.061rem + 1.503vw, 1.188rem);
	/*  */
	color: var(--text-light);
	word-break: break-all;
	font-weight: bold;
	font-size: clamp(0.875rem, -0.066rem + 2.504vw, 1.813rem);
	/*  */
	display: flex;
	justify-content: center;
	align-items: center;
}

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

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

.valid-num_color {
	color: #007150;
}

.valid-num_color_rp {
	color: #f54077;
}



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

.arrow-table {
	margin: auto;
}

.arrow-table_include-st {
	position: relative;
	margin-top: 15vw;
	/* padding: 2vw; */
}

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

.arrow-table__body {
	padding: 2vw;
	padding-top: 8vw;
}

.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 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	/*  */
	margin: auto;
}

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

.radio-btn__input {
	display: none;
}

.radio-kinds {}

.radio-btn__label {
	display: block;
	position: relative;
	/*  */
	cursor: pointer;
}

.radio-btn__input:checked+.radio-btn__label {}


.radio-btn__img {
	position: absolute;
	left: 5%;
	top: 49%;
	z-index: 1;
	width: 2rem;
	height: 2rem;
	object-fit: cover;
	transform: translateY(-50%);
	border-radius: 1rem;
}

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

.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-bg {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 6rem;
	background: linear-gradient(90deg, var(--pink), var(--lightgreen), var(--green));
	color: var(--black);
	max-width: 600px;
	margin: auto;
}

.input-total {
	height: 5rem;
	width: calc(100% - 1rem);
	text-align: right;
}

.input-view-box {
	display: block;
	border: none;
	outline: none;
	text-align: center;
	background: linear-gradient(90deg, var(--pink), var(--lightgreen), var(--green));
	color: var(--black);
	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;
	background: linear-gradient(var(--pink), var(--lightgreen), var(--green));
	border-radius: 16px;
	margin-top: 15vw;
	padding: 8px;
}

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

	padding: 8vw 2vw 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;
}

/*  */

.gekiatsu-box {
	position: relative;
	display: block;
	width: fit-content;
	margin: auto;
}

.gekiatsu-box__bg {}

.gekiatsu-box__st {
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 13%;
	left: 0;
	right: 0;
	margin: auto;
	width: fit-content;
	gap: 1rem;
	align-items: center;
}

.gekiatsu-box__st span {
	font-size: min(2.5rem, 3vw);
	font-weight: 600;
}

.gekiatsu-box__st p {
	font-size: min(3.6rem, 6vw);
	font-weight: 600;
}

.button--gekiatsu {
	max-width: 600px;
	width: 60%;
	margin: auto;
	position: absolute;
	bottom: 10%;
	left: 0;
	right: 0;
	justify-content: center;
	gap: 1rem;
	font-size: min(2rem, 3vw);
	padding: min(2rem, 1vw) 0;
	font-weight: 600;
	background: var(--red);
	color: var(--white);
	box-shadow: 0px 8px 0 #dd2950;
	min-height: 2rem;
}

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

/* フッター */
footer {
	padding-top: 50px;
	padding-bottom: 50px;
	position: absolute;
	width: 100%;
	bottom: 0;
	background: linear-gradient(90deg, var(--pink), var(--lightgreen), var(--green));
	background-size: contain;
}

.footer__global-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	margin: auto;
	width: 100%;
	background: #fff;
	border-radius: 16px;
	border: 4px solid var(--pink);
	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;
}

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

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

small {
	margin: 1rem auto;
	display: block;
	font-size: .8rem;
	text-align: center;
	color: var(--black);
	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 {
	font-size: 1.125rem;
	font-weight: 600;
	border-bottom: 1px solid;
	margin-bottom: .5rem;
	padding-bottom: .5rem;
}

.footer__nav {
	display: flex;
	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;
}

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