/* --------------------------------------------------------------------------------

	spacing

-------------------------------------------------------------------------------- */

.mt-20 { margin-top: 2rem;}


/* --------------------------------------------------------------------------------

	color

-------------------------------------------------------------------------------- */

.bg-light { background-color: #e9e8e6;}
.bg-white { background-color: #fff;}


/* --------------------------------------------------------------------------------

	text-align

-------------------------------------------------------------------------------- */

.text-center { text-align: center;}


/* --------------------------------------------------------------------------------

	display

-------------------------------------------------------------------------------- */

.d-none { display: none;}


/* --------------------------------------------------------------------------------

	list

-------------------------------------------------------------------------------- */

.list { padding-left: 2rem;}
.list li { list-style: disc;}
.list li + li { margin-top: 1rem;}


/* --------------------------------------------------------------------------------

	Key

-------------------------------------------------------------------------------- */

.key {
	position: relative;
	margin: 0 0 10px;
}

.key::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	display: block;
	background-color: rgba(0, 0, 0, 0.15);
}

.key__text {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
	transform: translate(-50%, -50%);
}

.key__sub-title {
	margin: 0;
	padding: 2rem 3.2rem;
	background-color: #fff;
	font-size: 64px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 15%;
	text-box-trim: trim-both;
	text-box-edge: cap alphabetic;
	text-align: center;
}

.key__title {
	min-width: 20rem;
	margin: 0;
	padding: 1.6rem;
	background-color: #fff;
	font-size: 2rem;
	font-weight: 500;
	line-height: 1;
	text-box-trim: trim-both;
	text-box-edge: cap alphabetic;
	text-align: center;
}

.key__photo {
	display: block;
	max-width: none;
	width: 100vw;
	height: 580px;
	object-fit: cover;
}

@media screen and (max-width: 767.9px){

	.key__text {
		gap: 1.6rem;
	}

	.key__sub-title {
		font-size: 3.2rem;
	}

	.key__title {
		min-width: 16rem;
		font-size: 1.6rem;
		line-height: 1.4;
	}

	.key__photo {
		height: 50vh;
	}

}


/* --------------------------------------------------------------------------------

	btn

-------------------------------------------------------------------------------- */

.btn {
	display: flex;
	align-items: center;
	gap: 1.2rem;
	width: 100%;
	height: 48px;
	padding: 0 0 0 2.6rem;
	border: 1px solid #000;
	border-radius: 24px;
	color: #000;
	line-height: 1;
}

.btn-catalog::before {
	content: '';
	display: block;
	width: 22px;
	height: 22px;
	background: url(../img/common/icon_catalog.svg) no-repeat center center;
	background-size: contain;
}

.btn-download::before {
	content: '';
	display: block;
	width: 22px;
	height: 22px;
	background: url(../img/common/icon_download.svg) no-repeat center center;
	background-size: contain;
}


/* --------------------------------------------------------------------------------

	breadcrumbs

-------------------------------------------------------------------------------- */

.section-breadcrumbs {
	margin: 2rem 0;
}

.breadcrumbs {
	display: flex;
	align-items: center;
	font-size: 1.4rem;
}

.breadcrumbs li {
	display: flex;
	align-items: center;
}

.breadcrumbs li + li::before {
	content: '';
	display: block;
	width: 8px;
	height: 11px;
	margin: 0 1.4rem;
	background: url(../img/common/icon_arrow-right.svg) no-repeat center center;
	background-size: contain;
}

.breadcrumbs__home {
	display: block;
	width: 22px;
	height: 18px;
	background: url(../img/common/icon_home.svg) no-repeat center center;
	background-size: contain;
}


/* --------------------------------------------------------------------------------

	会社概要

-------------------------------------------------------------------------------- */

.outer-company {
	margin-bottom: 14.8rem;
	padding-top: 15.6rem;
	padding-bottom: 15.6rem;
}

.company-photo {
	display: flex;
	justify-content: space-between;
	margin-bottom: 8rem;
}

.company-photo__col {
	width: 47.16666667%;
	margin-bottom: 2rem;
}

.company-table {
	width: 100%;
}

.company-table th {
	padding: 2.8rem 0 2.8rem 1.4rem;
	border-bottom: 1px solid rgba(115, 159, 255, 1);
	text-align: left;
}

.company-table td {
	padding: 2.8rem 0 2.8rem 2.4rem;
	border-bottom: 1px solid rgba(210, 210, 210, 1);
}

@media screen and (max-width: 767.9px){

	.outer-company {
		margin-bottom: 4rem;
		padding: 2.4rem 1.6rem 4rem;
	}

	.company-photo {
		flex-direction: column;
		margin-bottom: 0;
	}

	.company-photo__col {
		width: 100%;
		margin-bottom: 2rem;
	}

	.company-table {
		width: 100%;
	}

	.company-table th {
		display: block;
		width: 100%;
		padding: 2rem 0 1rem;
		border-bottom: none;
	}

	.company-table td {
		display: block;
		width: 100%;
		padding: 0 0 2rem;
	}

}


/* --------------------------------------------------------------------------------

	商品カタログ・市場別パンフレット

-------------------------------------------------------------------------------- */

.catalog-row {
	display: flex;
	flex-wrap: wrap;
	margin: 10rem -20px 24rem;
}

.catalog-col {
	width: 50%;
	margin: 0 0 40px;
	padding: 0 20px;
}

.catalog-card {
	display: flex;
	justify-content: space-between;
	margin: 0;
	padding: 42px 40px;
	border: 1px solid rgba(167, 167, 167, 1);
	border-radius: 10px;
}

.catalog-card__photo {
	width: 35.341365462%;
}

.catalog-card__photo img {
	display: block;
	border: 1px solid rgba(157, 157, 157, 1);
}

.catalog-card__text {
	width: 55.020080321%;
}

.catalog-card__title {
	margin: 0 0 .8rem;
	font-weight: 700;
	font-size: 2rem;
	line-height: 2.45;
}

.catalog-card__sup {
	margin: 0 0 2rem;
	font-size: 1.5rem;
}

.catalog-card__btn {
	display: flex;
	flex-direction: column;
	gap: 1.4rem;
}


/* --------------------------------------------------------------------------------

	スリープテック・商品のこだわり

-------------------------------------------------------------------------------- */

.section-title-sticky {
	position: sticky;
	z-index: 10;
	top: 20rem;
	padding-left: 10rem;
}

.sleeptech-title {
	font-weight: 500;
	font-size: 4rem;
	line-height: 1.45;
}

.section-concept {
	position: relative;
	padding-top: 10rem;
	padding-bottom: 12rem;
}

.section-concept .sleeptech-title {
	margin-bottom: 7.2rem;
}

.sleeptech-concept {
	display: flex;
	justify-content: space-between;
}

.sleeptech-concept__text {
	width: 50%;
}

.sleeptech-concept__text p {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 2.27;
}

.sleeptech-concept__photo {
	position: relative;
	width: 34.833333333%;
}

.sleeptech-concept__photo01 {
	position: relative;
	right: -16rem;
}

.sleeptech-concept__photo02 {
	position: absolute;
	bottom: -20rem;
	left: -46rem;
	z-index: 2;
	width: 418px;
	max-width: none;
}

.sleeptech-concept__photo03 {
	position: absolute;
	bottom: -36rem;
	left: 100%;
	z-index: 3;
	width: 316px;
	max-width: none;
}

@media screen and (max-width: 1820px) {

	.sleeptech-concept__photo01 {
		right: 0;
	}

	.sleeptech-concept__photo03 {
		left: auto;
		right: 0;
	}

}

@media screen and (max-width: 1600px) {

	.section-title-sticky {
		position: static;
		max-width: 1200px;
		width: calc(100% - 30px);
		margin: 0 auto 2rem;
		padding: 0;
	}

}

@media screen and (max-width: 1024px) {

	.sleeptech-concept__photo01 {
		width: 30rem;
	}

	.sleeptech-concept__photo02 {
		right: 0;
		width: 20rem;
	}

	.sleeptech-concept__photo03 {
		width: 20rem;
		bottom: -16rem;
		right: 0;
	}

}


@media screen and (max-width: 767.9px) {


	.section-concept {
		padding-top: 8rem;
		padding-bottom: 8rem;
	}

	.section-concept .sleeptech-title {
		margin-bottom: 3.6rem;
	}

	.sleeptech-concept {
		flex-direction: column;
	}

	.sleeptech-concept__text {
		width: 100%;
		margin-bottom: 4rem;
	}

	.sleeptech-concept__photo {
		width: 100%;
	}

	.sleeptech-concept__photo01 {
		position: relative;
		right: 0;
		width: 50vw;
		margin-left: 8rem;
	}

	.sleeptech-concept__photo02 {
		bottom: -4rem;
		left: auto;
		right: 0;
		max-width: 30vw;
	}

	.sleeptech-concept__photo03 {
		left: 0;
		bottom: -12rem;
		max-width: 30vw;
	}

}


.section-sleeptech {
	position: relative;
	padding-top: 20rem;
	padding-bottom: 12rem;
}

.section-sleeptech .sleeptech-title {
	margin-bottom: 2rem;
}

.section-sleeptech__text {
	max-width: 690px;
}

.section-sleeptech__text p {
	font-size: 1.8rem;
	line-height: 2.2;
}

.sleeptech-swiper-wrap {
	margin-top: 10rem;
}

.mySwiper {
	overflow: visible !important;
	width: 100%;
}

.swiper-button-next,
.swiper-button-prev {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 80px;
	height: 80px;
	background-color: #fff;
	border-radius: 50%;
	color: #000;
	box-shadow: 0px 0px 10.9px -2px rgba(0, 0, 0, 0.25);
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
	display: none;
}


.swiper-button-next:after,
.swiper-button-prev:after {
	font-size: 3.6rem;
	font-weight: 100;
}

.swiper-slide {
    height: auto !important; /* 全スライドの高さを一番高いものに合わせる */
    display: flex;           /* 子要素を縦に伸ばす準備 */
}

.slide-content {
  display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    /* 数字アイコンが上や左にはみ出すための余白（必要に応じて調整） */
    padding-top: 2rem;
}

.slide-content__num {
	position: absolute;
	top: -3rem;
	left: 4rem;
}

.slide-inner {
	overflow: hidden; /* ここで画像を角丸で切り取る */
	flex: 1;                 /* これが重要：親の余った高さをすべて使い切る */
    display: flex;
    flex-direction: column;
	height: 100%;
	background-color: #fff;
	border-radius: 1.5rem;
	box-shadow: 0px 0px 28.9px 1px rgba(0, 0, 0, 0.14);
}


.slide-content__photo img {
	display: block;
	aspect-ratio: 460 / 270;
	object-fit: cover;
}

.slide-content__text {
	padding: 4rem;
}

.slide-content__title {
	margin: 0 0 .6rem;
	font-weight: 400;
	font-size: 4.8rem;
	line-height: 1.2;
}

.slide-content__sub-title {
	margin: 0 0 1.6rem;
	font-weight: 500;
	font-size: 2.4rem;
	line-height: 1.42;
}

.slide-content__desc {
	font-weight: 400;
	font-size: 1.5rem;
	line-height: 1.52;
}

@media screen and (max-width: 767.9px){

	.section-sleeptech {
		padding-top: 8rem;
		padding-bottom: 8rem;
	}

	.sleeptech-swiper-wrap {
		margin-top: 4rem;
	}

    .mySwiper {
		width: 90%;
		margin-left: 5%;
    }

	.swiper-button-next,
	.swiper-button-prev {
		width: 40px;
		height: 40px;
	}

	.swiper-button-next {
		right: -1rem !important;
	}

	.swiper-button-prev {
		left: -1rem !important;
	}

	.swiper-button-next:after,
	.swiper-button-prev:after {
		font-size: 2rem;
	}

	.slide-content__num {
		top: -2rem;
		left: 2rem;
	}

	.slide-content__num img {
		width: auto;
		height: 6rem;
	}

	.slide-content__title {
		font-size: 3.2rem;
	}

	.slide-content__sub-title {
		font-size: 2rem;
	}

}


.section-structure {
	padding: 20rem 0 40rem;
	background: url(../img/structure/structure.jpg) no-repeat left top;
	background-size: 1047px auto;
}

.structure-contents {
	max-width: 90rem;
	margin: 0 0 0 auto;
	padding: 4rem;
	background-color: rgba(255, 255, 255, 0.75);
}

.section-structure .sleeptech-title {
	margin-bottom: 1.6rem;
}

.structure-list {
	margin: 0;
	padding: 0;
	border-top: 1px solid rgba(199, 199, 199, 1);
	list-style: none;
}

.structure-list li {
	padding: 2rem 0;
	border-bottom: 1px solid rgba(199, 199, 199, 1);
}

.structure-box {
	display: flex;
	margin: 0;
	padding: 0;
	font-size: 1.8rem;
}

.structure-box__head {
	width: 74px;
	color: rgba(115, 159, 255, 1);
	font-weight: 500;
}

.structure-box__name {
	width: 146px;
	font-weight: 700;
}

.structure-box__text {
	width: calc(100% - 220px);
}

@media screen and (max-width: 767.9px){

	.section-structure {
		padding: 4rem 0 28rem;
		background: url(../img/structure/structure.jpg) no-repeat center bottom;
		background-size: 100vw auto;
	}

	.structure-contents {
		margin: 0;
		padding: 0;
		background-color: transparent;
	}

	.structure-box {
		flex-direction: column;
	}

	.structure-box__head {
		width: 100%;
		margin-bottom: 1rem;
		font-size: 1.6rem;
	}

	.structure-box__name {
		width: 100%;
		font-size: 1.6rem;
	}

	.structure-box__text {
		width: 100%;
		font-size: 1.6rem;
	}

}


/* --------------------------------------------------------------------------------

	商品・サービス内容

-------------------------------------------------------------------------------- */

.product-key {
	padding: 12rem 10rem 9.2rem;
}

.product-key-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.product-key__sub-title {
	margin-bottom: 1.6rem;
	font-size: 9rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 5.4px;
}

.product-key__title {
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 2;
}

@media screen and (max-width: 767.9px){

	.product-key {
		padding: 8rem 4rem 4rem;
	}

	.product-key-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 4rem;
	}

	.product-key__sub-title {
		font-size: 4rem;
	}

	.product-key__title {
		font-size: 1.6rem;
	}

}


