@charset "UTF-8";

/** -----------------------------------------------
    共通
------------------------------------------------**/
/* 全体設定（リセット・レイアウト調整） */
html,
body {
	overflow-x: hidden;
}

/* ベースのフォントと色*/
/* 和文フォント */
body {
	font-family: "Zen Kaku Gothic New", "メイリオ", "MS ゴシック", sans-serif;
	color: #83947E;
}

/* 欧文フォント */
body *:lang(en) {
	font-family: "brandon-grotesque", "Helvetica", "Verdana", sans-serif;
	color: #83947E;
}

/* 汎用スタイル */
img {
	max-width: 100%;
}


/** -----------------------------------
    コンテンツ幅
-------------------------------------**/
.section-inner {
	padding: 0 clamp(24px, 7vw, 190px);
}


/** -----------------------------------
    テキスト
-------------------------------------**/
/* 和文 */
h2.tagline {
	font-size: clamp(30px, 6vw, 45px);
	font-weight: 700;
	white-space: nowrap;
	line-height: 1.6;
	letter-spacing: 0.2em;
	top: 0;
}

h2.section-title,
h3.section-subtitle {
	font-size: clamp(24px, 4vw, 32px);
	font-weight: 500;
	white-space: nowrap;
}

h2.section-title {
	letter-spacing: 0.1em;
}

h3.section-subtitle {
	letter-spacing: 0.2em;
}

.button-text-lg {
	font-size: clamp(16px, 3.5vw, 24px);
	font-weight: 900;
	white-space: nowrap;
	letter-spacing: 0.1em;
	color: #fff;
}

.text-title-1 {
	font-size: clamp(18px, 3vw, 24px);
	font-weight: 700;
	white-space: nowrap;
	line-height: 2;
	letter-spacing: 0.2em;
}

.text-title-2 {
	font-size: clamp(14px, 2vw, 18px);
	font-weight: 700;
	white-space: nowrap;
	letter-spacing: 0.1em;
	margin-top: 24px;
	margin-bottom: 16px;
}

.button-text-sp {
	font-size: 18px;
	font-weight: 900;
	white-space: nowrap;
	letter-spacing: 0.1em;
	margin: 0 auto;
	color: #fff;
	z-index: 1;
}

.text-body-1 {
	font-size: clamp(16px, 2vw, 18px);
	font-weight: 500;
	white-space: nowrap;
	line-height: 2;
	letter-spacing: 0.2em;
	text-align: center;
	margin-bottom: 80px;
}

.text-body-2 {
	font-size: clamp(14px, 2vw, 16px);
	letter-spacing: 0.1em;
}

.text-body-3 {
	font-size: clamp(14px, 2vw, 16px);
	font-weight: 700;
	white-space: nowrap;
	line-height: 2;
	letter-spacing: 0.2em;
}

.text-body-4 {
	font-size: 14px;
	font-weight: 500;
	line-height: 2;
	letter-spacing: 0.1em;
	text-align: justify;
}

.gnav-text {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.1em;
	white-space: nowrap;
}

.text-note {
	font-size: 12px;
	font-weight: 700;
	white-space: nowrap;
	letter-spacing: 0.1em;
}


/* 欧文 */
.scroll-text {
	white-space: nowrap;
	font-size: clamp(68px, 9vw, 118px);
	font-weight: 500;
	letter-spacing: 0.2em;
	opacity: 0.5;
}

.number {
	font-size: 48px;
	font-weight: 400;
	letter-spacing: 0em;
	position: relative;
	margin-bottom: -28px;
}

.section-title-en {
	font-size: clamp(24px, 4vw, 32px);
	font-weight: 400;
	white-space: nowrap;
	letter-spacing: 0.1em;
	padding-top: clamp(150px, 20vw, 180px);
	margin-bottom: 6px;
	opacity: 0.6;
}

/* カスタム */
.text-medium {
	font-weight: 500;
}

.text-bold {
	font-weight: 700;
}

.line-height-2 {
	line-height: 2;
}

.align-center {
	text-align: center;
}

.align-unset {
	text-align: unset;
}

.margin-unset {
	margin: unset;
}

.padding-tp-unset {
	padding-top: unset;
}


/** -------- レスポンシブ -------- **/
@media screen and (max-width: 600px) {
	.text-body-1.custom-sp {
		max-width: 308px;
		white-space: unset;
		letter-spacing: 0.1em;
		position: relative;
		left: 50%;
		transform: translateX(-50%);
		text-align: justify;
	}
}


