.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

a {
	opacity: 1;
}

div {
	margin: 0;
}

img {
	display: block;
	max-width: 100%;
	height: 100%;
	object-fit: cover;
}

body {
	background: url(../img/cmn-bg.jpg);
	background-size: cover;
}

* {
	font-family: "Noto Serif", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-variation-settings: "wdth" 100;
	color: #000;
	letter-spacing: 0.2em;
}
/* ============================================
   Layout
============================================ */
.l-main {
	overflow: hidden;
}

.l-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
}
@media screen and (max-width: 1250px) {
	.l-inner {
		padding: 0 20px;
	}
}
.l-inner--mini {
	max-width: 1040px;
}

/* ============================================
   Header
============================================ */
.l-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 201;
}

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

.l-header__logo a {
	text-decoration: none;
	display: block;
	width: 220px;
	height: 72px;
	    margin-top: 8px;
	    margin-left: 8px;
}
@media screen and (max-width: 768px) {
	.l-header__logo a {
		        width: 120px;
        height: auto;
	}
}

.l-header__logo a img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.l-header__logo-text {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.05em;
}

.l-header__nav-list {
	display: flex;
	align-items: center;
	gap: 32px;
	list-style: none;
	padding: 0;
}

.l-header__nav-list a {
	font-size: 14px;
	text-decoration: none;
	color: #333;
	letter-spacing: 0.05em;
	transition: opacity 0.2s;
}

.l-header__nav-list a:hover {
	opacity: 0.5;
}

.l-header__hamburger {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 6px;
	width: 72px;
	height: 72px;
	background: #fff;
	border: none;
	cursor: pointer;
	padding: 0;
	flex-shrink: 0;
	border-bottom-left-radius: 10px;
}
@media screen and (max-width: 768px) {
	.l-header__hamburger {
		width: 48px;
		height: 48px;
	}
}

.l-header__hamburger span {
	display: block;
	width: 24px;
	height: 1px;
	background: #333;
	transition:
		transform 0.3s,
		opacity 0.3s;
}

/* ハンバーガー open 状態 → ✕ */
.l-header__hamburger.is-open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.l-header__hamburger.is-open span:nth-child(2) {
	opacity: 0;
}
.l-header__hamburger.is-open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   ドロワーメニュー
============================================ */
.l-drawer {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
max-width: 480px;
	height: 100vh;
	background: #fff;
	z-index: 200;
	transform: translateX(100%);
	transition: transform 0.3s ease;
	padding: 100px 40px 40px;
	overflow-y: auto;
}

.l-drawer.is-open {
	transform: translateX(0);
}

.l-drawer__nav-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.l-drawer__nav-list li {
	border-bottom: 1px solid #e0e0e0;
}

.l-drawer__nav-list a {
	display: block;
	padding: 18px 0;
	font-size: 15px;
	text-decoration: none;
	color: #333;
	letter-spacing: 0.05em;
	transition: opacity 0.2s;
}

.l-drawer__nav-list a:hover {
	opacity: 0.5;
}

.l-drawer__overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 199;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s;
}

.l-drawer__overlay.is-open {
	opacity: 1;
	pointer-events: auto;
}

/* ============================================
   Footer
============================================ */
.l-footer {
	padding: 60px 0 0 0 ;
}
@media screen and (max-width: 768px) {
	padding: 40px 0 0 0 ;
}
.l-footer__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	justify-content: space-between;
}
@media screen and (max-width: 768px) {
	.l-footer__inner {
		flex-direction: column;
		gap: 40px;
		padding: 0 20px;
	}
}

.l-footer__logo {
	width: 220px;
	height: 72px;
}
@media screen and (max-width: 768px) {
	.l-footer__logo {
		        width: 120px;
        height: auto;
	}
}
.l-footer__logo a{
	display: block;
	width: 100%;
	height: auto;
}
.l-footer__logo img {
	width: 100%;
	height: auto;
	display: block;
}
.l-footer__logo-text {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.05em;
}

