
:root {
  --mv-background: #fdf9f4;
  --mv-text: #2d1c11;
  --mv-muted: #7f6a5b;
  --mv-accent: #c9a36f;
  --mv-border: rgba(255, 255, 255, 0.4);
  --flow-background: #fefcf8;
  --flow-text: #261911;
  --flow-muted: rgba(38, 25, 17, 0.35);
  --flow-line: rgba(38, 25, 17, 0.15);
  --flow-line-active: #1a120d;
}


body{
    background: #F6F6F6;
}

body.nav-open {
  overflow: hidden;
}


body.flow-scroll-locked {
  overflow: hidden;
  touch-action: none;
}
section{
    padding: 160px 0 0;
}
h2{
    font-size: clamp(2rem, 1.757rem + 1.04vw, 3rem);
    margin-bottom: 40px;
}
/*-------------------------------------
 mv section
-------------------------------------*/
.mv {
    padding-top: 0;
  position: relative;
}

.mv-inner {
  position: relative;
  max-width: calc( 1080px + 10%);
  width: 95%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: calc(100vw - 100%);
  gap: 4%;
}

.mv-text h1 {
    color: #333;
    font-family: "Shippori Mincho";
    font-size: clamp(2.5rem, 1.984rem + 2.2vw, 4.625rem);
    font-style: normal;
    font-weight: 500;
    line-height: 160%; /* 81.4px */
    letter-spacing: 3.7px;
    margin-bottom: 64px;
}

.mv-text h1 span {
  font-size:clamp(4rem, 2.847rem + 4.92vw, 8.75rem) ;
}

.mv-text p {
    color: #333;
    /* H3 */
    font-family: "Shippori Mincho";
    font-size: clamp(1.2rem, 0.912rem + 1.2vw, 2.4rem);
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
    margin-bottom: 64px;
}

.mv-text ._btn p{
    color: #fff;
    font-size: 18px;
    margin: 0;
}
.mv-text ._btn:hover p{
    color: #333;
}

.mv-img {
    position: relative;
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-bottom: 16px;
}

.mv-slider {
  display: flex;
  flex: 1 1 auto;
  height: 100%;
  transition: transform 0.9s cubic-bezier(0.33, 1, 0.68, 1);
  will-change: transform;
}

.mv-slide {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
  overflow: hidden;
}

.mv-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.25), transparent 45%);
  pointer-events: none;
}

.mv-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mv-pagination {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%,0);
  display: flex;
  gap: 2px;
  z-index: 2;
}

.mv-pagination button {
    width: 56px;
    height: 4px;
    border: none;
    padding: 0;
    background:#D5D5D5;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.mv-pagination button.is-active {
    background: #848484;
}

.mv-pagination button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

@media (max-width: 1024px) {
  .mv-inner {
    flex-direction: column;
    padding-right: clamp(260px, 56vw, 640px);
  }

  .mv-img {
    border-radius: 28px 0 0 28px;
  }
}

@media (max-width: 768px) {
  .mv {
    padding: 120px 0 40px;
  }

  .mv-inner {
    padding-right: 0;
    min-height: unset;
  }

  .mv-img {
    position: relative;
    top: auto;
    bottom: auto;
    right: auto;
    width: 100%;
    margin-top: clamp(32px, 7vw, 48px);
    border-radius: 24px;
  }

  .mv-controls,
  .mv-pagination {
    inset: unset;
    position: static;
    margin-top: 16px;
  }

  .mv-controls {
    order: 2;
    justify-content: center;
  }

  .mv-pagination {
    order: 3;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mv-slider {
    transition: none;
  }

  .mv-control,
  .mv-pagination button {
    transition: none;
  }
}

/*-------------------------------------
 concept section
-------------------------------------*/
#concept {
    padding-bottom: 80px;
}
#concept ._inner{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4%;
}
.concept-left {
    flex: 1;
}
.concept-right {
    flex: 1;
}
.concept-text{
    display: flex;
    justify-content: left;
    align-items: start;
    gap: 4%;
}
.concept-text ._italic{
    font-size: clamp(2.5rem, 2.015rem + 2.07vw, 4.5rem);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}
