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:#3C3C3C;
	letter-spacing:0.02em;
}
/* ============================================
   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;
  color: #333;
  display: block;
  width: 100px;
  height: 100px;
}
@media screen and (max-width: 768px) {
	.l-header__logo a {
  width: 64px;
  height: 64px;
}
}

.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: 64px;
		height: 64px;
	}
}

.l-header__hamburger span {
  display: block;
  width: 32px;
  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: 300px;
  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 {
  background: #333;
  color: #fff;
  padding: 60px 0 32px;
}

.l-footer__inner {
  max-width: 1020px;
  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:120px;
	height:120px;
}
@media screen and (max-width: 768px) {
	.l-footer__logo{
	width:64px;
	height:64px;
}
}

.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:380px;
	border-top:1px solid #fff;
	border-bottom:1px solid #fff;
	padding:24px 0;
}
@media screen and (max-width: 768px) {
.l-footer__nav-list {
	width:100%;
	gap:12px;
}
	
}
.l-footer__nav-list li{
	width:180px;
}
.l-footer__nav-list a {
  font-size:16px;
  color: #fff;
  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;
	margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
	.l-footer__copy {
	margin-top:40px;
	margin-bottom: 64px;
}
}
.l-footer__copy small{
	color:#fff;
	text-align:center;
  font-size: 12px;
	
}
/* ============================================
   共通パーツ
============================================ */

/* セクション見出し */
.c-section-head {
  text-align: center;
  margin-bottom: 48px;
	position:relative;
}
@media screen and (max-width: 768px) {
	.c-section-head {
		margin-bottom: 32px;
	}
}
.c-section-head:after{
	content:"";
	display:block;
	width:80px;
	height:2px;
	background:#17645E;
	position:absolute;
	left:0;
	right:0;
	bottom:0;
	margin:auto;
	border-radius:2px;
}
.c-section-head--left {
  text-align: left;
}

.c-section-head__title {
  font-size: 32px;
	line-height:80px;
  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: 82px;
	line-height:1;
  color: #17645E;
	opacity:0.1;
	position:absolute;
	left:0;
	right:0;
	top:0;
	margin:auto;
}
@media screen and (max-width: 768px) {
	.c-section-head__sub {
		font-size: 44px;
	}
}

/* ボタン */
.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 #333;
	border-radius:40px;
	padding:20px 24px;
	position:relative;
	width:240px;
	line-height:1;
	text-align: left;
}
.c-btn--outline:after{
	content:"→";
	display:block;
	font-size:24px;
	line-height:1;
	width:fit-content;
	height:fit-content;
	position:absolute;
	right:20px;
	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 {
  background: url(../img/link-footer-bg.jpg);
	background-size:cover;
	background-position:center;
  padding: 80px 0 120px 0;
	margin-top:120px;
}
@media screen and (max-width: 768px) {
	.common_link-footer {
  padding: 40px 0 60px 0;
	margin-top:60px;
}
}
.common_link-footer__list {
  display: flex;
  list-style: none;
  padding: 0;
	flex-wrap:wrap;
	    max-width: 1080px;
	gap:80px;
margin: 0 auto;
}
@media screen and (max-width: 1024px) {
.common_link-footer__list {
	gap:24px;
	}
}

.common_link-footer__item {
	width:calc(50% - 40px);
border-radius: 20px;
background: #FFFDF5;
}
@media screen and (max-width: 1024px) {
	.common_link-footer__item {
		width:calc(50% - 12px);
	}
}

.common_link-footer__item--recruit{
	display:flex;
justify-content:space-between;
	    width: 100%;
    flex: unset;
	padding:40px;
}
@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: 24px 16px 16px 16px;
    }
}
.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;
}

}
.common_link-footer__item--recruit .common_link-footer__ph{
	width:calc(50% - 40px);
        height: auto;
}
@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;
	height:auto;
	width:100%;
}
.common_link-footer__link {
  text-decoration: none;
  transition: background 0.2s;
}