.l-footer__nav-list {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	width: 420px;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	padding: 24px 0;
}
@media screen and (max-width: 768px) {
	.l-footer__nav-list {
		width: 100%;
		gap: 12px;
	}
}
.l-footer__nav-list li {
	width: 200px;
}
.l-footer__nav-list a {
	font-size: 16px;
	transition: opacity 0.2s;
}
@media screen and (max-width: 768px) {
	.l-footer__nav-list a {
		font-size: 14px;
	}
}
.l-footer__nav-list a:hover {
	opacity: 0.6;
}

.l-footer__copy {
	text-align: center;
	margin-top: 80px;
	background: #000;
	padding: 24px;
}
@media screen and (max-width: 768px) {
	.l-footer__copy {
		margin-top: 40px;
	}
}
.l-footer__copy small {
	text-align: center;
	font-size: 12px;
	color: #fff;
}
@media screen and (max-width: 768px) {
	.l-footer__copy small {
		font-size: 10px;
	}
}
/* ============================================
   共通パーツ
============================================ */

/* セクション見出し */
.c-section-head {
	text-align: center;
	margin-bottom: 48px;
	position: relative;
	padding-top: 24px;
}
@media screen and (max-width: 768px) {
	.c-section-head {
		margin-bottom: 24px;
		padding-top: 18px;
	}
}
.c-section-head--left {
	text-align: left;
}

.c-section-head__title {
	font-size: 32px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
	.c-section-head__title {
		font-size: 20px;
		line-height: 44px;
	}
}
.c-section-head__sub {
	font-size: 16px;
	letter-spacing: 0.2em;
	line-height: 1;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	margin: auto;
}
@media screen and (max-width: 768px) {
	.c-section-head__sub {
	}
}

/* ボタン */
.c-btn {
	display: inline-block;
	padding: 14px 40px;
	background: #333;
	text-decoration: none;
	font-size: 14px;
	letter-spacing: 0.1em;
	transition: opacity 0.2s;
	cursor: pointer;
	transition: all 0.3s;
}

.c-btn:hover {
	opacity: 0.7;
}

.c-btn--outline {
	background: transparent;
	border: 1px solid #fff;
	padding: 0;
	position: relative;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	line-height: 52px;
	text-align: center;
	background: #000;
}
.c-btn--outline:after {
	content: "→";
	display: block;
	font-size: 24px;
	line-height: 1;
	color: #fff;
	width: fit-content;
	height: fit-content;
	position: absolute;
	right: 0;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}

.c-btn--outline:hover {
	background: #333;
	color: #fff;
	opacity: 1;
}

/* もっと見るエリア */
.c-more {
	text-align: center;
	margin-top: 40px;
	position: relative;
}

/* ページヘッダー（共通） */
.page-header {
	padding: 60px 0;
	background: #f5f5f0;
	text-align: center;
}

.page-header__title {
	font-size: 40px;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1;
}

.page-header__sub {
	font-size: 14px;
	color: #666;
	margin-top: 8px;
}

/* ============================================
   フッター上共通リンク
============================================ */
.common_link-footer {
	margin-top: 120px;
}
@media screen and (max-width: 768px) {
	.common_link-footer {
		margin-top: 60px;
	}
}
.common_link-footer__list {
	display: flex;
    justify-content: center;
	list-style: none;
	padding: 0;
	flex-wrap: wrap;
	gap: 80px;
	margin: 0 auto 120px auto;
}
@media screen and (max-width: 1024px) {
	.common_link-footer__list {
		gap: 24px;
		margin-bottom: 40px;
	}
}

.common_link-footer__item {
	width:500px;
}
@media screen and (max-width: 1024px) {
	.common_link-footer__item {
	}
}