.concept-text-inner-box{
    padding: 56px 40px;
    box-sizing: border-box;
    background: #F5EEEA;
    margin-bottom: 40px;
}
.concept-text-inner-box h3{
    color: #333;
    text-align: center;
    /* H3 */
    font-family: "Shippori Mincho";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
    margin-bottom: 24px;
}
.concept-left-img{
    width: calc(100% + clamp(40px, 8vw, 160px));
    margin-left: calc(clamp(40px, 8vw, 160px) * -1);
}

.concept-left-img img{
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    #concept{
        padding: 0 0 32px 0;
    }
}

/*-------------------------------------
 about section
-------------------------------------*/
#about {
    padding: 80px 0;
    background-image: url(../img/top/about-bg.webp);
}
#about ._italic{
    color:#FFF;
    text-align: center;
    font-family: Futura-Light;
    font-size: clamp(2rem, 1.757rem + 1.04vw, 3rem);
    font-style: italic;
    font-weight: 300;
    line-height: 120%; /* 57.6px */
    letter-spacing: 2.4px;
}
.about-item{
    width: 30%;
    max-width: 280px;
}
.about-item-img{
    width: 80%;
    height: auto;
    margin: 0 auto 16px;
}
.about-item-text{
    text-align: left;
}
.about-item-text h3{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    text-align: center;
    /* H3 */
    font-family: "Shippori Mincho";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
    margin-bottom: 16px;
}
.about-item-text h3::before{
    content: '';
    display: block;
    width: 10px;
    aspect-ratio: 1/1;
    background: linear-gradient(225deg, #E5CFA7 0%, #6D6047 100%);
    border-radius: 50%;
    margin-right: 8px;
}
.about-item-text p{
    color: #fff;
}

@media (max-width: 768px) {
    #about{
        padding: 40px 0;
    }
    .about-item{
        width: 100%;
        margin: 0 auto;
    }
}


/*-------------------------------------
 menu section
-------------------------------------*/
#menu {
    padding: 80px 0;
}
#menu ._italic{
    color: #333;
    text-align: center;
}
.menu-item{
    margin-left: -10%;
    margin-bottom: 40px;
    justify-content: space-between;

    gap: 4%;
}
.menu-item._reverse{
    margin-left: 0;
    margin-right: -10%;
}
.menu-img{
    flex: 1;
    width: 50%;
}
.menu-text{
    width: 40%;
}
.menu-text h3{
    color: #333;
    /* H3 */
    font-family: "Shippori Mincho";
    font-size: clamp(1.125rem, 1.034rem + 0.39vw, 1.5rem);
    font-style: normal;
    font-weight: 700;
    line-height: 180%;
    margin-bottom: 16px;
}
.menu-etc{
    margin: 16px 0;
    padding: 24px;
    background: #F5EEEA;
}
.menu-etc span{
    display: block;
    margin-top: 4px;
    width: 100%;
    text-align: right;
}

@media (max-width: 768px) {
    #menu{
        padding: 40px 0;
    }
    .menu-item{
        margin-left: 0;
        margin-right: 0;
    }
    .menu-item._reverse{
        flex-direction: column;
        margin-right: 0;
    }
    .menu-text {
        width: 100%;
    }
    .menu-img{
        width: 100%;
    }
}




/*-------------------------------------
 flow section
-------------------------------------*/
#flow {
    background: #F6F6F6;
}
.flow-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.flow-section ._inner {
  min-height: 100vh;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  gap: clamp(32px, 4vw, 56px);
}

.flow-section h2 {
  color: var(--flow-muted);
  letter-spacing: 0.1em;
}

.flow-body {
  position: relative;
}

.flow-list {
  --flow-progress: 0;
  list-style: none;
  margin: 0;
  position: relative;
}

.flow-list::before,
.flow-list::after {
  content: "";
  position: absolute;
  left: 0;
  transform: translateX(-50%);
  top: 14px;
  bottom: 14px;
  width: 2px;
  border-radius: 999px;
}

.flow-list::before {
  background: var(--flow-line);
}

