@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: clamp(36.25rem, 59.245rem + -61.321vw, 20rem);

	background: url(./../img/item/pattern.png) var(--pink);

	font-size: 14px;
	font-family: "M PLUS Rounded 1c", sans-serif, Meiryo, Tahoma, Verdana, Arial;
}

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

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

}

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

/*共通
----------------------------------------------------------------------------------------------------*/
:root {
	--white: #fff;
	--pink: #FCE8FB;
	--purple: #CC99FF;
	--green: #13b819;
	--dark-purple: rgb(68 45 81);
}


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: 100%;
	min-width: 600px;
	max-width: 1024px;
	padding: 2rem 1rem;
	margin: auto;
}

.bg-transparent {
	background: #ffffffc2;
}

.bg-white {
	background: var(--white);
}

.bg-normal {
	background: url('./../img/item/l-b.png') no-repeat,
		url('./../img/item/r-t.png') no-repeat, var(--white);
	background-position-x: 120%, -20%;
	background-position-y: top, bottom;
	background-size: 30%, 30%;
}

.bg-purple {
	background: url('./../img/item/pr-t.png') no-repeat,
		url('./../img/item/pl-b.png') no-repeat, var(--purple);
	background-position-x: 120%, -20%;
	background-position-y: top, bottom;
	background-size: 30%, 30%;
}

.bg-flower {
	/* background: url(./../img/item/pattern.png) var(--pink); */
}

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

.rate-box {
	display: flex;
}

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

.rate-box__num {
	display: block;
	height: clamp(5rem, -2.075rem + 18.868vw, 10rem);
	min-width: 58px;
	object-fit: contain;
	transition: .5s;
}

.rate-box__decimal {
	display: block;
	height: clamp(2.5rem, -1.038rem + 9.434vw, 5rem);
	transition: .5s;
}

/*  */

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

.hl_box-shadow {
	box-shadow: 4px 4px 4px rgb(68 45 81 / 60%);
}

/*  */

.fadeup {
	transform: translateY(30px);
	opacity: 0;
}

