@charset "utf-8";
:root {
	--c-primary: #b3946b;
	--c-light: #fffefe;
	--c-dark: #231506;
	--c-bk: #100802;
	--c-white: #fff;
	--c-text: #100802;
	--c-bg: #f2f1ef;
	--font-base: "Noto Serif JP", serif;
	--font-gelasio: "Gelasio", serif;
	--font-all: "Gelasio", "Noto Serif JP", serif;
	--transition-base: all ease-in-out 0.33s;
	--transition-img: all ease-in-out 0.4s;
}
/* --- reset --- */
*,
::before,
::after {
	box-sizing: border-box;
	border-width: 0;
	border-style: solid;
}
html {
	font-size: 16px;
	line-height: 1.5;
	tab-size: 4;
	color: var(--c-text);
	font-family: var(--font-base);
	font-feature-settings: normal;
	font-variation-settings: normal;
	letter-spacing: 0;
	font-weight: 400;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	line-height: inherit;
	background-color: var(--c-bg);
}

hr {
	height: 0;
	color: inherit;
	border-top-width: 1px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: inherit;
}

a {
	color: inherit;
	text-decoration: inherit;
	user-select: none;
}
label {
	user-select: none;
}

b,
strong {
	font-weight: 700;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

table {
	text-indent: 0;
	border-color: inherit;
	border-collapse: collapse;
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	font-weight: inherit;
	line-height: inherit;
	color: inherit;
	margin: 0;
	padding: 0;
}

button,
select {
	text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
	background-color: transparent;
	background-image: none;
}

:-moz-focusring {
	outline: auto;
}

:-moz-ui-invalid {
	box-shadow: none;
}

th,
td {
	width: 41%;
	text-align: left;
	font-weight: normal;
}
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
	margin: 0;
}

fieldset {
	margin: 0;
	padding: 0;
}

legend {
	padding: 0;
}

ol,
ul,
menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

textarea {
	resize: vertical;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	opacity: 1;
	color: #9ca3af;
}

input::placeholder,
textarea::placeholder {
	opacity: 1;
	color: #9ca3af;
}

button,
[role="button"] {
	cursor: pointer;
}

:disabled {
	cursor: default;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
	display: block;
	vertical-align: middle;
}

img,
video {
	max-width: 100%;
	height: auto;
}

[x-cloak] {
	display: none !important;
}
.not-scroll {
	touch-action: none;
	overflow: hidden;
}

::-webkit-scrollbar {
	width: 5px;
	height: 5px;
}

