@charset "UTF-8";
/* ---------------------------------------
基本情報
-----------------------------------------*/
html {
	font-size: 62.5%;
	overflow-y: scroll;
}
@media screen and (max-width: 1440px) {
	html {
		font-size: 0.6944444444vw;
	}
}
@media screen and (max-width: 767px) {
	html {
		font-size: 2.6666666667vw;
	}
}

*,
*:after,
*:before {
	box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
address,
time,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
img,
figure,
figcaption,
form,
input,
button,
textarea,
select {
	margin: 0;
	padding: 0;
	border: none;
	line-height: 100%;
	letter-spacing: 0;
	list-style-type: none;
	font-style: normal;
	font-weight: 400;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	word-break: break-all;
	line-break: strict;
	-webkit-text-size-adjust: 100%;
}

input,
button,
textarea,
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
	border-radius: 0;
	resize: none;
	outline: none;
	background: none;
}

select::-ms-expand {
	display: none;
}

button:hover {
	cursor: pointer;
}

img,
object {
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

.preload* {
	transition: none !important;
}

@media screen and (max-width: 767px) {
	img {
		width: 100%;
	}
}
/* responsive
--------------------------------*/
@media screen and (min-width: 768px) {
	.sp {
		display: none !important;
	}
}
@media screen and (max-width: 767px) {
	.pc {
		display: none !important;
	}
}
/* base
--------------------------------*/
body {
	color: #231815;
	font-size: 1rem;
	text-align: left;
}

.main {
	display: block;
	overflow: hidden;
}

section {
	position: relative;
}

.wrap {
	position: relative;
	width: 100%;
	max-width: 108rem;
	margin: 0 auto;
}

p,
th,
td,
dt,
dd,
li,
input,
button,
textarea {
	font-size: 1.6rem;
	line-height: 1.8125;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.5;
}

.flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.flex.reverse {
	flex-direction: row-reverse;
}

.left {
	float: left;
}

.right {
	float: right;
}

.tal {
	text-align: left;
}

.tar {
	text-align: right;
}

.tac {
	text-align: center;
}

.center {
	display: block;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.bold,
strong {
	font-weight: bold;
	font-weight: 700;
}

.fixed {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.en {
	font-weight: 700;
	font-family: "Roboto", sans-serif;
}

@media (any-hover: hover) {
	.fade {
		transition: opacity 0.3s ease;
		cursor: pointer;
	}
	.fade:hover {
		opacity: 0.7;
	}
}

@media screen and (min-width: 768px) {
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
	}
}
@media screen and (max-width: 767px) {
	.wrap {
		padding: 0 1.6rem;
	}
}
/* scroll-animation
--------------------------------*/
.fadeup {
	opacity: 0;
	transform: translateY(3rem);
	transition: opacity 1s, transform 1s;
}

.fadein {
	opacity: 0;
	transition: opacity 1s;
}

.scroll.is-show.fadeup,
.scroll.is-show .fadeup {
	opacity: 1;
	transform: translate(0, 0);
}

.onload.is-show .fadein,
.scroll.is-show.fadein,
.scroll.is-show .fadein {
	opacity: 1;
}

/* ---------------------------------------
  header
-----------------------------------------*/
#header {
	width: 100%;
	position: absolute;
	left: 0;
	top: 4rem;
	z-index: 999;
}
@media screen and (max-width: 767px) {
	#header {
		top: 2.4rem;
	}
}
#header .header_wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 1.2rem 4rem;
	background-color: transparent;
}
@media screen and (max-width: 767px) {
	#header .header_wrap {
		padding: 1.2rem 1.6rem;
	}
}
#header .logo {
	width: 24.8rem;
}
@media screen and (max-width: 767px) {
	#header .logo {
		width: 18.1rem;
	}
}
#header .logo .logo_black {
	display: none;
}
#header .btn {
	display: none;
}
#header .btn a {
	height: 4.2rem;
	font-size: 1.8rem;
	line-height: 1.5;
	padding: 0.7rem 4.6rem 0.7rem 1.8rem;
	border-width: 1px;
}
@media screen and (max-width: 767px) {
	#header .btn a {
		height: 3.9rem;
		font-size: 1.4rem;
		padding: 0.7rem 4.3rem 0.7rem 1.4rem;
	}
}
#header .btn .arw {
	width: 2rem;
	height: 2rem;
	background-color: #002B6F;
	border-color: #fff;
	right: 1.8rem;
}
#header .btn .arw::before {
	width: 0.6rem;
	height: 0.6rem;
	border-color: #fff;
	rotate: 45deg;
	translate: -50% -70%;
}
@media (any-hover: hover) {
	#header .btn a:hover .arw {
		background-color: #fff;
		border-color: #002B6F;
	}
	#header .btn a:hover .arw::before {
		border-color: #002B6F;
	}
}
#header.is-show {
	position: fixed;
	top: 0;
	animation: headerDown 0.4s ease forwards;
}
#header.is-show .header_wrap {
	padding: 2.4rem 8rem;
	background: rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(1rem);
}
@media screen and (max-width: 767px) {
	#header.is-show .header_wrap {
		padding: 1.2rem 1.6rem;
		background: rgb(255, 255, 255);
	}
}
#header.is-show .logo {
	width: 34.6rem;
}
@media screen and (max-width: 767px) {
	#header.is-show .logo {
		width: 16.5rem;
	}
}
#header.is-show .logo .logo_white {
	display: none;
}
#header.is-show .logo .logo_black {
	display: block;
}
#header.is-show .btn {
	display: block;
}
#header.is-hide {
	position: fixed;
	top: 0;
	animation: headerUp 0.4s ease forwards;
}

@keyframes headerDown {
	from {
		transform: translateY(-100%);
	}
	to {
		transform: translateY(0);
	}
}
@keyframes headerUp {
	from {
		transform: translateY(0);
	}
	to {
		transform: translateY(-100%);
	}
}
/* ---------------------------------------
  main common
-----------------------------------------*/
.marker {
	background: linear-gradient(transparent 58%, #fff 58%);
}

.btn a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 6rem;
	color: #fff;
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 1.5;
	border-radius: 3rem;
	padding: 1rem 6rem;
	background-color: #002B6F;
	border: 0.2rem solid #002B6F;
	position: relative;
	transition: all 0.3s ease;
}
.btn .arw {
	display: inline-block;
	width: 3rem;
	height: 3rem;
	background-color: #fff;
	border: 1px solid #002B6F;
	border-radius: 50%;
	position: absolute;
	right: 1.5rem;
	top: 50%;
	translate: 0 -50%;
	transition: all 0.3s ease-out;
}
.btn .arw::before {
	content: "";
	width: 0.6rem;
	height: 0.6rem;
	border-right: 1px solid #002B6F;
	border-bottom: 1px solid #002B6F;
	position: absolute;
	left: 50%;
	top: 50%;
	rotate: -45deg;
	translate: -60% -50%;
	transition: all 0.3s ease;
}
@media (any-hover: hover) {
	.btn a:hover {
		color: #002B6F;
		background-color: #fff;
	}
	.btn a:hover .arw {
		background-color: #002B6F;
	}
	.btn a:hover .arw::before {
		border-color: #fff;
	}
}

.sec_ttl {
	color: #002B6F;
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1.5;
}
@media screen and (max-width: 767px) {
	.sec_ttl {
		line-height: 1.25;
	}
}