.fadeup.is-animated {
	animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes fadeup {
	0% {
		transform: translateY(30px);
		opacity: 0;
	}

	80% {
		opacity: 1;
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/*  */

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

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

/*ヘッダー
----------------------------------------------------------------------------------------------------*/
.main-menu {
	position: fixed;
	right: 4px;
	top: 4px;
	z-index: 9999;

	width: 80px;
	height: auto;
	padding: 0;

	cursor: pointer;
	background: none;
	border: none;
	outline: none;
}

.main-navigation {
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.7s, visibility 0s 0.7s;
	position: fixed;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 9998;
	background: var(--purple);
}

.main-navigation.active {
	opacity: 1;
	visibility: visible;
	/*  */
	transition: opacity 0.7s;
}

.main-navigation__inner {
	position: relative;
	width: 100%;
	height: 100%;
	padding-top: 3%;
	min-width: 600px;
	margin: auto;
	overflow-y: scroll;
}

.navigation {
	padding: 1rem;
}

.navigation__ul {
	display: flex;
	flex-direction: column;
}

.navigation__ul:first-child {
	margin-bottom: 1rem;
}

.navigation__ul_button {
	gap: 0;
	width: fit-content;
	margin: 2rem auto 0;
	flex-direction: row;
}

.navigation__item {
	text-align: center;
	font-size: 2rem;
	font-weight: 600;
	color: var(--white);
}

.navigation__link {
	display: flex;
	max-width: 600px;
	height: 100%;
	justify-content: center;
	padding: 0.5rem;
	border-bottom: 1px dashed;
	margin: auto;
}

.navigation__link_button {
	padding: 0;
	border-bottom: unset;
}

.navigation__img {
	width: 100%;
}


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

.sect-hero {
	position: relative;
	width: 100%;
	display: flex;
	gap: 4rem;
	align-items: center;
	justify-content: center;
}

.bg-item {
	position: absolute;
	transform: translateY(-50%);
	z-index: 0;
}

.logo {
	text-align: center;
}

.sect-hero__item {
	position: relative;
}

.sect-hero__rate-type {
	position: absolute;
	top: 1rem;
	left: 1rem;
	/*  */
	display: flex;
	align-items: center;
	justify-content: center;
	/*  */
	max-width: clamp(10.25rem, -2.840rem + 34.906vw, 19.5rem);
	aspect-ratio: 3 / 2;
	padding: 1rem;
}

.sect-hero__type-img {
	width: 100%;
}

.hero-item__img {}


.hero-rate {
	position: absolute;
	top: 50%;
	left: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: clamp(10rem, -4.151rem + 37.736vw, 20rem);
	aspect-ratio: 3 / 2;
	padding: 1rem;
	transform: translateY(-50%);
}

.hero-rate__item {
	margin-bottom: 2rem;
	position: relative;
	z-index: 1;
}

.hero-rate .rate-box {}

.rate-box__item {}

.rate-box__num {}

.rate-box__decimal {}

/* ３つのポイント */
.three-point {}

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

.three-point__item {
	position: relative;
	margin-bottom: 1rem;
}

.three-point__img {}

.shortest-time {
	position: relative;
}

.shortest-time__children {
	position: absolute;
	right: clamp(1.688rem, -0.789rem + 6.604vw, 3.438rem);
	bottom: 32%;
	display: flex;
	justify-content: center;
	margin: auto;
	width: clamp(7rem, -2.021rem + 24.057vw, 13.375rem);
}

.shortest-time__child {}

.shortest-time__img {
	height: clamp(4.375rem, -1.816rem + 16.509vw, 8.75rem);
	object-fit: contain;
}


/* ボタン */

.button-box {
	max-width: 600px;
	margin: auto;
}

.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;
	margin-bottom: 1rem;
}

.image-button__deco {
	position: relative;
	margin-top: 8rem;
}

.image-button__deco::before {
	content: '';
	display: block;
	height: 134px;
	width: 100%;
	background: url('./../img/item/button_itano.png') no-repeat center;
	background-size: contain;
	/*  */
	position: absolute;
	top: -125px;
	left: 0;
	right: 0;
	margin: auto;
}

.image-button__image {}

.image-button_spacial-rate {
	display: block;
	width: fit-content;
	margin: 1rem auto;
}

a:has(.image-button__kodou) {
	opacity: 1 !important;
}

.image-button__kodou:hover {
	animation: kodou 2s infinite;
}

@keyframes kodou {
	0% {
		transform: scale(1.05)
	}

	5% {
		transform: scale(1)
	}

	95% {
		transform: scale(1)
	}

	100% {
		-webkit-transform: scale(1.05)
	}
}

/* 現在の買取率 */

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

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

.rate-list__bg {}


.rate-list__content {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	padding: .4rem 0;
	display: flex;
	flex-direction: column;
}

.rate-list__inner {
	width: clamp(7rem, -2.994rem + 26.651vw, 14.063rem);
	margin: auto;
	padding: 2px;
	/*  */
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.rate-list__type {
	height: clamp(1.875rem, -0.778rem + 7.075vw, 3.75rem);
	/*  */
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	align-items: center;
}

.rate-type {}

.rate-type__img {
	max-width: clamp(4.625rem, 3.033rem + 4.245vw, 5.75rem);
}

.line-ribbon {
	height: 70px;
	position: absolute;
	right: 20px;
	top: 4px;
}

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

.rate-list .rate-box__item {}

.rate-list .rate-box__num {
	min-width: 37px;
	object-fit: contain;
	height: clamp(3.75rem, -1.557rem + 14.151vw, 7.5rem);
}

.rate-list .rate-box__decimal {
	width: 100%;
	max-height: clamp(1.563rem, -0.649rem + 5.896vw, 3.125rem);
	object-fit: contain;
}

.rate-list .rate-box__decimal:first-child {
	max-height: clamp(2.188rem, -0.908rem + 8.255vw, 4.375rem);
}

.rate-list__card {
	width: 84%;
	height: 3rem;
	margin: auto;
	padding-left: 3rem;
	/*  */
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 1rem;
	/*  */
	position: relative;
}

.rate-list__card-image {
	width: 3rem;
	height: 3rem;
	position: absolute;
	left: 0;
	top: 0;
}

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

.rate-list__card-name {
	color: var(--dark-purple);
	word-break: break-all;
	font-weight: bold;
	font-size: 1.2rem;
	/*  */
	height: 3rem;
	width: calc(100% - .4rem);
	/*  */
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
}



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

.arrow-table {
	max-width: 800px;
	margin: auto;
}

.arrow-table__body {}

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

.arrow-table__th {
	color: var(--dark-purple);
	text-align: center;
	font-size: 1.4rem;
	font-weight: 600;
	margin: 1rem auto;
}

.arrow-table__th_dashed {
	border-bottom: 1px dashed;
	/*  */
	width: fit-content;
}

.arrow-table__td {
	position: relative;
}

.radio-btn-box {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: .2rem;
}

.radio-btn {
	flex: 0 1 calc(20% - 1rem);
}

.radio-btn__input {
	display: none;
}

.radio-kinds {}

.radio-btn__label {
	position: relative;
	height: 144px;
	padding: .8rem 1rem .2rem;
	/*  */
	display: flex;
	gap: 1rem;
	flex-direction: column;
	align-items: center;
	justify-content: start;
	/*  */
	background: #fff;
	cursor: pointer;
}

.radio-btn__input:checked+.radio-btn__label {
	background: var(--green);
	color: #fff;
}

.radio-btn__input:checked+.radio-btn__label::before {
	content: "";
	display: block;
	background: url('./../img/item/radio_checked.png')no-repeat center;
	background-size: contain;
	width: 2rem;
	height: 2rem;
	position: absolute;
	top: -1rem;
	right: 0;
}

.radio-btn__img {
	width: 4rem;
	height: 4rem;
	object-fit: cover;
}

.radio-btn__name {
	color: var(--dark-purple);
	font-weight: 500;
	font-size: 1.2rem;
	text-align: center;
	word-break: break-all;
}

.radio-btn__input:checked+.radio-btn__label .radio-btn__name {
	color: #fff;
}

.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 {
	box-shadow: 4px 4px 4px rgb(68 45 81 / 40%);
}

.input-view-box {
	border: none;
	outline: none;
	text-align: center;
	background: var(--dark-purple);
	color: #fff;
	height: 6rem;
}

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


/* グループサイト */
.group__ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1rem;
	padding: 8px;
	width: 100%;
	margin: auto;

	background: url('./../img/group/group-space.png') no-repeat;
}

.group__ul_odd {
	background-position: 85% 100%;
	background-size: 30%;
}

.group__ul_even {
	background: none;
}

.group__li {
	flex: 0 1 calc(50% - .5rem);
	/*  */
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 4px 4px 4px rgb(68 45 81 / 60%);
}

.group__link {
	display: block;
	width: 100%;
	height: 100%;
	padding: 1rem;
	max-height: 150px;
	text-align: center;

	/*  */
	background: #fff;
}

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

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

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

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

/* フッター */
footer {
	padding-bottom: 240px;
	position: absolute;
	width: 100%;
	bottom: 0;
}

.footer__global-nav {
	width: fit-content;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin: auto;
	padding: 2rem 0;
}

.footer__nav-item {
	flex: 0 0 calc(33.3% - 1.3rem);
}

.footer__link {
	display: flex;
	align-items: center;
	gap: .5rem;
	/*  */
	width: 100%;
	/*  */
	font-weight: bold;
	font-size: 1.4rem;
	letter-spacing: 2px;
	line-height: 1.2;
	/*  */
	color: #fff;
}

.footer__nav-item:nth-child(odd) .footer__link::before {
	content: "";
	background: url(./../img/item/icon1.png) no-repeat center;
	display: block;
	height: 2rem;
	width: 2rem;
	background-size: contain;
}

.footer__nav-item:nth-child(even) .footer__link::before {
	content: "";
	background: url(./../img/item/icon2.png) no-repeat center;
	display: block;
	height: 2rem;
	width: 2rem;
	background-size: contain;
}

.footer__inner small {
	text-align: center;
	margin: 0 auto;
	display: block;
	font-size: .8rem;
	color: #f9ffce;
    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 {
    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;
}


.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: 0 auto;
	display: block;
	font-size: .8rem;
	text-align: center;
	color: #fff;
}