@charset "UTF-8";

@font-face {
	font-family: "Torono Glitch Sans H1";
	src: url("../fonts/Torono_Glitch_Sans_H1.ttf") format("truetype");
	font-display: swap;
}
/*---------------------------
layout
---------------------------*/
/*---------_main---------*/
:root {
	--font-sans: "Noto Sans JP", sans-serif;
	--font-Cormorant: "Cormorant Infant", serif;
	--font-Gilda: "Gilda Display", serif;
	--font-Roboto: "Roboto", sans-serif;
	--font-serif: "Noto Serif JP", serif;
}
html {
	font-size: 62.5%;
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden;
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-sans);
	color: #3c3c3c;
	overflow: hidden;
}

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

a {
	color: #333;
	text-decoration: none;
	cursor: pointer;
}

a img:hover,
a:hover {
	opacity: 0.8;
}

img {
	width: 100%;
	height: auto;
}

.u-flex {
	display: flex;
	flex-wrap: wrap;
}
.u-fdrr {
	flex-direction: row-reverse;
}
.u-pc {
	display: block;
}
@media screen and (max-width: 768px) {
	.u-pc {
		display: none;
	}
}

.u-sp {
	display: none;
}
@media screen and (max-width: 768px) {
	.u-sp {
		display: block;
	}
}

.u-po-re {
	position: relative;
}
.u-jcc {
	justify-content: center;
}
.u-aic {
	align-items: center;
}
.u-jcsb {
	justify-content: space-between;
}
.u-jcsa {
	justify-content: space-around;
}
.u-jcfe {
	justify-content: flex-end;
}
.u-tac {
	text-align: center;
}
.u-tar {
	text-align: right;
}
.u-bold {
	font-weight: bold;
}
.c-col__flex {
	flex: 1;
}

.u-wrap {
	--contentPaddingInline: 20px;
	max-width: 1140px;
	padding: 0 20px;
	margin: 0 auto;
}
.u-wrap__small {
	max-width: 960px;
	padding: 0 20px;
	margin: 0 auto;
}
.u-wrap__wide {
	max-width: 1240px;
	padding: 0 20px;
	margin: 0 auto;
}

.u-wrap--920 {
	--contentMaxWidth: 920px;
	max-width: min(calc(var(--contentMaxWidth) + (2 * var(--contentPaddingInline))), 100%);
}
.u-wrap--950 {
	--contentMaxWidth: 950px;
	max-width: min(calc(var(--contentMaxWidth) + (2 * var(--contentPaddingInline))), 100%);
}
.u-wrap--1000 {
	--contentMaxWidth: 1000px;
	max-width: min(calc(var(--contentMaxWidth) + (2 * var(--contentPaddingInline))), 100%);
}
.u-wrap--1050 {
	--contentMaxWidth: 1050px;
	max-width: min(calc(var(--contentMaxWidth) + (2 * var(--contentPaddingInline))), 100%);
}
.u-wrap--1130 {
	--contentMaxWidth: 1130px;
	max-width: min(calc(var(--contentMaxWidth) + (2 * var(--contentPaddingInline))), 100%);
}
.u-wrap--1200 {
	--contentMaxWidth: 1200px;
	max-width: min(calc(var(--contentMaxWidth) + (2 * var(--contentPaddingInline))), 100%);
}

@media screen and (max-width: 768px) {
	.u-wrap {
		max-width: 100%;
		padding: 0 5.333vw;
		margin: 0 auto;
	}
	.u-wrap__small {
		max-width: 100%;
		padding: 0 5.333vw;
		margin: 0 auto;
	}
	.u-wrap__wide {
		max-width: 100%;
		padding: 0 5.333vw;
		margin: 0 auto;
	}
}

.c-btn {
	display: flex;
	border: solid 1px #d4dbe5;
	position: relative;
	width: 380px;
	height: 50px;
	font-family: var(--font-Roboto);
	color: #00798f;
	font-size: 13px;
	letter-spacing: 0.03em;
	align-items: center;
	text-align: center;
	justify-content: center;
	border-radius: 3px;
	transition: all 0.5s ease;
  transition-property: background-color, color, border-color;
	position: relative;
	z-index: 1;
}
.c-btn::after {
	content: "";
	display: block;
	background-image: url(../img/arrow-btn.svg);
	background-size: 100% 100%;
	width: 3.62548828125px;
	height: 8.281553268432617px;
	position: absolute;
	top: 50%;
	right: 20.37px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transition: all 0.5s ease;
}
.c-btn:hover{
	color:#fff;
	opacity: 1;
}
.c-btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.c-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #00798f;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
	z-index: -1;
}
.c-btn:hover::after{
	background-image: url(../img/arrow-btn-w.svg);
}