.swiper {
	padding-bottom: 5rem;
	overflow: visible;
}
@media screen and (max-width: 767px) {
	.swiper {
		padding-bottom: 3rem;
	}
}
.swiper .swiper-slide {
	height: auto;
}
.swiper .swiper-scrollbar {
	width: 37.5rem;
	background-color: #E7E7E7;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0 auto;
}
@media screen and (max-width: 767px) {
	.swiper .swiper-scrollbar {
		width: 21rem;
	}
}
.swiper .swiper-scrollbar .swiper-scrollbar-drag {
	background-color: #002B6F;
}

/* ---------------------------------------
  main 
-----------------------------------------*/
#sec_fv {
	overflow: hidden;
}
#sec_fv::before {
	content: "";
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/bg_dot.png) repeat 0 0/0.6rem auto;
	position: absolute;
	left: 0;
	top: 0;
}
#sec_fv .movie {
	width: 100%;
	aspect-ratio: 720/366;
	max-height: 100vh;
}
@media screen and (max-width: 767px) {
	#sec_fv .movie {
		aspect-ratio: unset;
		height: 62rem;
	}
}
#sec_fv .movie video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
#sec_fv .wrap {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	max-width: 100%;
	padding: 0 4rem 4rem;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
}
@media screen and (max-width: 767px) {
	#sec_fv .wrap {
		flex-direction: column;
		gap: 1.6rem 0;
		padding: 0 1.6rem 2.4rem;
	}
}
#sec_fv .ttl_wrap .ttl {
	color: #fff;
	font-weight: 700;
	font-size: 4rem;
	line-height: 1.4;
}
@media screen and (max-width: 767px) {
	#sec_fv .ttl_wrap .ttl {
		font-size: 2.4rem;
		line-height: 1.4166666667;
	}
}
#sec_fv .ttl_wrap .txt {
	color: #fff;
	font-weight: 500;
	font-size: 2rem;
	line-height: 1.6;
	margin-top: 1.8rem;
}
@media screen and (max-width: 767px) {
	#sec_fv .ttl_wrap .txt {
		font-size: 1.3rem;
		line-height: 1.6153846154;
		margin-top: 0.8rem;
	}
}
#sec_fv .btn {
	width: 32rem;
}
@media screen and (max-width: 767px) {
	#sec_fv .btn {
		width: 100%;
	}
}
#sec_fv .btn a {
	width: 100%;
	background-color: rgba(30, 32, 31, 0.6);
	border-color: rgba(255, 255, 255, 0.4);
	border-width: 1px;
}
#sec_fv .btn .arw {
	width: 1.9rem;
	height: 1.9rem;
	background-color: transparent;
	border-color: #fff;
}
#sec_fv .btn .arw::before {
	width: 0.5rem;
	height: 0.5rem;
	border-color: #fff;
	rotate: 45deg;
	translate: -50% -70%;
}
@media (any-hover: hover) {
	#sec_fv .btn a:hover {
		color: #fff;
		background-color: rgb(30, 32, 31);
	}
}

#sec_intro {
	padding: 12rem 0;
}
@media screen and (max-width: 767px) {
	#sec_intro {
		padding: 6rem 0;
	}
}
#sec_intro .txt {
	color: #002B6F;
	font-size: 2.4rem;
	line-height: 2;
}
@media screen and (max-width: 767px) {
	#sec_intro .txt {
		text-align: left;
		font-size: 1.6rem;
	}
}
#sec_intro .txt + .txt {
	margin-top: 1em;
}

#sec_flow {
	padding: 12rem 0;
	background-color: #F0F4FA;
}
@media screen and (max-width: 767px) {
	#sec_flow {
		padding: 8rem 0;
	}
}
#sec_flow .wrap {
	max-width: 128rem;
}
#sec_flow .sec_ttl {
	font-size: 4.8rem;
	line-height: 1.3958333333;
}
@media screen and (max-width: 767px) {
	#sec_flow .sec_ttl {
		font-size: 3.2rem;
		line-height: 1.40625;
	}
}
#sec_flow .sec_ttl .en {
	display: block;
	color: #fff;
	font-size: 2.8rem;
	line-height: 1;
	letter-spacing: 0.2em;
	-webkit-text-stroke: 0.2rem #002B6F;
	paint-order: markers stroke fill;
	margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
	#sec_flow .sec_ttl .en {
		font-size: 2rem;
		margin-bottom: 0.8rem;
	}
}
#sec_flow .flow_block {
	display: flex;
	gap: 4rem;
	margin-top: 10rem;
}
@media screen and (max-width: 767px) {
	#sec_flow .flow_block {
		flex-direction: column;
		gap: 0;
		margin-top: 4rem;
	}
}
#sec_flow .flow_block + .flow_block {
	margin-top: 16rem;
}
@media screen and (max-width: 767px) {
	#sec_flow .flow_block + .flow_block {
		margin-top: 8rem;
	}
}
@media screen and (min-width: 768px) {
	#sec_flow .flow_block._reverse {
		flex-direction: row-reverse;
	}
}
#sec_flow .flow_block .block_head {
	flex: 0 0 auto;
	width: 72rem;
}
@media screen and (max-width: 767px) {
	#sec_flow .flow_block .block_head {
		width: 100%;
	}
}
#sec_flow .flow_block .block_head .img {
	border-radius: 2rem;
	overflow: hidden;
}
@media screen and (max-width: 767px) {
	#sec_flow .flow_block .block_head .img {
		width: 37.5rem;
		height: 28rem;
		margin: 0 -1.6rem;
	}
	#sec_flow .flow_block .block_head .img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}