.flow-list::after {
  background: var(--flow-line-active);
  transform-origin: top;
  transform: 
    scaleY(var(--flow-progress))
    translateX(-50%)
    ;
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.flow-step {
  position: relative;
  display: grid;
  grid-template-columns: minmax(150px, 200px) 1fr;
  gap: clamp(16px, 4vw, 48px);
  padding: 0 0 64px 5%;
  color: var(--flow-muted);
  transition: color 0.35s ease;
}

.flow-step::before {
  content: "";
  position: absolute;
  display: none;
  left: 0;
  top: 14px;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--flow-line-active);
  transition: background 0.35s ease, border-color 0.35s ease;
}
.flow-step::after{
    content: '';
    display: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #333;
    content: "";
    position: absolute;
    display: none;
    left: 0;
    top: 14px;
    transform: translate(-50%, -50%);
}
.flow-step-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.flow-step-number {
    color: #333;
    font-size: clamp(1.5rem, 1.257rem + 1.04vw, 2.5rem);
}

.flow-step-header h3 {
  font-size: clamp(1.6rem, 2vw, 2.4rem);
  font-weight: 500;
  margin: 0;
  color: inherit;
}

.flow-step p {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.9;
  transition: opacity 0.35s ease;
}

.flow-step.is-active {
  color: var(--flow-text);
}

.flow-step.is-active p {
  opacity: 1;
}

.flow-step.is-active::after,
.flow-step.is-active::before {
  display: block;
}

.flow-step.is-complete {
  color: rgba(26, 18, 13, 0.4);
}

.flow-section.is-locked .flow-step {
  will-change: color;
}
.flow-step-text {
    opacity: 0.2;
}
.is-active .flow-step-text {
    opacity: 1;
}
.flow-step-text h3{
    color: #333;
    /* H3 */
    font-family: "Shippori Mincho";
    font-size: clamp(1.125rem, 1.034rem + 0.39vw, 1.5rem);
    font-style: normal;
    font-weight: 700;
    line-height: 180%;
    margin-bottom: 8px;
}
.flow-step-text p{
    font-size: 16px;
}
@media (max-width: 768px) {
    .flow-section ._inner{
        flex-direction: column;
    }
}


/*-------------------------------------
 staff section
-------------------------------------*/
#staff {
    padding: 0 0 80px;
    background: #F6F6F6;
}
#staff ._italic{
    color: #333;
    text-align: center;
}
.staff-layout{
    justify-content: space-between;
    padding: 40px;
    background: #fff;
}
.staff-name{
    width: 40%;
}
.staff-name h3{
    color: #333;
    /* H2 */
    font-family: "Shippori Mincho";
    font-size: clamp(2rem, 1.757rem + 1.04vw, 3rem);
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}
.staff-name h3 span{
    color: var(--gray_dark, #848484);
    font-family: Futura-Light;
    font-size: clamp(1rem, 0.879rem + 0.52vw, 1.5rem);
    font-style: italic;
    font-weight: 300;
    line-height: 120%; /* 28.8px */
    letter-spacing: 1.2px;
}
.staff-text{
    width: 55%;
}
.staff-text p{
    margin-top: 24px;
}

@media screen and (max-width: 768px) {
    #staff{
        padding: 40px 0;
    }
    .staff-layout{
        padding: 24px;
    }
    .staff-name{
        width: 100%;
    }
    .staff-text{
        width: 100%;
    }
}
/*-------------------------------------
 faq section
-------------------------------------*/
.faq-section {
    padding: 80px 0 160px;
    background: #fff;
}

.faq-layout {
    display: flex;
    gap: clamp(32px, 6vw, 96px);
}