.c-btn__site {
	font-family: var(--font-Roboto);
	color: #00798f;
	font-size: 13px;
	letter-spacing: 0.03em;
	border-bottom: solid 1px #00798f;
	display: flex;
	align-items: center;
	padding-bottom: 9px;
	width: fit-content;
}
.c-btn__site::before {
	content: "";
	background-image: url(../img/arrow-btn.svg);
	background-size: 100% 100%;
	width: 3.63px;
	height: 8.28px;
	margin-right: 9.3px;
}
.c-btn__site::after {
	content: "";
	background-image: url(../img/icon-link.svg);
	background-size: 100% 100%;
	width: 8px;
	height: 8px;
	margin-left: 4px;
}

@media screen and (max-width: 768px) {
	.c-btn {
		display: flex;
		border: solid 1px #d4dbe5;
		position: relative;
		width: 100%;
		height: 13.333vw;
		max-width: 89.333vw;
		font-family: var(--font-Roboto);
		color: #00798f;
		font-size: 3.467vw;
		letter-spacing: 0.03em;
		align-items: center;
		text-align: center;
		justify-content: center;
		border-radius: 0.8vw;
		margin: 0 auto;
	}
	.c-btn::after {
		content: "";
		display: block;
		background-image: url(../img/arrow-btn.svg);
		background-size: 100% 100%;
		width: 0.967vw;
		height: 2.208vw;
		position: absolute;
		top: 50%;
		right: 2.765vw;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
	}
	.c-btn__site {
		font-family: var(--font-Roboto);
		color: #00798f;
		font-size: 3.467vw;
		letter-spacing: 0.06em;
		border-bottom: solid 1px #00798f;
		display: flex;
		align-items: center;
		padding-bottom: 2.4vw;
		width: fit-content;
	}
	.c-btn__site::before {
		content: "";
		background-image: url(../img/arrow-btn.svg);
		background-size: 100% 100%;
		width: 0.968vw;
		height: 2.208vw;
		margin-right: 2.48vw;
	}
	.c-btn__site::after {
		content: "";
		background-image: url(../img/icon-link.svg);
		background-size: 100% 100%;
		width: 2.133vw;
		height: 2.133vw;
		margin-left: 1.067vw;
	}
}

.c-ttl__en {
	font-family: var(--font-Cormorant);
	font-size: 70px;
	font-weight: 400;
	line-height: 1.5;
}
.c-ttl {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	margin-top: -3px;
	color: #65bbb1;
}
.c-ttl__under {
	font-family: var(--font-serif);
	font-size: 30px;
	font-weight: 500;
	line-height: 1.5;
}
.c-text {
	font-size: 16px;
	line-height: 2.6;
	letter-spacing: 0.06em;
}
.c-text__big {
	font-size: 18px;
	line-height: 2.6;
	letter-spacing: 0.18em;
}

@media screen and (max-width: 768px) {
	.c-ttl__en {
		font-family: var(--font-Cormorant);
		font-size: 12vw;
		font-weight: 400;
		line-height: 1.5;
	}
	.c-ttl {
		font-size: 3.467vw;
		font-weight: 400;
		line-height: 1.5;
		margin-top: -1.333vw;
		color: #65bbb1;
	}
	.c-ttl__under {
		font-family: var(--font-serif);
		font-size: 5.867vw;
		font-weight: 500;
		line-height: 1.5;
	}
	.c-text {
		font-size: 3.733vw;
		line-height: 2;
		letter-spacing: 0.04em;
	}
	.c-text__big {
		font-size: 3.733vw;
		line-height: 2;
		letter-spacing: 0.04em;
	}
}
.c-col__545 {
	width: 49.77%;
}
@media screen and (max-width: 768px) {
	.c-col__545 {
		width: 100%;
	}
}

/*---------_header---------*/

.l-header {
	position: fixed;
	top: 0;
	z-index: 10;
	width: 100%;
	background: transparent;
	transition:
		background-color 0.25s ease,
		box-shadow 0.25s ease,
		backdrop-filter 0.25s ease;
}
.l-hnav__area {
	justify-content: space-between;
	align-items: center;
	width: fit-content;
	padding: 26px 40px;
	width: 100%;
}

.l-hnav__logo {
	display: block;
	width: 182px;
}