#sec_flow .flow_block .block_head .ttl_wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: -6rem;
}
@media screen and (max-width: 767px) {
	#sec_flow .flow_block .block_head .ttl_wrap {
		margin-top: -3.2rem;
	}
}
#sec_flow .flow_block .block_head .ttl_wrap .num {
	color: #fff;
	font-size: 12rem;
	line-height: 1;
	-webkit-text-stroke: 0.3rem #002B6F;
	paint-order: markers stroke fill;
}
@media screen and (max-width: 767px) {
	#sec_flow .flow_block .block_head .ttl_wrap .num {
		font-size: 6.4rem;
		-webkit-text-stroke: 0.2rem #002B6F;
	}
}
#sec_flow .flow_block .block_head .ttl_wrap .catch {
	color: #002B6F;
	font-size: 1.8rem;
	line-height: 1.6666666667;
	padding: 0.5rem 1.6rem 0.6rem;
	background-color: #fff;
	border-radius: 2rem;
	margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
	#sec_flow .flow_block .block_head .ttl_wrap .catch {
		font-size: 1.4rem;
		line-height: 1.5;
		margin-top: 1.6rem;
	}
}
#sec_flow .flow_block .block_head .ttl_wrap .ttl {
	color: #002B6F;
	font-weight: 700;
	font-size: 3.2rem;
	line-height: 1.5;
	padding-bottom: 0.3rem;
	border-bottom: 0.3rem dotted #002B6F;
	margin-top: 1.2rem;
}
@media screen and (max-width: 767px) {
	#sec_flow .flow_block .block_head .ttl_wrap .ttl {
		font-size: 2.4rem;
		line-height: 1.5;
		border-bottom: 0.2rem dotted #002B6F;
		margin-top: 0.8rem;
	}
}
#sec_flow .flow_block .block_head .ttl_wrap .txt {
	color: #002B6F;
	font-size: 1.8rem;
	line-height: 1.7777777778;
	margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
	#sec_flow .flow_block .block_head .ttl_wrap .txt {
		width: 100%;
		font-size: 1.6rem;
		line-height: 1.8125;
		margin-top: 2.4rem;
	}
}
#sec_flow .flow_block .block_body {
	flex: 1;
}
#sec_flow .flow_block .block_body > .txt {
	color: #002B6F;
	font-size: 1.8rem;
	line-height: 1.7777777778;
}
@media screen and (max-width: 767px) {
	#sec_flow .flow_block .block_body > .txt {
		font-size: 1.6rem;
		line-height: 1.8125;
		margin-top: 2.4rem;
	}
}
#sec_flow .flow_block .block_body .box {
	padding: 1.9rem;
	background-color: #fff;
	border: 1px solid #E7E7E7;
	border-radius: 2rem;
	margin-top: 4rem;
}
@media screen and (max-width: 767px) {
	#sec_flow .flow_block .block_body .box {
		padding: 2.4rem 1.6rem;
	}
}
#sec_flow .flow_block .block_body .box > *:first-child {
	margin-top: 0 !important;
}
#sec_flow .flow_block .block_body .box .img {
	width: 100%;
}
#sec_flow .flow_block .block_body .box .ttl {
	color: #002B6F;
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1.7777777778;
	margin-top: 2.4rem;
}
#sec_flow .flow_block .block_body .box .ttl .ico {
	display: inline-block;
	width: 3.2rem;
	margin-right: 0.4rem;
}
@media screen and (max-width: 767px) {
	#sec_flow .flow_block .block_body .box .ttl .ico {
		width: 2.4rem;
		vertical-align: 0.3rem;
	}
}
#sec_flow .flow_block .block_body .box .txt {
	font-size: 1.6rem;
	line-height: 1.8125;
	margin-top: 1.2rem;
}
@media screen and (max-width: 767px) {
	#sec_flow .flow_block .block_body .box .txt {
		margin-top: 0.8rem;
	}
}
#sec_flow .flow_block .block_body .box .list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	margin-top: 4rem;
}
@media screen and (max-width: 767px) {
	#sec_flow .flow_block .block_body .box .list {
		margin-top: 2.4rem;
	}
}
#sec_flow .flow_block .block_body .box .list .item {
	padding: 1.5rem;
	background-color: #F0F4FA;
	border-radius: 1.2rem;
}
#sec_flow .flow_block .block_body .box .list .item .ico {
	width: 6rem;
	height: 3.9rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}
