@charset "UTF-8";

/* main.css */

/* ===========================
   全体
=========================== */

body {
  font-family: "Noto Serif JP";
  font-size: 16px;
  background: #FFF;
  color: #333;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

/* レイアウトのベース */
.l-main {
  min-height: 100vh;
  margin-top: 0;
}

/* 横幅の共通ラッパー（inner） */
.l-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

/* ===========================
   共通
=========================== */

/* 共通ボタン */
.c-more-link {
  width: 173px;
  display: inline-flex;
  align-items: center;
  line-height: 1.2;
  text-decoration: none;
  gap: 29px;
  border: #D7DBE0 solid 1px;
  border-radius: 99px;
  padding: 16px 24px;
}

.c-more-link__icon img {
  width: 14px;
  height: auto;
  display: block;
}

/* @media (min-width: 769px) {
  .c-more-link {
    margin-top: auto;
  }
} */

@media (max-width: 768px) {
  .c-more-link {
    width: 200px;
    margin: 0 auto;
    gap: 56px;
  }
}

/* カード型リンク（共通コンポーネント） */
.c-card-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  width: auto;
  max-width: 400px;
  margin-left: auto;

  min-height: 77px;
  padding: 0 24.2px;
  box-sizing: border-box;

  background-color: #fff;
  border-radius: 6px;

  font-size: 20px;
  line-height: 1.5;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
}

.c-card-link:hover{
  background-color: #E9EFF2;
}

/* 左の青い帯も角丸を揃える */
.c-card-link::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 6px;
  border-radius: 6px 0 0 6px;
  background: #243590;
}

@media (max-width: 768px) {
  .c-card-link {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0;
    min-height: 64px;
    padding: 0 20px;
    font-size: 16px;
    box-sizing: border-box;

    border-radius: 6px;  /* ← 念のため指定 */
  }

  .c-card-link::before {
    border-radius: 6px 0 0 6px; /* ← ここも揃える */
  }
}

/* SPでは改行を無効にする */
@media (max-width: 768px) {
  br.is-pc-only {
    display: none;
  }
}

/* TOP見出し */
.section-title {
  font-weight: normal;
}

.section-title__label-en {
  display: block;
  font-size: 86px;
  font-family: "EB Garamond";
  color: #243590;
  line-height: 1;
  letter-spacing: 0.02em;
}

.section-title__label-ja {
  display: block;
  font-size: 20px;
  line-height: 1.5;
  margin-top: 5px;
}

@media (max-width: 768px) {

  .section-title__label-en {
    font-size: 68px;
  }

  .section-title__label-ja {
    display: block;
    font-size: 16px;
    /* line-height: 3.7; */
    margin-top: 4px;
  }
}

@media (max-width: 390px) {

  .section-title__label-en {
    font-size: 68px;
    line-height: 1.02;
    letter-spacing: 0.02em;
  }

  .section-title__label-ja {
    font-size: 14px;
  }
}

/* 下層ページ共通部分 */
/* 見出し */
.page-head__title-en {
  font-size: 96px;
  font-family: "EB Garamond";
  line-height: 0.89;
  letter-spacing: 0.02em;
  color: #243590;
  font-weight: normal;
  margin: 216px 0 0 160px;
}

.page-head__title-ja {
  margin: 23px 0 0 160px;
  font-size: 24px;
  line-height: 1.25;
}

@media (max-width: 768px) {

  .page-head {
    padding-top: 132px;
  }

  .page-head__title-en {
    font-size: 68px;
    font-family: "EB Garamond";
    line-height: 1;
    margin: 0 20px;
  }

  .page-head__title-ja {
    margin: 5px 20px 0;
  }

}

/* パンくず */
.breadcrumb {
  text-align: right;
  font-size: 13px;
  font-family: "Noto Sans JP";
  margin: 45px 160px 26px 0;
}

.breadcrumb-separator {
  margin: 0 13px;
}

.breadcrumb-current {
  color: #707070;
}