.l-hnav__list {
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 50px;
}
.l-hnav__list-item {
	position: relative;
	z-index: 1;
}
.l-hnav__list-item-link {
	display: block;
	text-align: center;
}
.l-header::after {
	transition: 0.5s;
	pointer-events: none;
}
.l-hnav__list-item-link:hover ~ .l-header::after {
	content: "";
	display: block;
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	background-color: rgba(0, 0, 0, 0.15);
}
.l-hnav__list-item-en {
	font-family: var(--font-Cormorant);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.5;
	color: ##3c3c3c;
}
.l-hnav__list-item-jp {
	font-size: 10px;
	line-height: 1.5;
	margin-top: -1px;
	color: #3c3c3c;
}
.l-header__top .l-hnav__list-item-en,
.l-header__top .l-hnav__list-item-jp,
.l-header__aboutus .l-hnav__list-item-en,
.l-header__aboutus .l-hnav__list-item-jp,
.l-header__purpose .l-hnav__list-item-en,
.l-header__purpose .l-hnav__list-item-jp,
.l-header__company .l-hnav__list-item-en,
.l-header__company .l-hnav__list-item-jp,
.l-header__recruit .l-hnav__list-item-en,
.l-header__recruit .l-hnav__list-item-jp {
	color: #fff;
}
.l-hnav__list-item:last-child {
	border: none;
	padding-right: 0;
}
.l-hnav__list-item:last-child::after {
	display: none;
}
.l-hnav__list-bottom-wantedly {
	display: block;
	width: 38.1px;
}
#l-hnav__menu-btn-check {
	display: none;
}
.l-hnav__menu-btn {
	display: none;
}
/*メニュー*/
/* 1) 行を横並び（リンク＋ボタン） */
.l-hnav__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* 2) ＋ボタンの見た目 */
.l-hnav__acc-btn {
	display: none; /* PCは非表示 */
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	position: relative;
	flex: 0 0 44px;
}

/* ＋アイコン（線2本で作る） */
.l-hnav__acc-icon {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 16px;
	height: 16px;
}
.l-hnav__acc-icon::before,
.l-hnav__acc-icon::after {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 16px;
	height: 2px;
	background: #fff; /* 色は適宜 */
	transform: translateY(-50%);
}
.l-hnav__acc-icon::after {
	transform: translateY(-50%) rotate(90deg);
}
.l-hnav__list-item {
	position: relative; /* absoluteの基準 */
}
/* 共通：見た目 */
.l-hnav__sub-menu{
  background-color:rgba(255, 255, 255, 0.95);
  padding:20px;
  position:absolute;
  top:65px;
  left:0;
  width:400px;
  border-radius:3px;
  z-index:1000;
}

/* ===== PC：hover/focus で “ふわっ” ===== */
@media (hover:hover) and (pointer:fine) and (min-width: 769px){
  .l-hnav__sub-menu{
    display:block;               /* PCは display:none を使わない */
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform: translateY(8px);
    transition: opacity .3s ease-in, transform .3s ease-in, visibility .3s ease-in;
  }

  .l-hnav__list-item:hover > .l-hnav__sub-menu,
  .l-hnav__list-item:focus-within > .l-hnav__sub-menu{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform: translateY(0);
  }
}
/* recruitだけ右寄せ */
.l-hnav__sub-menu.l-hnav__sub-menu-right {
	left: auto;
	right: 0;
}

.l-hnav__sub-menu::before {
	content: "";
	width: 90px;
	position: absolute;
	left: 0;
	top: -50px; /* ← margin-top と同じ値 */
	height: 50px;
	z-index: -1;
}
.l-hnav__sub-menu.l-hnav__sub-menu-right::before {
	left: auto;
	right: 0;
}
.l-hnav__sub-menu-content {
	width: 100%;
	align-items: center;
	justify-content: space-between;
	border-bottom: solid 1px #3c3c3c;
	padding-bottom: 12px;
	margin-bottom: 19px;
}
.l-hnav__sub-menu-content-img {
	width: 100px;
	margin-right: 22px;
}
.l-hnav__sub-menu-content-flex {
	width: fit-content;
}
.l-hnav__sub-menu-content-en {
	font-family: var(--font-Cormorant);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.5;
}
.l-hnav__sub-menu-content-jp {
	font-size: 10px;
	line-height: 1.5;
	margin-top: -1px;
}
.l-hnav__sub-menu-content-arrow {
	width: 40px;
}
.l-hnav__sub-menu-content-textarea {
	margin: auto;
}
.l-hnav__sub-menu-list {
	gap: 14px 40px;
}
.l-hnav__sub-menu-item {
	width: calc((100% - 40px) / 2);
	border-bottom: solid 1px rgba(238, 238, 238, 0.9333);
	padding-bottom: 9px;
}
.l-hnav__sub-menu-link {
	font-size: 12px;
	line-height: 1.5;
	letter-spacing: 0.08em;
	display: flex;
	align-items: center;
	gap: 7.37px;
}
.l-hnav__sub-menu-link:before {
	content: "";
	background-image: url(../img/arrow-btn.svg);
	background-size: 100% 100%;
	width: 3.63px;
	height: 8.28px;
}
/* li全体にホバーしている間は表示（リンク→サブメニューへ移動しても消えない） */
.l-hnav__list-item:hover > .l-hnav__sub-menu {
	display: block;
}

/* キーボード操作でも開く */
.l-hnav__list-item:focus-within > .l-hnav__sub-menu {
	display: block;
}
.l-hnav__list-item-link.u-pc {
	display: block;
}
.l-hnav__list-item .c-btn.u-sp {
	display: none;
}