#sec_flow .flow_block .block_body .box .list .item .ico img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
#sec_flow .flow_block .block_body .box .list .item .txt {
	color: #002B6F;
	font-weight: 500;
	line-height: 1.1875;
	margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
	#sec_flow .flow_block .block_body .box .list .item .txt {
		font-size: 1.2rem;
		line-height: 1.1666666667;
	}
}
@media screen and (max-width: 767px) {
	#sec_flow .flow_block.flow01 .block_body .box .img {
		margin: 2.4rem 0;
	}
}
#sec_flow .flow_block.flow02 .block_body .box {
	padding: 4rem;
}
@media screen and (max-width: 767px) {
	#sec_flow .flow_block.flow02 .block_body .box {
		padding: 2.4rem 1.6rem;
	}
}
#sec_flow .flow_block.flow02 .block_body .box .img {
	width: 26rem;
	margin: 4rem auto 0;
}
@media screen and (max-width: 767px) {
	#sec_flow .flow_block.flow02 .block_body .box .img {
		width: 28.1rem;
		margin-top: 2.4rem;
	}
}
#sec_flow .flow_block.flow03, #sec_flow .flow_block.flow04 {
	flex-direction: column;
}
@media screen and (min-width: 768px) {
	#sec_flow .flow_block.flow03 .block_head._reverse, #sec_flow .flow_block.flow04 .block_head._reverse {
		flex-direction: row-reverse;
	}
	#sec_flow .flow_block.flow03 .block_head, #sec_flow .flow_block.flow04 .block_head {
		width: 100%;
		display: flex;
		align-items: center;
		gap: 0 4rem;
	}
	#sec_flow .flow_block.flow03 .block_head .img, #sec_flow .flow_block.flow04 .block_head .img {
		flex: 0 0 auto;
		width: 89rem;
	}
	#sec_flow .flow_block.flow03 .block_head .ttl_wrap, #sec_flow .flow_block.flow04 .block_head .ttl_wrap {
		margin-top: 0;
	}
}
#sec_flow .flow_block.flow03 .block_body, #sec_flow .flow_block.flow04 .block_body {
	width: 100%;
}
@media screen and (max-width: 767px) {
	#sec_flow .flow_block.flow03 .block_body, #sec_flow .flow_block.flow04 .block_body {
		margin-top: 2.4rem;
	}
}
#sec_flow .flow_block.flow03 .block_body > .ttl, #sec_flow .flow_block.flow04 .block_body > .ttl {
	color: #002B6F;
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1.7916666667;
}
@media screen and (max-width: 767px) {
	#sec_flow .flow_block.flow03 .block_body > .ttl, #sec_flow .flow_block.flow04 .block_body > .ttl {
		font-size: 1.8rem;
		line-height: 1.7777777778;
	}
}
#sec_flow .flow_block .point .point_list {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: 52.8rem;
	gap: 1.6rem;
	margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
	#sec_flow .flow_block .point .point_list {
		grid-auto-columns: 33.5rem;
		gap: 0.8rem;
		margin-top: 1.6rem;
	}
}
#sec_flow .flow_block .point .point_list .item {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 4;
	gap: 0;
	padding: 2.3rem;
	background-color: #fff;
	border: 1px solid #DBE4F3;
	border-radius: 2rem;
	margin-right: 1.6rem;
}
@media screen and (max-width: 767px) {
	#sec_flow .flow_block .point .point_list .item {
		width: 33.5rem;
		margin-right: 0.8rem;
	}
}
#sec_flow .flow_block .point .point_list .item .ttl {
	color: #002B6F;
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1.5;
	padding: 0.5rem 1.6rem 0.6rem;
	background-color: #F0F4FA;
	border-radius: 2rem;
}
@media screen and (max-width: 767px) {
	#sec_flow .flow_block .point .point_list .item .ttl {
		font-size: 2rem;
		line-height: 1.5;
		padding: 0.7rem 1rem;
	}
}
#sec_flow .flow_block .point .point_list .item .catch {
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1.4166666667;
	margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
	#sec_flow .flow_block .point .point_list .item .catch {
		font-size: 1.8rem;
		line-height: 1.5555555556;
		margin-top: 0.8rem;
	}
}
#sec_flow .flow_block .point .point_list .item .img {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 11.2rem;
	margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
	#sec_flow .flow_block .point .point_list .item .img {
		height: 12rem;
		margin-top: 1.2rem;
	}
}
#sec_flow .flow_block .point .point_list .item .img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
#sec_flow .flow_block .point .point_list .item .txt {
	color: #231815;
	line-height: 1.8125;
	margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
	#sec_flow .flow_block .point .point_list .item .txt {
		margin-top: 1.2rem;
	}
}
#sec_flow .flow_block .lineup .lineup_list {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: 42rem;
	gap: 1.6rem;
	margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
	#sec_flow .flow_block .lineup .lineup_list {
		grid-auto-columns: 33.5rem;
		gap: 0.8rem;
		margin-top: 1.6rem;
	}
}
#sec_flow .flow_block .lineup .lineup_list .item {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 5;
	gap: 0;
	padding: 2.3rem;
	background-color: #fff;
	border: 1px solid #DBE4F3;
	border-radius: 2rem;
	margin-right: 1.6rem;
}
@media screen and (max-width: 767px) {
	#sec_flow .flow_block .lineup .lineup_list .item {
		padding: 2.3rem 1.5rem;
	}
}
#sec_flow .flow_block .lineup .lineup_list .item .img_wrap {
	position: relative;
}
#sec_flow .flow_block .lineup .lineup_list .item .img_wrap .logo {
	position: absolute;
	left: 0;
	top: 0;
}
#sec_flow .flow_block .lineup .lineup_list .item .img_wrap .logo img {
	display: block;
	width: 8rem;
}
#sec_flow .flow_block .lineup .lineup_list .item .img_wrap .logo .name {
	font-size: 1.2rem;
	line-height: 1.5833333333;
	margin-top: 0.4rem;
}
#sec_flow .flow_block .lineup .lineup_list .item .img_wrap .img {
	width: 22.8rem;
	height: 12rem;
	margin-left: auto;
}
#sec_flow .flow_block .lineup .lineup_list .item .img_wrap .img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: right top;
}
@media screen and (max-width: 767px) {
	#sec_flow .flow_block .lineup .lineup_list .item .img_wrap .img.sp_small {
		width: 21rem;
	}
}
#sec_flow .flow_block .lineup .lineup_list .item .ttl {
	color: #231815;
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1.5833333333;
	margin-top: 0.8rem;
}
@media screen and (max-width: 767px) {
	#sec_flow .flow_block .lineup .lineup_list .item .ttl {
		font-size: 1.8rem;
		line-height: 1.3888888889;
	}
}
#sec_flow .flow_block .lineup .lineup_list .item .ttl sup {
	font-size: 60%;
	line-height: 1;
	vertical-align: 0.6em;
}
#sec_flow .flow_block .lineup .lineup_list .item .ttl + .note {
	font-size: 0.8rem;
	line-height: 1.5;
	margin-top: 0.4rem;
}
#sec_flow .flow_block .lineup .lineup_list .item .sttl {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	color: #231815;
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 1;
}
@media screen and (max-width: 767px) {
	#sec_flow .flow_block .lineup .lineup_list .item .sttl {
		font-size: 1.2rem;
	}
}
#sec_flow .flow_block .lineup .lineup_list .item .sttl::after {
	content: "";
	flex: 1;
	height: 1px;
	background-color: #E7E7E7;
}
#sec_flow .flow_block .lineup .lineup_list .item .size {
	margin-top: 1.8rem;
}
@media screen and (max-width: 767px) {
	#sec_flow .flow_block .lineup .lineup_list .item .size {
		margin-top: 1.6rem;
	}
}
#sec_flow .flow_block .lineup .lineup_list .item .size .size_list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.6rem;
	margin-top: 1.2rem;
}
@media screen and (max-width: 767px) {
	#sec_flow .flow_block .lineup .lineup_list .item .size .size_list {
		gap: 0.4rem;
	}
}
#sec_flow .flow_block .lineup .lineup_list .item .size .size_list .item_size {
	display: flex;
	padding: 0.6rem;
	background-color: #F4F4F4;
}
#sec_flow .flow_block .lineup .lineup_list .item .size .size_list .item_size .name {
	flex: 0 0 auto;
	width: 8rem;
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 1.2142857143;
}
@media screen and (max-width: 767px) {
	#sec_flow .flow_block .lineup .lineup_list .item .size .size_list .item_size .name {
		width: 6.8rem;
		font-size: 1.2rem;
		line-height: 1.1666666667;
	}
}
#sec_flow .flow_block .lineup .lineup_list .item .size .size_list .item_size .name sup {
	font-size: 70%;
	line-height: 1;
	vertical-align: 0.5em;
}
#sec_flow .flow_block .lineup .lineup_list .item .size .size_list .item_size .txt {
	flex: 1;
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 1.2142857143;
}
@media screen and (max-width: 767px) {
	#sec_flow .flow_block .lineup .lineup_list .item .size .size_list .item_size .txt {
		font-size: 1.2rem;
		line-height: 1.1666666667;
	}
}
#sec_flow .flow_block .lineup .lineup_list .item .hardness {
	margin-top: 1.8rem;
}
#sec_flow .flow_block .lineup .lineup_list .item .hardness .sttl {
	font-size: 1.2rem;
}
#sec_flow .flow_block .lineup .lineup_list .item .hardness .hardness_list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.6rem;
	margin-top: 1.2rem;
}
@media screen and (max-width: 767px) {
	#sec_flow .flow_block .lineup .lineup_list .item .hardness .hardness_list {
		gap: 0.4rem;
	}
}
#sec_flow .flow_block .lineup .lineup_list .item .hardness .hardness_list .item_hardness {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.8rem;
	padding: 0.6rem;
	font-size: 1.2rem;
	line-height: 1.1666666667;
}
#sec_flow .flow_block .lineup .lineup_list .item .hardness .hardness_list .item_hardness span {
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 1.1875;
}
#sec_flow .flow_block .lineup .lineup_list .item .hardness .hardness_list .item_hardness._basic {
	background-color: #F3F5DB;
}
#sec_flow .flow_block .lineup .lineup_list .item .hardness .hardness_list .item_hardness._regular {
	background-color: #F5E8E8;
}
#sec_flow .flow_block .lineup .lineup_list .item .hardness .hardness_list .item_hardness._hard {
	background-color: #E8EEF5;
}
#sec_flow .flow_block .lineup .lineup_list .item .type {
	margin-top: 1.8rem;
}
#sec_flow .flow_block .lineup .lineup_list .item .type .sttl {
	font-size: 1.2rem;
}
#sec_flow .flow_block .lineup .lineup_list .item .type .type_list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.6rem;
	margin-top: 1.2rem;
}
@media screen and (max-width: 767px) {
	#sec_flow .flow_block .lineup .lineup_list .item .type .type_list {
		gap: 0.4rem;
	}
}
#sec_flow .flow_block .lineup .lineup_list .item .type .type_list .item_type {
	text-align: center;
	padding: 1.2rem;
	background-color: #F4F4F4;
}
#sec_flow .flow_block .lineup .lineup_list .item .type .type_list .item_type .ico img {
	width: auto;
	height: 2rem;
}
#sec_flow .flow_block .lineup .lineup_list .item .type .type_list .item_type .name {
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 1.2142857143;
	margin-top: 0.4rem;
}
#sec_flow .flow_block .lineup .lineup_list .item .type .type_list .item_type .thickness {
	font-size: 1.2rem;
	line-height: 1.1666666667;
	margin-top: 0.2rem;
}
#sec_flow .flow_block .lineup .lineup_list .item .type .type_list .item_type .price {
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 1.2142857143;
	margin-top: 0.2rem;
}
#sec_flow .flow_block .lineup .lineup_list .item .type .type_list .item_type .price span {
	font-size: 1rem;
}
#sec_flow .flow_block .lineup .lineup_list .item ul.note {
	margin-top: 0.8rem;
}
#sec_flow .flow_block .lineup .lineup_list .item ul.note li {
	font-size: 0.8rem;
	line-height: 1.5;
}

