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

body {
	font-size: 14px;
	background: var(--white);
	font-family: Meiryo, Tahoma, Verdana, Arial, sans-serif;
}

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

img {
	vertical-align: bottom;
	width: auto;
	max-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;
}

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

.sect-hero__item_left {
	padding: 0 1rem;
}

.sect-hero__item_right {
	padding: 0 1rem;
	overflow: hidden;
}


.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 center;
	background-size: auto 100%;
}

.ver2 .bg-simu {
	background: url('./../img/item/simu2_bg_sp.png')no-repeat 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-coin {
	position: relative;
	padding-bottom: 46vw;
}

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

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

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

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

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

/* 
.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 {
	text-align: center;
	margin-top: 0rem;
	margin-bottom: 2rem;
}

.rate-box {
	display: flex;
	align-items: center;
	justify-content: center;
}

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

.rate-box__item:last-child {}

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

.rate-box__decimal {
	display: block;
	width: 100%;
	height: clamp(1.75rem, 0.321rem + 7.143vw, 3.75rem);
	object-fit: contain;
	transition: .5s;
}


/*  */

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

/*  */

.banner-box {
	display: block;
	margin: 1rem 0;
}

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


/*ヘッダー
----------------------------------------------------------------------------------------------------*/
.main-menu {
	position: fixed;
	right: 12px;
	top: 12px;
	width: 40px;
	height: 40px;
	z-index: 9999;
	/*  */
	border: 2px solid var(--black);
	/*  */
	cursor: pointer;
}

.main-menu__inner {
	width: 100%;
	height: 100%;
	/*  */
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 6px;
	transition: all .3s;
}

.main-menu.active {
	border-color: var(--white);
}

.active .main-menu__inner {
	gap: 0;
}

.main-menu__inner span {
	width: 80%;
	height: 2px;
	transition: all .3s;
	background: var(--black);
}

.active .main-menu__inner span {
	background: var(--white);
}

.active .main-menu__inner span:first-child {
	margin: -2px;
	transform: rotate(-45deg);
}

.active .main-menu__inner span:nth-child(2) {
	opacity: 0;
}

.active .main-menu__inner span:last-child {
	margin: -2px;
	transform: rotate(45deg);
}



/*  */

.main-navigation {
	display: none;
	opacity: 0;
	transition: all 0.7s;
	/*  */
	position: fixed;
	top: 0;
	/*  */
	width: 100%;
	height: 100dvh;
	z-index: 9998;
	background: #000000c9;
	/*  */
	overflow-y: scroll;
}


.main-navigation__inner {
	position: relative;
	min-width: 320px;
	max-width: 1023px;
	padding: 10% 1rem 1rem;
	margin: auto;
}

.navigation {
	padding: 1rem;
}

.navigation__ul {
	display: flex;
	flex-direction: column;
	/*  */
	margin: auto;
	width: fit-content;
}

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

.navigation__ul_button {
	gap: 0;
	align-items: center;
}

.navigation__item {
	width: fit-content;
	font-size: 1.4rem;
	color: #fff;
}

.navigation__link {
	width: fit-content;
	display: flex;
	/*  */
	width: 100%;
	height: 100%;
	padding: 0.5rem;
	/*  */
}

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

.navigation__link:has(.navigation__img) {
	margin-bottom: 1rem;
}

.navigation__img {
	width: 100%;
}

.navigation__arrow {
	padding-left: 2em;
	position: relative;
}

.navigation__arrow::before {
	content: '▶';
	width: 1em;
	height: 1em;

	position: absolute;
	left: 0;
}

/*メインコンテンツ
----------------------------------------------------------------------------------------------------*/
#main {
	position: relative;
}

.content {
	min-width: 320px;
	max-width: 1023px;
	margin: 0 auto;
	padding: 1rem 12px;
}

.sect-hero {
	position: relative;
	width: 100%;
	height: 110dvw;
	max-height: 1023px;
	/*  */
	background: url('./../img/item/header_sp.png') no-repeat center;
	background-position-x: 100%;
	background-position-y: 70%;
	background-size: cover;
	padding-top: 4px;
}

.sect-hero2 {
	position: relative;
	width: 100%;
	height: 110dvw;
	max-height: 1023px;
	/*  */
	background: url('./../img/item/header2_sp.png') no-repeat center;
	background-position-x: 100%;
	background-position-y: 70%;
	background-size: cover;
	padding-top: 4px;
}

.hero-item {
	width: 100%;
	align-items: center;
	margin: 1rem auto;
	overflow: hidden;
}

.sect-hero__logo {
	width: 70%;
}

.hero-item__img {}

.hero-rate {
	max-width: 393px;
	width: 50vw;
	margin: 1rem 0 1rem;
}

.hero-rate__item {
	position: relative;
}

.hero-rate .rate-box {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0px;
	z-index: 99;
	/*  */
	width: 90%;
	height: 12vw;
	margin: auto;
	/*  */
	transform: translateY(-50%);
}

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

.three-point__inner {
	display: flex;
}

.three-point__item {}

.three-point__img {}

.shortest-time {
	position: relative;
}

.shortest-time__children {
	position: absolute;
	left: 0;
	right: 0;
	bottom: clamp(1.875rem, -0.536rem + 12.054vw, 5.25rem);
	/*  */
	width: 66%;
	height: clamp(1.375rem, 0.036rem + 6.696vw, 3.25rem);
	/*  */
	display: flex;
	justify-content: center;
	margin: auto;
}

