/* z-index について */
/* z:10  → .sec--news-events .swiper-controller .sec--access__map::before, after*/
/* z:20  → .header .g-nav__button--open*/
/* z:30  → .g-nav */
/* z:40  → .header .g-nav__button--close */

/* z-index の設定方針
  0: 背景／通常
  10: UI装飾（例: スライダー）マップの枠線など
  15: map（固定以外のコンテンツとして最前列）
  20: 固定ヘッダー
  30: オーバーレイ系
  40: ナビ開閉ボタンなど最前面 */

  :root {
    --base-color: #FFFFFF;
    --main-color: #050505;
    --color-accent: #ffec00;
    --text-en: 'inter', sans-serif;
  }
  
  html {
    scrollbar-gutter: stable;
  }
  
  body {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--main-color);
    background-color: var(--base-color);
  }

  body:has(.g-nav.open) {
    overflow: hidden;
  }

  /* ----------------- common utility ----------------- */

  .tab-none {
    display: none;
  }

  @media (min-width: 768px) {
    .pc-none {
      display: none;
    }
  }

  @media (min-width: 992px) {
    .tab-none {
      display: block;
    }
  }
  
  /* ----------------- header -----------------*/
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 20;
  }

  /* logo */
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }
  
  /* global navigation */
  .header .g-nav__button {
    cursor: pointer;
    display: block;
    background-color: transparent;
    border: none;
    position: fixed;
  }

  .g-nav__button--open {
    top: 40px;
    right: 20px;
    z-index: 20;
  }

  .g-nav__button--close {
    top: 45px;
    right: 20px;
    z-index: 40;
  }
  
  .g-nav {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    padding: 125px 0 45px;
    background-color: var(--main-color);
    width: 100%;
    height: 100vh;
    z-index: 30;
    overflow: scroll;
  }

  .g-nav.open {
    display: block;
  }

  .g-nav__logo {
    display: block;
    text-align: center;
    margin-bottom: 40px;
  }

  .g-nav__logo a {
    display: inline-block;
    text-decoration: none;
    height: 100%;
  }

  .g-nav__logo img {
    display: inline-block;
    width: 175px;
  }
  
  .g-nav__ul {
      padding-left: 0;
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
      justify-content: flex-start;
      align-items: center;
      margin-left: auto;
      margin-bottom: 40px;
    }
  
  .g-nav__ul li {
    list-style: none;
  }
  
  .g-nav__link {
    font-family: var(--text-en);
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    color: #fff;
    font-weight: bold;
    display: inline-block;
    text-decoration: none;
    padding: 15.5px 15px;
    transition: all .3s ease-in-out;
  }
  
  .g-nav__link:hover {
    color: var(--color-accent);
  }

  .g-nav a.instagram__link {
      display: block;
      text-align: center;
    }

  .g-nav .icon-instagram {
    display: inline-block;
  }
  
  @media (min-width: 992px) {
    .header {
      height: auto;
    }
  
    .header .g-nav__button {
      display: none;
    }
  
    .g-nav {
      position: static;
      display: block;
      text-align: center;
      padding-top: 36px;
      background-color: #fff;
      height: auto;
      margin: 0 auto;
      overflow: hidden;
    }

    .g-nav nav {
      display: inline-block;
    }
  
    .g-nav__ul {
      display: flex;
      flex-direction: row;
      padding: 0;
      margin-bottom: 0;
    }

    .g-nav__ul li {
      text-align: right;
    }

    .g-nav__link {
      color: var(--main-color);
      font-size: clamp(1.1rem, 1.25rem, 1.5rem);
    }

    .g-nav__logo {
      display: none;
    }

    .g-nav a.instagram__link {
      display: none;

    }

  }
  
  /* ----------------- main -----------------*/
  
  main {
    margin: 0 auto;
    padding: 0 32px;
  }
  
  @media (min-width: 768px) {
    main {
      max-width: 1366px;
      padding: 0 36px;
    }
  }

  section {
    margin-bottom: 80px;
  }
  
  .section-separator--80 {
    margin: 80px 0;
  }
  
  .section-separator__img {
    width: 100%;
  }
  
  @media (min-width: 768px) {
    /* section {
      margin-bottom: 160px;
    } */
  
    .section-separator {
      margin: 160px 0;
    }
  }

  .section-heading {
    font-family: var(--text-en);
    font-size: clamp(60px, 8vw, 110px);
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.05em;
  }


  /* ----------------- footer -----------------*/      
  footer {
    background-color: var(--main-color);
    padding-top: 2.5rem;
    padding-bottom: 1.5rem;
    border-top: solid 1.5px var(--base-color);
    width: 100%;
  }
  
  .footer__inner {
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }

  .f-logo {
    width: 175px;
  }
  
  .footer__copyright__wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1.15rem;
    color: var(--base-color);
  }
  
  .footer__copyright__wrap p {
    padding-top: 0.8rem;
    font-size: 10px;
    font-weight: 700;
  }
  
  .icon-instagram {
    display: block;
    width: 1rem;
    height: 1rem;
  }
  
  @media (min-width: 768px) {
    footer {
        padding: 2.5rem;
      }
      
      .footer__inner {
        flex-direction: row;
        max-width: 1106px;
      }
      
      .f-logo {
        width: 210px;
      }
      
      .footer__copyright__wrap {
        align-items: flex-end;
        margin-top: 0;
      }
      
      .footer__copyright__wrap p {
        padding-top: 1rem;
        font-size: 12px;
      }
      
      .icon-instagram {
        width: 24px;
        height: 24px;
      }
  }

  /* ----------------- button -----------------*/
  .inquiry-button {
    display: inline-block;
    text-decoration: none;
    padding: 28px 51px;
    background-color: var(--color-accent);
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    color: var(--main-color);
    border: 2px solid var(--color-accent);
    transition: all .3s ease-in-out;
  }

  .inquiry-button:hover {
    background-color: #fff;
  }

  @media (min-width: 992px) {
    .inquiry-button {
      padding: 28px 51px;
      font-size: 20px;
    }
  }

  @media (min-width: 1200px) {
    .inquiry-button {
      padding: 40px 72px;
      font-size: 24px;
    }
  }

  /* GET INVOLVED */