#sec_bnr {
	padding: 2rem 0 12rem;
	background-color: #F0F4FA;
}
@media screen and (max-width: 767px) {
	#sec_bnr {
		padding: 0 0 8rem;
	}
}
#sec_bnr .wrap {
	max-width: 98rem;
	padding: 6.3rem;
	background-color: #fff;
	border: 1px solid #DBE4F3;
	border-radius: 2rem;
}
@media screen and (max-width: 767px) {
	#sec_bnr .wrap {
		width: 34.3rem;
		padding: 2.4rem 1.6rem;
	}
}
@media screen and (max-width: 767px) {
	#sec_bnr .sec_ttl {
		text-align: left;
		font-size: 1.8rem;
		line-height: 1.6111111111;
	}
}
#sec_bnr .bnr_list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 4rem;
	margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
	#sec_bnr .bnr_list {
		grid-template-columns: 1fr;
		gap: 1.6rem;
	}
}
#sec_bnr .bnr_list .item a {
	display: block;
	padding: 1.2rem;
	border-radius: 0.8rem;
}
#sec_bnr .bnr_list .item._01 a {
	background-color: #E5F0CC;
}
#sec_bnr .bnr_list .item._02 a {
	background-color: #F3EEFF;
}
#sec_bnr .bnr_list .item .ttl {
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.5;
	position: relative;
}
#sec_bnr .bnr_list .item .ttl::after {
	content: "";
	width: 1.2rem;
	height: 1.2rem;
	border-right: 0.2rem solid #231815;
	border-top: 0.2rem solid #231815;
	position: absolute;
	right: 0;
	top: 50%;
	translate: 0 -50%;
	rotate: 45deg;
}
@media screen and (max-width: 767px) {
	#sec_bnr .bnr_list .item .ttl::after {
		width: 1rem;
		height: 1rem;
	}
}
#sec_bnr .bnr_list .item .txt {
	font-size: 1.2rem;
	line-height: 1.5;
	margin-top: 0.4rem;
}
#sec_bnr .bnr_list .item .img {
	margin-top: 1.2rem;
}

#sec_voice {
	padding: 8rem 0 6.4rem;
}
@media screen and (max-width: 767px) {
	#sec_voice {
		padding: 4rem 0;
	}
}
#sec_voice .wrap {
	max-width: 128rem;
}
#sec_voice .list_wrap {
	margin-top: 2.4rem;
}
#sec_voice .voice_list .item {
	width: 33.5rem;
	padding: 3.1rem;
	background-color: #fff;
	border-radius: 1.6rem;
	border: 1px solid #DBE4F3;
	margin-right: 2rem;
}
@media screen and (max-width: 767px) {
	#sec_voice .voice_list .item {
		padding: 2.3rem;
		margin-right: 0.8rem;
	}
}
#sec_voice .voice_list .item .voice_head {
	display: flex;
	align-items: center;
	gap: 0 1.2rem;
}
#sec_voice .voice_list .item .voice_head .ico {
	flex: 0 0 auto;
	width: 6rem;
}
#sec_voice .voice_list .item .voice_head .name {
	font-weight: 500;
	line-height: 1.375;
}
#sec_voice .voice_list .item .voice_head .stars {
	width: 10.8rem;
	margin-top: 0.5rem;
}
#sec_voice .voice_list .item .voice_body {
	margin-top: 1.6rem;
}
#sec_voice .voice_list .item .voice_body .txt {
	font-size: 1.8rem;
	line-height: 1.7777777778;
}
@media screen and (max-width: 767px) {
	#sec_voice .voice_list .item .voice_body .txt {
		font-size: 1.6rem;
		line-height: 1.8125;
	}
}

#sec_reservation {
	padding: 4rem 0 12rem;
}
@media screen and (max-width: 767px) {
	#sec_reservation {
		padding: 4rem 0 8rem;
	}
}
#sec_reservation .wrap {
	max-width: 98rem;
}
@media screen and (max-width: 767px) {
	#sec_reservation .sec_ttl {
		text-align: left;
	}
}
#sec_reservation .reservation_list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 4rem;
	margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
	#sec_reservation .reservation_list {
		grid-template-columns: 1fr;
		gap: 2.4rem;
		margin-top: 2.4rem;
	}
}
#sec_reservation .reservation_list .item {
	background-color: #fff;
	border: 1px solid #DBE4F3;
	border-radius: 2rem;
	box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.15);
	overflow: hidden;
}
#sec_reservation .reservation_list .item .img {
	margin: -1px -1px 0;
}
#sec_reservation .reservation_list .item .txt_wrap {
	padding: 2.4rem;
}
@media screen and (max-width: 767px) {
	#sec_reservation .reservation_list .item .txt_wrap {
		padding: 1.6rem;
	}
}
#sec_reservation .reservation_list .item .txt_wrap .ttl {
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1.5833333333;
}
#sec_reservation .reservation_list .item .txt_wrap .ttl .label {
	display: inline-block;
	vertical-align: 0.5rem;
	color: #fff;
	font-weight: 700;
	font-size: 1.2rem;
	line-height: 1.5;
	padding: 0.6rem 0.7rem;
	background-color: #6EC8B9;
	border-radius: 0.5rem;
	margin-left: 1rem;
}
#sec_reservation .reservation_list .item .txt_wrap .txt {
	font-size: 1.4rem;
	line-height: 1.5714285714;
	margin-top: 0.8rem;
}
#sec_reservation .reservation_list .item .txt_wrap .btn {
	margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
	#sec_reservation .reservation_list .item .txt_wrap .btn {
		margin-top: 1.6rem;
	}
}

