@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(--navy);
	font-family: Meiryo, Tahoma, Verdana, Arial, sans-serif;
}

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

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 {
	--navy: #13285d;
	--gray: #f2f2f2;
	--yellow: #bbae83;

	--white: white;
	--green: green;
	--black: var(--navy);
}

section {
	margin: auto;
}

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

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


.bg-normal {
	background: #fff;
}

.bg-blue {
	background: var(--navy);
	padding-bottom: 2rem;
}

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

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

.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: 140%;
    background-position-x: 60%;
}

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

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

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

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

.st {
	text-align: center;
	margin-top: 1rem;
	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: 100%;
	object-fit: contain;
	transition: .5s;
}

.rate-box__decimal {
	display: block;
	width: 100%;
	height: 60%;
	object-fit: contain;
	transition: .5s;
}

.rate-box__decimal:last-child {
	height: 40%;
}

/*  */

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


/*ヘッダー
----------------------------------------------------------------------------------------------------*/
.main-menu {
	position: fixed;
	right: 12px;
	top: 12px;
	width: 40px;
	height: 40px;
	z-index: 9999;
	/*  */
	background: var(--navy);
	border: 2px solid #fff;
	/*  */
	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;
}

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

.main-menu__inner span {
	width: 80%;
	height: 2px;
	background: #fff;
	transition: all .3s;
}

.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: var(--navy);
	/*  */
	overflow-y: scroll;
}


.main-navigation__inner {
	position: relative;
	min-width: 300px;
	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 {}

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

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

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

.hero-item__logo {
	flex: 0 1 60%;
}

.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: 0px;
    right: 0;
    top:64%;
    z-index: 99;
	/*  */
    width: 90%;
    height: 15vw;
	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: 20%;
	bottom: 22%;
	/*  */
	width: 40%;
	height: 8dvw;
	/*  */
	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;
	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%;
}

.rate-list-inner {
    position: absolute;
    top: 24%;
    left: 0;
    right: 0;
	/*  */
    width: 36vw;
    aspect-ratio: 3 / 2;
    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: 18vw;
	min-width: 9vw;
}

.rate-list .rate-box__decimal {
	height: 7vw;
	width: 10vw;
}

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

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

.arrow-table {}

.arrow-table__body {}

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

.arrow-table__th {
	margin-bottom: 1rem;
	padding: 1rem;
	color: var(--yellow);
	font-size: 20px;
	text-align: center;
	border-top: 1px solid;
	border-bottom: 1px solid;
}

.arrow-table__td {
	position: relative;
}

.radio-btn-box {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.radio-btn {
	flex: 0 1 calc(50% - 0.5rem);
	border-radius: 8px;
	overflow: hidden;
	color: black;
}

.radio-btn__input {
	display: none;
}

.radio-kinds {}

.radio-kinds + .radio-btn__label {
	justify-content: start;
}

.radio-kinds:checked+.radio-btn__label,
.radio-panel:checked + .radio-btn__label,
.radio-count:checked+.radio-btn__label {
	color: #fff;
	background: linear-gradient(#770101 1%, #c70000 20%, #ff3838 50%, #c70000 70%, #770101 99%);
}

.radio-btn__label {
	cursor: pointer;
	/*  */
	min-height: 12vw;
	padding: 2vw;
	/*  */
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	/*  */
	background: linear-gradient(#d4d4d4 1%, #f7f7f7 20%, #fff 50%, #f7f7f7 70%, #d4d4d4 99%);
}


.image_s {
	width: 8dvw;
	height: 8dvw;
	border-radius: 8px;
	object-fit: contain;
}

.radio-btn__text {
	font-size: 4vw;
	font-weight: bold;
	word-break: break-all;
}


.radio-count {}

.input-item {
	border: none;
	outline: none;
	width: 100%;
	height: 4rem;
	padding: 0.5rem;
	/*  */
	color: #ffffff;
	font-size: 12vw;
}

.input-normal {
	background: var(--navy);
	border: 2px solid #ffffff;
	border-radius: 8px;
	padding: 1rem;
	text-align: center;
	color: #fff;
}

.input-view-box {
	/*  */
	margin: auto;
	/*  */
	border: none;
	outline: none;
	/*  */
	text-align: center;
	font-weight: bold;
	color: #ffffff;
	background: transparent;
	/*  */
	font-size: 12vw;
	height: 20vw;
}

.input-view-box_abs {
	position: absolute;
	left: 0;
	right: 0;
	top: 7vw;
}

.input-view-box__image {
	display: block;
	width: fit-content;
	margin: auto;
}

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

.arrow-table__td:has(.input-sum) {
	position: relative;
}

.arrow-table__td:has(.input-sum)::after {
	content: '円';
	font-size: 1.2rem;
	font-weight: bold;
	color: #ffffff;

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

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

.group__ul_odd {
	background-position: 94% 99%;
	background-size: 40% auto;
}

.group__ul_even {
	background: none;
}

.group__li {
	flex: 0 1 47%;
	border-radius: 16px;
	overflow: hidden;
	border: 4px solid #d4d4d4;
}

.group__link {
	display: block;
	width: 100%;
	height: 100%;
	padding: .4rem;
	max-height: 150px;

	/*  */
	background: linear-gradient(#d4d4d4 1%, #f7f7f7 20%, #fff 50%, #f7f7f7 70%, #d4d4d4 99%);
}

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

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

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

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

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

.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 {
	padding: 2rem 1rem;
    display: flex;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: auto;
    gap: 2rem 0;
}

.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 {
    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;
	margin: auto;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 999;
	max-width: 600px;
}