@media (max-width: 768px) {

  .breadcrumb {
    font-size: 12px;
    line-height: 1.83;
    margin: 60px 20px 32px;
  }

}

/* KV */
.page-kv__media img{
  width: 100%;
  height: clamp(240px, 34vw, 520px);
  object-fit: cover;
  display: block;
}

@media (max-width: 767px) {

  .page-stores .kv {
    padding: 40px 0 18px;
  }
  .page-stores .kv__title {
    font-size: 28px;
  }

}

/* 導入 */
.page-intro__inner {
  display: flex;
  gap: 108px;
  align-items: flex-end;
  margin: 105px auto 138px;
}

.page-intro__content {
  display: block;
  width: 50%;
  margin-left: 160px;
}

.page-intro__title {
  font-size: 36px;
  font-weight: normal;
  line-height: 1.66;
  margin-bottom: 50px;
}

.page-intro__text {
  line-height: 2;
  font-family: "Noto Sans JP";
}

.page-intro__image {
  width: 50%;
  margin-right: 160px;
}

.page-intro__image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {

  .page-intro__inner {
      display: block;
      margin: 55px 20px 86px;
      width: auto;
    }

  .page-intro__content {
    width: 100%;
    margin-left: 0;
  }

  .page-intro__title {
    font-size: 24px;
    line-height: 1.66;
    margin-bottom: 33px;
  }

  .page-intro__text {
    font-size: 14px;
    line-height: 1.8;
  }

  .page-intro__image {
    width: 100%;
    margin: 54px 0 0;
  }

  .page-intro__image img {
    width: 100%;
    height: auto;
    display: block;
  }

}

/* ===========================
   Header
=========================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* ロゴ */
.header__logo {
  position: relative;
  z-index: 104;
}

.header__logo img {
  width: 220px;
  padding: 16px 0;
  /* margin-left: 40px; */
}

@media (max-width: 768px) {
  .header__logo img {
    width: 160px;
    /* margin-left: 16px; */
  }

  body.is-menu-open .header__inner .header__logo {
    display: none;
  }
}

/* グローバルメニュー */
.header__inner {
  position: absolute;
  top: 0;
  left: 0;
  /* transform: translateX(-50%); 中央配置 */
  margin: 0 auto; /* 中央寄せ */
  width: 100%;
  max-width: 1440px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 16px;
  z-index: 102;
  backdrop-filter: blur(6px);
}

.home .header__inner{
backdrop-filter: none;
}

.home .-fixed .header__inner{
backdrop-filter: blur(6px);
}

@media (min-width: 769px) {
  .header__inner{
    padding:0 40px;
  }
}

.global-nav {
  margin-top: 0;
  margin-right: 0;
  display: block;
}

@media (min-width: 769px) {
  .global-nav {
    display: block;
    position: relative;
    z-index: 103;
    margin-top: 0;
    pointer-events: none;
  }

  .global-nav__link {
    pointer-events: auto;
  }
}

@media (max-width: 768px) {
  .global-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(0deg, #c1dcf2fa 0%, #1e4983);
    padding: 0;
    z-index: 998;
    overflow-y: auto;
    margin-top: 0;
    margin-right: 0;
  }

  .global-nav.is-open {
    display: block;
  }

  .global-nav__header {
    display: flex;
  }
}

@media (min-width: 769px) {
  .global-nav__header {
    display: none;
  }

  .global-nav__brand {
    display: none;
  }

  .global-nav__inner {
    display: block;
    margin: 0 auto;
    padding: 36px 40px 0 0;
  }
}

.global-nav__list {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 769px) {
  .global-nav__list {
    justify-content: flex-end;
  }
}

.global-nav__item {
  font-size: 15px;
  line-height: 1.2;
  font-family: "Noto Sans JP";
}

@media (min-width: 769px) {
  .global-nav__link {
    display: inline;
    padding: 0;
  }

  .global-nav__text {
    display: inline;
  }

  .global-nav__label-en,
  .global-nav__arrow {
    display: none;
  }
}