.logo-w {
	display: none;
}
.logo-b {
	display: block;
}
.l-header__top .logo-w {
	display: block;
}
.l-header__top .logo-b {
	display: none;
}
@media (min-width: 769px) {
	.l-header {
		position: fixed;
		top: 0;
		z-index: 10;
		width: 100%;
		background: transparent;
		transition:
			background-color 0.25s ease,
			box-shadow 0.25s ease,
			backdrop-filter 0.25s ease;
	}

	/* 暗幕（ヘッダーより下だけ） */
	.l-header-overlay {
		position: fixed;
		left: 0;
		right: 0;
		top: var(--header-h, 0px);
		height: calc(100vh - var(--header-h, 0px));
		background-color: rgba(0, 0, 0, 0.15);
		opacity: 0;
		pointer-events: none; /* hoverが途切れない */
		transition: opacity 0.2s ease;
		z-index: 9; /* ヘッダー(10)より下 */
	}

	/* ホバー中だけ表示 */
	.l-header.is-menu-hover + .l-header-overlay {
		opacity: 1;
	}

	.l-header.is-scrolled {
		background-color: rgba(255, 255, 255, 0.95);
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
	}
	.l-header.is-scrolled .l-hnav__list-item-en,
	.l-header.is-scrolled .l-hnav__list-item-jp {
		color: #3c3c3c;
	}
	.l-header.is-scrolled .logo-w {
		display: none;
	}
	.l-header.is-scrolled .logo-b {
		display: block;
	}
}
@media screen and (max-width: 850px){
	.l-hnav__list{
		gap:30px;
	}
}
@media screen and (max-width: 768px) {
	/*---------_header---------*/
	.l-header {
		position: relative;
		top: 0;
		z-index: 10;
		width: 100%;
	}

	.l-hnav__area {
		justify-content: space-between;
		align-items: center;
		width: fit-content;
		padding: 5.333vw;
		width: 100%;
		position: fixed;
		top:0;
	}
	.l-header.is-sp-scrolled .l-hnav__area{
		background-color:rgba(255, 255, 255, 0.95);
	}
	.l-hnav__logo {
		display: block;
		width: 34.667vw;
	}
	.logo-w {
		display: none;
	}
	.logo-b {
		display: block;
	}
	.l-header.is-sp-scrolled .logo-w{
		display: none;
	}
	.l-header.is-sp-scrolled .logo-b {
		display: block;
	}
	#l-hnav__menu-btn-check {
		display: none;
	}
	.l-hnav__menu-btn {
		display: flex;
	}
	/*メニュー*/

	.l-hnav__menu-btn {
		font-size: 1.5rem;
		position: fixed;
		top: 6.667vw;
		right: 5.333vw;
		width: fit-content;
		height: 3.467vw;
		z-index: 111;
		display: flex;
		padding: 1.333vw 0;
		align-items: center;
	}
	.l-hnav__menu-btn:hover {
		opacity: 1;
	}
	.l-hnav__menu-text {
		display: flex;
		align-items: center;
	}
	.l-hnav__menu-text::after {
		content: "Menu";
		font-family: var(--font-Cormorant);
		font-size: 3.467vw;
		font-weight: 500;
		line-height: 1;
		letter-spacing: 0.03em;
		margin-right: 2.133vw;
		color: #3c3c3c;
	}
	.l-header__top .l-hnav__menu-text::after {
		color: #fff;
	}

	.l-hnav__menu-btn .l-hnav__menu-border,
	.l-hnav__menu-btn .l-hnav__menu-border:before,
	.l-hnav__menu-btn .l-hnav__menu-border:after {
		content: "";
		display: block;
		height: 1px;
		width: 10.667vw;
		background-color: #3c3c3c;
		position: relative;
		transition: 0.5s;
		z-index: 15;
	}
	.l-header__top .l-hnav__menu-btn .l-hnav__menu-border,
	.l-header__top .l-hnav__menu-btn .l-hnav__menu-border:before,
	.l-header__top .l-hnav__menu-btn .l-hnav__menu-border:after {
		background-color: #fff;
	}
	.l-header__top.is-sp-scrolled .l-hnav__menu-text::after {
		color: #3c3c3c;
	}
	.l-header__top.is-sp-scrolled .l-hnav__menu-btn .l-hnav__menu-border,
	.l-header__top.is-sp-scrolled .l-hnav__menu-btn .l-hnav__menu-border:before,
	.l-header__top.is-sp-scrolled .l-hnav__menu-btn .l-hnav__menu-border:after {
		background-color: #3c3c3c;
	}
	.l-hnav__menu-btn .l-hnav__menu-border:before {
		top: -1.6vw;
	}

	.l-hnav__menu-btn .l-hnav__menu-border:after {
		top: 1.333vw;
	}
	#l-hnav__menu-btn-check:checked ~ .l-hnav__menu-btn {
		justify-content: center;
		padding: 0;
	}
	#l-hnav__menu-btn-check:checked ~ .l-hnav__menu-btn .l-hnav__menu-text::after {
		content: "Close";
		color: #fff;
	}
	#l-hnav__menu-btn-check:checked ~ .l-hnav__menu-btn .l-hnav__menu-border {
		bottom: 0px;
		transform: rotate(14deg);
		background-color: #fff;
	}
	#l-hnav__menu-btn-check:checked ~ .l-hnav__menu-btn .l-hnav__menu-border::before {
		opacity: 0;
	}

	#l-hnav__menu-btn-check:checked ~ .l-hnav__menu-btn .l-hnav__menu-border::after {
		top: -0.533vw;
		transform: rotate(-28deg);
		background-color: #fff;
	}
	#l-hnav__menu-btn-check {
		display: none;
	}
	#l-hnav__menu-btn-check:checked ~ .l-hnav {
		right: 0; /*メニューを画面内へ*/
		transition: 0.5s;
	}
	.l-hnav {
		position: fixed;
		top: 0;
		right: -800vw;
		width: 100%;
		height: 100vh;
		height: 100lvh;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		background: linear-gradient(to bottom right, #00798f 0%, #008ca3 60%);
		z-index: 1;
		overflow: scroll;
		padding: 22.133vw 0;
	}
	#l-hnav__menu-btn-check:checked ~ .l-hnav .l-hnav__logo-link {
		position: absolute;
		top: 5.333vw;
		left: 5.333vw;
		color: #fff;
		width: 34.667vw;
	}
	.h_nav.active {
		right: 60%;
	}
	.l-hnav__list {
		padding: 0;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 0;
	}
	.l-hnav__list-item {
		position: relative;
		z-index: 1;
		width: 100%;
		padding: 5.067vw 8vw;
		border-bottom: solid 1px #3795a4;
	}
	.l-hnav__list-item-link {
		display: flex;
		align-items: center;
		gap: 1.6vw;
		text-align: left;
	}
	.l-hnav__list-item-en {
		font-family: var(--font-Cormorant);
		font-size: 4.8vw;
		letter-spacing: 0.06em;
		font-weight: 600;
		line-height: 1.5;
		color: #fff;
	}
	.l-hnav__list-item-jp {
		font-size: 2.667vw;
		line-height: 1.5;
		margin-top: -0;
		color: #fff;
	}

	.l-hnav__list-item:last-child {
		border: none;
		padding: 0;
		margin-top: 13.867vw;
	}
	.l-hnav__list-item:last-child::after {
		display: none;
	}

	/* SPではhover表示を殺す（競合防止） */
	.l-hnav__list-item:hover > .l-hnav__sub-menu,
	.l-hnav__list-item:focus-within > .l-hnav__sub-menu {
		display: none;
	}
	.l-hnav__list-item.is-open > .l-hnav__sub-menu {
		display: block;
	}
	/* hidden属性を使うならSPだけで効かせる */
	.l-hnav__sub-menu[hidden] {
		display: none !important;
	}

	/* JSで付く is-open のときだけ開く */
	.l-hnav__list-item.is-open > .l-hnav__sub-menu {
		display: block;
	}
	.l-hnav__acc-btn {
		display: block;
	}

	.l-hnav__sub-menu {
		position: static;
		left: auto;
		top: auto;
		width: 100%;
		border-radius: 0;
		padding: 0;
		display: block; /* SPでは常にdisplay:blockにして高さで閉じる */
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
	}
	/* 開いてる状態 */
	.l-hnav__list-item.is-open > .l-hnav__sub-menu {
		max-height: 266.4vw; /* JSでscrollHeight入れるなら不要（後述JSで入れます） */
	}
	/* 開いてる時は「＋」を「−」に（縦線を消す） */
	.l-hnav__list-item.is-open .l-hnav__acc-icon::after {
		transform: translateY(-50%) rotate(0deg);
		opacity: 0;
	}
	.l-hnav__list-item.is-open .l-hnav__acc-icon::after {
		opacity: 0; /* 縦線を消す */
	}

	/*メニュー*/
	.l-hnav__sub-menu {
		background-color: unset;
		padding: 5.067vw 0 1.6vw;
		display: none;
		position: relative;
		top: 0;
		left: 0;
		width: 100%;
		border-radius: unset;
		z-index: -1;
	}
	.l-hnav__sub-menu.l-hnav__sub-menu-right {
		left: 0;
		right: 0;
	}
	.l-hnav__sub-menu::before {
		content: "";
		display: none;
		position: absolute;
		left: 0;
		right: 0;
		top: -13.333vw;
		height: 13.333vw;
		z-index: -1;
	}
	.l-hnav__sub-menu-content {
		display: none;
	}

	.l-hnav__sub-menu-list {
		gap: 3.733vw;
	}
	.l-hnav__sub-menu-item {
		width: 100%;
		border-bottom: unset;
		padding-bottom: 0;
	}
	.l-hnav__sub-menu-link {
		font-size: 3.2vw;
		line-height: 1.5;
		letter-spacing: 0.08em;
		display: flex;
		align-items: center;
		gap: 1.965vw;
		color: #fff;
	}
	.l-hnav__sub-menu-link:before {
		content: "";
		background-image: url(../img/arrow-btn-w.svg);
		background-size: 100% 100%;
		width: 0.968vw;
		height: 2.208vw;
	}
	.l-hnav__sub-menu {
		display: none;
	}
	/* クリックで開いた時だけ表示 */
	.l-hnav__list-item.is-open > .l-hnav__sub-menu {
		display: block;
	}

	/* SPでは hover 表示ロジックを無効化（競合防止） */
	.l-hnav__list-item:hover > .l-hnav__sub-menu,
	.l-hnav__list-item:focus-within > .l-hnav__sub-menu {
		display: none;
	}

	/* hidden属性で開閉するので display は触らない */
	.l-hnav__sub-menu[hidden] {
		display: none !important;
	}
	.l-hnav__sub-menu:not([hidden]) {
		display: block !important;
	}

	.l-hnav__row {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 3.2vw;
	}

	.l-hnav__acc-btn {
		width: 3.733vw;
		height: 3.733vw;
		border: 0;
		background: transparent;
		padding: 0;
		cursor: pointer;
		position: relative;
		flex: 0 0 3.733vw;
	}
	/* 横棒（−のベース） */
	.l-hnav__acc-btn::before {
		content: "";
		position: absolute;
		top: 50%;
		left: 50%;
		width: 3.733vw;
		height: 1px;
		background: #fff;
		transform: translate(-50%, -50%);
	}
	/* 縦棒（＋の縦） */
	.l-hnav__acc-btn::after {
		content: "";
		position: absolute;
		top: 50%;
		left: 50%;
		width: 3.733vw;
		height: 1px;
		background: #fff;
		transform: translate(-50%, -50%) rotate(90deg);
		transition: opacity 0.2s ease;
	}

	/* 開いたら縦棒を消して「−」に */
	.l-hnav__list-item.is-open .l-hnav__acc-btn::after {
		opacity: 0;
	}
	.l-hnav__list-item-link.u-pc {
		display: none;
	}
	.l-hnav__list-item .c-btn.u-sp {
		display: flex;
		gap: 2.133vw;
	}
	.l-hnav__list-item .c-btn.u-sp::before {
		content: "";
		background-image: url(../img/icon-mail.svg);
		background-size: 100% 100%;
		width: 4.267vw;
		height: 3.2vw;
	}
	.l-hnav__list-item .c-btn.u-sp::after{
		display: none;
	}
}