.section-product-lead01 {
	padding-top: 8rem;
	padding-bottom: 12rem;
	background: url(../img/product/product-lead01.jpg) no-repeat center center;
	background-size: cover;
}

.product-lead01__sub-title {
	margin: 0 0 1rem;
	font-weight: 500;
	font-size: 2.4rem;
	line-height: 2;
}

.product-lead01__title {
	margin: 0 0 2.4rem;
	font-weight: 500;
	font-size: 4.8rem;
	line-height: 1.4;
}

.product-lead01__sup {
	margin: 0 0 10rem;
	font-weight: 500;
	font-size: 2rem;
	line-height: 1.4;
}

.product-lead01__text {
	max-width: 600px;
}

.product-lead01__text p + p {
	margin-top: 2rem;
}

@media screen and (max-width: 767.9px) {

	.section-product-lead01 {
		padding-top: 4rem;
		padding-bottom: 8rem;
	}

	.product-lead01__sub-title {
		font-size: 2rem;
	}

	.product-lead01__title {
		font-size: 3.2rem;
	}

	.product-lead01__sup {
		margin-bottom: 4rem;
	}

}


.section-product-lead02 {
	padding-top: 10rem;
	padding-bottom: 10rem;
}

.product-lead02-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.product-lead02-box__body {
	width: 50%;
}