.common_link-footer__ttl{
	position:relative;
	margin-bottom:40px;	
}
@media screen and (max-width: 1024px) {
	.common_link-footer__ttl{
	margin-bottom:24px;	
}
}
.common_link-footer__cn {
  font-size: 64px;
	line-height: 1;
  font-weight: 500;
	color:#17645E;
	opacity:0.1;
	position:absolute;
	left:0;
	top:0;
	bottom:0;
	margin:auto;
	width: max-content;
}
@media screen and (max-width: 1024px) {
.common_link-footer__cn {
	width:100%;
	text-align:center;
	}
}
@media screen and (max-width: 768px) {
	.common_link-footer__cn {
		font-size: 32px;
	}
}
.common_link-footer__ja {
  font-size: 36px;
	line-height:64px;
}
@media screen and (max-width: 768px) {
	.common_link-footer__ja {
  font-size: 20px;
	line-height:32px;
		text-align:center;
        width: 100%;
        display: block;
}
}
.common_link-footer__txt{
	font-size:16px;
	line-height:1.7;
	margin-bottom:40px;
}
@media screen and (max-width: 768px) {
	.common_link-footer__txt{
	margin-bottom:12px;
}
}
.common_link-footer__btn{
    display: flex;
    justify-content: flex-end;
    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__cir{
	width:64px;
	height:64px;
	border-radius:50%;
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:32px;
	border:1px solid #3C3C3C;
	transition:all 0.6s;
}
@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;
}
.common_link-footer__item--company a,
.common_link-footer__item--contact a{
	display:flex;
    align-items: center;
	justify-content:space-between;
	width: 100%;
	padding:62px 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;
}
}
@media screen and (max-width: 768px) {
	.common_link-footer__item--company a,
.common_link-footer__item--contact a{
	padding:16px 8px;
}
}
.common_link-footer__item--company .common_link-footer__ttl,
.common_link-footer__item--contact .common_link-footer__ttl{
	margin-bottom:0;
}
@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%;
		text-align:center;
	}
}

.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;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
padding-top: 60px;
}
@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 {
	margin:0;
	padding:0;
	padding-left: 11.11vw;
}
@media screen and (max-width: 768px) {
	.common_under-fv__bg .l-inner {
	padding-left: 20px;
}
}

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

/* ============================================
   一覧ページページネーション（共通）
============================================ */
.archive_more{
	    text-align: center;
    margin-top: 40px;
    margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
	.archive_more{
    margin-bottom: 80px;
}
}
.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;
}

/* ===== エントリーフォーム共通 ===== */
.entry-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 920px;
  margin: auto;
}

.entry-form__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.entry-form__input {
  width: calc(100% - 240px);
}

.entry-form__input span input:not([type="radio"]):not([type="checkbox"]),
.entry-form__input span textarea {
  width: 100%;
  display: block;
  padding: 14px 18px;
  background: #F4F4F4;
  border-radius: 10px;
}

.entry-form__input .wpcf7-radio {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 10px 0;
}

.entry-form__input .wpcf7-list-item {
  display: inline-flex;
  align-items: center;
  margin: 0;
}

.entry-form__input .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  cursor: pointer;
}

.entry-form__input input[type="radio"] {
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
  accent-color: #A22012;
}

.entry-form__label p {
  line-height: 1.5;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  width: 200px;
  align-items: center;
}

.entry-form__label span {
  line-height: 14px;
  font-size: 10px;
  background-color: #A22012;
  letter-spacing: .1em;
  color: #fff;
  font-weight: 700;
  display: flex;
  padding: 4px 10px;
  border-radius: 5px;
  justify-content: space-between;
}

span.tag.tag--optional {
  background: #ccc;
}

.entry-form__input.has-note {
  display: flex;
  align-items: center;
  gap: 20px;
}

span.note {
  font-size: 12px;
}

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

.entry-form__consent p {
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
	.entry-form__consent p {
	font-size: 14px;
}
}

.entry-form__consent span.wpcf7-list-item {
  margin: auto;
}

.entry-form__consent a {
  text-decoration: underline;
}

.entry-form__submit {
  position: relative;
  text-align: center;
  max-width: 318px;
  margin-left: auto;
  margin-right: auto;
}

.entry-form__submit input.wpcf7-submit {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  max-width: 318px;
  height: 70px;
  background: #A22012;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.2em;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: opacity 0.3s;
  padding: 0 60px;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 768px) {
	.entry-form__submit input.wpcf7-submit {
		height: 52px;
}
}

.entry-form__submit input.wpcf7-submit:hover {
  opacity: 0.8;
}

.entry-form__submit::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  pointer-events: none;
  z-index: 2;
  background-image: url(../img/lp202603/arrows.webp);
  background-size: contain;
}

@media screen and (max-width: 768px) {
  .entry-form__row {
    flex-direction: column;
    align-items: stretch;
  }
  .entry-form__label p {
    width: 100%;
    margin-bottom: 8px;
  }
  .entry-form__input {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .entry-form__submit::after,
  .entry-form__submit::before {
    right: 25px;
  }
}


.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;
}

.show-640{
	display:none;
}
@media screen and (max-width: 640px) {
	.show-640{
	display:block;
}
	.hide-640{
	display:none;
}
}