.l-footer {
	background: linear-gradient(to bottom right, #00798f 0%, #008ca3 60%);
	color: #fff;
	padding: 80px 123px 100px;
	position: relative;
}
.l-footer__wrap {
	justify-content: space-between;
	max-width: 1366px;
	margin: 0 auto;
}
.l-footer__contents {
}
.l-footer__logo {
	width: 260px;
	display: block;
}

.l-fnav {
	flex: 1;
	justify-content: flex-end;
	gap: 160px;
	margin-bottom: 40px;
}
.l-fnav__list {
}
.l-fnav__list-item {
	margin-bottom: 34px;
}
.l-fnav__list-item:last-child {
	margin-bottom: 0;
}
.l-fnav__list-item-link {
	font-family: var(--font-Cormorant);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.06em;
	color: #fff;
	margin-bottom: 5px;
	display: block;
}
.l-fnav__under-list {
	padding-left: 12px;
}
.l-fnav__under-list-item {
	margin-bottom: 10px;
}
.l-fnav__under-list-item:last-child {
	margin-bottom: 0;
}
.l-fnav__under-list-item-link {
	font-size: 13px;
	font-weight: 400;
	line-height: 20px;
	color: #fff;
	display: block;
}
.l-fnav__under-list-item-link::before {
	content: "-";
	letter-spacing: 0.5em;
}
.l-fnav__under-list-space01 {
	margin-bottom: 64px !important;
}
.l-fnav__under-list-space01 {
	margin-bottom: 44px !important;
}
.l-fnav__under-list-space02 {
	margin-bottom: 35px !important;
}

.l-footer__bottom {
	width: 100%;
	justify-content: space-between;
	align-items: flex-end;
}
.l-footer__copy {
	font-family: var(--font-Cormorant);
	font-size: 10px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.06em;
	color: #fff;
}
.l-footer__btn {
	width: 470px;
	height: 66px;
	display: block;
	border: solid 1px #fff;
	font-family: var(--font-Cormorant);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.06em;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 9px;
	transition: all 0.5s ease;
	position: relative;
	z-index: 0;
}
.l-footer__btn::before {
	content: "";
	background-image: url(../img/icon-mail.svg);
	background-size: 100% 100%;
	width: 18px;
	height: 13px;
	transition: all 0.5s ease;
}
.l-footer__btn:hover{
	color:#00798f;
	opacity: 1;
}
.l-footer__btn:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.l-footer__btn::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
	z-index: -1;
}
.l-footer__btn:hover::before{
	background-image: url(../img/icon-mail02.svg);
}
/* row：リンクと＋ボタンを横並び */
.l-fnav__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}
/* ボタン見た目（＋/−） */
.l-fnav__acc-btn {
	appearance: none;
	background: transparent;
	border: 0;
	padding: 0;
	width: 14px;
	height: 14px;
	position: relative;
	cursor: pointer;
}
/* ＋の線 */
.l-fnav__acc-btn::before,
.l-fnav__acc-btn::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 14px;
	height: 1px;
	background: #fff; /* 文字色に合わせる */
	transform: translate(-50%, -50%);
}
.l-fnav__acc-btn::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

