@font-face {
    font-family: 'Quentin';
    src: url('../fonts/Quentin.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

a {
  opacity: 1;
}

div {
  margin: 0;
}

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

body{
}

*{
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-style: normal;
	color:#2A2A2A;
	letter-spacing:0.02em;
}
/* ============================================
   Layout
============================================ */
.l-main {
  overflow: hidden;
}

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

/* ============================================
   Header
============================================ */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 201;
  background: #fff;
  box-shadow: 0 1px 8px rgba(0,0,0,0.08);
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 24px;
}

.l-header__logo a {
  text-decoration: none;
  color: #333;
  display: block;
  width: 300px;
  height: auto;
}
@media screen and (max-width: 768px) {
	.l-header__logo a {
  width: 180px;
}
}

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

/* PC ナビ */
.l-header__nav {
  display: flex;
  align-items: center;
}

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

.l-header__nav-list a {
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 24px 0;
}

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

.l-header__nav-en {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #22428D;
  position: relative;
  padding-bottom: 8px;
    margin-bottom: 8px;
}
.l-header__nav-en::after{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #136AAB;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}


.l-header__nav-ja {
  font-size: 10px;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #888;
}

.l-header__nav-list li:last-child a {
  background: #22428D;
  padding: 24px 20px;
  gap: 8px;
}

.l-header__nav-list li:last-child .l-header__nav-en {
  color: #fff;
  padding-bottom: 0;
  margin-bottom: 0;
}

.l-header__nav-list li:last-child .l-header__nav-en::after {
  display: none;
}

.l-header__nav-list li:last-child .l-header__nav-ja {
  color: rgba(255, 255, 255, 0.7);
}

/* 1024px 以下：PC ナビを隠す */
@media screen and (max-width: 1024px) {
  .l-header__nav {
    display: none;
  }
}

.l-header__hamburger {
  display: none; /* デフォルト非表示 */
  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;
}

/* 1024px 以下：ハンバーガーを表示 */
@media screen and (max-width: 1024px) {
  .l-header__hamburger {
    display: flex;
  }
}

@media screen and (max-width: 1024px) {
	.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: #D9E2EB;
  padding: 58px 32px;
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding: 40px 20px;
  }
}

.l-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .l-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding: 24px 0;
  }
}

.l-footer__logo-wrap {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.l-footer__logo {
  width: 280px;
}

.l-footer__license {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.l-footer__license-pdf a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.l-footer__license-pdf img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.l-footer__license li ,
.l-footer__license li a{
font-size: 14px;
font-style: normal;
font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .l-footer__license li ,
  .l-footer__license li a {
    font-size: 12px;
}
}
@media screen and (max-width: 768px) {
  .l-footer__logo {
    width: 200px;
  }
}

.l-footer__logo a {
  display: block;
  width: 100%;
}

.l-footer__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.l-footer__nav{
    margin-left: auto;
    width: 560px;
}
@media screen and (max-width: 1024px) {
  .l-footer__nav {
    width: 100%;
  }
}
.l-footer__nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .l-footer__nav-list {
    gap: 16px;
  }
}

.l-footer__nav-list a {
  text-decoration: none;
  color: #333;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

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

.l-footer__nav-ja {
  letter-spacing: 0.04em;
  line-height: 1;
font-size: 16px;
font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .l-footer__nav-ja {
    font-size: 12px;
  }
}

.l-footer__copy {
  text-align: center;
  margin-top: 24px;
  padding-bottom: 16px;
}

.l-footer__copy small {
  color: #999;
  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: 1024px) {
	.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: 1024px) {
	.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 {
    padding: 160px 0;
    margin-top: 0;
}
@media screen and (max-width: 1024px) {
    .common_link-footer {
        padding: 80px 0;
    }
}

.common_link-footer__list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
@media screen and (max-width: 640px) {
    .common_link-footer__list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.common_link-footer__link {
    display: flex;
    align-items: center;
    position: relative;
    gap: 32px;
    padding: 36px 40px;
    text-decoration: none;
    border-radius: 18px;
    transition: opacity 0.2s;
    height: 100%;
    min-height: 160px;
}
@media screen and (max-width: 1024px) {
    .common_link-footer__link {
        padding: 18px 24px;
        gap: 24px;
        min-height: 120px;
    }

}

.common_link-footer__arrow {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.2s ease;
}
@media screen and (max-width: 1024px) {
    .common_link-footer__arrow {
        right: 16px;
        width: 36px;
        height: 42px;
    }
}
.common_link-footer__link:hover .common_link-footer__arrow {
    transform: translateY(-50%) translateX(6px);
}
@media screen and (max-width: 768px) {
    .common_link-footer__link {
        padding: 28px 24px;
        gap: 20px;
        min-height: 120px;
    }
}
@media screen and (max-width: 768px) {
    .common_link-footer__link {
        padding: 20px;
        min-height: 96px;
    }
}

.common_link-footer__link:hover {
    opacity: 0.85;
}

.common_link-footer__item--navy .common_link-footer__link {
    background: #22428D;
}

.common_link-footer__item--blue .common_link-footer__link {
    background: #136AAB;
}

.common_link-footer__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width: 1024px) {
    .common_link-footer__icon {
        width: 36px;
        height: 36px;
    }
}
@media screen and (max-width: 768px) {
    .common_link-footer__icon {
        width: 36px;
        height: 36px;
    }
    .common_link-footer__icon svg {
        width: 36px;
        height: 36px;
    }
}

.common_link-footer__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.common_link-footer__ja {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
    letter-spacing: 0.02em;
}
@media screen and (max-width: 1024px) {
    .common_link-footer__ja {
        font-size: 22px;
    }
}
@media screen and (max-width: 1024px) {
    .common_link-footer__ja {
        font-size: 18px;
    }
}

.common_link-footer__en {
    font-family: 'HvDTrial Brandon Grotesque', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
    line-height: 1;
}
@media screen and (max-width: 1024px) {
    .common_link-footer__en {
        font-size: 13px;
    }
}
/* ============================================
   下層FV（共通）
============================================ */
.common_under-fv {
  width: 100%;
  margin-top: 100px;
	margin-bottom:80px;
}
@media screen and (max-width: 768px) {
	.common_under-fv {
  margin-top: 60px;
	margin-bottom:32px;
}
}

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

.common_under-fv__bg .l-inner {
width: 100%;
}
@media screen and (max-width: 768px) {
	.common_under-fv__bg .l-inner {
	padding-left: 20px;
}
}

.common_under-fv__title {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.common_under-fv__title-en {
  font-family: 'HvDTrial Brandon Grotesque', sans-serif;
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #22428D;
}
@media screen and (max-width: 1024px) {
  .common_under-fv__title-en {
    font-size: 36px;
  }
}
@media screen and (max-width: 768px) {
  .common_under-fv__title-en {
    font-size: 24px;
  }
}

.common_under-fv__title-ja {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .common_under-fv__title-ja {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .common_under-fv__title-ja {
    font-size: 20px;
  }
}

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

.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: #136AAB;
}

.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: #136AAB;
  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: 1024px) {
	.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: #136AAB;
  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;
}
}