/** -----------------------------------
    ボタン
-------------------------------------**/
/* 小・中ボタン共通 */
.button-sm,
.button-md {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.button-sm::after,
.inner-button::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 150%;
	border-radius: 50%;
	transform: translate(-50%, -50%) scale(0.1);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.5s, transform 0s;
	transition-delay: 0s, 0.6s;
}

.button-sm:hover::after,
.inner-button:hover::after {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1.1);
	transition-delay: 0s;
	transition: opacity 0.5s, transform 0.6s ease-in-out;
}

.button-sm:active,
.outer-button:active {
	transform: scale(0.95);
	transition: color 0.4s, transform 0.1s ease-in-out;
}


/* 矢印- */
.arrow-white-sm,
.arrow-green,
.arrow-white-lg {
	display: inline-block;
	border-radius: 1px;
	transform: rotate(-45deg);
	position: relative;
	vertical-align: middle;
	z-index: 1;
}

.arrow-white-sm,
.arrow-green {
	width: 7px;
	height: 7px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	border-radius: 1px;
}

.arrow-white-lg {
	width: clamp(8px, 1.5vw, 12px);
	height: clamp(8px, 1.5vw, 12px);
	border-right: 3px solid currentColor;
	border-bottom: 3px solid currentColor;
	color: #fff;
	position: absolute;
	right: 0;
	margin-right: clamp(24px, 7vw, 40px);
}

.arrow-white-sm {
	margin: 0 14px 0 8px;
	transition: color 0.5s ease-in-out;
}

.arrow-green {
	margin-right: 24px;
}

.arrow-white-sm.sp {
	display: none;
}