.product-lead02__title {
	margin: 0 0 2.4rem;
	font-size: 3.6rem;
	font-weight: 500;
	line-height: 1.4;
}

.product-lead02-box__text {
	max-width: 560px;
}

.product-lead02-box__text p + p {
	margin-top: 2rem;
}

.product-lead02-box__photo {
	position: relative;
	width: 45%;
}

.product-lead02-box__photo01{
	max-width: 366px;
	width: 100%;
}

.product-lead02-box__photo02 {
	position: absolute;
	right: 0;
	bottom: -17rem;
	z-index: 2;
	max-width: 347px;
	width: 85%;
}

@media screen and (max-width: 767.9px){

	.section-product-lead02 {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}

	.product-lead02-box {
		flex-direction: column;
	}

	.product-lead02-box__body {
		width: 100%;
		margin-bottom: 4rem;
	}

	.product-lead02__title {
		font-size: 3.2rem;
	}

	.product-lead02-box__photo {
		width: 100%;
	}

	.product-lead02-box__photo01 {
		width: 60vw;
		margin: 0 auto;
	}

	.product-lead02-box__photo02 {
		right: 0;
		bottom: -8rem;
		width: 40vw;
	}

}


.section-product-concept {
	padding: 14rem 4rem;
}

.product-concept-head {
	display: flex;
	align-items: center;
	gap: 14.6rem;
	margin-bottom: 13rem;
}

