@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');

/*設定する場合→ font-family:'Noto Serif japanese', 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: var(--white);
	font-family: Meiryo, Tahoma, Verdana, Arial, sans-serif;
}

#wrapper {
	width: 100%;
	min-width: 1024px;
	overflow: hidden;
	position: relative;
}

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

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

:root {
	--black: #000000;
	--gray: #f2f2f2;
	--yellow: #bbae83;

	--white: white;
	--green: green;
}


section {
	margin: auto;
	position: relative;
}

.content {
	width: 100%;
	min-width: 1024px;
	max-width: 1024px;
	margin: auto;
	/*  */
	padding: 2rem 1rem;
}

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

.bg-button {
	background: url('./../img/item/button_bg.png')no-repeat center;
	background-size: cover;
}

.bg-rate {
	background: url('./../img/item/rate_bg1.png')no-repeat center;
	background-size: cover;
}

.bg-simu {
	background: url('./../img/item/simu_bg.png')no-repeat bottom center;
	background-size: cover;
}

.ver2 .bg-simu {
	background: url('./../img/item/simu2_bg.png')no-repeat bottom center;
	background-size: cover;
}

.bg-blue {
	background: var(--black);
	padding-bottom: 8rem;
}

.bg-group {
	background: url('./../img/item/group-bg.png') no-repeat center;
	background-size: cover;
}

.bg-group {
	background: url('./../img/item/group-bg.png') no-repeat center;
	background-size: cover;
}

.bg-coin {
	position: relative;
	padding-bottom: 16vw;
}

.bg-coin::before {
	content: "";
	position: absolute;
	top: 0;
	/*  */
	height: 100%;
	width: 100%;
	background: url(./../img/item/rate_bg2.png)no-repeat top;
	background-size: cover;
}

.bg-coin::after {
	content: "";
	position: absolute;
	top: 0;
	/*  */
	height: 100%;
	width: 100%;
	background: url(./../img/item/rates_bottom.png)no-repeat center bottom;
	background-size: 40%;
}

.ver2 .bg-coin::after {
	content: "";
	position: absolute;
	top: 0;
	/*  */
	height: 100%;
	width: 100%;
	background: url(./../img/item/rates_bottom2.png)no-repeat center bottom;
	background-size: 40%;
}

.bg-coin__inner {
	position: relative;
	z-index: 1;
}

.bg-fire {
	position: relative;
	padding-bottom: 20vw;
}

.bg-fire::after {
	content: "";
	position: absolute;
	top: 0;
	/*  */
	height: 100%;
	width: 100%;
	/* background: url(./../img/item/simu_bottom.png)no-repeat center bottom; */
	/* background-size: 100%; */
}

.bg-fire__inner {
	position: relative;
	z-index: 1;
}

.st {
	max-width: 600px;
	width: fit-content;
	margin: 2rem auto;
}

.rate-box {
	display: flex;
}

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

.rate-box__num {
	display: block;
	height: clamp(5.625rem, 1.972rem + 5.708vw, 8.75rem);
	object-fit: contain;
	transition: .5s;
}

.rate-box__decimal {
	display: block;
	height: clamp(2.375rem, 0.768rem + 2.511vw, 3.75rem);
	object-fit: contain;
	transition: .5s;
}

/*  */

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

/*  */

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

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


/*ヘッダー
----------------------------------------------------------------------------------------------------*/
header {
	position: relative;
}

.main-navigation {}

.main-navigation__inner {
	padding: 2rem 1rem 1rem;
	max-width: 1024px;
	margin: auto;
}

s .navigation {
	text-align: right;
}

.navigation__ul {
	display: flex;
	justify-content: flex-end;
	gap: .5rem;
}

.navigation__item {}

.navigation__link {
	color: var(--black);
	padding-left: 1rem;

	font-weight: bold;
}

.navigation__link::before {
	display: inline-block;
	content: "▶";
	color: var(--black);
	padding-right: .5rem
}

/*  */

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

.sect-hero {
	position: relative;
	width: 100%;
	aspect-ratio: 3 / 2;
	background: url(./../img/item/hero_pc.png) no-repeat right bottom;
	background-size: cover;
	max-height: 900px;
}

.sect-hero2 {
	position: relative;
	width: 100%;
	aspect-ratio: 3 / 2;
	background: url(./../img/item/hero2_pc.png) no-repeat right bottom;
	background-size: cover;
	max-height: 900px;
}

.sect-hero__inner {
	margin-left: clamp(6.25rem, -15.668rem + 34.247vw, 25rem);
	/*  */
	width: clamp(37.5rem, 6.523rem + 48.402vw, 64rem);
	/*  */
	display: flex;
	gap: 1rem;
	align-items: center;
}

