/************************************************
** タイトル
************************************************/
.t-diagonal {
	padding: 0.7rem 1rem;
	transform: skew(-15deg);
	text-align: center;
	width: 90%;
	margin: 0 auto;
	background: #FFF;
	color: #171f40;
	box-shadow: 0px 10px 5px -6px rgba(0, 0, 0, 0.3);
	font-size: 1.5rem;
}

.t-diagonal span {
	display: inline-block;
	transform: skew(15deg);
}

.t-diagonal.is-blue {
	background: #171f40;
}

.t-diagonal.is-blue span {
	color: #fff;
}

.t-ribbon-wrap {
	text-align: center;
}


.t-ribbon {
	position: relative;
	display: inline-block;
	margin: 0 10px;
	z-index: 0;
}

.t-ribbon span {
	position: relative;
	z-index: 2;
	display: block;
	padding: 1rem;
	color: #fff;
	font-weight: 700;
	font-size: 2.0rem;
	text-align: center;
	white-space: nowrap;
	line-height: 2.3rem;
}

.t-ribbon::before {
	content: "";
	position: absolute;
	top: 0;
	left: -8px;
	width: calc(100% + 24px);
	height: 100%;
	background: #ff0000;
	clip-path: polygon(4% 0%,
			92% 0%,
			100% 28%,
			96% 100%,
			0% 88%,
			0% 28%);
	z-index: -1;
}


@media screen and (max-width:768px) {
	.t-diagonal {
		font-size: 1.2rem;
	}

	.t-ribbon span {
		font-size: 19px;
	}
}

.t-ribbon.is-blue {
	width: 90%;
}

.t-ribbon.is-blue::before {
	background: #171f40;
}


/************************************************
** メインイメージ
************************************************/
.k-info__main-img-pc {
	width: 100%;
	display: inline-block;
	text-align: center;
}

.k-info__main-img-sp {
	display: none;
}

@media only screen and (max-width: 1200px) {
	.k-info__main-img-pc {
		display: none;
	}

	.k-info__main-img-sp {
		width: 100%;
		display: inline-block;
		text-align: center;
	}
}


/************************************************
** 価格表
************************************************/
.price {
	background: url(../../images/kaitori-densen/about-bk.png) no-repeat center center / cover;
	padding: 40px 0;
}

.k-info__price-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.k-info__price-list img {
	border: solid 1px #171f40;
}


.store-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.store-detail {
	width: calc((100% / 3 - 20px));
}

.store-detail img {
	height: auto;
	max-width: 100%;
}

.store-btn-wrap {
	text-align: center;
}

.store-btn {
	border-radius: 50px;
	border: solid 2px #212544;
	color: #212544;
	display: inline-flex;
	justify-content: space-between;
	position: relative;
	padding: 5px 32px 5px 10px;
	white-space: nowrap;
	background: #FFF;
}

.store-btn::after {
	content: '→';
	position: absolute;
	padding-top: 1px;
	right: 5px;
	top: 3px;
	width: 23px;
	height: 23px;
	background: #212544;
	text-align: center;
	color: #FFF;
	border-radius: 100%;
}



.price__wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.price__text-wrap {
	width: 50%;
	padding: 0 30px 0 0;
	margin: 0 auto;
	color: #FFF;
}

.price__text {
	line-height: 2.0rem;
}

.price__img {
	width: 50%;
}

.price__strong {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.price__strong-detail {
	width: 30%;
}

@media screen and (max-width: 1000px) {
	.price__text-wrap {
		width: 100%;
		padding: 0;
	}

	.price__img {
		width: 100%;
		text-align: center;
	}
}

@media screen and (max-width: 768px) {
	.store-wrap {
		display: block;
	}

	.store-detail {
		width: 90%;
		margin: 0 auto;
	}
}


/************************************************
** 取り扱いメーカー
************************************************/
.maker-wrap {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin: 0 auto;
}

.maker__img {
	padding: 5px 13px;
	border: solid 1px;
	border-radius: 50px;
}

.maker__img img {
	display: block;
	margin: 0 auto;
	text-align: center;
	height: 40px;
	width: auto;
}

@media screen and (max-width: 1000px) {
	.maker-wrap {
		grid-template-columns: repeat(2, 1fr);
	}
}


/************************************************
** 買取実績
************************************************/
.achieve-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	/*
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;*/
	gap: 10px;
	width: 100%;
	min-height: 500px;
}

.post-card__link {
	display: block;
	border: solid 2px #212544;
	padding: 10px;
	border-radius: 5px;
}