/* 小さいボタン */
.button-sm {
	min-width: 124px;
	height: 48px;
	border-radius: 15px;
	background: linear-gradient(to right, #e8b79f, #efdc74);
	color: #fff;
	overflow: hidden;
	margin: 0 40px;
	transition: color 0.5s ease-in-out;
	z-index: 0;
}

.button-sm::before {
	content: "";
	position: absolute;
	inset: 0;
	padding: 3px;
	border-radius: 15px;
	background: linear-gradient(to right, #e8b79f, #efdc74);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask-composite: exclude;
	pointer-events: none;
	z-index: 1;
}

.button-sm::after {
	background: #fff;
	z-index: 0;
}

.button-sm:hover,
.button-sm:hover .gnav-text.button-text-sm {
	position: relative;
	color: #83947e;
	z-index: 1;
}

.gnav-text.button-text-sm {
	font-weight: 900;
	color: #fff;
	line-height: 0;
	margin-left: 16px;
	transition: color 0.5s ease-in-out;
}


/* 中くらいのボタン */
.outer-button {
	width: 293px;
	height: 61px;
	background: linear-gradient(to right, #e8b79f, #efdc74);
	border-radius: 45px;
	padding: 3px;
}

.outer-button.custom {
	width: clamp(260px, 55vw, 293px);
}

.inner-button {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	background: #fff;
	border-radius: 45px;
	padding-left: 50px;
	transition: color 0.6s;
	z-index: 1;
}

.inner-button.custom {
	padding-left: 30px;
}

.button-md {
	display: inline-block;
	margin-top: clamp(80px, 15vw, 120px);
	margin-bottom: clamp(150px, 30vw, 180px);
	left: 50%;
	transform: translateX(-50%);
}

.inner-button::after {
	background: linear-gradient(to right, #e8b79f, #efdc74);
	z-index: -1;
}

.inner-button:hover {
	color: #fff;
}

.outer-button:active {
	transform: scale(0.95);
	transition: color 0.4s, transform 0.1s ease-in-out;
}


/* 大きいボタン- */
.button-lg-l,
.button-lg-r {
	position: relative;
	display: flex;
	align-items: center;
	max-width: 486px;
	height: 137px;
	border-radius: 40px;
	flex: 1;
	transition: transform 0.3s ease-in-out;
}

.button-lg-l {
	background: linear-gradient(to right,rgb(158, 181, 151),rgba(158, 181, 151, 0.7));
}

.button-lg-r {
	background: linear-gradient(to right, #e8b79f, #efdc74);
}

.button-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: clamp(16px, 4vw, 24px);
	left: 0;
	margin-left: clamp(40px, 5.5vw, 98px);
}

.entry-icon1,
.entry-icon2 {
	position: relative;
	background-size: contain;
}

.entry-icon1 {
	width: clamp(26px, 5vw, 39px);
	height: clamp(30px, 5vw, 45px);
	background-image: url(../images/entry-icon1.webp);
}

.entry-icon2 {
	width: clamp(31px, 5vw, 46px);
	height: clamp(28px, 5vw, 42px);
	background-image: url(../images/entry-icon2.webp);
}

.button-lg-l:hover,
.button-lg-r:hover {
	transform: scale(1.03);
}

.button-lg-l:active,
.button-lg-r:active {
	transform: scale(0.97);
	transition: transform 0.1s ease-in-out;
}


/** -------- レスポンシブ -------- **/
@media (max-width: 900px) {
	.button-content {
		display: flex;
		justify-content: space-between;
		align-items: center;
		left: 0;
		margin-left: clamp(50px, 9vw, 98px);
	}

	.button-lg-l,
	.button-lg-r {
		flex: 0 1 auto;
		width: clamp(295px, 72vw, 486px);
		height: clamp(71px, 15vw, 137px);
		border-radius: clamp(25px, 4vw, 40px);
	}
}

@media screen and (max-width: 767px) {
	/* SP追従ボタン- */
	.button-sp {
		display: none;
		position: fixed;
		align-items: center;
		bottom: 0;
		width: 100vw;
		height: 60px;
		background: linear-gradient(to right, #e8b79f, #efdc74);
		color: #fff;
		transition: opacity 0.5s, transform 0s;
		transition-delay: 0s, 0.6s;
		z-index: 3;
	}

	.sticky-btn.show {
		display: flex;
		pointer-events: auto;
		z-index: 2;
	}

	.button-sp::before {
		content: "";
		position: absolute;
		inset: 0;
		padding: 3px;
		background: linear-gradient(to right, #e8b79f, #efdc74);
		mask-composite: exclude;
		pointer-events: none;
		z-index: 1;
	}

	.button-sp::after {
		background: #fff;
		z-index: 0;
	}

	.button-sp:hover {
		color: #83947e;
		z-index: 2;
	}

	.text-body-2.button-text-sm {
		font-weight: 900;
		white-space: nowrap;
		color: #fff;
		line-height: 0;
		margin-left: 16px;
		transition: color 0.5s ease-in-out;
	}

	.arrow-white-sm.sp {
		display: block;
		position: absolute;
		right: 56px;
		color: #fff;
	}
}


/** -----------------------------------
    シェイプ
-------------------------------------**/
.shape {
	position: absolute;
	z-index: -1;
}

.mv-shape-l,
.mv-shape-r,
.shape-bg-l,
.shape-bg-r {
	width: clamp(400px, 95vw, 800px);
	height: clamp(400px, 95vw, 800px);
}

.mv-shape-l {
	background: url(../images/mv-shape--text.webp) no-repeat center / cover;
	transform: translate(-35%, -30%);
}

.mv-shape-r {
	right: 0;
	transform: translateX(40%);
	bottom: -170px
}

.mv-shape-r,
.shape-bg-l,
.shape-bg-r {
	background: url(../images/shape--bg.webp) no-repeat center / cover;
}

.shape-bg-l {
	margin-top: -350px;
	margin-left: -250px;
}

.shape-bg-r {
	pointer-events: none;
	right: 0;
	margin-top: -250px;
	margin-right: -250px;
}

.about-shape {
	width: 960px;
	height: 960px;
	background: url(../images/about-shape--text.webp) no-repeat center / cover;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}


/** -----------------------------------
    アニメーション_共通スタイル
-------------------------------------**/
/* スライドイン */
.slidein {
	animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slideIn {
	0% {
		transform: translateX(180px);
		opacity: 0;
	}

	100% {
		transform: translateX(0);
		opacity: 1;
	}
}


/* フェードイン（透明から表示だけ） */
.fade-in-1 {
	opacity: 0;
}

.fade-in-1.is-visible {
	animation: fadeInOnly 5s ease forwards;
	-webkit-animation: fadeInOnly 5s ease forwards;
}

@keyframes fadeInOnly {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}


/* フェードアップ */
.fade-up-2 {
	opacity: 0;
	transform: translateY(30px);
}

/* アニメーション発火 */
.fade-up-2.is-visible {
	animation: fadeUp 2.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* 遅延 */
.delay-1.is-visible {
	animation-delay: 0.3s;
}

.delay-2.is-visible {
	animation-delay: 1s;
}

.delay-3.is-visible {
	animation-delay: 1.7s;
}

@keyframes fadeUp {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* SP用 */
@media (max-width: 1024px) {
	
	.delay-1.is-visible {
		animation-delay: 0.2s;
	}

	.delay-2.is-visible {
		animation-delay: 0.6s;
	}

	.delay-3.is-visible {
		animation-delay: 1s;
	}
}


/* ズームイン */
.zoom-up {
	opacity: 0;
	transform: scale(0.9);
}

/* アニメーション発火 */
.zoom-up.is-visible {
	animation: zoomUp 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes zoomUp {
	0% {
		opacity: 0;
		transform: scale(0.9);
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}


/** -----------------------------------
    カラム_共通スタイル
-------------------------------------**/
.col-3 {
	display: flex;
	justify-content: center;
}

.col-text {
	display: flex;
	flex-direction: column;
	align-items: center;
}

@media screen and (max-width: 1024px) {
	.col-3 {
		flex-direction: column;
	}
}


/** -----------------------------------
    セクションタイトル_共通スタイル
-------------------------------------**/
.section-title-wrap {
	text-align: center;
}

.section-title-wrap.title1 {
	margin-bottom: clamp(56px, 10vw, 80px);
}

.section-title-wrap.title2 {
	margin-bottom: clamp(40px, 2vw, 56px);
}


/** -----------------------------------
    ヘッダー
-------------------------------------**/
#header {
	width: 100%;
	height: clamp(64px, 7vw, 84px);
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	top: 0;
	z-index: 5;
	background-color: #fff;
}

.header-logo-wrap {
	display: flex;
	align-items: center;
	gap: clamp(16px, 3vw, 32px);
}

/* ロゴ */
.hd-logo {
	width: clamp(130px, 20vw, 200px);
	height: auto;
	min-width: 130px;
	margin-left: clamp(24px, 6vw, 40px);
}

.gnav-pc-wrap {
	display: flex;
	align-items: center;
}

.gnav {
	display: flex;
	align-items: center;
	width: 100%;
	gap: 32px;
}

.gnav-item {
	padding-bottom: 5px;
	position: relative;
}

.gnav-item::before {
	background: #83947e;
	content: "";
	width: 100%;
	height: 1px;
	border-radius: 2px;
	position: absolute;
	left: 0;
	bottom: 0;
	transform-origin: center top;
	transform: scale(0, 1);
	transition: transform 0.3s;
}

.gnav-item:hover::before {
	transform-origin: center top;
	transform: scale(1, 1);
}

.gnav-text.line::before,
.gnav-text.line::after {
	content: "";
	display: block;
	border-radius: 2px;
}

.gnav-text.line::before {
	border-top: 1px solid #83947e;
	margin-bottom: 2px;
}

.gnav-text.line::after {
	border-bottom: 1px solid #83947e;
	margin-top: 2px;
}

/* SP用ハンバーガーメニュー中身のスタイル */
.gnav-sp-wrap {
	display: none;
	background-color: rgba(131, 148, 126, 0.95);
	height: 100vh;
	border-radius: 15vw 0 0 15vw;
	align-items: center;
	justify-content: center;
	position: absolute;
	padding: 40px 100px;
	top: 0;
	right: 0;
}

ul.gnav-sp li {
	text-align: center;
	margin-bottom: 8vh;
}

ul.gnav-sp li a {
	border-bottom: 2px dashed #fff;
	padding-bottom: 16px;
}

.gnav-sp {
	position: relative;
	color: #ffff;
	margin-bottom: 56px;
}

.gnav-sp.active {
	display: block;
}

#menu-button {
	display: none;
}

.gnav-sp-wrap {
	display: none;
}

.gnav-sp-wrap.open {
	display: flex;
	flex-direction: column;
	gap: 56px;
}

.button-sm.inner {
	display: none;
	margin: unset;
}

.gnav-sp-wrap.open .button-sm.inner {
	display: flex;
}


/** -------- レスポンシブ -------- **/
/* 1200px以下 */
@media screen and (max-width: 1200px) {
	.gnav {
		display: none;
	}

	/* ハンバーガーメニュー */
	#menu-button {
		display: block;
		width: 60px;
		height: 60px;
		padding: 20px 14px;
		margin-right: clamp(14px, 2.5vw, 20px);
		position: absolute;
		right: 0;
		z-index: 1;
	}

	.menu-button-inner {
		display: block;
		width: 100%;
		height: 100%;
		position: relative;
	}

	.menu-button-inner span {
		display: block;
		width: 100%;
		height: 2px;
		border-radius: 2px;
		background: #83947e;
		position: absolute;
		transition: transform 0.3s, opacity 0.3s;
	}

	.menu-button-inner span:nth-of-type(1) {
		top: 0;
	}

	.menu-button-inner span:nth-of-type(2) {
		top: 0;
		bottom: 0;
		margin: auto;
	}

	.menu-button-inner span:nth-of-type(3) {
		bottom: 0;
	}

	/* ハンバーガーボタンをクリックしたら✕にする */
	.close span:nth-of-type(1) {
		transform: rotate(45deg);
		top: 8px;
		background: #fff;
	}

	.close span:nth-of-type(2) {
		opacity: 0;
	}

	.close span:nth-of-type(3) {
		transform: rotate(-45deg);
		bottom: 10px;
		background: #fff;
	}

	.close {
		margin-top: clamp(14px, 2.5vw, 20px);
	}
}

@media screen and (max-width: 767px) {
	.button-sm.outer {
		display: none;
	}

	.gnav-sp-wrap {
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s ease;
		position: fixed;
		top: 0;
		right: 0;
		height: 100vh;
		background-color: rgba(131, 148, 126, 0.95);
		flex-direction: column;
		padding-top: 120px;
	}

	.gnav-sp-wrap.open {
		opacity: 1;
		visibility: visible;
	}

	.gnav-sp-wrap.open .button-sm.inner {
		position: absolute;
		bottom: 17%;
	}

	.gnav-sp {
		top: 0;
		margin-bottom: 140px;
	}

}

/** -----------------------------------
    メインビジュアル
-------------------------------------**/
#mainvisual {
	position: relative;
	padding-top: var(--header-height);
}

.mv-wrapper {
	position: relative;
}

.tagline {
	position: relative;
	display: flex;
	top: clamp(64px, 10vw, 84px);
	margin-left: clamp(24px, 7vw, 75px);
	z-index: 1;
}

.mv-image {
	position: relative;
	width: clamp(600px, 115vw, 1220px);
	margin-top: -15%;
	left: 50%;
	transform: translateX(-50%);
	max-width: none;
}

.scroll-text-wrapper {
	overflow: hidden;
	width: 100%;
}

.scroll-text {
	position: relative;
	bottom: 0;
	margin-bottom: clamp(-75px, -5vw, -35px);
	display: inline-block;
	animation: scroll 150s linear infinite;
	z-index: 1;
}

@keyframes scroll {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}


/** -------- レスポンシブ -------- **/

/* スマホ全体（344px～911px） */
@media screen and (min-width: 344px) and (max-width: 911px) {
	.mv-wrapper {
		padding-top: 17vh;
		margin-bottom: 25px;
	}
}

/* 360px前後だけ個別調整 */
@media screen and (min-width: 359px) and (max-width: 361px) {
	.mv-wrapper {
		margin-bottom: 15px;
	}

}

/* 375px前後だけ個別調整 */
@media screen and (min-width: 374px) and (max-width: 376px) {
	.mv-wrapper {
		padding-top: 12vh;
		margin-bottom: 0;
	}

	.mv-image {
		margin-top: -18%;
	}
}

/* 540px前後だけ個別調整 */
@media screen and (min-width: 539px) and (max-width: 541px) {
	.mv-image {
		margin-top: -17%;
	}
}

/* 911px〜1024px 縦向き */
@media screen and (min-width: 911px) and (max-width: 1024px) and (orientation: portrait) {
	.mv-wrapper {
		padding-top: 17vh;
		margin-bottom: 25px;
	}
}

/* 1023px 横向き～ 1279px */
@media screen and (min-width: 1023px) and (orientation: landscape) and (max-width: 1279px) {
	.mv-wrapper {
		padding-top: 17vh;
		margin-bottom: -25px;
	}

	.mv-image {
		width: 80vw;
		margin-top: -17%;
	}

	h2.tagline {
		font-size: clamp(30px, 3.4vw, 45px);
	}
}

/* 1280px以上 */
@media screen and (min-width: 1280px) {
	.mv-wrapper {
		padding-top: 42vh;
		margin-bottom: -100px;
	}

	.tagline {
		margin-left: 130px;
		margin-top: -18%;
	}

	.mv-image {
		margin-top: -17%;
	}
}

/* 1440px以上 */
@media screen and (min-width: 1440px) {
	.mv-wrapper {
		padding-top: 51vh;
		margin-bottom: -10px;
	}

	.mv-image {
		margin-top: -15%;
	}

	.tagline {
		margin-left: 180px;
	}
}


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


/** -----------------------------------
    私たちについて
-------------------------------------**/
#about {
	position: relative;
	padding-top: clamp(185px, 25vw, 250px);
}

.col-2-about {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: clamp(40px, 5vw, 60px);
}

.about-text {
	position: relative;
}

.about-text-1 {
	margin-top: 32px;
	margin-bottom: clamp(20px, 1vw, 24px);
	letter-spacing: 0.17em;
}

.about-text-2 {
	margin-bottom: 32px;
	letter-spacing: 0.17em;
}

.pc-br.about {
	display: inline;
}

.sp-br.about {
	display: none;
}

.about-image {
	max-width: clamp(327px, 50vw, 535px);
	display: flex;
	align-items: center;
}


/** -------- レスポンシブ -------- **/
@media screen and (max-width: 1200px) {
	.col-2-about {
		flex-direction: column-reverse;
	}

	.button-sm {
		margin-right: clamp(95px, 9vw, 120px);
	}
}

@media screen and (max-width: 500px) {
	.pc-br.about {
		display: none;
	}

	.sp-br.about {
		display: inline;
	}

	.sp-br.about.custom {
		display: none;
	}
}

@media screen and (max-width: 400px) {
	.pc-br.about {
		display: inline;
	}

	.pc-br.about.custom {
		display: none;
	}

	.sp-br.about.custom {
		display: inline;
	}
}


/** -----------------------------------
    セクション間の全幅画像
-------------------------------------**/
.parallax {
	position: relative;
	height: clamp(200px, 65vw, 750px);
	overflow: hidden;
}

.full-width-image {
	position: absolute;
	top: -396px;
	left: 50%;
	width: 100%;
	height: 100%;
	background-image: url(../images/full-width-image.webp);
	background-size: cover;
	background-position: center;
}


/** -----------------------------------
    事業内容
-------------------------------------**/
#project {
	position: relative;
}

.col-project {
	gap: 70px;
}

.project-image {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 308px;
}

.project-text {
	max-width: 308px;
}

.project-item.item-1 {
	margin-top: 94px;
}

.project-item.item-2 {
	margin-top: 134px;
}

.project-item.item-3 {
	margin-top: 56px;
}

.tb-br.project {
	display: none;
}

/** -------- レスポンシブ -------- **/
@media screen and (max-width: 1024px) {
	.col-project {
		gap: 40px;
		align-items: center;
	}

	.project-item.item-1 {
		margin-top: 56px;
	}

	.project-item.item-2,
	.project-item.item-3 {
		margin-top: 0;
	}
}

@media screen and (max-width: 660px) {
	.tb-br.project {
		display: block;
	}
}

@media screen and (max-width: 600px) {
	.sp-br.project,
	.tb-br.project {
		display: none;
	}
}


/** -----------------------------------
    働く環境
-------------------------------------**/
.section-inner {
	position: relative;
	z-index: 0;
}

#work {
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}

.work-box {
	position: relative;
	background-color: rgba(195, 179, 126, 0.25);
	border-radius: clamp(70px, 15vw, 180px);
	width: 100%;
	height: 100%;
	z-index: -1;
}

.section-title-en.work {
	padding-top: clamp(100px, 16vw, 126px);
}

.col-work {
	gap: 80px;
	padding-bottom: 25px;
}

.work-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.work-item::before {
	content: "";
	position: absolute;
	background-color: #fff;
	border-radius: clamp(50px, 1vw, 60px);
	width: 248px;
	height: 293px;
	z-index: -1;
}

.work-icon {
	max-height: 95px;
}

.work-text {
	max-width: 200px;
	text-align: justify
}

.button-md.work {
	margin-bottom: clamp(100px, 16vw, 126px);
}

.pc-br.work {
	display: inline;
}

.sp-br.work,
.tb-br.work {
	display: none;
}


/** -------- レスポンシブ -------- **/
@media screen and (max-width: 1024px) {
	.col-work {
		gap: 88px;
	}

	.tb-br.work {
		display: block;
	}
}

@media screen and (max-width: 600px) {
	.text-body-1.custom-sp.work {
		max-width: 248px;
	}

	.pc-br.work,
	.tb-br.work,
	.sp-br.work {
		display: none;
	}
}


/** -----------------------------------
    メンバー紹介
-------------------------------------**/
.swiper-backface-hidden .swiper-slide {
	display: flex;
	align-items: center;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
	transform: translate3d(0px, 0px, 0px);
}

.swiper.member-slider {
	position: relative;
}

.swiper-slide {
	max-width: clamp(248px, 34vw, 350px);
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.member-image {
	max-width: clamp(248px, 34vw, 350px);
}

.member-text {
	min-width: clamp(248px, 34vw, 350px);
	text-align: justify
}

.text-body-4.member {
	line-height: 1.5;
}

.profile {
	margin: 24px 0 16px;
}

.introduce::before,
.introduce::after {
	content: "";
	display: block;
	border-radius: 2px;
}

.introduce::before {
	border-top: 1px solid #c3b37e;
	margin-bottom: 16px;
}

.introduce::after {
	border-bottom: 1px solid #c3b37e;
	margin-top: 16px;
}

.swiper-pagination-bullet-active+.swiper-pagination-bullet+.swiper-pagination-bullet+.swiper-pagination-bullet+.swiper-pagination-bullet {
	opacity: var(--swiper-pagination-bullet-opacity, 1);
	background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-bullet:nth-child(-n+4) {
	display: none;
}

.swiper {
	position: relative;
}

.swiper-button-prev,
.swiper-button-next {
	position: absolute;
	top: -50%;
	width: clamp(46px, 6vw, 64px) !important;
	height: clamp(46px, 6vw, 64px) !important;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	transform: translateY(-150%);
	z-index: 10;
	transition: transform 0.25s ease-in-out;
}

.swiper-button-prev::after,
.swiper-button-prev::before,
.swiper-button-next::after,
.swiper-button-next::before {
	display: none;
}

.swiper-button-prev {
	left: clamp(25vw, 119px, 28vw) !important;
	background-image: url('../images/member-arrow-l.webp');
}

.swiper-button-next {
	right: clamp(25vw, 119px, 28vw) !important;
	background-image: url('../images/member-arrow-r.webp');
}


.swiper-button-prev:hover,
.swiper-button-next:hover {
	transform: translateY(-150%) scale(1.1);
}

.swiper-button-prev:active,
.swiper-button-next:active {
	transform: translateY(-150%) scale(0.95);
	transition: transform 0.1s ease-in-out;
}

.swiper-pagination {
	position: relative !important;
	margin-top: 56px;
}

.swiper-pagination-bullet {
	background: #c3b37e !important;
}

.pc-br.member {
	display: inline;
}

.sp-br.member,
.tb-br.member {
	display: none;
}


/** -------- レスポンシブ -------- **/
@media screen and (max-width: 1024px) {
	.tb-br.member {
		display: block;
	}

	.pc-br.member {
		display: none;
	}
}

@media screen and (max-width: 600px) {

	.pc-br.member,
	.tb-br.member,
	.sp-br.member {
		display: none;
	}
}

@media screen and (max-width: 599px) {
	.swiper-button-prev,
	.swiper-button-next {
		display: none !important;
	}
}


/** -----------------------------------
    募集職種
-------------------------------------**/
#job {
	position: relative;
	width: 100%;
}

#job::before {
	content: "";
	position: absolute;
	background: linear-gradient(to bottom, rgba(195, 179, 126, 0.1), rgba(195, 179, 126, 0.3));
	width: 100%;
	height: 100%;
	z-index: -1;
}

.section-title-en.job {
	padding-top: clamp(120px, 20vw, 180px);
}

.job-box {
	position: relative;
	margin: 0 auto;
}

.job-box::before {
	content: "";
	position: absolute;
	background-color: #fff;
	border-radius: clamp(70px, 2vw, 110px);
	width: 100%;
	height: 100%;
	z-index: -1;
}

.job-box::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	background: #fff;
	width: 68px;
	height: 35px;
	clip-path: polygon(50% 100%, 0 0, 100% 0);
	bottom: -30px;
}

.col-2-job {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 32px;
	padding-top: clamp(40px, 10vw, 118px);
}

.job-image {
	width: clamp(248px, 60vw, 411px);
}

.text-body-1.job {
	margin: 0 auto;
	padding: clamp(32px, 8vw, 48px) 0 clamp(40px, 10vw, 118px) 0;
}

.text-body-1.job::before,
.text-body-1.job::after {
	content: "";
	display: block;
	border-radius: 2px;
	max-width: 824px;
	margin: 0 auto;
}

.text-body-1.job::before {
	border-top: 1px solid #c3b37e;
	margin-bottom: 24px;
}

.text-body-1.job::after {
	border-bottom: 1px solid #c3b37e;
	margin-top: 24px;
}

.icon-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 100px;
	margin-top: clamp(73px, 15vw, 101px);
	padding-bottom: clamp(120px, 20vw, 180px);
}

.icon-item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: calc(33.333% - 32px);
	max-width: clamp(126px, 10vw, 300px);
	text-align: center;
}

.job-icon {
	width: clamp(93px, 14vw, 126px);
	margin-bottom: 16px;
}

.pc-br.job,
.tb-br.job {
	display: inline;
}

.tb-br.job.text,
.sp-br.job-icon {
	display: none;
}


/** -------- レスポンシブ -------- **/

@media (min-width: 1200px) {
	.icon-item {
		flex: 0 0 auto;
	}
}

@media (max-width: 1199px) {
	.icon-list {
		justify-content: center;
		align-items: flex-start;
		gap: 24px;
	}

	.icon-item {
		flex: 0 0 calc(33.333% - 24px);
		max-width: none;
	}
}

@media screen and (max-width: 1024px) {
	.col-2-job {
		flex-direction: column;
	}

	.job-text {
		text-align: center;
	}

	.text-body-1.job {
		width: clamp(248px, 67vw, 1060px);
	}

	.pc-br.job {
		display: none;
	}

	.tb-br.job,
	.pc-br.job.text,
	.tb-br.job.text,
	.sp-br.job-icon {
		display: inline;
	}
}

@media screen and (max-width: 600px) {
	.job-text {
		max-width: clamp(248px, 60vw, 411px);
		white-space: unset;
		letter-spacing: 0.1em;
		text-align: justify;
	}

	.text-body-1.job {
		white-space: unset;
		letter-spacing: 0.1em;
		text-align: justify;
	}

	.pc-br.job,
	.tb-br.job.custom,
	.pc-br.job.text,
	.tb-br.job.text {
		display: none;
	}

	.tb-br.job {
		display: inline;
	}

	.icon-item {
		flex: 1 1 calc(33.333% - clamp(24px, 0, 101px));
	}
}


/** -----------------------------------
    エントリー
-------------------------------------**/
#entry {
	padding: clamp(80px, 22vw, 120px) 0;
}