.sec--get-involved {
  background-color: var(--main-color);
  padding: 72px 0 40px; 
  color: #fff;
  margin-bottom: 0;
}

.sec--get-involved__inner {
  padding: 0 32px;
  margin: 0 auto 40px;
}

.sec--get-involved__left {
    margin-bottom: 30px;
}

.sec--get-involved__logoWrap {}

.sec--get-involved__heading {
  display: flex;
}

.sec--get-involved__heading .section-heading {
  text-align: left;
  color: #fff;
  margin-bottom: 17px;
}

.sec--get-involved__copy {
  font-size: 14px;
  font-weight: bold;
  
}

/* slide */
.sec--get-involved .swiper {
  width: 100%;
  height: 88px;
}

.sec--get-involved .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

.sec--get-involved .swiper-slide {
  width: 173px;
  height: 88px;
  overflow: hidden;
  position: relative;
  background-color: #fff;
  padding: 10px;
}

.sec--get-involved .swiper-slide a:hover {
  opacity: .7;
}

.sec--get-involved .slide-media {
  width: 100%;
  height: 100%;
  position: relative;
}

.sec--get-involved .slide-media > * {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.sec--get-involved .slide-media img.img-portrait {
  width: auto;
  height: 100%;
}

.sec--get-involved .slide-media span {
  display: block;
  text-align: center;
  color: var(--main-color);
  font-size: 14px;
  font-weight: bold;
}

@media (min-width: 768px) {
  .sec--get-involved {
    padding: 110px 0 40px;
    margin-bottom: 0;
  }

  .sec--get-involved__inner {
    padding: 0 130px;
    max-width: 1366px;
    margin-bottom: 70px;
  }

  .sec--get-involved__left {
    margin-bottom: 60px;
  }

  .sec--get-involved__heading .section-heading {
    margin-bottom: 22px;
  }

  .sec--get-involved__copy {
    font-size: 20px;
  }

  .sec--get-involved__swiperInner {
    padding: 0 130px;
    max-width: 1366px;
    margin: 0 auto;
  }

  .sec--get-involved .swiper {
    width: 100%;
    height: 173px;
  }

  .sec--get-involved .swiper-slide {
    width: 260px;
    height: 173px;
  }

  .sec--get-involved .slide-media {
    width: 100%;
    height: 100%;
  }

  .sec--get-involved .slide-media span {
    font-size: 16px;
  }
}

@media (min-width: 992px) {
  
}

@media (min-width: 1200px) {
  .sec--get-involved__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

/* RESIDENTS */
.residents__cardContainer {
  display: grid;
  grid-template-columns: repeat(2, 180px);
  justify-content: center;
  align-content: center;
  gap: 20px;
  margin: 0 auto;
}

.residents__card {
  display: flex;
  justify-content: center; /* 水平方向の中央配置 */
  align-items: center;
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
  border: 3px solid var(--main-color);
  position: relative;
}

.residents__card a {
  transition: all .2s ease-in-out;
}

.residents__card a:hover {
  opacity: .7;
}

.residents__card__img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;

  width: clamp(180px, 50vw, 304px);
  height: clamp(180px, 50vw, 304px);
}

.residents__card__tag {
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  color: var(--main-color);
  position: absolute;
  top: -3px;
  left: -3px;
  border: 3px solid var(--main-color);
  padding: 6px 17px
}

.residents__card__tag.orange {
  background-color: #FF764A;
}

.residents__card__tag.blue {
  background-color: #90C3CD;
}

.residents__card__tag.green {
  background-color: #a9d18e;
}

.residents__card__tag.yellow {
  background-color: rgb(255 184 79/1);
}

.residents__card__tag span {
  padding-right: 20px
}

.residents__card__tag span:last-of-type {
  padding-left: 21px;
  padding-right: 0rem;
}

.residents__card__tag span:last-of-type::before {
  content: '';
  position: absolute;
  left: 49%;
  top: 0;
  bottom: 0;
  width: 3px; /* 縦線の幅 */
  background-color: var(--main-color); /* 縦線の色 */
}

@media (min-width: 768px) {
  .residents__cardContainer {
    grid-template-columns: repeat(3, minmax(0, 304px));
    gap: 25px;
    margin-bottom: 44px;
  }
}

@media (min-width: 992px) {
  .residents__cardContainer {
    gap: 40px;
  }
}
  
  @media (min-width: 1024px) {  
    .outlet-category-title span {
      display: inline-block;
    }
  
    .residents__cardContainer {
      grid-template-columns: repeat(3, 310px);
      gap: 40px;
    }
  }