.post-card__thumb-img img {
	object-fit: cover;
	aspect-ratio: 16/9;
	width: 100%;
}

.post-card__title {
	font-size: 1.0rem;
	line-height: 1.2rem;
	min-height: 54px;
}

.post-card__date {
	font-weight: 700;
}

.post-card__date>span {
	background: #ff0000;
	color: #FFF;
	padding: 3px 5px;
	border-radius: 5px;
	margin-left: 5px;
}

@media screen and (max-width: 1000px) {
	.achieve-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 768px) {
	.achieve-list {
		grid-template-columns: repeat(1, 1fr);
	}
}


/************************************************
** CTA
************************************************/
.cta {
	display: flex;
	width: 90%;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	background: linear-gradient(0deg, rgba(255, 235, 148, 1) 15%, rgba(255, 252, 235, 1) 100%);
	border-radius: 10px;
	border: solid 2px #212544;
	padding: 20px;
	margin: 40px auto;
	position: relative;
}

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

.cta::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	box-shadow: 0 0 20px rgba(55, 80, 109, 0.5);
	opacity: 0.6;
	pointer-events: none;
	z-index: -1;
	animation: shadowPulse 2.5s ease-in-out infinite;
}

/* アニメーション */
@keyframes shadowPulse {
	0% {
		transform: scale(0.7);
		opacity: 0.5;
		box-shadow: 0 0 20px rgba(55, 80, 109, 0.7);
	}

	50% {
		transform: scale(1.0);
		opacity: 0.9;
		box-shadow: 0 0 30px rgba(55, 80, 109, 1.0);
	}

	100% {
		transform: scale(0.7);
		opacity: 0.5;
		box-shadow: 0 0 20px rgba(55, 80, 109, 0.7);
	}
}

.cta__img {
	width: 25%;
	display: block;
	margin-right: 20px;
}

.cta__info {
	width: 75%;
}

.cta__title {
	font-size: 1.1rem;
	font-weight: 600;
}

.cta__text {
	margin-right: 10px;
}

.cta-btn__wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.cta-btn__detail {
	width: calc((100% / 2) - 5px);
}

.cta-btn {
	display: block;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding: 10px;
	border-radius: 6px;
	cursor: pointer;
	font-weight: bold;
	color: #FFF;
	transition: all 0.1s ease;
	transition: all 0.1s ease;
	transform: translateY(0px);
	border: none;
	line-height: 1.1rem;
}

/* TELボタン */
.cta-btn.is-tel:hover {
	transform: translateY(2px);
	box-shadow: 0 3px 0 #c05204;
}

.cta-btn.is-tel:active {
	transform: translateY(5px);
	box-shadow: 0 0 0 #c05204;
}

.cta-btn.is-tel {
	background-color: #ee731b;
	box-shadow: 0 5px 0 #c05204;
}

/* LINEボタン */
.cta-btn.is-line:hover {
	transform: translateY(2px);
	box-shadow: 0 3px 0 #069615;
}

.cta-btn.is-line:active {
	transform: translateY(5px);
	box-shadow: 0 0 0 #069615;
}

.cta-btn.is-line {
	background-color: #0fbe20;
	box-shadow: 0 5px 0 #069615;
}

@media screen and (max-width: 1000px) {
	.cta__img {
		display: none;
	}

	.cta {
		width: 100%;
	}
}



/************************************************
** アクセス
************************************************/
.accsess__wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.accsess__wrap img {
	width: 30%;
	margin-right: 10px;
}

.accsess__wrap iframe {
	display: block;
	width: 100%;
}

.access__text {
	width: calc(70% - 10px);
}

/************************************************
** 共通
************************************************/
.k-info__container {
	display: block;
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}

.f-red {
	color: #ff0000;
}

.f7 {
	font-size: 0.7rem;
}

.f8 {
	font-size: 0.8rem;
}

.f9 {
	font-size: 0.9rem;
}

.f10 {
	font-size: 1.0rem;
}

.f12 {
	font-size: 1.2rem;
}

.f14 {
	font-size: 1.4rem;
}

.f15 {
	font-size: 1.5rem;
}

.f17 {
	font-size: 1.7rem;
}

.mt5 {
	margin-top: 5px;
}

.mt10 {
	margin-top: 10px;
}

.mt15 {
	margin-top: 10px;
}

.mt20 {
	margin-top: 20px;
}

.mt30 {
	margin-top: 30px;
}

.mt40 {
	margin-top: 40px;
}