.popup {
	width: 106.8rem;
	padding: 4rem;
	background-color: #fff;
	border-radius: 1.2rem;
	position: relative;
	margin: 2rem auto;
}
@media screen and (max-width: 767px) {
	.popup {
		width: 33.5rem;
		padding: 2rem;
		border-radius: 2rem;
	}
}
.popup .mfp-close {
	width: 3.2rem;
	height: 3.2rem;
	font-size: 0;
	background: url(../img/ico_popup_close.svg) no-repeat center/contain;
	position: absolute;
	right: 2rem;
	top: 2rem;
	opacity: 1;
}
@media (any-hover: hover) {
	.popup .mfp-close {
		transition: opacity 0.3s ease;
		cursor: pointer;
	}
	.popup .mfp-close:hover {
		opacity: 0.7;
	}
}
.popup .popup_contents .ttl {
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1.5833333333;
}
@media screen and (max-width: 767px) {
	.popup .popup_contents .ttl {
		font-size: 2rem;
		line-height: 1.6;
	}
}
.popup .popup_contents .ttl .label {
	display: inline-block;
	vertical-align: 0.3rem;
	color: #fff;
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 1.5;
	padding: 0.3rem 0.5rem;
	background-color: #6EC8B9;
	border-radius: 0.5rem;
	margin-left: 1rem;
}
@media screen and (max-width: 767px) {
	.popup .popup_contents .ttl .label {
		font-size: 1.2rem;
		padding: 0.6rem 0.7rem;
	}
}
.popup .popup_contents .shop_list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-auto-rows: 1fr;
	gap: 2.4rem;
	margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
	.popup .popup_contents .shop_list {
		grid-template-columns: 1fr;
		grid-auto-rows: auto;
		gap: 1.2rem;
		margin-top: 2.4rem;
	}
}
.popup .popup_contents .shop_list .item {
	display: flex;
	flex-direction: column;
	border: 1px solid #002B6F;
	border-radius: 1.2rem;
}
@media screen and (max-width: 767px) {
	.popup .popup_contents .shop_list .item {
		border-radius: 0.5rem;
	}
}
.popup .popup_contents .shop_list .item_head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.6rem 2.4rem;
	border-bottom: 1px solid #002B6F;
}
@media screen and (max-width: 767px) {
	.popup .popup_contents .shop_list .item_head {
		padding: 0.8rem 1.6rem;
	}
}
.popup .popup_contents .shop_list .item_head .name {
	color: #002B6F;
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 1.5;
}
@media screen and (max-width: 767px) {
	.popup .popup_contents .shop_list .item_head .name {
		font-size: 1.4rem;
	}
}
.popup .popup_contents .shop_list .item_head .btn {
	flex: 0 0 auto;
	width: 18rem;
}
@media screen and (max-width: 767px) {
	.popup .popup_contents .shop_list .item_head .btn {
		width: 12.5rem;
	}
}
.popup .popup_contents .shop_list .item_head .btn a {
	height: 4rem;
	font-weight: 500;
	font-size: 1.4rem;
	padding: 0.2rem 2rem;
}
@media screen and (max-width: 767px) {
	.popup .popup_contents .shop_list .item_head .btn a {
		height: 3rem;
	}
}
.popup .popup_contents .shop_list .item_body {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1.4rem 0;
	padding: 2rem 2rem;
}
@media screen and (max-width: 767px) {
	.popup .popup_contents .shop_list .item_body {
		padding: 1.2rem 2rem;
		gap: 1rem 0;
	}
}
.popup .popup_contents .shop_list .item_body .txt {
	font-size: 1.8rem;
	line-height: 1.3888888889;
	padding-left: 2.5rem;
	position: relative;
}
@media screen and (max-width: 767px) {
	.popup .popup_contents .shop_list .item_body .txt {
		font-size: 1.2rem;
		min-height: 2.2rem;
	}
}
.popup .popup_contents .shop_list .item_body .txt .ico {
	flex: 0 0 auto;
	width: 1.4rem;
	text-align: center;
	position: absolute;
	left: 0;
	top: 0;
}
.popup .popup_contents .shop_list .item_body .txt._address .ico img {
	width: 1.2rem;
}
.popup .popup_contents .shop_list .item_body .txt._access .ico img {
	width: 1.4rem;
}