.common_link-footer__item--recruit {
	display: flex;
	justify-content: space-between;
	width: 100%;
	flex: unset;
	padding: 40px;
	background: url(../img/link-footer-bg.jpg) no-repeat center;
	background-size: cover;
}
@media screen and (max-width: 1024px) {
	.common_link-footer__item--recruit {
		padding: 40px 16px;
	}
}
@media screen and (max-width: 768px) {
	.common_link-footer__item--recruit {
		flex-direction: column;
		padding: 12px 16px;
        background-position: right;
	background: url(../img/link-footer-bg_sp.jpg) no-repeat center;
	background-size: cover;
	}
}
@media screen and (max-width: 480px) {
	.common_link-footer__item--recruit {
	background: url(../img/link-footer-bg_sp.jpg) no-repeat top;
	background-size: cover;
	}
}
.common_link-footer__item--recruit .common_link-footer__link {
	width: calc(50% - 40px);
}
@media screen and (max-width: 1024px) {
	.common_link-footer__item--recruit .common_link-footer__link {
		width: calc(50% - 20px);
	}
}
@media screen and (max-width: 768px) {
	.common_link-footer__item--recruit .common_link-footer__link {
		width: 100%;
		margin-bottom: 24px;
		padding-bottom: 100px;
	}
}
.common_link-footer__item--recruit .common_link-footer__ph {
	width: calc(50% - 40px);
}
@media screen and (max-width: 1024px) {
	.common_link-footer__item--recruit .common_link-footer__ph {
		width: calc(50% - 20px);
	}
}
@media screen and (max-width: 768px) {
	.common_link-footer__item--recruit .common_link-footer__ph {
		width: 100%;
	}
}
.common_link-footer__item--recruit .common_link-footer__ph img {
	border-radius: 20px;
}
.common_link-footer__link {
	text-decoration: none;
	transition: background 0.2s;
}

.common_link-footer__ttl {
	position: relative;
	margin-bottom: 8px;
}
@media screen and (max-width: 1024px) {
	.common_link-footer__ttl {
	}
}
.common_link-footer__en {
	font-size: 14px;
	line-height: 1;
	font-weight: 500;
	color: #fff;
	opacity: 0.6;
	width: max-content;
}
@media screen and (max-width: 1024px) {
	.common_link-footer__en {
		width: 100%;
	}
}
.common_link-footer__item.common_link-footer__item--recruit .common_link-footer__en {
	font-size: 100px;
}
@media screen and (max-width: 768px) {
	.common_link-footer__item.common_link-footer__item--recruit .common_link-footer__en {
	font-size: 32px;
	line-height: 1;
}
}
.common_link-footer__ja {
	font-size: 26px;
	line-height: 1;
	color: #fff;
	    margin-top: 16px;
}
@media screen and (max-width: 768px) {
	.common_link-footer__ja {
		font-size: 18px;
		width: 100%;
		display: block;
		margin-top: 8px;
	}
}
.common_link-footer__txt {
	margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
	.common_link-footer__txt {
	}
}
.common_link-footer__txt p{
	font-size: 32px;
	color: #fff;
	line-height: 1.7;
text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.9);
}
@media screen and (max-width: 768px) {
	.common_link-footer__txt p{
	font-size: 16px;
	line-height: 1.5;
}
}
.common_link-footer__btn {
	display: flex;
	/* justify-content: center; */
	align-items: center;
	gap: 40px;
}
@media screen and (max-width: 768px) {
	.common_link-footer__btn {
		/* justify-content: center; */
		align-items: center;
		gap: 24px;
		margin-bottom: 0px;
	}
}
.common_link-footer__btn span{
	color: #fff;
text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.9);
}
@media screen and (max-width: 768px) {
.common_link-footer__btn span{
border: solid 1px #fff;
    padding: 6px 24px;
    border-radius: 40px;
	background: rgba(0, 0, 0, 0.7);
	        font-size: 12px;
	}
}
.common_link-footer__btn__cir {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	border: 1px solid #fff;
	transition: all 0.6s;
	color: #fff;
	font-size: 12px;
}
@media screen and (max-width: 768px) {
	.common_link-footer__btn__cir {
		width: 40px;
		height: 40px;
		font-size: 20px;
	}
}

