@charset "UTF-8";
@font-face {
  font-family: "Setouchi Sans";
  src: url("/navi/setouchi-palette/assets/fonts/SetouchiSans-Regular.woff2") format("woff2"), url("/navi/setouchi-palette/assets/fonts/SetouchiSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Setouchi Sans";
  src: url("/navi/setouchi-palette/assets/fonts/SetouchiSans-Medium.woff2") format("woff2"), url("/navi/setouchi-palette/assets/fonts/SetouchiSans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Setouchi Sans";
  src: url("/navi/setouchi-palette/assets/fonts/SetouchiSans-Bold.woff2") format("woff2"), url("/navi/setouchi-palette/assets/fonts/SetouchiSans-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* ベース
============================== */
body {
  color: #1d183a;
  line-height: 1.78;
}
body:has(#setouchi-palette) * {
  letter-spacing: 0;
}

/* ユーティリティ
============================== */
/* フォント設定 */
@media screen and (min-width: 768px) {
  body:has(#setouchi-palette) #main_rn {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.sans {
  font-family: "IBM Plex Sans JP", sans-serif;
}

.eng {
  font-family: "Setouchi Sans", sans-serif;
}

/* テキスト位置 */
.text-left {
  text-align: left;
}

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

.text-right {
  text-align: right;
}

/* 表示/非表示 */
.sp-only {
  display: initial;
}

.sp-tb-only {
  display: initial;
}

.tb-only {
  display: none;
}

.pc-only {
  display: none;
}

@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
  .sp-tb-only {
    display: initial;
  }
  .tb-only {
    display: initial;
  }
  .pc-only {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
  .sp-tb-only {
    display: none;
  }
  .tb-only {
    display: none;
  }
  .pc-only {
    display: initial;
  }
}
/* コンポーネント
============================== */
/* ボタン */
.button {
  --hover-dur: 0.3s;
  display: inline-block;
  padding: 0.75em 1.25em;
  background-color: transparent;
  color: var(--btn-color, #1d183a);
  border: 1px solid var(--btn-color, #1d183a);
  border-radius: 5em;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  transition: background-color var(--hover-dur), color var(--hover-dur);
}

.button:focus-visible {
  background-color: var(--btn-color, #1d183a);
  color: var(--btn-on, #ffffff);
}

@media (any-hover: hover) {
  .button:hover {
    background-color: var(--btn-color, #1d183a);
    color: var(--btn-on, #ffffff);
  }
}
/* レイアウト
============================== */
/* ヘッダー */
:root {
  --header-height: 5rem;
}

@media screen and (min-width: 768px) {
  :root {
    --header-height: 8rem;
  }
}
/* ヘッダー
===================================================== */
.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 999;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding-inline: 1.5rem 2rem;
}

@media screen and (min-width: 768px) {
  .header__inner {
    height: 8rem;
    padding-inline: 3rem 4rem;
  }
}
.header__logo {
  width: 18rem;
}

@media screen and (min-width: 768px) {
  .header__logo {
    width: 30rem;
  }
}
.header__logo img {
  display: block;
}

/* グローバルナビ */
.gnavi {
  position: relative;
  z-index: 990;
}

@media screen and (min-width: 768px) {
  .gnavi {
    position: initial;
    width: auto;
    height: auto;
    top: 0;
    transform: translateX(0);
  }
}
.gnavi-button {
  position: relative;
  display: block;
  width: 3rem;
  aspect-ratio: 1/1;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .gnavi-button {
    display: none;
  }
}
.gnavi-button__line {
  position: relative;
  display: block;
  background-color: #000000;
  height: 0.2rem;
  transition: backgroud-color 0.3s;
}

.gnavi-button__line::before,
.gnavi-button__line::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000000;
  transition: top 0.3s 0.3s, rotate 0.3s;
}

.gnavi-button__line::before {
  top: -0.8rem;
}

.gnavi-button__line::after {
  top: 0.8rem;
}

.is-drawer-open .gnavi-button__line {
  background-color: transparent;
}

.is-drawer-open .gnavi-button__line:before,
.is-drawer-open .gnavi-button__line:after {
  top: 0;
  transition: top 0.3s, rotate 0.3s 0.3s;
}

.is-drawer-open .gnavi-button__line:before {
  rotate: 45deg;
}

.is-drawer-open .gnavi-button__line:after {
  rotate: -45deg;
}

.gnavi__inner {
  position: fixed;
  top: var(--header-height);
  left: 0;
  display: block;
  padding-inline: 5vw;
  width: 100%;
  height: calc(100vh - var(--header-height));
  background-color: #ffffff;
  transform: translateX(110%);
  transition: transform 0.3s;
  z-index: 0;
}

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

@media screen and (min-width: 768px) {
  .gnavi__inner {
    position: initial;
    padding: 0;
    width: auto;
    height: auto;
    transform: translateX(0);
  }
}
.gnavi-list {
  display: flex;
  flex-direction: column;
}

.gnavi-list__link {
  display: block;
  padding: 3.2rem 0 2.7rem;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.973;
  color: #000000;
  text-decoration: none;
  border-bottom: 0.1rem solid #000000;
}

@media screen and (min-width: 768px) {
  .gnavi-list {
    flex-direction: row;
    gap: 4rem;
  }
  .gnavi-list__link {
    padding: 0;
    font-size: 1.6rem;
    border: none;
  }
}
/* #setouchi-palett 共通
===================================================== */
#setouchi-palette {
  /* パーツ
  ================================= */
  /* セクション */
  /* アンカーリンク */
}
#setouchi-palette .imgalpha {
  transition: opacity 0.6s;
}
#setouchi-palette .imgalpha:hover {
  opacity: 0.6 !important;
  cursor: pointer;
}
#setouchi-palette .title {
  margin-bottom: 4rem;
  font-size: 4.5rem;
  line-height: 1;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  #setouchi-palette .title {
    margin-bottom: 9rem;
    font-size: 9rem;
  }
}
#setouchi-palette .sec-bg-beige {
  background-color: #fff9e8;
}
#setouchi-palette .anchor-link {
  scroll-margin-top: var(--header-height);
}
#setouchi-palette .container {
  width: calc(100% - 40px);
  max-width: 120rem;
  margin-inline: auto;
}

/* #setouchi-palett トップページ
===================================================== */
#setouchi-palette {
  /* MV
  ================================= */
  /* intro
  ================================= */
  /* movie
  ================================= */
  /* gallery
  ================================= */
  /* map
  ================================= */
  /* project
  ================================= */
  /* link
  ================================= */
}
#setouchi-palette .mv img {
  width: 100%;
  height: calc(100vh - var(--header-height));
  -o-object-fit: cover;
     object-fit: cover;
}
#setouchi-palette .intro {
  position: relative;
}
#setouchi-palette .intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1180px;
}
#setouchi-palette .intro__bg {
  position: -webkit-sticky;
  position: sticky;
  top: var(--header-height);
  left: 0;
  right: 0;
  display: block;
  width: 100vw;
  height: calc(100vh - var(--header-height));
  background-image: url("/navi/setouchi-palette/assets/img/top/intro_bg_sp.png");
  background-color: #f3f3f3;
  background-repeat: no-repeat;
  background-position: -3rem 0;
  background-size: auto 100%;
}
#setouchi-palette .intro__bg::before {
  position: absolute;
  top: 2rem;
  right: 5vi;
  content: "";
  display: block;
  width: 8.2rem;
  aspect-ratio: 1/1;
  background-image: url("/navi/setouchi-palette/assets/img/top/intro_stamp.png");
  background-size: contain;
}
#setouchi-palette .intro__content {
  margin-left: auto;
  padding-block: 12.3rem;
  -webkit-padding-end: 1rem;
          padding-inline-end: 1rem;
  width: 66.7vw;
  transform: translateX(-100%);
  display: flex;
  align-items: center;
}
#setouchi-palette .intro__text {
  position: relative;
  font-size: 1.6rem;
  line-height: 1.6875;
  font-weight: 500;
}
#setouchi-palette .intro__text p:not(:last-child) {
  margin-bottom: 1.375em;
}
@media screen and (min-width: 768px) {
  #setouchi-palette .intro__bg {
    min-width: 1180px;
    height: calc(100vh - var(--header-height));
    background-image: url("/navi/setouchi-palette/assets/img/top/intro_bg_pc.png");
    background-position: 0 0;
  }
  #setouchi-palette .intro__bg::before {
    position: absolute;
    top: 4.2rem;
    right: 5vw;
    content: "";
    display: block;
    width: 16.4rem;
    aspect-ratio: 1/1;
    background-size: contain;
  }
  #setouchi-palette .intro__content {
    margin-left: auto;
    padding-block: 10rem;
    -webkit-padding-end: 5vi;
            padding-inline-end: 5vi;
    width: 50vw;
    min-width: 590px;
  }
  #setouchi-palette .intro__text {
    font-size: 1.8rem;
    line-height: 1.7778;
  }
}
#setouchi-palette .setouchi_movie {
  background-color: #e3dcd0;
}
#setouchi-palette .setouchi_movie .movie_wrap {
  width: 100%;
  height: 21rem;
}
@media screen and (min-width: 768px) {
  #setouchi-palette .setouchi_movie .movie_wrap {
    height: 52rem;
  }
}
#setouchi-palette .setouchi_movie .movie_wrap video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#setouchi-palette .gallery {
  padding-top: 9rem;
}
#setouchi-palette .photo-swiper {
  overflow: hidden;
  pointer-events: none;
}
#setouchi-palette .photo-swiper__slide {
  width: auto;
  height: 27rem;
  overflow: hidden;
}
#setouchi-palette .photo-swiper__slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#setouchi-palette .photo-swiper .swiper-wrapper {
  transition-timing-function: linear;
  will-change: transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}