#sec_feature {
	padding: 12rem 0;
	color: #fff;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, #000 90%), linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/feature_bg.jpg) no-repeat center/cover, #000;
}
@media screen and (max-width: 767px) {
	#sec_feature {
		padding: 10rem 0 8rem;
		background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, #000 82%), linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../img/feature_bg.jpg) no-repeat center/cover, #000;
	}
}
@media screen and (max-width: 767px) {
	#sec_feature .wrap {
		padding: 0 1.6rem;
	}
}
#sec_feature {
	/* head（ロゴ + リード） */
}
#sec_feature .feature_head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8rem;
}
@media screen and (max-width: 767px) {
	#sec_feature .feature_head {
		gap: 3.2rem;
	}
}
#sec_feature .feature_head .logo {
	width: 36.6rem;
}
@media screen and (max-width: 767px) {
	#sec_feature .feature_head .logo {
		width: 28.4rem;
	}
}
#sec_feature .feature_head .logo img {
	width: 100%;
}
#sec_feature .feature_head .lead {
	width: 100%;
	text-align: center;
}
#sec_feature .feature_head .lead .catch {
	font-weight: 500;
	font-size: 4.8rem;
	line-height: 1.4;
}
@media screen and (max-width: 767px) {
	#sec_feature .feature_head .lead .catch {
		font-size: 3rem;
	}
}
#sec_feature .feature_head .lead .txt {
	font-size: 2.4rem;
	line-height: 1.5833333333;
	margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
	#sec_feature .feature_head .lead .txt {
		font-size: 1.8rem;
		line-height: 1.6111111111;
		text-align: left;
	}
}
#sec_feature {
	/* 白グラデの見出しピル */
}
#sec_feature .label {
	width: 100%;
	padding: 2rem;
	text-align: center;
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1.3;
	color: #231815;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.81) 0%, rgba(255, 255, 255, 0.9) 39.9%, rgba(255, 255, 255, 0.72) 100%);
}
@media screen and (max-width: 767px) {
	#sec_feature .label {
		padding: 1.6rem;
	}
}
#sec_feature {
	/* feature list */
}
#sec_feature .feature_list {
	display: flex;
	flex-direction: column;
	gap: 8rem;
	margin-top: 8rem;
}
@media screen and (max-width: 767px) {
	#sec_feature .feature_list {
		gap: 6rem;
	}
}
#sec_feature .txt._bold {
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1.7777777778;
}
#sec_feature {
	/* block1：体圧分散 × 寝姿勢保持 */
}
#sec_feature .feature_block._pressure {
	display: flex;
	flex-direction: column;
	gap: 4rem;
}
#sec_feature .feature_block._pressure .cols {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 4rem;
}
@media screen and (max-width: 767px) {
	#sec_feature .feature_block._pressure .cols {
		grid-template-columns: 1fr;
	}
}
#sec_feature .feature_block._pressure .col {
	display: flex;
	flex-direction: column;
	gap: 2.4rem;
}
@media screen and (max-width: 767px) {
	#sec_feature .feature_block._pressure .col {
		gap: 1.6rem;
	}
}
#sec_feature .feature_block._pressure .col > .txt:not(._bold) {
	font-size: 1.6rem;
	line-height: 1.625;
}
@media screen and (max-width: 767px) {
	#sec_feature .feature_block._pressure .col > .txt:not(._bold) {
		line-height: 1.8125;
	}
}
#sec_feature .feature_block._pressure .posture {
	width: 100%;
}
#sec_feature .feature_block._pressure .posture img {
	width: 100%;
}
#sec_feature .feature_block._pressure .data {
	display: flex;
	flex-direction: column;
	gap: 3.2rem;
}
@media screen and (max-width: 767px) {
	#sec_feature .feature_block._pressure .data {
		gap: 1.6rem;
	}
}
#sec_feature .feature_block._pressure .data .data_ttl {
	font-size: 1.8rem;
	line-height: 1.6111111111;
}
@media screen and (max-width: 767px) {
	#sec_feature .feature_block._pressure .data .data_ttl {
		font-size: 1.6rem;
	}
}
#sec_feature .feature_block._pressure .data .data_ttl .note {
	font-size: 1.2rem;
}
#sec_feature .feature_block._pressure .data .data_desc {
	font-size: 1.6rem;
	line-height: 1.8125;
	margin-top: 0.4rem;
}
@media screen and (max-width: 767px) {
	#sec_feature .feature_block._pressure .data .data_desc {
		font-size: 1.2rem;
	}
}
#sec_feature .feature_block._pressure .compare {
	display: flex;
	gap: 0.8rem;
	align-items: stretch;
}
#sec_feature .feature_block._pressure .compare .compare_imgs {
	flex: 1;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.8rem;
}
#sec_feature .feature_block._pressure .compare .compare_imgs .img img {
	display: block;
	width: 100%;
	height: 11.2rem;
	object-fit: cover;
	border-radius: 0.4rem;
}
@media screen and (max-width: 767px) {
	#sec_feature .feature_block._pressure .compare .compare_imgs .img img {
		height: 8rem;
	}
}
#sec_feature .feature_block._pressure .compare .compare_imgs .img figcaption {
	text-align: center;
	font-size: 1.6rem;
	line-height: 1.375;
	margin-top: 1rem;
}
@media screen and (max-width: 767px) {
	#sec_feature .feature_block._pressure .compare .compare_imgs .img figcaption {
		font-size: 1.2rem;
		line-height: 1.4166666667;
	}
}
#sec_feature .feature_block._pressure .compare .colorbar {
	flex-shrink: 0;
	width: 1.6rem;
}
@media screen and (max-width: 767px) {
	#sec_feature .feature_block._pressure .compare .colorbar {
		width: 1.2rem;
	}
}
#sec_feature .feature_block._pressure .compare .colorbar img {
	display: block;
	width: 100%;
	height: 11.2rem;
	object-fit: cover;
}
@media screen and (max-width: 767px) {
	#sec_feature .feature_block._pressure .compare .colorbar img {
		height: 8rem;
	}
}
@media screen and (min-width: 768px) {
	#sec_feature .feature_block._pressure .col > .txt._bold {
		min-height: 9.6rem;
	}
	#sec_feature .feature_block._pressure .col > .txt:not(._bold) {
		margin-top: auto;
	}
	#sec_feature .feature_block._pressure .data {
		flex: 1;
	}
	#sec_feature .feature_block._pressure .compare {
		margin-top: auto;
	}
}
#sec_feature {
	/* block2：点で支える / 優れた通気性 */
}
#sec_feature .feature_block._two {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8rem;
}
@media screen and (max-width: 767px) {
	#sec_feature .feature_block._two {
		display: flex;
		flex-direction: column;
		gap: 6rem;
	}
}
#sec_feature .feature_block._two .col {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2.4rem;
}
@media screen and (max-width: 767px) {
	#sec_feature .feature_block._two .col {
		gap: 1.6rem;
	}
}
#sec_feature .feature_block._two .col_head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.6rem;
	width: 100%;
}
#sec_feature .feature_block._two .col_head .txt._bold {
	font-size: 2rem;
	line-height: 1.8;
	width: 100%;
}
@media screen and (max-width: 767px) {
	#sec_feature .feature_block._two .col_head .txt._bold {
		font-size: 1.8rem;
		line-height: 1.7777777778;
	}
}
#sec_feature .feature_block._two .col_head .txt.tac {
	font-size: 1.8rem;
	line-height: 1.7777777778;
}
#sec_feature .feature_block._two .pics {
	display: flex;
	justify-content: center;
	gap: 4rem;
}
@media screen and (max-width: 767px) {
	#sec_feature .feature_block._two .pics {
		gap: 1.6rem;
	}
}
@media screen and (min-width: 768px) {
	#sec_feature .feature_block._two .pics {
		margin-top: auto;
	}
}
#sec_feature .feature_block._two .pics .pic {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.6rem;
	width: 18rem;
}
@media screen and (max-width: 767px) {
	#sec_feature .feature_block._two .pics .pic {
		width: 16rem;
	}
}
#sec_feature .feature_block._two .pics .pic img {
	display: block;
	width: 100%;
	height: 16rem;
	object-fit: cover;
}
@media screen and (max-width: 767px) {
	#sec_feature .feature_block._two .pics .pic img {
		height: 14rem;
	}
}
#sec_feature .feature_block._two .pics .pic figcaption {
	text-align: center;
	font-size: 1.6rem;
	line-height: 1.375;
	white-space: nowrap;
}
@media screen and (max-width: 767px) {
	#sec_feature .feature_block._two .pics .pic figcaption {
		font-size: 1.2rem;
		line-height: 1.4166666667;
	}
}
#sec_feature {
	/* 安心の長期保証 */
}
#sec_feature .guarantee {
	display: flex;
	flex-direction: column;
	gap: 2.4rem;
	padding: 4rem 0;
	margin-top: 8rem;
}
@media screen and (max-width: 767px) {
	#sec_feature .guarantee {
		padding: 0;
		margin-top: 6rem;
	}
}
#sec_feature .guarantee .ttl {
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1.4166666667;
}
@media screen and (max-width: 767px) {
	#sec_feature .guarantee .ttl {
		font-size: 1.8rem;
		line-height: 1.3888888889;
	}
}
#sec_feature .guarantee .guarantee_list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 4.8rem;
}
@media screen and (max-width: 767px) {
	#sec_feature .guarantee .guarantee_list {
		gap: 0.4rem;
	}
}
#sec_feature .guarantee .guarantee_list .item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.2rem;
	padding: 1.8rem 0.8rem 2.4rem;
	border: 1px solid #c69d21;
	border-radius: 0.8rem;
	background: linear-gradient(111.56deg, #3d3d3d 0%, #2b2b2b 45%, #232323 100%);
}
@media screen and (max-width: 767px) {
	#sec_feature .guarantee .guarantee_list .item {
		border-width: 1px;
	}
}
#sec_feature .guarantee .guarantee_list .item .ico {
	width: 4.6rem;
}
@media screen and (max-width: 767px) {
	#sec_feature .guarantee .guarantee_list .item .ico {
		width: 3.6rem;
	}
}
#sec_feature .guarantee .guarantee_list .item .ico img {
	width: 100%;
}
#sec_feature .guarantee .guarantee_list .item .txt {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.4rem;
	text-align: center;
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1.2;
}
@media screen and (max-width: 767px) {
	#sec_feature .guarantee .guarantee_list .item .txt {
		font-size: 1.4rem;
	}
}
#sec_feature .guarantee .guarantee_list .item .txt span {
	font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
	#sec_feature .guarantee .guarantee_list .item .txt span {
		font-size: 2rem;
	}
}
#sec_feature .guarantee ul.note li {
	font-size: 1.4rem;
	line-height: 1.4285714286;
}
@media screen and (max-width: 767px) {
	#sec_feature .guarantee ul.note li {
		font-size: 1.2rem;
		line-height: 1.4166666667;
	}
}

#sec_connected {
	padding: 8rem 0;
	background: linear-gradient(180deg, #FFFFFF 0%, #E8F4FF 19.71%);
}
@media screen and (max-width: 767px) {
	#sec_connected .wrap {
		padding: 0 2rem;
	}
}
#sec_connected .sec_ttl {
	color: #231815;
	font-size: 3.2rem;
	line-height: 1.5;
}
@media screen and (max-width: 767px) {
	#sec_connected .sec_ttl {
		font-size: 2.4rem;
		line-height: 1.5;
	}
}
#sec_connected .main_img {
	width: 150.85rem;
	margin: -5.8rem 0 0 -21rem;
}
@media screen and (max-width: 767px) {
	#sec_connected .main_img {
		width: 37.5rem;
		margin: 2.4rem -2rem 0;
	}
	#sec_connected .main_img + .txt {
		font-size: 1.4rem;
		line-height: 1.5;
		margin-top: 2.4rem;
	}
}
#sec_connected .connected_list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.6rem;
	margin-top: 3rem;
}
@media screen and (max-width: 767px) {
	#sec_connected .connected_list {
		grid-template-columns: 1fr;
		margin-top: 4.5rem;
	}
}
#sec_connected .connected_list .item {
	padding: 2.3rem 1.5rem;
	background-color: #fff;
	border: 1px solid #E7E7E7;
	border-radius: 0.8rem;
	box-shadow: 0.8rem 0.8rem 1rem rgba(0, 0, 0, 0.15);
}
#sec_connected .connected_list .item .ttl {
	font-weight: 700;
	font-size: 1.8rem;
}
#sec_connected .connected_list .item .img {
	max-width: 31.7rem;
	margin: 2.4rem auto 0;
}
#sec_connected .connected_list .item .txt {
	margin-top: 2.4rem;
}