::-webkit-scrollbar-thumb {
	background-color: rgba(197, 197, 197, 0.55);
	border-radius: 5px;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

::-webkit-scrollbar-track {
	border-radius: 10px;
	box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

br.sp {
	display: none;
}
@media screen and (max-width: 999px) {
	br.pc {
		display: none;
	}
	br.sp {
		display: inline;
	}
}

/* ------------------------------------------------------------
common layout
---------------------------------------------------------------*/
main {
	width: 100%;
	position: relative;
	overflow: hidden;
}
main > section {
	width: 100%;
	position: relative;
}
@media screen and (max-width: 999px) {
	main {
		padding-top: 60px;
	}
}

.sec-inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}

.sec-cont {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 64px;
}
@media screen and (max-width: 999px) {
	.sec-cont {
		gap: 20px;
	}
}

.c-txt {
	font-size: 18px;
	line-height: 2;
	letter-spacing: 0.08em;
}
@media screen and (max-width: 999px) {
	.c-txt {
		font-size: 14px;
		line-height: 1.64;
	}
}

ul.list {
	display: flex;
	flex-flow: column;
	gap: 10px;
}
ul.list > li {
	width: 100%;
	position: relative;
	padding-left: 15px;
	font-size: 20px;
}
ul.list > li::before {
	content: "";
	width: 6px;
	height: auto;
	aspect-ratio: 1 / 1;
	background: var(--c-bk);
	position: absolute;
	z-index: 0;
	transform: rotate(45deg);
	top: 12px;
	left: 0;
	margin: 0 auto;
}

@media screen and (max-width: 1200px) {
	ul.list > li {
		font-size: 16px;
	}
}
@media screen and (max-width: 999px) {
	ul.list {
		gap: 7px;
	}
	ul.list > li {
		padding-left: 10px;
	}
	ul.list > li::before {
		width: 4px;
		top: 9px;
	}
}

@media screen and (max-width: 999px) {
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 500px) {
}
/* ------------------------------------------------------------
Heder
---------------------------------------------------------------*/
header {
	display: none;
}
@media screen and (max-width: 999px) {
	header {
		width: 100%;
		position: fixed;
		top: 0;
		z-index: 9999;
		left: 0;
		right: 0;
		margin: 0 auto;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.header-inner {
		width: 100%;
		margin: 0 auto;
		overflow: hidden;
		height: 60px;
		position: relative;
		z-index: 10;
	}
	.header-contents {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		width: 100%;
		height: 100%;
		margin: 0 auto;
	}
}

/* ------------------------------------------------------------
SP Nav
---------------------------------------------------------------*/

.btn-menu {
	display: none;
}
.sp-menu {
	display: none;
}

@media screen and (max-width: 999px) {
	.btn-menu {
		position: relative;
		display: flex;
		width: 60px;
		height: auto;
		aspect-ratio: 1 / 1;
		background: #b97b2a;
		cursor: pointer;
		align-items: center;
		justify-content: center;
	}

	.btn-menu-wrapper {
		display: flex;
		width: 100%;
		height: 100%;
		flex-flow: column;
		justify-content: center;
		align-items: center;
	}

	.toggle-box {
		position: relative;
		height: auto;
		width: 30px;
		aspect-ratio: 30 / 20;
		opacity: 0.7;
	}

	.toggle-bar {
		position: absolute;
		right: 0px;
		display: block;
		height: 2px;
		width: 100%;
		background: var(--c-white);
		transition: all ease 0.33s;
		border-radius: 999px;
	}

	.toggle-bar-01 {
		top: 0px;
	}

	.toggle-bar-02 {
		top: 50%;
		transform: translateY(-50%);
		transition: all ease 0.1s;
	}

	.toggle-bar-03 {
		bottom: 0;
	}

	.toggle-bar.toggle-bar-01-active {
		top: 50%;
		transform: translateY(-50%) rotate(30deg);
		background: var(--c-white);
	}

	.toggle-bar.toggle-bar-02-active {
		opacity: 0;
	}

	.toggle-bar.toggle-bar-03-active {
		width: 100%;
		transform: translateY(-50%) rotate(-30deg);
		top: 50%;
		background: var(--c-white);
	}

	.sp-menu {
		pointer-events: none;
		position: fixed;
		z-index: 0;
		top: 0;
		right: 0;
		display: flex;
		height: 100vh;
		width: 100%;
		justify-content: flex-end;
		align-items: flex-start;
		overflow-x: hidden;
		opacity: 0;
		transition: all ease-in-out 0.4s;
		transform: translateX(100%);
	}

	.sp-menu.is-active {
		pointer-events: auto;
		opacity: 1;
		transform: translateX(0%);
	}
	.sp-menu-inner {
		width: 89.3%;
		height: auto;
		max-width: 335px;
		aspect-ratio: 670 / 985;
		display: flex;
		flex-flow: column;
		align-items: center;
		padding: 50px 20px;
		padding-top: 75px;
		gap: 30px;
		position: relative;
		z-index: 10;
		overflow-y: auto;
		transition: var(--transition-base);
		background-image: url("../images/bg-sp-menu.webp");
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
	}
	.sp-g-nav {
		width: 100%;
		display: flex;
		flex-flow: column;
		align-items: center;
		gap: 0px;
	}

	.sp-g-nav > a {
		width: 100%;
		position: relative;
		display: flex;
		align-items: center;
		justify-content: space-between;
		border-bottom: 1px solid rgb(255 255 255 / 50%);
		padding: 15px 0;
		padding-right: 40px;
	}

	.sp-g-nav > a::after {
		content: "";
		width: 30px;
		height: auto;
		aspect-ratio: 30 / 24;
		background-image: url("../images/icon-arrow-right-wh.svg");
		background-repeat: no-repeat;
		background-size: contain;
		background-position: center;
		flex-shrink: 0;
		position: absolute;
		right: 0;
	}
	.sp-g-nav > a > div {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: flex-start;
		gap: 20px;
		color: var(--c-white);
	}
	.sp-g-nav > a > div > p {
		font-size: 14px;
		font-family: var(--font-gelasio);
		font-weight: 600;
		letter-spacing: 0.08em;
		width: 70px;
		flex-shrink: 0;
	}
	.sp-g-nav > a > div > span {
		font-size: 14px;
		font-weight: 500;
		letter-spacing: 0.08em;
	}
}

/* ------------------------------------------------------------
FV
---------------------------------------------------------------*/
.sec-fv {
	width: 100%;
	height: auto;
	aspect-ratio: 1700 / 1080;
	position: relative;
}
.sec-fv::after {
	content: "";
	width: 100%;
	height: auto;
	aspect-ratio: 1700 / 1200;
	background-image: url("../images/bg-water-1.webp");
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 0;
	mix-blend-mode: overlay;
	pointer-events: none;
}

.fv-contents {
	position: relative;
	z-index: 10;
	width: 100%;
	height: 100%;
	overflow: hidden;
	max-width: 1700px;
	margin: 0 auto;
}
.fv-contents::before {
	content: "";
	width: 100px;
	height: auto;
	aspect-ratio: 400 / 460;
	background-image: url("../images/logo.webp");
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 20;
	pointer-events: none;
}
.fv-img-box {
	width: 94.11%;
	height: auto;
	aspect-ratio: 1600 / 870;
	position: absolute;
	top: 14.5%;
	left: 0;
	overflow: hidden;
	z-index: 0;
}
.fv-img-box > figure > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.img-fv-1 {
	width: 70.5%;
	height: auto;
	aspect-ratio: 1200 / 657;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	position: relative;
	z-index: 0;
}
.img-fv-2 {
	width: 38.3%;
	height: auto;
	aspect-ratio: 614 / 363;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	position: absolute;
	z-index: 10;
	right: 0;
	bottom: 0;
}

.fv-main-txt {
	position: absolute;
	right: 8.47%;
	top: 8.98%;
	writing-mode: tb-rl;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	gap: 34px;
	z-index: 20;
}
.fv-main-txt > span {
	background: linear-gradient(0deg, #ba7b2a, #100802);
	color: var(--c-white);
	font-size: 24px;
	font-weight: 500;
	padding: 20px 14px;
	letter-spacing: 0.1em;
}
.fv-main-txt > h2 {
	font-size: 44px;
	font-weight: 600;
	letter-spacing: 0.14em;
}

.fv-scroll {
	display: flex;
	align-items: center;
	overflow: hidden;
	position: absolute;
	bottom: 0;
	left: 7.35%;
	gap: 15px;
	writing-mode: vertical-lr;
}
.fv-scroll > span {
	color: var(--c-text);
	font-size: 18px;
	text-align: left;
	font-weight: 600;
	font-family: var(--font-gelasio);
	letter-spacing: 0.14em;
	flex-shrink: 0;
}
.scroll-line {
	position: relative;
	width: 1px;
	height: 100px;
	overflow: hidden;
}

.scroll-line::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 1px;
	height: 100px;
	background-color: var(--c-bk);
	animation: scroll-line-animation 1.6s ease-in-out infinite;
	opacity: 0;
}

@keyframes scroll-line-animation {
	0% {
		transform: translateY(20px);
		opacity: 0;
	}
	30% {
		opacity: 1;
	}
	100% {
		transform: translateY(-120px);
		opacity: 0;
	}
}

@media screen and (max-width: 1700px) {
	.fv-contents::before {
		width: 90px;
	}
	.fv-img-box {
		max-width: 1200px;
	}
	.fv-main-txt > h2 {
		font-size: 36px;
	}
}
@media screen and (max-width: 1500px) {
	.fv-contents::before {
		width: 80px;
	}
}
@media screen and (max-width: 1400px) {
	.fv-contents::before {
		width: 70px;
	}
}
@media screen and (max-width: 1300px) {
	.fv-contents::before {
		width: 60px;
	}
	.fv-img-box {
		max-width: 1000px;
	}
	.fv-main-txt > h2 {
		font-size: 32px;
	}
	.fv-main-txt > span {
		font-size: 19px;
	}
}
@media screen and (max-width: 1100px) {
	.fv-contents::before {
		width: 50px;
	}
	.fv-main-txt > h2 {
		font-size: 27px;
	}
	.fv-main-txt > span {
		font-size: 18px;
	}
}
@media screen and (max-width: 999px) {
	.fv-contents::before {
		content: none;
	}
	.sec-fv {
		aspect-ratio: auto;
	}
	.sec-fv::before {
		content: "";
		width: 40px;
		height: auto;
		aspect-ratio: 400 / 460;
		background-image: url("../images/logo.webp");
		background-repeat: no-repeat;
		background-size: contain;
		position: absolute;
		bottom: calc(100% + 6px);
		left: 10px;
		z-index: 20;
		pointer-events: none;
	}
	.sec-fv::after {
		aspect-ratio: 750 / 656;
		top: 29.47%;
	}
	.fv-contents {
		display: flex;
		flex-flow: column-reverse;
		align-items: center;
		justify-content: flex-end;
	}
	.fv-img-box {
		width: 100%;
		max-width: 500px;
		aspect-ratio: 750 / 467;
		position: relative;
		top: 0;
		flex-shrink: 0;
	}
	.fv-img-box > figure > img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.img-fv-1 {
		width: 84.2%;
		aspect-ratio: 630 / 362;
	}
	.img-fv-2 {
		width: 45.7%;
		aspect-ratio: 343 / 228;
	}
	.fv-main-txt {
		width: 100%;
		max-width: 500px;
		padding: 0 5.4%;
		position: relative;
		right: auto;
		top: auto;
		writing-mode: unset;
		gap: 14px;
	}
	.fv-main-txt > span {
		font-size: 14px;
		padding: 7px 15px;
	}
	.fv-main-txt > h2 {
		font-size: 23px;
	}

	.fv-scroll {
		bottom: 0;
		left: 0;
		right: 0;
		gap: 0;
		margin: 0 auto;
		writing-mode: unset;
		flex-flow: column;
		position: relative;
		order: -1;
		margin-top: 40px;
	}
	.fv-scroll > span {
		font-size: 9px;
		text-align: center;
	}
	.scroll-line {
		height: 50px;
	}

	.scroll-line::before {
		height: 50px;
	}

	@keyframes scroll-line-animation {
		0% {
			transform: translateY(20px);
			opacity: 0;
		}
		30% {
			opacity: 1;
		}
		100% {
			transform: translateY(-70px);
			opacity: 0;
		}
	}
}

/* Worries */
.sec-worries {
	padding: 0 7.35%;
	padding-top: 80px;
	padding-bottom: 124px;
}
.sec-worries::after {
	content: "";
	width: 100%;
	height: 79.5%;
	background: linear-gradient(0deg, var(--c-light) 65%, transparent);
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	pointer-events: none;
	z-index: 0;
}
.sec-worries::before {
	content: "";
	width: 167px;
	height: auto;
	aspect-ratio: 167 / 82;
	background-image: url("../images/solution-arrow.webp");
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	bottom: -55px;
	right: 0;
	left: 0;
	margin: 0 auto;
	z-index: 20;
	pointer-events: none;
}
.sec-worries .sec-inner {
	position: relative;
	z-index: 10;
}

.worries-ttl-box {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: center;
	text-align: center;
	gap: 12px;
	position: relative;
}
.worries-ttl-box > span {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	position: relative;
	font-size: 24px;
	letter-spacing: 0.14em;
	font-weight: bold;
}
.worries-ttl-box > span::before,
.worries-ttl-box > span::after {
	content: "";
	width: 20px;
	height: 1px;
	background: var(--c-bk);
}
.worries-ttl-box > h2 {
	font-size: 38px;
	letter-spacing: 0.14em;
	font-weight: 600;
}
.worries-grid {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 4%;
	margin: 0 auto;
}
.worries-grid-item {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: center;
	gap: 30px;
}
.worries-grid-item > figure {
	width: 100%;
	max-width: 225px;
	height: auto;
	aspect-ratio: 1 / 1;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	position: relative;
	z-index: 0;
}
.worries-grid-item > figure > img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.worries-grid-item > div {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: center;
	gap: 20px;
}
.wgi-num {
	width: 100%;
	text-align: center;
	font-size: 18px;
	letter-spacing: 0.1em;
	font-family: var(--font-gelasio);
	font-weight: 500;
}
.wgi-ttl {
	width: 100%;
	text-align: center;
	font-size: 16px;
	letter-spacing: 0.05em;
	font-weight: 500;
	line-height: 2;
}

@media screen and (max-width: 999px) {
	.sec-worries {
		padding: 0 5.4%;
		padding-top: 30px;
		padding-bottom: 72px;
	}
	.sec-worries::before {
		width: 83px;
		bottom: -30px;
	}
	.sec-worries::after {
		height: 91%;
	}

	.worries-ttl-box {
		gap: 10px;
	}
	.worries-ttl-box > span {
		gap: 10px;
		font-size: 14px;
	}
	.worries-ttl-box > span::before,
	.worries-ttl-box > span::after {
		width: 10px;
	}
	.worries-ttl-box > h2 {
		font-size: 22px;
		line-height: 1.1;
	}
	.worries-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
		margin: 0 auto;
		max-width: 400px;
	}
	.worries-grid-item {
		gap: 15px;
	}
	.worries-grid-item > figure {
		max-width: 130px;
	}
	.worries-grid-item > div {
		gap: 12px;
	}
	.wgi-num {
		font-size: 12px;
	}
	.wgi-ttl {
		font-size: 14px;
		line-height: 1.5;
	}
}

/* Solution */
.sec-solution {
	padding-top: 143px;
	padding-bottom: 286px;
}
.sec-solution .sec-cont {
	gap: 90px;
}
.sec-solution::before {
	content: "";
	width: 100%;
	height: auto;
	aspect-ratio: 2129 / 1690;
	background-image: url("../images/bg-water-2.webp");
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 0;
	mix-blend-mode: overlay;
	pointer-events: none;
}
.sec-solution::after {
	content: "";
	width: 1px;
	height: 118px;
	background: var(--c-bk);
	position: absolute;
	bottom: 88px;
	left: 0;
	margin: 0 auto;
	right: 0;
	z-index: 10;
	pointer-events: none;
}
.sec-solution .sec-inner {
	position: relative;
	z-index: 10;
	max-width: none;
}
.solution-ttl-box {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: center;
	text-align: center;
	position: relative;
}
.solution-ttl-box > h2 {
	font-size: 44px;
	letter-spacing: 0.14em;
	font-weight: 600;
}
.solution-ttl-box > h2 > span {
	font-size: 64px;
	position: relative;
}
.solution-ttl-box > h2 > span::before {
	content: "";
	width: 8px;
	height: auto;
	aspect-ratio: 1 / 1;
	background: var(--c-bk);
	position: absolute;
	z-index: 0;
	transform: rotate(45deg);
	top: -7px;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.solution-flex {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	max-width: 1700px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	gap: 8.41%;
}
.solution-txt-box {
	width: 100%;
	padding-left: 20px;
	padding-top: 45px;
}
.solution-txt-box > p {
	width: 100%;
	writing-mode: vertical-rl;
	font-size: 26px;
	letter-spacing: 0.14em;
	line-height: 2.76;
}
.solution-img-box {
	width: 56.23%;
	height: auto;
	flex-shrink: 0;
	aspect-ratio: 956 / 642;
	overflow: hidden;
	max-width: 956px;
	position: relative;
}
.solution-img-box > figure {
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	position: absolute;
}
.img-solution-1 {
	width: 39.95%;
	max-width: 382px;
	aspect-ratio: 382 / 254;
	z-index: 20;
	top: 0;
	left: 14.2%;
}
.img-solution-2 {
	width: 58.15%;
	max-width: 556px;
	aspect-ratio: 556 / 460;
	z-index: 0;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
.img-solution-3 {
	width: 46.54%;
	max-width: 445px;
	aspect-ratio: 445 / 334;
	z-index: 10;
	bottom: 0;
	left: 0;
}

@media screen and (max-width: 1400px) {
	.solution-flex {
		gap: 5%;
	}
	.solution-txt-box > p {
		font-size: 20px;
	}
}
@media screen and (max-width: 1200px) {
	.solution-txt-box > p {
		font-size: 18px;
	}
	.solution-ttl-box > h2 {
		font-size: 34px;
	}
	.solution-ttl-box > h2 > span {
		font-size: 54px;
	}
}
@media screen and (max-width: 999px) {
	.sec-solution {
		padding: 0 5.4%;
		padding-top: 56px;
		padding-bottom: 110px;
	}
	.sec-solution .sec-cont {
		gap: 32px;
	}
	.sec-solution::before {
		aspect-ratio: 750 / 613;
		top: 31%;
	}
	.sec-solution::after {
		height: 60px;
		bottom: 0;
	}
	.solution-ttl-box > h2 {
		font-size: 22px;
	}
	.solution-ttl-box > h2 > span {
		font-size: 29px;
	}
	.solution-ttl-box > h2 > span::before {
		width: 4px;
		top: -7px;
	}

	.solution-flex {
		flex-flow: column-reverse;
		align-items: center;
		justify-content: flex-start;
		gap: 40px;
	}
	.solution-txt-box {
		width: 100%;
		padding-left: 0px;
		padding-top: 0px;
	}
	.solution-txt-box > p {
		writing-mode: unset;
		font-size: 15px;
		line-height: 2.2;
		max-width: 375px;
		margin: 0 auto;
	}
	.solution-img-box {
		width: 100%;
		max-width: 500px;
	}
}

/* space-reimg */
.sec-space-reimg {
	padding: 0 7.35%;
	padding-top: 95px;
	padding-bottom: 64px;
	z-index: 10;
}
.sec-space-reimg::after {
	content: "";
	display: block;
	width: 100%;
	height: 100px;
	background-color: var(--c-bg);
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	position: absolute;
	top: calc(100% - 1px);
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 10;
}
.sec-space-reimg .sec-cont {
	gap: 114px;
}
.sec-space-reimg .sec-inner {
	max-width: 1440px;
}
.space-reimg-ttl-box {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: center;
	text-align: center;
	gap: 40px;
	padding-top: 84px;
	position: relative;
}
.space-reimg-ttl-box::before {
	content: "Space Reimagined";
	font-family: var(--font-gelasio);
	font-size: 140px;
	font-weight: 500;
	opacity: 0.05;
	letter-spacing: 0.06em;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 0;
	line-height: 1;
	color: #422b12;
	white-space: nowrap;
}
.space-reimg-ttl-box > span {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	width: 100%;
	text-align: center;
	font-weight: bold;
	letter-spacing: 0.14em;
	position: relative;
	z-index: 10;
}
.space-reimg-ttl-box > span::before,
.space-reimg-ttl-box > span::after {
	font-size: 28px;
	content: "/";
	flex-shrink: 0;
	line-height: 1;
	margin-top: 10px;
}
.space-reimg-ttl-box > span::before {
	transform: scaleX(-1);
	margin-right: 5px;
}
.space-reimg-ttl-box > span > span {
	font-size: 28px;
}
.space-reimg-ttl-box > span > span strong {
	font-size: 40px;
	padding: 0 2px;
}

.space-reimg-ttl-box > h2 {
	width: 100%;
	font-size: 36px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-align: center;
	position: relative;
	z-index: 10;
}
.space-reimg-ttl-box > h2 > span {
	color: var(--c-white);
	font-size: 48px;
	background: linear-gradient(0deg, #ba7b2a, #100802);
	line-height: 1;
	margin-right: 12px;
	padding: 8px;
}

.space-reimg-img-area {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
}
.space-reimg-img-area > figure {
	width: 100%;
	height: auto;
	aspect-ratio: 2121 / 1324;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
}
.space-reimg-img-area > figure img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@media screen and (max-width: 1200px) {
	.space-reimg-ttl-box::before {
		font-size: 120px;
	}
	.space-reimg-ttl-box > h2 {
		font-size: 30px;
	}
}
@media screen and (max-width: 999px) {
	.sec-space-reimg {
		padding: 0 5.4%;
		padding-top: 60px;
		padding-bottom: 37px;
	}
	.sec-space-reimg::after {
		height: 60px;
	}
	.sec-space-reimg .sec-cont {
		gap: 25px;
	}
	.space-reimg-ttl-box {
		gap: 20px;
		padding-top: 20px;
	}
	.space-reimg-ttl-box::before {
		font-size: 40px;
		white-space: nowrap;
		text-align: center;
	}

	.space-reimg-ttl-box > span::before,
	.space-reimg-ttl-box > span::after {
		font-size: 36px;
		margin-top: 0px;
		font-weight: 100;
	}
	.space-reimg-ttl-box > span::before {
		transform: scaleX(-1);
		margin-right: 5px;
	}
	.space-reimg-ttl-box > span > span {
		font-size: 14px;
	}
	.space-reimg-ttl-box > span > span strong {
		font-size: 20px;
	}

	.space-reimg-ttl-box > h2 {
		font-size: 19px;
		line-height: 2.2;
	}
	.space-reimg-ttl-box > h2 > span {
		font-size: 23px;
		margin-right: 5px;
		padding: 6px;
	}
	.space-reimg-img-area {
		max-width: 768px;
		margin: 0 auto;
	}
}

@media screen and (max-width: 768px) {
	.space-reimg-img-area {
		max-width: 375px;
		margin: 0 auto;
	}
	.space-reimg-img-area > figure {
		aspect-ratio: 58 / 183;
	}
}

@media screen and (max-width: 500px) {
	.sec-space-reimg::after {
		height: 31px;
	}
}
/* total support */
.sec-totalsupport {
	padding: 0 7.35%;
	padding-top: 233px;
	padding-bottom: 100px;
	z-index: 0;
	background-image: url("../images/bg-totalsupport.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.totalsupport-ttl-box {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: center;
	position: relative;
}
.totalsupport-ttl-box > h2 {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: center;
	text-align: center;
	gap: 30px;
	font-size: 36px;
	font-weight: 600;
	letter-spacing: 0.14em;
	color: var(--c-white);
}
.totalsupport-ttl-box > h2 > div {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	row-gap: 12px;
	justify-content: center;
}
.totalsupport-ttl-box > h2 > div > span {
	border: 1px solid var(--c-white);
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	text-align: center;
	padding: 7px 12px;
	padding-bottom: 8px;
	padding-left: 16px;
	flex-shrink: 0;
}
.totalsupport-ttl-box > h2 > div > span:last-of-type {
	margin-right: 5px;
}
.totalsupport-ttl-box > h2 > span > strong {
	font-size: 50px;
	font-weight: 600;
}

.totalsupport-img-area {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
	max-width: 455px;
	margin: 0 auto;
}
.totalsupport-img-area > figure {
	width: 100%;
	height: auto;
	aspect-ratio: 1364 / 1584;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
}
.totalsupport-img-area > figure img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@media screen and (max-width: 1380px) {
	.totalsupport-ttl-box > h2 > div {
		max-width: 703px;
	}
}
@media screen and (max-width: 999px) {
	.sec-totalsupport {
		padding: 0 5.4%;
		padding-top: 120px;
		padding-bottom: 42px;
	}
	.sec-totalsupport .sec-cont {
		gap: 25px;
	}
	.totalsupport-ttl-box > h2 {
		gap: 12px;
		font-size: 17px;
	}
	.totalsupport-ttl-box > h2 > div {
		max-width: 400px;
	}
	.totalsupport-ttl-box > h2 > div > span {
		border: 1px solid var(--c-white);
		display: flex;
		align-items: center;
		justify-content: center;
		line-height: 1;
		text-align: center;
		padding: 7px 12px;
		padding-bottom: 8px;
		padding-left: 16px;
		flex-shrink: 0;
	}
	.totalsupport-ttl-box > h2 > span {
		letter-spacing: 0;
	}
	.totalsupport-ttl-box > h2 > span > strong {
		font-size: 25px;
	}

	.totalsupport-img-area {
		width: 68%;
		min-width: 255px;
		max-width: 300px;
	}
}

@media screen and (max-width: 500px) {
	.sec-totalsupport {
		padding-top: 68px;
	}
}

/* Proposal */
.sec-proposal {
	padding: 0 7.35%;
	padding-top: 127px;
	padding-bottom: 105px;
	z-index: 0;
	background-image: url("../images/bg-proposal.webp");
	background-repeat: repeat-y;
	background-size: cover;
	background-position: top center;
}
.sec-proposal .sec-inner {
	max-width: 1440px;
}
.sec-proposal .sec-cont {
	gap: 116px;
}
.proposal-group {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 60px;
}

.proposal-group-heading {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 30px;
}
.proposal-group .c-txt {
	width: 100%;
	text-align: center;
}

.jst-ttl-box {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: center;
	text-align: center;
	gap: 16px;
	padding-top: 150px;
	position: relative;
}
.jst-ttl-box::before {
	content: "Proposal";
	font-family: var(--font-gelasio);
	font-size: 140px;
	font-weight: 500;
	letter-spacing: 0.06em;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 0;
	line-height: 1;
	color: var(--c-white);
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	white-space: nowrap;
}
.jst-ttl-box > span {
	background: linear-gradient(0deg, #eac577, #b5782a);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
	font-size: 28px;
	font-family: var(--font-gelasio);
	letter-spacing: 0.06em;
	font-weight: 500;
}

.jst-ttl-box > h2 {
	width: 100%;
	font-size: 36px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-align: center;
	position: relative;
	z-index: 10;
}

.jst-img-grid {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
	position: relative;
	overflow: hidden;
}
.jst-grid-item {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: center;
	gap: 35px;
}
.jst-grid-item:nth-of-type(even) {
	padding-top: 54px;
}
.jst-grid-item-ttl {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--c-dark);
	color: #fff;
	height: 54px;
	line-height: 1;
	text-align: center;
	font-size: 24px;
	font-weight: 400;
	letter-spacing: 0.14em;
}
.jst-grid-item-imgs {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: center;
	gap: 20px;
}
.jst-grid-item-imgs > figure {
	width: 100%;
	height: auto;
	aspect-ratio: 343 / 202;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
}
.jst-grid-item-imgs > figure img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.sauna-ttl-box {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: center;
	text-align: center;
	gap: 16px;
	position: relative;
}
.sauna-ttl-box > span {
	background: linear-gradient(0deg, #eac577, #b5782a);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
	font-size: 28px;
	font-family: var(--font-gelasio);
	letter-spacing: 0.06em;
	font-weight: 500;
}

.sauna-ttl-box > h2 {
	width: 100%;
	font-size: 36px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-align: center;
	position: relative;
	z-index: 10;
}

.sauna-img-grid {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0px 60px;
	position: relative;
	overflow: hidden;
}
.sauna-grid-item {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: center;
	gap: 16px;
}
.sauna-grid-item:nth-of-type(even) {
	padding-top: 60px;
}
.sauna-grid-item-ttl {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1;
	text-align: center;
	font-size: 24px;
	font-weight: 600;
	letter-spacing: 0.08em;
}
.sauna-grid-item > figure {
	width: 100%;
	height: auto;
	aspect-ratio: 321 / 248;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
}
.sauna-grid-item > figure img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@media screen and (max-width: 1300px) {
	.sauna-img-grid {
		gap: 0px 30px;
	}
	.sauna-grid-item:nth-of-type(even) {
		padding-top: 40px;
	}
}
@media screen and (max-width: 1200px) {
	.jst-grid-item-ttl {
		font-size: 19px;
	}
	.jst-grid-item {
		gap: 25px;
	}
	.sauna-grid-item-ttl {
		font-size: 19px;
	}
}
@media screen and (max-width: 999px) {
	.sec-proposal {
		padding: 0 5.4%;
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.sec-proposal .sec-cont {
		gap: 50px;
	}
	.proposal-group {
		gap: 34px;
	}

	.proposal-group-heading {
		gap: 28px;
		max-width: 375px;
		margin: 0 auto;
	}
	.proposal-group .c-txt {
		text-align: left;
	}

	.jst-ttl-box {
		gap: 13px;
		padding-top: 75px;
	}
	.jst-ttl-box::before {
		font-size: 65px;
	}
	.jst-ttl-box > span {
		font-size: 15px;
	}

	.jst-ttl-box > h2 {
		font-size: 19px;
		white-space: nowrap;
	}

	.jst-img-grid {
		grid-template-columns: repeat(1, 1fr);
		gap: 30px;
		max-width: 500px;
		margin: 0 auto;
	}
	.jst-grid-item {
		gap: 12px;
		padding-right: 40px;
	}
	.jst-grid-item:nth-of-type(even) {
		padding-top: 0px;
		padding-right: 0px;
		padding-left: 40px;
	}
	.jst-grid-item-ttl {
		height: 30px;
		font-size: 14px;
	}
	.jst-grid-item-imgs {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		align-items: unset;
		flex-flow: unset;
	}
	.jst-grid-item-imgs > figure {
		width: 100%;
		height: auto;
		aspect-ratio: 343 / 202;
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
		overflow: hidden;
	}
	.jst-grid-item-imgs > figure img {
		width: 100%;
		height: 100%;
		object-fit: contain;
	}

	.sauna-ttl-box {
		gap: 13px;
	}
	.sauna-ttl-box > span {
		font-size: 15px;
	}

	.sauna-ttl-box > h2 {
		font-size: 19px;
		white-space: nowrap;
	}

	.sauna-img-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 0 25px;
		max-width: 500px;
		margin: 0 auto;
	}
	.sauna-grid-item {
		gap: 26px;
	}
	.sauna-grid-item:nth-of-type(even) {
		padding-top: 0px;
	}
	.sauna-grid-item {
		gap: 12px;
	}
	.sauna-grid-item:nth-of-type(1) {
		order: 1;
	}
	.sauna-grid-item:nth-of-type(5) {
		padding-top: 28px;
		order: 2;
	}
	.sauna-grid-item:nth-of-type(2) {
		order: 3;
	}
	.sauna-grid-item:nth-of-type(6) {
		padding-top: 28px;
		order: 4;
	}
	.sauna-grid-item:nth-of-type(3) {
		order: 5;
	}
	.sauna-grid-item:nth-of-type(7) {
		padding-top: 28px;
		order: 6;
	}
	.sauna-grid-item:nth-of-type(4) {
		order: 7;
	}
	.sauna-grid-item:nth-of-type(8) {
		padding-top: 28px;
		order: 8;
	}
	.sauna-grid-item-ttl {
		font-size: 14px;
	}
	.sauna-grid-item > figure {
		aspect-ratio: 302 / 233;
	}
}

/* Case */
.sec-case {
	padding-top: 160px;
	padding-bottom: 120px;
}
.sec-case::after {
	content: "";
	width: 100%;
	height: 523px;
	background: linear-gradient(0deg, var(--c-light) 65%, transparent);
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	pointer-events: none;
	z-index: 0;
}
.sec-case .sec-inner {
	max-width: none;
	position: relative;
	z-index: 10;
}
.case-ttl-box {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: center;
	text-align: center;
	gap: 26px;
	position: relative;
	padding-top: 93px;
	padding-bottom: 45px;
}
.case-ttl-box::before {
	content: "Case";
	font-family: var(--font-gelasio);
	font-size: 140px;
	font-weight: 500;
	letter-spacing: 0.06em;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 0;
	line-height: 1;
	color: var(--c-white);
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	white-space: nowrap;
}
.case-ttl-box::after {
	content: "";
	width: 48px;
	height: 4px;
	background: #a96f26;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 0;
}

.case-ttl-box > h2 {
	width: 100%;
	font-size: 42px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-align: center;
	position: relative;
	z-index: 10;
	line-height: 1.3;
}
.case-ttl-box > span {
	width: 100%;
	font-size: 34px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-align: center;
	position: relative;
	line-height: 1;
	color: #a96f26;
	position: relative;
	z-index: 10;
}
.case-slider-area {
	width: 100%;
	position: relative;
	z-index: 10;
	display: flex;
	flex-flow: column;
	align-items: center;
	gap: 80px;
}
.case-slider {
	width: 100%;
	position: relative;
}

.img-case {
	width: 100%;
	height: auto;
	aspect-ratio: 1609 / 1016;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.img-case img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(0.846);
	transition: all ease-in-out 0.4s;
}
.swiper-slide-prev .img-case img {
	transform-origin: right;
}
.swiper-slide-next .img-case img {
	transform-origin: left;
}

.swiper-slide-active .img-case img {
	transform: scale(1);
}

.slide-btn-prev,
.slide-btn-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10;
	background: var(--c-bk);
	width: 63px;
	height: auto;
	aspect-ratio: 1 / 1;
	cursor: pointer;
	transition: all ease 0.33s;
}
.slide-btn-prev:hover,
.slide-btn-next:hover {
	background: var(--c-primary);
}
.slide-btn-prev {
	right: calc(100% - 16%);
}
.slide-btn-next {
	left: calc(100% - 16%);
}

.slide-btn-prev::after,
.slide-btn-next::after {
	content: "";
	width: 30px;
	height: auto;
	aspect-ratio: 1 / 1;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
.slide-btn-prev::after {
	background-image: url("../images/icon-chevron-left-wh.svg");
}
.slide-btn-next::after {
	background-image: url("../images/icon-chevron-right-wh.svg");
}

.slide-pagination-wrapper {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	padding: 0 20px;
}
.slide-pagination {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
}
.slide-pagination > .swiper-pagination-bullet {
	width: 15px;
	height: auto;
	aspect-ratio: 1 / 1;
	background: var(--c-primary);
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	transform: rotate(45deg);
	transition: var(--transition-base);
}
.slide-pagination > .swiper-pagination-bullet:hover {
	opacity: 0.6;
}
.slide-pagination > .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: var(--c-dark);
}

@media screen and (max-width: 999px) {
	.sec-case {
		padding-top: 60px;
		padding-bottom: 0px;
	}
	.sec-case::after {
		content: none;
	}
	.case-ttl-box {
		gap: 16px;
		position: relative;
		padding-top: 46px;
		padding-bottom: 16px;
	}
	.case-ttl-box::before {
		font-size: 65px;
	}
	.case-ttl-box::after {
		width: 24px;
		height: 2px;
	}

	.case-ttl-box > h2 {
		font-size: 19px;
	}
	.case-ttl-box > span {
		font-size: 16px;
		line-height: 1.3;
	}
	.case-slider-area {
		gap: 20px;
	}
	.img-case {
		aspect-ratio: 590 / 373;
	}

	.slide-btn-prev,
	.slide-btn-next {
		display: none;
	}

	.slide-pagination {
		gap: 20px;
	}
	.slide-pagination > .swiper-pagination-bullet {
		width: 8px;
	}
}

/* Flow */
.sec-flow {
	padding: 0 7.35%;
	padding-top: 127px;
	padding-bottom: 138px;
}
.sec-flow .sec-cont {
	gap: 80px;
}
.flow-ttl-box {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: center;
	text-align: center;
	position: relative;
	padding-top: 93px;
}
.flow-ttl-box::before {
	content: "Flow";
	font-family: var(--font-gelasio);
	font-size: 140px;
	font-weight: 500;
	letter-spacing: 0.06em;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 0;
	line-height: 1;
	color: var(--c-white);
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	white-space: nowrap;
}

.flow-ttl-box > h2 {
	width: 100%;
	font-size: 42px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-align: center;
	position: relative;
	z-index: 10;
	line-height: 1.3;
}

.scroll-hint-area {
	width: 100%;
	position: relative;
}
.flow-tbl-wrapper {
	width: 100%;
	position: relative;
}
.tbl-flow {
	width: 100%;
}
.tbl-flow th,
.tbl-flow td {
	width: 19.5%;
}
.tbl-flow th > div,
.tbl-flow td > div {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 23px;
	line-height: 1.5;
	font-weight: 500;
	letter-spacing: 0.14em;
}
.tbl-flow th > div {
	font-size: 24px;
}
.tbl-flow td > div {
	font-size: 20px;
	justify-content: flex-start;
	min-height: 200px;
}
.tbl-flow th:first-of-type,
.tbl-flow td:first-of-type {
	width: 72px;
}

.tbl-flow thead th {
	background: var(--c-bk);
	color: var(--c-white);
}
.tbl-flow thead th:first-of-type {
	background: transparent;
}
.tbl-flow thead th > div::after {
	content: "";
	width: 40%;
	height: auto;
	aspect-ratio: 94 / 23;
	background-image: url("../images/tbl-arrow.webp");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: calc(100% - 30px);
}
.tbl-flow thead th:last-of-type > div::after {
	content: none;
}

.tbl-flow tbody tr:first-of-type th {
	background: var(--c-bk);
	color: var(--c-white);
}
.tbl-flow tbody tr:nth-of-type(2) th {
	background: var(--c-primary);
	color: var(--c-white);
}
.tbl-flow tbody tr:nth-of-type(2) td ul.list > li::before {
	background: var(--c-primary);
}
.tbl-flow tbody tr td {
	background: var(--c-white);
	border: 1px solid var(--c-bg);
}

.scroll-hint {
	display: none;
}

@media screen and (max-width: 1300px) {
	.tbl-flow th > div {
		font-size: 20px;
	}
}
@media screen and (max-width: 1200px) {
	.tbl-flow th > div,
	.tbl-flow td > div {
		padding: 12px;
	}
	.tbl-flow th > div {
		font-size: 14px;
	}
	.tbl-flow td > div {
		font-size: 14px;
		min-height: 115px;
	}
	.tbl-flow th:first-of-type,
	.tbl-flow td:first-of-type {
		width: 40px;
	}
}
@media screen and (max-width: 999px) {
	.sec-flow {
		padding: 0 5.4%;
		padding-top: 60px;
		padding-bottom: 0px;
	}
	.sec-flow .sec-cont {
		gap: 30px;
	}
	.flow-ttl-box {
		padding-top: 45px;
	}
	.flow-ttl-box::before {
		font-size: 65px;
	}

	.flow-ttl-box > h2 {
		font-size: 19px;
	}

	.flow-tbl-wrapper {
		max-width: 768px;
		margin: 0 auto;
	}
}

@media screen and (max-width: 768px) {
	.sec-flow {
		padding-right: 0;
		padding-left: 5.4%;
	}
	.flow-tbl-wrapper {
		overflow-x: scroll;
		padding-right: 5.4%;
		padding-bottom: 10px;
	}
	.tbl-flow {
		width: 768px;
	}

	.scroll-hint {
		display: flex;
		position: absolute;
		top: -30px;
		right: 5.4%;
		pointer-events: none;
		z-index: 10;
		width: 50px;
		height: auto;
		aspect-ratio: 1 / 1;
		animation: scroll-hint-fade 1.5s infinite;
	}

	@keyframes scroll-hint-fade {
		0% {
			opacity: 0;
			transform: translateX(50px) rotate(0deg);
		}
		50% {
			opacity: 1;
		}
		100% {
			opacity: 0;
			transform: translateX(0px) rotate(-10deg);
		}
	}
}

/* Other */
.sec-other {
	padding: 0 7.35%;
	padding-bottom: 143px;
}

.sec-other .sec-cont {
	gap: 80px;
}
.other-ttl-box {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: center;
	text-align: center;
	position: relative;
	padding-top: 93px;
}
.other-ttl-box::before {
	content: "Other";
	font-family: var(--font-gelasio);
	font-size: 140px;
	font-weight: 500;
	letter-spacing: 0.06em;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 0;
	line-height: 1;
	color: var(--c-white);
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	white-space: nowrap;
}

.other-ttl-box > h2 {
	width: 100%;
	font-size: 42px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-align: center;
	position: relative;
	z-index: 10;
	line-height: 1.3;
}

.other-faq-area {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: center;
	gap: 32px;
}

.faq-acc-item {
	width: 100%;
	position: relative;
	overflow: hidden;
	background: var(--c-white);
	display: flex;
	flex-flow: column;
}
.faq-acc-btn {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 37px 44px;
	padding-left: 48px;
	padding-right: 100px;
	cursor: pointer;
}
.faq-acc-btn > h3 {
	width: 100%;
	font-weight: 600;
	font-size: 21px;
	line-height: 1.5;
	text-align: left;
}

.faq-acc-btn::before {
	content: "";
	width: 48px;
	height: auto;
	aspect-ratio: 1 / 1;
	background-image: url("../images/icon-q.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
}
.faq-acc-btn::after {
	content: "";
	background-image: url("../images/icon-plus.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	right: 60px;
	width: 24px;
	height: auto;
	aspect-ratio: 1 / 1;
	transition: all ease 0.1s;
}
.is-active .faq-acc-btn::after {
	background-image: url("../images/icon-minus.svg");
}

.faq-acc-panel {
	width: 100%;
}
.faq-acc-panel .acc-panel-inner {
	width: 100%;
	padding: 57px 48px;
	padding-top: 0;
}
.answer-flex {
	width: 100%;
	display: flex;
	align-items: flex-start;
	gap: 24px;
	padding-top: 21px;
	border-top: 1px solid var(--c-bk);
}
.answer-flex::before {
	content: "";
	width: 48px;
	height: auto;
	aspect-ratio: 1 / 1;
	background-image: url("../images/icon-a.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
}
.answer-area {
	width: 100%;
	display: flex;
	align-items: flex-start;
	flex-flow: column;
}
.answer-body {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 24px;
	flex-flow: column;
}
.answer-body > p {
	width: 100%;
	font-size: 18px;
	line-height: 1.75;
	text-align: left;
}

@media screen and (max-width: 999px) {
	.sec-other {
		padding: 0 5.4%;
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.sec-other .sec-cont {
		gap: 24px;
	}
	.other-ttl-box {
		padding-top: 45px;
	}
	.other-ttl-box::before {
		font-size: 65px;
	}

	.other-ttl-box > h2 {
		font-size: 19px;
	}

	.other-faq-area {
		gap: 20px;
		max-width: 768px;
		margin: 0 auto;
	}

	.faq-acc-btn {
		gap: 10px;
		padding: 18px 20px;
		padding-left: 20px;
		padding-right: 48px;
	}
	.faq-acc-btn > h3 {
		font-size: 16px;
	}

	.faq-acc-btn::before {
		width: 40px;
	}
	.faq-acc-btn::after {
		right: 20px;
		width: 18px;
	}

	.faq-acc-panel .acc-panel-inner {
		width: 100%;
		padding: 26px 20px;
		padding-top: 0;
	}
	.answer-flex {
		gap: 10px;
		padding-top: 16px;
		align-items: flex-start;
	}
	.answer-flex::before {
		width: 40px;
	}
	.answer-body > p {
		font-size: 16px;
	}
}
/* Company */

.sec-company {
	padding: 0 7.35%;
	padding-top: 121px;
	padding-bottom: 153px;
	z-index: 0;
	background-image: url("../images/bg-company.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}
.sec-company .sec-inner {
	max-width: 1440px;
}

.copany-flex {
	width: 100%;
	display: flex;
	gap: 6.25%;
	justify-content: space-between;
	align-items: flex-start;
}
.company-info-group {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	gap: 80px;
	max-width: 590px;
}
.company-ttl-box {
	width: 100%;
	display: flex;
	color: #fff;
	align-items: center;
	gap: 30px;
}
.company-ttl-box-sp {
	display: none;
}
.company-ttl-box > h2 {
	font-size: 36px;
	font-weight: 600;
	letter-spacing: 0.14em;
}
.company-ttl-box > span {
	font-size: 28px;
	letter-spacing: 0.06em;
	font-family: var(--font-gelasio);
	font-weight: 500;
	line-height: 1;
	margin-top: 4px;
}

.company-info-tbl {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
}
.company-info-tbl > dl {
	width: 100%;
	display: flex;
	align-items: center;
	font-size: 24px;
	color: var(--c-white);
	letter-spacing: 0.14em;
	line-height: 1.5;
	gap: 25px;
	border-bottom: 1px solid rgb(255 255 255 / 50%);
}
.company-info-tbl > dl > dt {
	font-weight: 600;
	width: 250px;
	flex-shrink: 0;
	padding: 30px 0;
	white-space: nowrap;
}
.company-info-tbl > dl > dd {
	width: 100%;
	padding: 30px 0;
}

.company-img-box {
	width: 53.61%;
	height: auto;
	flex-shrink: 0;
	aspect-ratio: 772 / 604;
	overflow: hidden;
	max-width: 772px;
	position: relative;
	margin-top: 70px;
}
.company-img-box > figure {
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	position: absolute;
}
.company-img-box > figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.img-company-1 {
	width: 69.1%;
	max-width: 534px;
	aspect-ratio: 534 / 350;
	z-index: 0;
	top: 0;
	right: 0;
}
.img-company-2 {
	width: 74.7%;
	max-width: 577px;
	aspect-ratio: 577 / 322;
	z-index: 10;
	bottom: 0;
	left: 0;
}

@media screen and (max-width: 1600px) {
	.company-info-tbl > dl {
		font-size: 18px;
	}
	.company-img-box {
		width: 45%;
	}
}
@media screen and (max-width: 1200px) {
	.company-info-tbl > dl {
		font-size: 16px;
	}
	.company-info-tbl > dl > dt {
		width: 180px;
	}
}
@media screen and (max-width: 999px) {
	.sec-company {
		padding: 0 5.4%;
		padding-top: 50px;
		padding-bottom: 60px;
	}

	.copany-flex {
		gap: 15px;
		justify-content: flex-end;
		align-items: center;
		flex-flow: column-reverse;
	}
	.company-info-group {
		gap: 0px;
		max-width: 500px;
		margin: 0 auto;
	}
	.company-ttl-box {
		display: none;
	}
	.company-ttl-box-sp {
		width: 100%;
		display: flex;
		max-width: 500px;
		margin: 0 auto;
		color: #fff;
		align-items: center;
		gap: 10px;
		margin-bottom: 35px;
	}
	.company-ttl-box-sp > h2 {
		font-size: 19px;
		font-weight: 600;
		letter-spacing: 0.14em;
	}
	.company-ttl-box-sp > span {
		font-size: 15px;
		letter-spacing: 0.06em;
		font-family: var(--font-gelasio);
		font-weight: 500;
		line-height: 1;
		margin-top: 4px;
	}

	.company-info-tbl > dl {
		font-size: 14px;
		gap: 20px;
	}
	.company-info-tbl > dl > dt {
		width: 135px;
		padding: 20px 0;
	}
	.company-info-tbl > dl > dd {
		padding: 20px 0;
	}
	.company-img-box {
		width: 100%;
		max-width: 500px;
		margin: 0 auto;
		margin-top: 0;
	}
}