.global-nav__item:last-child {
  margin-top: -12px;
  background-color: rgb(255 255 255 / 0.2);
  border: #FFFFFF solid 1px;
  border-radius: 4px;
  padding: 11px 16px;
}

.global-nav__item:last-child {
  border: #D7DBE0 solid 1px;
  border-radius: 4px;
  padding: 11px 16px;
  color: #243590;
}

/* ハンバーガーボタン（閉じてる時の見た目） */
.global-nav__toggle {
  display: none;
}

@media (max-width: 768px) {
  .global-nav__toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    border: #FFFFFF solid 1px;
    border-radius: 4px;
    background-color: rgb(255 255 255 / 0.2);
    padding: 13px 8px 5px;
    margin-right: -2px;
    margin-top: 14px;
    position: relative;
    z-index: 999;
    transition: all 0.3s ease;
  }

  .global-nav__icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 30px;
    height: 7px;
    position: relative;
  }

  .global-nav__bar {
    display: block;
    width: 30px;
    height: 1px;
    background-color: #243590;
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
  }

  .global-nav__bar:first-child {
    top: 0;
  }

  .global-nav__bar:last-child {
    bottom: 0;
  }

  /* メニューが開いている時 */
  .global-nav__toggle.is-active {
    background-color: #FFFFFF;
  }

  .global-nav__toggle.is-active .global-nav__bar {
    top: 50%;
    bottom: auto;
  }

  .global-nav__toggle.is-active .global-nav__bar:first-child {
    transform: translateY(-50%) rotate(15deg);
  }

  .global-nav__toggle.is-active .global-nav__bar:last-child {
    transform: translateY(-50%) rotate(-15deg);
  }

  .global-nav__label {
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #243590;
  }

}

/* ナビ本体の初期非表示状態 */
@media (max-width: 768px) {
  .global-nav__inner {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 0 16px 27px;
  }

  .global-nav__header {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 14px 0 20px;
    width: 100%;
  }

  .global-nav__header .header__logo {
    margin-left: 0;
    display: none;
  }

  .global-nav__toggle--close {
    margin: 0;
  }

  .global-nav__list {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
  }

  .global-nav__item {
    color: #FFFFFF;
    font-size: 16px;
    border-bottom: 1px solid #D7DBE0;
  }

  .global-nav__item:last-child {
    margin-top: 0;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #D7DBE0;
    padding: 0;
  }

  .global-nav__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0 13px;
    color: #FFFFFF;
    text-decoration: none;
  }

  .global-nav__text {
    display: flex;
    align-items: baseline;
    gap: 11px;
  }

  .global-nav__label-ja {
    font-size: 16px;
    line-height: 1.4;
  }

  .global-nav__label-en {
    font-size: 14px;
    font-weight: 300;
    font-family: "EB Garamond";
    opacity: 0.9;
    line-height: 1.4;
  }

  .global-nav__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
  }

  .global-nav__arrow img {
    width: 10px;
    height: 10px;
  }

  .global-nav__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 54px;
  }

  .global-nav__brand-logo {
    padding-bottom: 30px;
  }

  .global-nav__brand-logo img {
    width: 178px;
  }

  /* body 固定（スクロール止め） */
  body.is-menu-open {
    overflow: hidden;
  }
}

/* ===========================
   Related Links (下部バナー群)
=========================== */

.section-related {
  padding: 137px 0 80px;
}

.section-related__header {
  text-align: center;
  margin-bottom: 28px;
}

.section-related__title {
  font-size: 30px;
  line-height: 1.5;
  font-weight: normal;
}

/* バナー３つを横並び */
.related-links {
  list-style: none;
  margin: 0 80px;
  padding: 0;
  display: flex;
  gap: 32px;
  justify-content: center;

}

.related-links li {
  flex: 0 0 calc((100% - 64px) / 3); /* 3分割（gap分を引く） */
}

/* バナー本体 */
.related-banner {
  display: flex;
  width: 100%;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  border:1px solid #ccc;
}