#sec_faq {
	padding: 6.4rem 0;
}
#sec_faq .wrap {
	max-width: 100rem;
}
@media screen and (max-width: 767px) {
	#sec_faq .wrap {
		padding: 0 2rem;
	}
}
#sec_faq .sec_ttl {
	color: #002B6F;
}
@media screen and (max-width: 767px) {
	#sec_faq .sec_ttl {
		text-align: left;
		font-size: 2.2rem;
		line-height: 1.5;
	}
}
#sec_faq .faq_list {
	counter-reset: faq_list;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.6rem 0;
	margin-top: 2.4rem;
}
#sec_faq .faq_list .item {
	padding: 0 1.5rem;
	border: 1px solid #E7E7E7;
	border-radius: 0.8rem;
}
#sec_faq .faq_list .item .q_txt {
	display: flex;
	gap: 0 0.4rem;
	color: #002B6F;
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 1.6111111111;
	padding: 1.5rem 3rem 1.5rem 0;
	position: relative;
}
@media screen and (max-width: 767px) {
	#sec_faq .faq_list .item .q_txt {
		font-size: 1.6rem;
		line-height: 1.625;
		padding-right: 3.8rem;
	}
}
#sec_faq .faq_list .item .q_txt::before {
	content: "Q" counter(faq_list) ". ";
	counter-increment: faq_list;
	flex: 0 0 auto;
	font-size: 1.6rem;
	line-height: 1.625;
}
#sec_faq .faq_list .item .q_txt .ico {
	display: inline-block;
	width: 2rem;
	height: 2rem;
	border: 1px solid #002B6F;
	border-radius: 50%;
	position: absolute;
	right: 0;
	top: 50%;
	translate: 0 -50%;
}
#sec_faq .faq_list .item .q_txt .ico::before {
	content: "";
	width: 0.6rem;
	height: 0.6rem;
	border-right: 1px solid #002B6F;
	border-bottom: 1px solid #002B6F;
	position: absolute;
	left: 50%;
	top: 50%;
	rotate: 45deg;
	translate: -50% -65%;
}
#sec_faq .faq_list .item .q_txt.is-open .ico {
	scale: 1 -1;
}
#sec_faq .faq_list .item .a_txt {
	padding: 1.7rem 0 1.5rem;
	border-top: 1px solid #E7E7E7;
}
@media screen and (max-width: 767px) {
	#sec_faq .faq_more {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 24rem;
		height: 5rem;
		color: #002B6F;
		font-weight: 700;
		font-size: 1.4rem;
		line-height: 1.4285714286;
		border-radius: 3rem;
		padding: 1rem 6rem;
		background-color: #fff;
		border: 1px solid #E7E7E7;
		margin: 2.4rem auto 0;
		position: relative;
		transition: all 0.3s ease;
	}
	#sec_faq .faq_more .ico {
		display: inline-block;
		width: 3rem;
		height: 3rem;
		background-color: #fff;
		border: 1px solid #002B6F;
		border-radius: 50%;
		position: absolute;
		right: 1.5rem;
		top: 50%;
		translate: 0 -50%;
		transition: all 0.3s ease;
	}
	#sec_faq .faq_more .ico::before, #sec_faq .faq_more .ico::after {
		content: "";
		width: 0.9rem;
		height: 1px;
		background-color: #002B6F;
		position: absolute;
		left: 50%;
		top: 50%;
		translate: -50% -50%;
		transition: all 0.3s ease;
	}
	#sec_faq .faq_more .ico::after {
		rotate: 90deg;
	}
	#sec_faq .faq_more.is-open .ico::after {
		rotate: 0deg;
	}
}
@media screen and (max-width: 767px) and (any-hover: hover) {
	#sec_faq .faq_more a:hover {
		color: #002B6F;
		background-color: #fff;
	}
	#sec_faq .faq_more a:hover .arw {
		background-color: #002B6F;
	}
	#sec_faq .faq_more a:hover .arw::before {
		border-color: #fff;
	}
}

/* ---------------------------------------
footer
-----------------------------------------*/
#footer {
	padding: 4.8rem 0;
}
@media screen and (max-width: 767px) {
	#footer {
		border-top: 1px solid #E7E7E7;
	}
}
#footer .wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	max-width: 132rem;
	margin: 0 auto;
}
@media screen and (max-width: 767px) {
	#footer .wrap {
		flex-direction: column;
		align-items: flex-start;
		padding: 0 2rem;
	}
}
#footer .logo_wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
}
@media screen and (max-width: 767px) {
	#footer .logo_wrap {
		display: contents;
	}
}
#footer .logo_wrap .logo {
	width: 33.6rem;
}
@media screen and (max-width: 767px) {
	#footer .logo_wrap .logo {
		order: 1;
		width: 26.5rem;
	}
}
#footer .logo_wrap .btn {
	margin-top: 3rem;
}
@media screen and (max-width: 767px) {
	#footer .logo_wrap .btn {
		order: 3;
	}
}
#footer .logo_wrap .btn a {
	color: #1E201F;
	font-weight: 400;
	font-size: 1.8rem;
	padding: 1rem 5.6rem 1rem 3rem;
	background: #fff url(../img/ico_blank.svg) no-repeat right 3rem center/1.5rem auto;
	border: 1px solid #B3B3B3;
}
@media (any-hover: hover) {
	#footer .logo_wrap .btn a {
		transition: opacity 0.3s ease;
		cursor: pointer;
	}
	#footer .logo_wrap .btn a:hover {
		opacity: 0.7;
	}
}
@media screen and (max-width: 767px) {
	#footer .logo_wrap .btn a {
		font-size: 1.4rem;
		padding: 1rem 6.8rem;
		background-position: right 2rem center;
	}
}
#footer .fnavi {
	flex: 0 0 auto;
	width: 68rem;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem 4rem;
}
@media screen and (max-width: 767px) {
	#footer .fnavi {
		order: 2;
		width: 100%;
		grid-template-columns: 1fr;
		gap: 0;
		margin-top: 3.2rem;
	}
}
#footer .fnavi .item {
	font-size: 1.8rem;
	line-height: 1.5;
}
@media screen and (max-width: 767px) {
	#footer .fnavi .item {
		font-size: 1.4rem;
	}
}
#footer .fnavi .item a {
	min-height: 6rem;
	display: flex;
	align-items: center;
	padding: 1rem 3rem 1rem 0;
	background: url(../img/ico_blank.svg) no-repeat right center/1.5rem auto;
	border-bottom: 1px solid #B3B3B3;
	position: relative;
}
#footer .copyright {
	width: 100%;
	font-size: 1.2rem;
	line-height: 1;
	margin-top: 4rem;
}
@media screen and (max-width: 767px) {
	#footer .copyright {
		order: 4;
		margin-top: 3.2rem;
	}
}

/* ---------------------------------------
clearfix
-----------------------------------------*/
.cf:after {
	content: ".";
	display: block;
	height: 0;
	font-size: 0;
	clear: both;
	visibility: hidden;
}

.cf {
	display: inline-block;
}

/* Hides from IE Mac */
* html .cf {
	height: 1%;
}

.cf {
	display: block;
}

/* End Hack */