.shortest-time__child {}

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


/* ボタン */

.button-box {
	position: relative;
}

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

.button-box__flex {
	display: flex;
	flex-direction: column-reverse;
	margin-bottom: 1rem;
}

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

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

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

.image-button__image {}

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

/* 現在の買取率 */

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

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

.rate-list__bg {
	width: 100%;
}

.line-ribbon {
	width: 80%;
	position: absolute;
	top: -1rem;
	left: 0;
	right: 0;
	margin: auto;
}

.line-ribbon img {
	width: 100%;
}

.rate-list__card {
	display: flex;
	align-items: center;
	gap: .5rem;
	padding: .5rem clamp(1rem, 0.090rem + 4.552vw, 3rem);
	position: absolute;
	top: clamp(0.2rem, -1.530rem + 8.649vw, 4rem);
	left: 0;
	right: 0;
	margin: auto;
}

.rate-list__card-image {
	flex: 0 0 clamp(2rem, 0.634rem + 6.828vw, 5rem);
	width: clamp(2rem, 0.634rem + 6.828vw, 5rem);
	height: clamp(2rem, 0.634rem + 6.828vw, 5rem);
	background: var(--white);
	border-radius: 4px;
}

.rate-list__card-img {}

.rate-list__card-name {
	color: var(--white);
	font-size: clamp(1rem, 0.545rem + 2.276vw, 2rem);
	font-weight: bold;
	text-align: center;
	flex: 1 0 50%;
}

.rate-list-inner {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 36vw;
	margin: auto;
	padding: 2px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.line-ribbon {
	line-height: 0;
}

.rate-list .rate-box__item {}

.rate-list .rate-box__num {
	height: 24vw;
	min-width: 9vw;
}

.rate-list .rate-box__decimal {
	height: clamp(1.5rem, 0.080rem + 7.102vw, 4.625rem);
	width: 10vw;
}


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


.arrow-table {
	max-width: 600px;
	margin: auto;
	padding: .5rem;
}

.bg-normal {}

.arrow-table__body {}

.arrow-table__tr {
	padding: .5rem;
}

.arrow-table__tr_flex {
	display: flex;
	flex-direction: column;
	gap: .5rem;
}

.arrow-table__td {}

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

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

.simu-select__item {
	flex: 1 0 70%;
	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: 1.2rem;
    height: 1.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: 2rem; */
	font-weight: bold;
	font-size: 1rem;
	background: linear-gradient(0deg, #fffd1d, #ffc714);
	height: clamp(2rem, 1.090rem + 4.552vw, 4rem);
	border-radius: 4px;
	margin: .2rem;
	width: calc(100% - .4rem);
}

.radio-btn__text {}

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

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

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

.input__input {
	border: unset;
	text-align: center;
	font-weight: bold;
	font-size: 1rem;
	background: linear-gradient(0deg, #fffd1d, #ffc714);
	height: clamp(2rem, 1.090rem + 4.552vw, 4rem);
	border-radius: 4px;
	margin: .2rem;
	width: calc(100% - .4rem);
}

.input-normal {}

.input-sum {}

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

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

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

.radio-btn__input {
	height: 1rem;
	width: 1rem;
	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;
	max-width: 60%;
}

.simu-resilut__st-img {}

.simu-result__body {
	max-width: 600px;
	width: 80%;
	margin: auto;
	background: linear-gradient(0deg, #fffd35, #ff9d00, #fffd35);
	position: relative;
	margin-top: clamp(2rem, 1.090rem + 4.552vw, 4rem);
}

.simu-result__body::before {
	content: '';
	background: url('./../img/item/simu_arrow.png')no-repeat;
	display: block;
	width: clamp(2rem, 1.090rem + 4.552vw, 4rem);
	aspect-ratio: 1/1;
	background-size: contain;
	position: absolute;
	right: 0;
	left: 0;
	top: calc(clamp(2rem, 1.090rem + 4.552vw, 4rem) * -1);
	font-weight: bold;
	font-size: 2rem;
	margin: auto;
}

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


.input-view-box {
	width: calc(100% - .4rem);
	height: clamp(2rem, 1.090rem + 4.552vw, 4rem);
	background: linear-gradient(0deg, #ff9d00, #fffd35, #ff9d00);
	margin: .2rem;
	border: unset;
	text-align: right;
	font-weight: bold;
	font-size: 2rem;
	padding-right: 2rem;
}

/* グループサイト */
.group__ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1rem;
	/*  */
	background: url('./../img/group/group-space.png')no-repeat;
}

.ver2 .group__ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1rem;
	/*  */
	background: url('./../img/group/group-space2.png')no-repeat;
}

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

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

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

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

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

.group__img {
	height: 100%;
	padding: .4rem clamp(0.4rem, -1.239rem + 8.193vw, 4rem);
	object-fit: contain;
}

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

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

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

/* フッター */
footer {
	background: var(--black);
	padding-bottom: 40vw;
	position: relative;
}

.footer__global-nav {
	width: fit-content;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	margin: auto;
	padding: 2rem 0;
}

.footer__nav-item {}

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

.footer__inner small {
	text-align: center;
	margin: 0 auto;
	display: block;
	font-size: 1rem;
	font-size: .8rem;
	color: #fff;
    width: 100%;
}

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

.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;
    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 {
	color: white;
    font-size: 14px !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%;
	min-width: 320px;
	max-width: fit-content;
	margin: auto;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 999;
}