.sp-br.entry {
	display: none;
}

.col-2-entry {
	display: flex;
	justify-content: center;
	gap: clamp(24px, 5vw, 88px);
	margin-top: clamp(32px, 7vw, 56px);
}


/** -------- レスポンシブ -------- **/
@media (max-width: 900px) {
	.text-title-1.entry {
		font-size: clamp(16px, 4vw, 24px);
		font-weight: 500;
		letter-spacing: 0.1em;
	}

	.col-2-entry {
		flex-direction: column;
		align-items: center;
	}

	.sp-br.entry {
		display: inline;
	}

	.button-content {
		display: flex;
		justify-content: space-between;
		align-items: center;
		left: 0;
		margin-left: clamp(50px, 9vw, 98px);
	}

	.button-lg-l,
	.button-lg-r {
		flex: 0 1 auto;
		width: clamp(295px, 72vw, 486px);
		height: clamp(71px, 15vw, 137px);
		border-radius: clamp(25px, 4vw, 40px);
	}

	.button-text-lg {
		font-weight: 700;
	}
}


/** -----------------------------------
    フッター
-------------------------------------**/
#footer {
	position: relative;
}

.ft-content::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../images/ft-image-pc.webp) no-repeat center / cover;
	z-index: -1;
}

.ft-content {
	padding: clamp(24px, 6vw, 100px) 0;
}

.ft-logo {
	width: clamp(130px, 20vw, 200px);
	margin-bottom: clamp(24px, 5vw, 40px);
}

.ft-nav-item {
	margin-bottom: clamp(8px, 2vw, 16px);
}

.ft.text-note {
	margin-top: clamp(24px, 5vw, 64px);
}