.sect-hero__logo {
	margin-bottom: 2rem;
}

.sect-hero__logo-img {}


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

.bg-dot0 {
	width: 240px;
	top: 20%;
	left: -10%;
}

.bg-dot1 {
	width: 200px;
	top: 50%;
	right: 0%;
	left: 0;
	margin: auto;
}

.bg-dot2 {
	bottom: -20%;
	right: -10%;
}

.bg-sq0 {
	left: -10%;
	bottom: -50%;
}

.bg-sq1 {
	width: 300px;
	top: 20%;
	right: -10%;
}

.sect-hero__item_left {
	flex: 0 0 40%;
}

.sect-hero__item_right {
	flex: 0 0 28%;
}

.hero-rate {}

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

.hero-rate__bg {}

.hero-rate .rate-box {
	position: absolute;
	z-index: 99;
	top: 70%;
	left: 0%;
	right: 0px;
	margin: auto;
	width: clamp(14.625rem, 8.342rem + 9.817vw, 20rem);
	transform: translateY(-50%);
	justify-content: center;
}

.rate-box__item {}

.rate-box__num {}

.rate-box__decimal {}

/* ３つのポイント */
.three-point {
	margin-top: 3rem;
}

.three-point__inner {
	display: flex;
	flex-direction: column;
}

.three-point__item {}

.three-point__img {
	display: block;
	width: fit-content;
	margin: auto;
}

.shortest-time {
	position: relative;
}

.shortest-time__children {
	position: absolute;
	right: 0;
	left: 0;
	bottom: clamp(3.375rem, 0.745rem + 4.11vw, 5.625rem);
	display: flex;
	justify-content:center;
	margin: auto;	
	max-width: 64%;
}

.shortest-time__child {}

.shortest-time__img {
	height: clamp(2.25rem, 1.519rem + 1.142vw, 2.875rem);
	object-fit: contain;
}


/* ボタン */

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

.button-box__abs {
	margin-top: -7rem;
}

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

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

.image-button {
	display: block;
	width: fit-content;
	margin: auto;
}

.image-button:first-child {
	margin-bottom: 0rem;
}

.image-button__image {
	width: fit-content;
}

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

/* 現在の買取率 */

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

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

.rate-list__bg {
	width: 100%;
}

.rate-list__card {
	display: flex;
	align-items: center;
	gap: .5rem;
	padding: .5rem 1rem;
	position: absolute;
	top: clamp(0.625rem, -0.263rem + 2.364vw, 1.25rem);
	left: 0;
	right: 0;
	margin: auto;
}

.rate-list__card-image {
	flex: 0 0 clamp(1.75rem, -0.204rem + 5.201vw, 3.125rem);
	width: clamp(1.75rem, -0.204rem + 5.201vw, 3.125rem);
	height: clamp(1.75rem, -0.204rem + 5.201vw, 3.125rem);
	background: var(--white);
	border-radius: 4px;
}

.rate-list__card-img {}

.rate-list__card-name {
	color: var(--white);
	font-size: 1.2rem;
	font-weight: bold;
	text-align: center;
	flex: 1 0 50%;
}