/* 開いたら「−」に（縦線を消す） */
.l-fnav__list-item.is-open .l-fnav__acc-btn::after {
	opacity: 0;
}
@media screen and (max-width: 1100px) {
	.l-footer {
		padding: 80px 40px 100px;
	}
	.l-fnav{
		gap:60px;
	}
	.l-footer__btn{
		width: 34.407vw;
	}
}
@media screen and (max-width: 768px) {
	.l-footer {
		background: linear-gradient(to bottom right, #00798f 0%, #008ca3 60%);
		color: #fff;
		padding: 10.133vw 0 4.533vw;
		position: relative;
	}
	.l-footer__wrap {
		justify-content: space-between;
		max-width: 364.267vw;
		margin: 0 auto;
		display: block;
	}
	.l-footer__contents {
	}
	.l-footer__logo {
		display: block;
		width: 42.667vw;
		margin: 0 auto 10.933vw;
	}

	.l-fnav {
		flex: 1;
		justify-content: flex-end;
		gap: 0;
		margin-bottom: 9.333vw;
	}
	.l-fnav__list {
		width: 100%;
	}
	.l-fnav__list-item {
		width: 100%;
		padding: 5.333vw 8vw;
		border-bottom: solid 1px #3795a4;
		margin-bottom: 0;
	}
	.l-fnav__list-item:last-child {
		margin-bottom: 0;
		border-bottom: unset;
	}
	.l-fnav__list:first-child .l-fnav__list-item:last-child {
		border-bottom: solid 1px #3795a4;
	}
	.l-fnav__list-item-link {
		font-family: var(--font-Cormorant);
		font-size: 4.267vw;
		font-weight: 600;
		line-height: 1.5;
		letter-spacing: 0.06em;
		color: #fff;
		margin-bottom: 0;
		display: block;
	}
	.l-fnav__under-list {
		padding-left: 0;
	}
	.l-fnav__under-list-item {
		margin-bottom: 3.733vw;
	}
	.l-fnav__under-list-item:last-child {
		margin-bottom: 0;
	}
	.l-fnav__under-list-item-link {
		font-size: 3.2vw;
		font-weight: 400;
		line-height: 1.5;
		letter-spacing: 0.08em;
		color: #fff;
		display: flex;
		align-items: center;
		gap: 1.333vw;
	}
	.l-fnav__under-list-item-link::before {
		content: "";
		background-image: url(../img/arrow-btn-w.svg);
		background-size: 100% 100%;
		width: 0.968vw;
		height: 2.208vw;
		letter-spacing: 0.5em;
	}
	.l-fnav__under-list-space01 {
		margin-bottom: 0 !important;
	}
	.l-fnav__under-list-space02 {
		margin-bottom: 0 !important;
	}

	.l-footer__bottom {
		width: 100%;
		justify-content: space-between;
		align-items: center;
		flex-direction: column-reverse;
		padding: 0 5.333vw;
		gap: 14.933vw;
	}
	.l-footer__copy {
		font-family: var(--font-Cormorant);
		font-size: 2.667vw;
		font-weight: 600;
		line-height: 1.5;
		letter-spacing: 0.06em;
		color: #fff;
		text-align: center;
	}
	.l-footer__btn {
		width: 100%;
		height: 14.667vw;
		display: block;
		border: solid 1px #fff;
		font-family: var(--font-Cormorant);
		font-size: 4.267vw;
		font-weight: 600;
		line-height: 1.5;
		letter-spacing: 0.06em;
		color: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 2.133vw;
	}
	.l-footer__btn::before {
		content: "";
		background-image: url(../img/icon-mail.svg);
		background-size: 100% 100%;
		width: 4.267vw;
		height: 3.2vw;
	}

	.l-fnav__under-list {
		display: none;
		margin-top: 2.133vw; /* 必要なら */
	}

	.l-fnav__list-item.is-open > .l-fnav__under-list {
		display: block;
	}

	/* under-listが無い項目はボタンを表示しない（念のため） */
	.l-fnav__list-item:not(.has-under) .l-fnav__acc-btn {
		display: none;
	}
}
/* PC：常に表示（アコーディオン無効） */
@media (min-width: 769px) {
	.l-fnav__acc-btn {
		display: none;
	}
	.l-fnav__under-list {
		display: block;
	}
}
.p-under__fv {
	position: relative;
	margin-bottom: 17px;
}
.p-under__fv img {
	width: 61.49%;
	margin: 0 0 0 auto;
}
.p-under__fv-ttlarea {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	left: 13.616vw;
}
.p-under__fv-ttl-en {
	font-family: var(--font-Cormorant);
	font-size: 7.321vw;
	font-weight: 400;
	line-height: 1.5;
	background: linear-gradient(to right, #989898 0%, #aeaeae 37%, #c2c2c2 68%, #ffffff 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent; /* Safari/Chrome用 */
	color: transparent;
	padding-top: 1.025vw;
}
.p-news-archive .p-under__fv-ttl-en,
.p-recruit-value .p-under__fv-ttl-en {
	background: linear-gradient(to right, #989898 0%, #aeaeae 37%, #c2c2c2 68%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent; /* Safari/Chrome用 */
	color: transparent;
}
.p-under__fv-ttl {
	margin-top: -0.732vw;
	font-size: 1.025vw;
	line-height: 1.5;
}
.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	margin: 0 40px 80px auto;
	gap: 4px;
}
.breadcrumb-item {
	font-size: 11px;
	line-height: 150%;
	letter-spacing: 0.1em;
}
.breadcrumb-item-link {
	color: #00798f;
	display: flex;
	align-items: center;
	gap: 4px;
}
.breadcrumb-item-link:after {
	content: ">";
}

@media screen and (max-width: 768px) {
	.p-under__fv {
		position: relative;
		margin-bottom: 3.2vw;
	}
	.p-under__fv img {
		width: 100%;
		margin: 0;
		padding-top: 77.067vw;
	}
	.p-under__fv-ttlarea {
		position: absolute;
		top: 33.067vw;
		transform: unset;
		-webkit-transform: unset;
		-ms-transform: unset;
		left: 8vw;
	}
	.p-under__fv-ttl-en {
		font-family: var(--font-Cormorant);
		font-size: 12.8vw;
		font-weight: 400;
		line-height: 1.5;
		background: unset;
		-webkit-background-clip: unset;
		background-clip: unset;
		-webkit-text-fill-color: unset; /* Safari/Chrome用 */
		color: #989898;
		padding-top: 0;
	}
	.p-news-archive .p-under__fv-ttl-en,
	.p-value .p-under__fv-ttl-en {
		background: linear-gradient(to right, #989898 0%, #aeaeae 37%, #c2c2c2 68%);
		-webkit-background-clip: text;
		background-clip: text;
		-webkit-text-fill-color: transparent; /* Safari/Chrome用 */
		color: transparent;
	}
	.p-under__fv-ttl {
		margin-top: -1.067vw;
		font-size: 3.467vw;
		line-height: 1.5;
	}
	.breadcrumb {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: flex-end;
		margin: 0 5.333vw 12vw auto;
		gap: 1.067vw;
	}
	.breadcrumb-item {
		font-size: 2.667vw;
		line-height: 150%;
		letter-spacing: 0.1em;
	}
	.breadcrumb-item-link {
		color: #00798f;
		display: flex;
		align-items: center;
		gap: 1.067vw;
	}
	.breadcrumb-item-link:after {
		content: ">";
	}
	.p-privacy .breadcrumb {
		justify-content: flex-start;
		margin-bottom:;
	}
}

.l-pagetop {
	display: block;
	width: 21px;
	height: 115px;
	position: absolute;
	top: -145px;
	right: 30px;
}
@media screen and (max-width: 768px) {
	.l-pagetop {
		display: block;
		width: 13.6vw;
		height: 8.8vw;
		position: absolute;
		top: -13.333vw;
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		right: auto;
	}
}
/* 初期は最初から隠す（JSより先に効く） */
.scroll-fade-up{
  opacity: 0;
  transform: translateY(100px);
}

/* JSが動ける状態になったらtransitionを有効化（初期のチラつき防止） */
html.is-js-ready .scroll-fade-up{
  transition: opacity 800ms, transform 800ms;
}

/* 表示状態 */
.scroll-fade-up.is-show{
  opacity: 1;
  transform: translateY(0);
}

/* KVなど：ロードで出す（初期は隠す） */
.fade-in-onload{
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  filter: blur(14px);
  will-change: opacity, transform, filter;
  backface-visibility: hidden;
}

html.is-js-ready .fade-in-onload{
  transition:
    opacity 1400ms ease,
    transform 1600ms cubic-bezier(0.22, 0.61, 0.36, 1),
    filter 1600ms ease;
  transition-delay: 220ms;
}

.fade-in-onload.is-show{
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}