.faq-label {
    color: var(--gray_dark, #848484);
    font-family: Futura-Light;
    font-size: clamp(2.5rem, 2.015rem + 2.07vw, 4.5rem);
    font-style: italic;
    font-weight: 300;
    line-height: 120%; /* 86.4px */
    letter-spacing: 3.6px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    height: fit-content;
}

.faq-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.faq-item {
    border-bottom: 1px solid rgba(51, 51, 51, 0.1);
}

.faq-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-toggle:hover,
.faq-toggle:focus-visible {
    background: rgba(51, 51, 51, 0.03);
}

.faq-symbol {
    color: #333;
    font-family: Futura-Light;
    font-size: clamp(2.5rem, 2.015rem + 2.07vw, 4.5rem);
    font-style: italic;
    font-weight: 300;
    line-height: 120%; /* 48px */
    letter-spacing: 2px;
}
.faq-answer .faq-symbol{
    color: #BD573A;
}
.faq-question {
    flex: 1;
    text-align: left;
    color: #333;
    /* p */
    font-family: "Shippori Mincho";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
    color: #333;
}

.faq-icon {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    position: relative;
}

.faq-icon-line {
    position: absolute;
    width: 32px;
    height: 1.5px;
    background: linear-gradient(225deg, #E5CFA7 0%, #6D6047 100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-icon-line--v {
    transform: rotate(90deg);
}

.faq-toggle[aria-expanded="true"] .faq-icon-line--v {
    opacity: 0;
}

.faq-answer {
    padding: 0 24px 24px 40px;
}

.faq-answer-inner {
    display: flex;
    gap: 16px;
    align-items: center;
    color: #555;
    line-height: 1.8;
}

.faq-answer p {
    margin: 0;
}

@media (max-width: 768px) {
    .faq-layout {
        flex-direction: column;
        gap: 24px;
    }

    .faq-label {
        transform: rotate(0);
        flex: none;
        writing-mode: horizontal-tb;
        letter-spacing: 0.4em;
    }

    .faq-list {
        border-left: none;
    }
}

/*-------------------------------------
 news section
-------------------------------------*/
#news h2{
    text-align: center;
}
.news-section {
  padding: clamp(72px, 12vw, 140px) 0;
  background: #fff;
}

.news-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.news-head h2 {
  letter-spacing: 0.2em;
}

.news-subtitle {
  margin: 0;
  font-size: 1.4rem;
  color: rgba(38, 25, 17, 0.6);
}

.news-layout {
  gap: clamp(24px, 4vw, 48px);
  align-items: flex-end;
}

.news-controls {
  flex: 0 0 clamp(180px, 18vw, 240px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: clamp(90px, 10vw, 140px);
}

.news-controls-label {
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(38, 25, 17, 0.5);
  margin: 0;
}

.news-controls-buttons {
  display: flex;
  gap: 12px;
}

.news-control {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(38, 25, 17, 0.15);
  background: #fff;
  color: var(--flow-text);
  font-size: 1.6rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.news-control:hover,
.news-control:focus-visible {
  border-color: var(--flow-text);
  color: #000;
}

.news-control.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.news-more {
  width: fit-content;
}

.news-list-wrapper {
  flex: 1;
  margin-right: calc((100vw - 100%) * -1);
  padding-bottom: clamp(8px, 2vw, 24px);
}

.news-list {
  --news-offset: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: clamp(16px, 3vw, 32px);
  scroll-behavior: smooth;
}

.news-item {
  flex: 0 0 clamp(260px, 28vw, 360px);
}

.news-item-inner {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.news-item-inner h3{
    color: #333;
    /* H3 */
    font-family: "Shippori Mincho";
    font-size: clamp(1.5rem, 1.257rem + 1.04vw, 2.5rem);
    font-style: normal;
    font-weight: 500;
    line-height: 180%; 
}
.news-item-inner p{
    color:  #333;
    /* p */
    font-family: "Shippori Mincho";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
}



.news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1.3rem;
  color: rgba(38, 25, 17, 0.55);
}

.news-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.news-item h3 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 1.7vw, 2rem);
  color: var(--flow-text);
}

.news-item p {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.8;
  color: rgba(38, 25, 17, 0.68);
}

.news-empty {
  margin: 0;
  color: rgba(38, 25, 17, 0.5);
}









@media (max-width: 960px) {
._inner{
    width: 90%;
}
  .news-layout {
    flex-direction: column;
  }

  .news-controls {
    position: static;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .concept-left-img {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .news-controls {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-list-wrapper {
    margin-right: 0;
  }
  #concept ._inner{
    flex-direction: column;
    gap: 32px;
  }

  .concept-text {
    width: 100%;
    align-items: flex-start;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .flow-section ._inner {
    min-height: 100vh;
  }

  .flow-step {
    grid-template-columns: 1fr;
    padding-left: 48px;
  }


  .flow-step-header {
    flex-direction: row;
    align-items: baseline;
    gap: 16px;
  }
}

@media (max-width: 480px) {

  .flow-step {
    padding-left: 40px;
  }

  .flow-step-header {
    flex-direction: column;
    gap: 6px;
  }
}