.product-concept__en {
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 2;
}

.product-concept__title {
	font-size: 3.6rem;
	font-weight: 500;
	line-height: 1.36;
}

.product-concept-row {
	display: flex;
	justify-content: space-around;
	gap: 6rem;
}

.product-concept-col {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 534px;
}

.product-concept-box {
	position: relative;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.product-concept-box__num {
	position: absolute;
	top: -3rem;
	left: 4.8rem;
}

.product-concept-box__inner {
	overflow: hidden;
	height: 100%;
	background-color: #fff;
	border-radius: 1.5rem;
	box-shadow: 0 0 28.9px 1px rgba(0, 0, 0, 0.14);
}

.product-concept-box__photo img {
	display: block;
	max-width: none;
	width: 100%;
}

.product-concept-box__text {
	padding: 3rem 4rem 7.2rem;
}

.product-concept-box__title {
	margin-bottom: 1rem;
	font-size: 3.6rem;
	font-weight: 600;
	line-height: 1.62;
}

.product-concept-box__desc {
	line-height: 1.82;
}

@media screen and (max-width: 1024px){

	.section-product-concept {
		padding-left: 0;
		padding-right: 0;
	}

}

@media screen and (max-width: 767.9px){

	.section-product-concept {
		padding-top: 8rem;
		padding-bottom: 4rem;
	}

	.product-concept-head {
		flex-direction: column;
		gap: 2rem;
		margin-bottom: 4rem;
	}

	.product-concept-row {
		flex-direction: column;
		gap: 4rem;
	}

	.product-concept-box__text {
		padding: 4rem;
	}

	.product-concept-box__num {
		top: -2rem;
		left: 2rem;
	}

	.product-concept-box__num img {
		width: auto;
		height: 6rem;
	}

	.product-concept-box__text {
		padding: 4rem;
	}

	.product-concept-box__title {
		font-size: 3.2rem;
	}

}


.section-product-quality {
	padding-top: 9.2rem;
	padding-bottom: 18rem;
}

.product-quality-title {
	margin: 0 0 10rem;
	font-size: 3.6rem;
	font-weight: 500;
	line-height: 1.4;
	text-align: center;
}

.product-quality-row {
	display: flex;
	margin: 0 0 5.2rem;
}

.product-quality-col {
	display: flex;
	width: 33%;
	padding: 0 1.8rem;
}

.product-quality-box {
	height: 100%;
	padding: 6.4rem 3.2rem 3.2rem;
	background-color: #fff;
	border-radius: 1rem;
	text-align: center;
}

.product-quality-box__photo {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 52px;
	margin: 0 0 1.6rem;
	text-align: center;
}

.product-quality-box__photo img {
	margin: 0 auto;
}

.product-quality-box__title {
	margin: 0 0 1.2rem;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.54;
}

.product-quality-box__text {
	font-size: 1.6rem;
	line-height: 1.81;
}

@media screen and (max-width: 767.9px) {

	.section-product-quality {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}

	.product-quality-title {
		margin-bottom: 4rem;
		font-size: 3.2rem;
	}

	.product-quality-row {
		flex-direction: column;
		margin: 0 0 4rem;
	}

	.product-quality-col {
		width: 100%;
		padding-left: 0;
		padding-right: 0;
	}

	.product-quality-col + .product-quality-col {
		margin-top: 2rem;
	}

}


.product-design {
	margin-bottom: 9.2rem;
	padding: 6.4rem 2rem 7.2rem;
	background-color: #fff;
	border-radius: 1rem;
}

.product-design__title {
	margin: 0 0 4rem;
	text-align: center;
	font-size: 4rem;
	font-weight: 500;
	line-height: 1.4;
}

.product-design-row {
	display: flex;
	justify-content: center;
	margin: 0 -2rem 6.4rem;
}

.product-design-col {
	width: 20rem;
	padding: 0 2rem;
}

.product-design-box {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	border-radius: 50%;
	aspect-ratio: 1 / 1;
	text-align: center;
}

.product-design-box--01 { background-color: #E2EBFF;}
.product-design-box--02 { background-color: #FEECD3;}
.product-design-box--03 { background-color: #F9D9D9;}


.product-design-box__img {
	position: absolute;
}

.product-design-box--01 .product-design-box__img { bottom: -0.4rem; right: -3.6rem;}
.product-design-box--02 .product-design-box__img { bottom: -1.2rem; right: -2.4rem;}
.product-design-box--03 .product-design-box__img { bottom: -0.6rem; right: -1.2rem;}


.product-design-box p {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5;
}

.product-design__text p {
	text-align: center;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 2.28;
}

@media screen and (max-width: 767.9px) {

	.product-design {
		margin-bottom: 4rem;
		padding: 4rem 2rem;
	}

	.product-design__title {
		font-size: 3.2rem;
	}

	.product-design-row {
		flex-direction: column-reverse;
		align-items: center;
		gap: 2rem;
	}

	.product-design__text p {
		font-size: 1.6rem;
	}

}


.product-lineup-title {
	margin: 0 0 10.6rem;
	font-size: 4rem;
	font-weight: 500;
	line-height: 1.4;
	text-align: center;
}

.product-box {
	margin-bottom: 8rem;
	padding: 6.8rem 2rem 6.8rem;
	background-color: #fff;
}

.product-box-contents {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.product-box-head {
	margin-bottom: 5.2rem;
}

.product-box-title {
	margin: 0 0 1rem;
	font-size: 4.8rem;
	font-weight: 800;
	line-height: 0.9375;
	letter-spacing: 3.84px;
}

.product-box-sub-title {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 2;
}

.product-box__body {
	display: flex;
	justify-content: space-between;
	margin: 0 0 5.2rem;
}

.product-box__photo {
	width: 44%;
}

.product-box__info {
	width: 49.58333%;
}

.product-box__info-table {
	width: 100%;
	margin: 0 0 2.4rem;
	border-top: 1px solid #9D9D9D;
	border-left: 1px solid #9D9D9D;
}

.product-box__info-table th {
	width: 165px;
	padding: 1.6rem .8rem 1.6rem 2rem;
	border-right: 1px solid #9D9D9D;
	border-bottom: 1px solid #9D9D9D;
	background: #F8F8F8;	
	text-align: left;
}

.product-box__info-table td {
	width: calc(100% - 165px);
	padding: 1.6rem .8rem 1.6rem 1.6rem;
	border-right: 1px solid #9D9D9D;
	border-bottom: 1px solid #9D9D9D;
}

.product-box-row {
	display: flex;
	justify-content: space-between;
	margin: 0 0 5.2rem;
}

.product-box-col {
	width: 48.166667%;
	margin-bottom: 4rem;
}

.product-thumbnail-head {
	display: flex;
	align-items: center;
	gap: 1.6rem;
	margin-bottom: 2rem;
	padding-bottom: 1.6rem;
	border-bottom: 1px solid #9D9D9D;
}

.product-thumbnail-row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -2rem -2rem;
}

.product-thumbnail-col {
	width: 25%;
	margin-bottom: 2rem;
	padding: 0 2rem;
}

.product-thumbnail__photo {
	margin-bottom: 1rem;
}

.product-thumbnail__text {
	font-size: 1.35rem;
	line-height: 1.72;
}

@media screen and (max-width: 767.9px) {

	.product-lineup-title {
		margin-bottom: 4rem;
		font-size: 3.2rem;
	}

	.product-box {
		margin-bottom: 4rem;
		padding: 4rem 2rem;
	}

	.product-box-head {
		margin-bottom: 3.2rem;
	}

	.product-box-title {
		font-size: 3.2rem;
		line-height: 1.4;
	}

	.product-box__body {
		flex-direction: column;
		gap: 2rem;
		margin-bottom: 2rem;
	}

	.product-box__photo {
		width: 100%;
	}

	.product-box__info {
		width: 100%;
	}

	.product-box__info-table th {
		display: block;
		width: 100%;
		border-bottom: none;
	}

	.product-box__info-table td {
		display: block;
		width: 100%;
	}

	.product-box-row {
		flex-direction: column;
		gap: 2rem;
		margin-bottom: 4rem;
	}

	.product-box-col {
		width: 100%;
		margin-bottom: 0;
	}

	.product-thumbnail-row {
		margin: 0 -1rem -2rem;
	}

	.product-thumbnail-col {
		width: 33.33333333%;
		margin-bottom: 2rem;
		padding: 0 1rem;
	}

}


.comfort{
  align-items: center;
  display: flex;
  margin-bottom: 1.5rem;
}

.comfort p{
  font-weight: 700;
  width: 14.93%;
}

.comfort .bar{
  font-size:0;
  font-weight: 500;
  min-width: 6.5rem;
  position: relative;
  padding-left: 4.8rem;
  padding-right: 7rem;
  width: calc(100% - 14.93%);
}

.comfort .bar::before,
.comfort .bar::after{
	font-size: 1.4rem;
	position: absolute;
	top: -4px;
}

.comfort .bar::before{
 	content: "\304B\305F\3081";
	left: 0;
}

.comfort .bar::after{
	content: "\3084\308F\3089\304B\3081";
	right: 0;
}

.comfort .bar span{
  background-color: #E2E2E2;
  border-right: 1px solid #919191;
  display: inline-block;
  height: 1.3rem;
  width: 19%;
}

.comfort .bar span.current{
  background-color: var(--blue);
}

.comfort .bar span:first-child{
  border-top-left-radius: 999px;
  border-bottom-left-radius: 999px;
}

.comfort .bar span:last-child{
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-right: none;
}


/* --------------------------------------------------------------------------------

	お問い合わせ

-------------------------------------------------------------------------------- */

.form-wrap {
	max-width: 800px;
	margin: 0 auto;
}

.form-table {
	width: 100%;
}

.form-table tr {
	border-bottom: 1px dashed rgba(204, 204, 204, 1);
}

.form-table th,
.form-table td {
	vertical-align: top;
}

.form-table th {
	width: 200px;
	padding: 2.6rem 0;
	text-align: left;
}

.form-table td {
	width: calc(100% - 200px);
	padding: 2.4rem 0;
}

@media screen and (max-width: 767.9px){

	.form-table th {
		display: block;
		width: 100%;
		padding: 2rem 0 1rem;
	}

	.form-table td {
		display: block;
		width: 100%;
		padding: 0 0 2rem;
	}

}


.is-any {
	display: inline-block;
	margin-left: 2rem;
	padding: .8rem 2rem;
	border: 1px solid rgba(115, 159, 255, 1);
	border-radius: 20px;
	color: rgba(115, 159, 255, 1);
	line-height: 1;
}

.form-message {
	margin: 0 0 4rem;
	text-align: center;
}

.wpcf7-form-control.wpcf7-text,
.wpcf7-form-control.wpcf7-textarea {
	width: 100%;
	max-width: 100%;
	padding: .8rem 1.6rem;
	background: rgba(240, 240, 240, 1);
	border: 1px solid rgba(204, 204, 204, 1);
	border-radius: .5rem;
}

.wpcf7-form-control.wpcf7-textarea {
	height: 250px;
}

.wpcf7-form-control.wpcf7-radio {
	display: flex;
	flex-wrap: wrap;
	gap: 1.6rem;
}

@media screen and (max-width: 767.9px){

	.wpcf7-form-control.wpcf7-radio {
		flex-direction: column;
		gap: 1rem;
	}

}


.wpcf7-radio .wpcf7-list-item {
	display: inline-block;
}

.wpcf7-radio .wpcf7-list-item {
    display: block;
    margin-bottom: 5px;
}

.wpcf7-form-control::placeholder {
    color: rgba(155, 155, 155, 1);
    opacity: 1;/
}

.wpcf7-form-control:-ms-input-placeholder {
    color: rgba(155, 155, 155, 1);
}

.wpcf7-form-control::-ms-input-placeholder {
    color: rgba(155, 155, 155, 1);
}

.post-code-row {
	display: flex;
	align-items: center;
	gap: .8rem;
}

.wpcf7-form-control.input-post-code-w80 { width: 8rem;}
.wpcf7-form-control.input-post-code-w90 { width: 9rem;}


.consent-box {
	margin: 4rem 0 9rem;
	padding: 2.4rem 1rem;
	background-color: rgba(223, 233, 255, 1);
	border: 1px solid rgba(115, 159, 255, 1);
	border-radius: .5rem;
	text-align: center;
}

.consent-box h4 {
	margin: 0 0 1.6rem;
}

.consent-box a {
	color: rgba(39, 133, 255, 1);
	text-decoration: underline;
}

.consent-box p + p {
	margin-top: 1.6rem;
}

@media screen and (max-width: 767.9px){

	.consent-box {
		margin: 2rem 0 4rem;
	}

}

/* チェックボックス */
/* チェックボックス本体を隠す */
.consent-box input[type="checkbox"] {
    display: none;
}

/* ラベル全体の調整 */
.consent-box label {
    cursor: pointer;
    display: inline-block;
}

/* カスタムチェックボックスの土台（spanに対して装飾） */
.consent-box .wpcf7-list-item-label {
    position: relative;
    padding-left: 30px; /* 四角形が表示されるスペース */
    display: inline-block;
}

/* 四角い枠 */
.consent-box .wpcf7-list-item-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 1px solid #CCC;
    background: #fff;
    transition: 0.2s;
}

/* チェックが入った時の背景色変更 */
/* input:checked の直後にある span::before を狙う */
.consent-box input[type="checkbox"]:checked + .wpcf7-list-item-label::before {
    background: #2785FF;
    border-color: #2785FF;
}

/* レ点（チェックマーク） */
.consent-box .wpcf7-list-item-label::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-65%) rotate(45deg);
    width: 6px;
    height: 11px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    opacity: 0;
    transition: 0.2s;
}

/* チェックが入ったらレ点を表示 */
.consent-box input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
    opacity: 1;
}




.btn-group {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
}

.btn-send {
	position: relative;
	display: block;
	width: 100%;
	max-width: 480px;
	height: 80px;
	background-color: rgba(115, 159, 255, 1);
	border: 2px solid rgba(255, 255, 255, 1);
	border-radius: 40px;
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 76px;
	text-align: center;
	color: #fff;
	letter-spacing: 1px;
	appearance: none;
}

.btn-send::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 3.2rem;
	display: block;
	width: 28px;
	height: 15px;
	background: url(../img/common/btn-arrow.svg) no-repeat center center;
	background-size: contain;
	transform: translateY(-50%);
}

@media screen and (max-width: 767.9px){

	.btn-send {
		font-size: 1.6rem;
	}

	.btn-send::after {
		right: 1.6rem;
		width: 20px;
		height: 12px;
	}

}