.rate-list-inner {
	position: absolute;
	width: clamp(6.25rem, -2.630rem + 23.641vw, 12.5rem);
	/* aspect-ratio: 3 / 2; */
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	padding: clamp(0.375rem, -0.158rem + 1.418vw, 0.75rem);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.line-ribbon {
	width: fit-content;
	position: absolute;
	top: clamp(-0.875rem, 0.546rem + -3.783vw, -1.875rem);
	left: 0;
	right: 0;
	margin: auto;
}

.rate-list .rate-box__item {}

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

.rate-list .rate-box__decimal {
	width: 100%;
	max-height: 40px;
	object-fit: contain;
}
/* 買取シミュレーション */

.arrow-table {
	padding: 2rem;
}

.bg-normal {}

.arrow-table__body {}

.arrow-table__tr {
	padding: 1rem;
}

.arrow-table__tr_flex {
	display: flex;
	gap: 1rem;
}

.arrow-table__td {}

.arrow-table__td_flex-item {
	flex: 0 1 100%;
}

.simu-select {
	display: flex;
	gap: 1rem;
	align-items: center;
}

.simu-select__item {
	flex: 1 0 50%;
	background: linear-gradient(360deg, #fec729, #fefc35);
	border-radius: 8px;
	/*  */
	position: relative;
}

/* .select-icon {
    background-image: url(./img/card/apple.png);
    position: absolute;
    z-index: 2;
    width: 2rem;
    height: 2rem;
    background-size: contain;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--white);
    border-radius: 4px;
} */

.simu-select__select {
	border: unset;
	/* padding-left: 3rem; */
	font-weight: bold;
	font-size: 1.2rem;
	background: linear-gradient(0deg, #fffd1d, #ffc714);
	height: 3rem;
	border-radius: 4px;
	margin: .4rem;
	width: calc(100% - .8rem);
}

.radio-btn__text {}

.input {
	display: flex;
	gap: 1rem;
	align-items: center;
}

.input__item {
	flex: 1 0 50%;
	background: linear-gradient(360deg, #fec729, #fefc35);
	border-radius: 8px;
	position: relative;
}

.input__item::after {
	content: "円";
	display: block;
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	font-weight: bold;
	font-size: 1.2rem;
}

.input__input {
	border: unset;
	text-align: center;
	font-weight: bold;
	font-size: 1.2rem;
	background: linear-gradient(0deg, #fffd1d, #ffc714);
	height: 3rem;
	border-radius: 4px;
	margin: .4rem;
	width: calc(100% - .8rem);
}

.input-normal {}

.input-sum {}

.radio-btn-box {
	display: flex;
	gap: 1rem;
	align-items: center;
}

label {
	font-family: 'Noto Serif japanese', serif;
	font-size: 1.2rem;
	font-weight: bold;
}

.radio-btn {
	display: flex;
	gap: .5rem;
	align-items: center;
}

.radio-btn__input {
	height: 2rem;
	width: 2rem;
	accent-color: #CD3AD1;
}

.radio-count {}

.radio-btn__name {
	font-family: Meiryo, Tahoma, Verdana, Arial, sans-serif;
}

.radio-btn__text-only {}

.simu-result {}

.simu-result__head {}

.hl_text-lg {}

.simu-result__st {
	display: block;
	width: fit-content;
	margin: auto;
}

.simu-resilut__st-img {}

.simu-result__body {
	max-width: 600px;
	width: 100%;
	margin: auto;
	background: linear-gradient(0deg, #fffd35, #ff9d00, #fffd35);
	position: relative;
	margin-top: 6rem;
}

.simu-result__body::before {
	content: url('./../img/item/simu_arrow.png');
	display: block;
	width: fit-content;
	position: absolute;
	right: 0;
	left: 0;
	top: -6rem;
	font-weight: bold;
	font-size: 2rem;
	margin: auto;
}

.simu-result__body::after {
	content: "円";
	display: block;
	position: absolute;
	right: 1.6rem;
	bottom: 1.6rem;
	font-weight: bold;
	font-size: 2rem;
}


.input-view-box {
	width: calc(100% - .8rem);
	height: 5rem;
	background: linear-gradient(0deg, #ff9d00, #fffd35, #ff9d00);
	margin: .4rem;
	border: unset;
	text-align: right;
	font-weight: bold;
	font-size: 4rem;
	padding-right: 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;

}

.ver2 .group__ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1rem;
	padding: 8px;
	width: 100%;
	margin: auto;
	/*  */
	background: url('./../img/group/group-space2.png')no-repeat;

}

.ver2 .group__ul_odd,
.group__ul_odd {
	background-position: 90% 100%;
	background-size: 36% auto;
}

.ver2 .group__ul_even,
.group__ul_even {
	background: none;
}

.group__li {
	flex: 0 1 calc(50% - .5rem);
	overflow: hidden;
}

.group__link {
	display: block;
	width: 100%;
	height: 100%;
	height: 150px;
	aspect-ratio: 16/3;
	text-align: center;


	background: url('./../img/item/group_li-bg.png') no-repeat center;
	background-size: contain;
	overflow: hidden;
}

.group__img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 2rem 4rem;
}

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

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

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

/* フッター */
footer {
	background: var(--black);
	margin: auto;
    position: relative;
}

.footer__inner {
	padding: 1rem;
	padding-bottom: 240px;
}

.footer__global-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	/*  */
	max-width: 1000px;
	padding: 4rem 0;
	margin: auto;
}

.footer__nav-item {}

.footer__link {
	display: flex;
	align-items: center;
	width: 100%;
	font-weight: bold;
	font-size: 1rem;
	letter-spacing: 2px;
	color: #fff;
}



.footer__inner small {
	text-align: center;
	margin: 0 auto;
	display: block;
	font-size: .8rem;
	color: #fff;
    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;
    flex-wrap: wrap;
    margin: unset !important;
    gap: 1rem !important;
}

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

.footer__nav-link {
	color: white;
    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: fit-content;
}