@media screen and (min-width: 768px) {
  #setouchi-palette .gallery {
    padding-top: 24rem;
  }
  #setouchi-palette .photo-swiper__slide {
    height: 54rem;
  }
}
#setouchi-palette .map {
  padding-top: 9rem;
}
@media screen and (min-width: 768px) {
  #setouchi-palette .map {
    padding-top: 18rem;
  }
}
#setouchi-palette .map__title {
  margin-bottom: 0;
}
#setouchi-palette .map_img {
  width: 100%;
  margin-top: 0;
  margin-bottom: 6rem;
}
@media screen and (min-width: 768px) {
  #setouchi-palette .map_img {
    margin-top: 2rem;
  }
}
#setouchi-palette .map_img img {
  width: 100%;
}
#setouchi-palette .map__item {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 80rem;
  color: #ffffff;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  #setouchi-palette .map__item {
    height: 90rem;
    padding-bottom: 12.4rem;
  }
}
#setouchi-palette .map__item .container {
  position: relative;
  z-index: 2;
}
#setouchi-palette .map__item-title {
  font-size: 5rem;
  margin-bottom: 1.6rem;
}
#setouchi-palette .map__item-text {
  margin-bottom: 3.6rem;
  font-size: 1.6rem;
}
#setouchi-palette .map__item-control {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#setouchi-palette .map__item-button {
  --btn-color: #fff;
  --btn-on: #1d183a;
  font-size: 1.8rem;
  padding: 1.2rem 2.5rem;
}
#setouchi-palette .map__item-dots {
  position: static;
  margin-top: 2rem;
  display: inline-flex;
  gap: 1rem;
}
#setouchi-palette .map__item-dots .swiper-pagination-bullet {
  border: 1px solid #ffffff;
  background-color: transparent;
  width: 0.6rem;
  height: 0.6rem;
  opacity: 1;
  margin: 0 !important;
}
#setouchi-palette .map__item-dots .swiper-pagination-bullet-active {
  background-color: #ffffff;
}
#setouchi-palette .map__item-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
#setouchi-palette .map__item-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#setouchi-palette .map__item-bg::before {
  position: absolute;
  inset: 0;
  content: "";
  display: block;
  z-index: 2;
  pointer-events: none;
}
#setouchi-palette .map__item:nth-of-type(odd) .container {
  text-align: left;
}
#setouchi-palette .map__item:nth-of-type(odd) .map__item-control {
  margin-left: 0;
  margin-right: auto;
}
#setouchi-palette .map__item:nth-of-type(odd) .map__item-bg::before {
  background: linear-gradient(360deg, rgba(29, 24, 58, 0.3) 0% 50%, transparent 100%);
}
#setouchi-palette .map__item:nth-of-type(even) .container {
  text-align: left;
}
#setouchi-palette .map__item:nth-of-type(even) .map__item-control {
  margin-left: 0;
  margin-right: auto;
}
#setouchi-palette .map__item:nth-of-type(even) .map__item-bg::before {
  background: linear-gradient(360deg, rgba(29, 24, 58, 0.3) 0% 50%, transparent 100%);
}
@media screen and (min-width: 768px) {
  #setouchi-palette .map__item-title {
    font-size: 10rem;
    margin-bottom: 3rem;
  }
  #setouchi-palette .map__item-text {
    margin-bottom: 5.3rem;
    font-size: 1.8rem;
  }
  #setouchi-palette .map__item:nth-of-type(odd) .container {
    text-align: left;
  }
  #setouchi-palette .map__item:nth-of-type(odd) .map__item-control {
    margin-left: 0;
    margin-right: auto;
  }
  #setouchi-palette .map__item:nth-of-type(even) .container {
    text-align: right;
  }
  #setouchi-palette .map__item:nth-of-type(even) .map__item-control {
    margin-left: auto;
    margin-right: 0;
  }
}
#setouchi-palette .project {
  background-color: #fff9e8;
  padding: 9rem 0 14rem;
}
@media screen and (min-width: 768px) {
  #setouchi-palette .project {
    padding: 18rem 0 14rem;
  }
}
#setouchi-palette .project__body {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  margin-bottom: 4.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #setouchi-palette .project__body {
    flex-direction: row;
    align-items: center;
    margin-bottom: 7rem;
    text-align: left;
    gap: 6.66666667%;
  }
}
#setouchi-palette .project__thumb {
  width: 100%;
}
#setouchi-palette .project__thumb img {
  width: 100%;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  #setouchi-palette .project__thumb {
    max-width: 648px;
    width: 100%;
  }
}
#setouchi-palette .project__text {
  font-size: 1.6rem;
  line-height: 1.7;
}
#setouchi-palette .project__text p {
  letter-spacing: 0;
}
#setouchi-palette .project__text p:not(:last-child) {
  margin-bottom: 1.7em;
}
@media screen and (min-width: 768px) {
  #setouchi-palette .project__text {
    font-size: 1.8rem;
    line-height: 1.78;
  }
  #setouchi-palette .project__text p:not(:last-child) {
    margin-bottom: 1.78em;
  }
}
#setouchi-palette .project__buttons {
  width: 29.5rem;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  #setouchi-palette .project__buttons {
    width: 100%;
    gap: 2.4rem;
  }
}
#setouchi-palette .project__button {
  --btn-color: #1d183a;
  --btn-on: #fff;
  display: inline-block;
  padding: 1.2em 0;
  width: 100%;
  max-width: 40rem;
  gap: 1.5rem;
  font-size: 1.7rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  #setouchi-palette .project__button {
    padding: 1.5em 0;
    gap: 2.4rem;
    font-size: 2rem;
  }
}
#setouchi-palette .link {
  padding: 7rem 0 8rem;
}
@media screen and (min-width: 768px) {
  #setouchi-palette .link {
    padding: 16rem 0;
  }
}
#setouchi-palette .link__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 98rem;
  margin: 0 auto;
  gap: 1.7rem;
}
#setouchi-palette .link__list img {
  max-width: 100%;
  width: 100%;
}
#setouchi-palette .link__list li {
  border: 1px solid #cccccc;
}
@media screen and (min-width: 768px) {
  #setouchi-palette .link__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.sns {
  padding-block: 4rem;
}

@media screen and (min-width: 768px) {
  .sns {
    padding-block: 6.4rem;
  }
}
.sns-list {
  display: flex;
  justify-content: center;
  gap: 3.2rem;
  font-family: "Setouchi Sans", sans-serif;
}

@media screen and (min-width: 768px) {
  .sns-list {
    gap: 3.7rem;
  }
}
.sns-list__link {
  text-decoration: none;
  display: flex;
  flex-flow: column;
  text-align: center;
  align-items: center;
  font-size: 1.4rem;
  color: #000000;
}

.sns-list__link:hover {
  opacity: 0.5;
}

.sns-list__link.-x {
  gap: 0.9rem;
}

.sns-list__link.-instagram {
  gap: 1rem;
}
/*# sourceMappingURL=style.css.map */