.related-banner img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {

  .section-related {
    padding: 80px 0 0px;
  }

  .section-related__title {
    font-size: 20px;
  }

  .related-links {
    flex-direction:column;
    margin-inline:auto;
    align-items: center;
    gap: 12px;
    justify-items: center;
    margin: 0;
  }

  .related-banner img {
    width: 310px;
    height: 103px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {

  .related-links {
    margin: 0 60px;
    gap: 32px;
  }
}

/* ===========================
   Footer Visual
=========================== */

.section-footer-visual {
  padding: 0;
}

.footer-visual img {
  width: 100%;
}

@media (max-width: 768px) {
  body.is-top .section-footer-visual {
    padding: 80px 0 0;
  }
}

/* ===========================
   Footer
=========================== */

.site-footer {
  position: relative;
  margin-top: -32px;
  z-index: 10;
}

/* 白い大きなパネル */
.footer-panel {
  background-color: #ffffff;
  border-radius: 40px 40px 0 0;  /* 上だけ大きく角丸 */
  width: 100%;
  /* max-width: 1440px; */
  margin: 0 auto;
}

/* 中身のレイアウト（PC） */
.footer-panel__inner {
  display: grid;
  grid-template-columns: 1.1fr 1.6fr;
  align-items: start;
  padding: 60px 80px 40px;
}

/* 左側：ロゴブロック */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer-brand__logo img {
  width: 179px;
  height: auto;
}

/* 右側：フッターナビ（1行横並び） */
.footer-nav {
  margin-top: 14px;
}

.footer-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP";

  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 60px;
}

.footer-nav__item a {
  font-size: 15px;
  line-height: 1.2;
  text-decoration: none;
}

/* コピーライト（PCは右下寄せ） */
.footer-copy {
  grid-column: 2 / 3;   /* 右カラムに配置 */
  justify-self: flex-end;
  margin-top: 40px;
  font-size: 14px;
  font-family: "Noto Sans JP";
  line-height: 1.8;
  color: #707070;
}

@media (max-width: 768px) {

  .footer-panel__inner {
    display: flex;
    flex-direction: column;
    padding: 53px 60px 0;
  }

  .footer-brand {
    order: 2;
    align-items: center;
    align-self: center;
    margin-top: 63px;
    margin-bottom: 0;
  }

  .footer-brand__logo img {
    width: 179px;
  }

  .footer-brand__name {
    text-align: center;
    font-size: 18px;
  }

  .footer-nav {
    align-self: center;
    order: 1;
  }

  .footer-nav__list {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: repeat(3, auto);
    grid-auto-flow: column;
    row-gap: 24px;
    column-gap: 43px;
    justify-items: start;
  }

  .footer-nav__item a {
    font-size: 16px;
    line-height: 1.2
  }

  .footer-copy {
    order: 3;
    display: block;
    margin: 45px 0 30px;
    text-align: center;
    align-self: center;
    font-size: 12px;
    line-height: 2.1;
  }
}


/*インタビュー共通*/
.interview-card__img{
  position:relative;
  overflow:hidden;
}
.interview-card__img img{
  transition: transform 0.3s ease;
}

.interview-card__number{
  position:absolute;
  top:0;
  right:.2em;
  letter-spacing:0.02em;
  display:block;
  z-index:1;
  color:#fff;
  font-family: "EB Garamond";
  font-size: clamp(2.188rem, 1.549rem + 2.72vw, 4rem);
}

.interview-card__number::before{
  content: "";
  position: absolute;
  top: 35%;
  left: 60%;
  transform: translate(-50%, -50%);
  width: 3em;
  height: 3em;
  background: linear-gradient(to bottom, #F4D5CE 0%, #E39182 100% );
  border-radius: 50%;
  z-index:-1;
}
.interview-card__number.is-green::before{
  background: linear-gradient(to bottom, #D7F1F5 0%, #53B4C1 100% );
}
.interview-card__number.is-blue::before{
  background: linear-gradient(to bottom, #DFEDFD 0%, #95C5FD 100% );
}

.interview-card__link:hover img{
  transform: scale(1.05);
  transition: transform 0.3s ease;
}