.common_link-footer__item--company,
.common_link-footer__item--contact {
	display: flex;
	align-items: center;
background: #000;
}
.common_link-footer__item--company a,
.common_link-footer__item--contact a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
padding: 28px 40px;
}
@media screen and (max-width: 1024px) {
	.common_link-footer__item--company a,
	.common_link-footer__item--contact a {
		padding: 24px 16px;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 16px;
	}
}
@media screen and (max-width: 1024px) {
	.common_link-footer__item--company a,
	.common_link-footer__item--contact a {
		padding: 16px;
		flex-direction: row;
	}
}
.common_link-footer__item--company .common_link-footer__ttl,
.common_link-footer__item--contact .common_link-footer__ttl {
	margin-bottom: 0;
    display: flex;
    flex-direction: column;
}
@media screen and (max-width: 1024px) {
	.common_link-footer__item--company .common_link-footer__ttl,
	.common_link-footer__item--contact .common_link-footer__ttl {
		width: 100%;
	}
}
.common_link-footer__item--company .common_link-footer__btn span,
.common_link-footer__item--contact .common_link-footer__btn span {
	display: none;
}

.common_link-footer__link:hover .common_link-footer__btn .common_link-footer__btn__cir {
	background: #3c3c3c;
	color: #fffdf5;
	transition: all 0.6s;
}
/* ============================================
   下層FV（共通）
============================================ */
.common_under-fv {
	width: 100%;
	margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
	.common_under-fv {
		margin-bottom: 80px;
	}
}

.common_under-fv__bg {
	height: 320px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
	.common_under-fv__bg {
		height: 240px;
	}
}
.common_under-fv__bg--empty {
	background-color: #f5f5f0;
}

.common_under-fv__bg .l-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.common_under-fv__en {
	font-size: 18px;
	letter-spacing: 0.2em;
	color: #fff;
	margin-bottom: 8px;
}

.common_under-fv__title {
	font-size: 44px;
	font-weight: 400;
	letter-spacing: 0.02em;
	line-height: 1;
	color: #fff;
}
@media screen and (max-width: 768px) {
	.common_under-fv__title {
		font-size: 28px;
	}
}

/* ============================================
   一覧ページページネーション（共通）
============================================ */
.archive_more {
	text-align: center;
	margin-top: 40px;
	margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
	.archive_more {
		margin-bottom: 40px;
	}
}
.nav-links {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
}
.nav-links .page-numbers {
	display: block;
	width: 16px;
	font-size: 14px;
	font-weight: 400;
	position: relative;
	padding-bottom: 5px;
	color: #9f9f9f;
}

.nav-links .page-numbers.current {
	border-bottom: 1px solid #3c3c3c;
	color: #3c3c3c;
	padding-bottom: 4px;
}
.nav-links .page-numbers.next {
	width: 12px;
	height: auto;
	aspect-ratio: 25/27;
	background: url(../img/cmn-next_icon.png);
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	padding: 0;
}
.nav-links .page-numbers.prev {
	width: 12px;
	height: auto;
	aspect-ratio: 25/27;
	background: url(../img/cmn-prev_icon.png);
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	padding: 0;
}
/* ============================================
   追従ナビ
============================================ */
/*
.l-fixed-nav {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 198;
  display: flex;
  flex-direction: column;
	gap:20px;
}
@media screen and (max-width: 768px) {
.l-fixed-nav {
        flex-direction: row;
        transform: unset;
        bottom: 4px;
        top: unset;
        width: 100%;
        justify-content: center;
	gap:12px;
}
}

.l-fixed-nav__item {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 26px;
  font-size: 18px;
	font-weight:bold;
  letter-spacing: 0.1em;
  text-decoration: none;
  background: #FFFDF5;
  transition: opacity 0.2s;
	border-radius:20px 0 0 20px;
border:solid 1px #17645E;
}
@media screen and (max-width: 768px) {
.l-fixed-nav__item {
	    writing-mode: unset;
	height: max-content;
	padding: 12px 24px;
    font-size: 16px;
	border-radius:0;
	}
.l-fixed-nav__item:nth-of-type(1){
}
}
.l-fixed-nav__item:hover {
  opacity: 0.7;
}
*/

/* ============================================
   テキストアニメーション（汎用）
============================================ */
@keyframes animLeft {
	from {
		opacity: 0;
		transform: translateX(-40px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.u-anim-left {
	opacity: 0;
}

.u-anim-left.is-animated {
	animation: animLeft 1s ease forwards;
}