@charset "UTF-8";
/* ==========================================================================//
//
// top
//
// ========================================================================== */
.header .logo {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header.black .logo {
  opacity: 1;
  visibility: visible;
}

/* 共通
---------------------------------------------------------- */
section {
  margin-top: 120px;
}
@media all and (min-width: 751px) {
  section {
    margin-top: 200px;
  }
}

.sec_ttl {
  margin-bottom: 50px;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media all and (min-width: 751px) {
  .sec_ttl {
    margin-bottom: 90px;
    font-size: 36px;
  }
}

/* メインビジュアル
---------------------------------------------------------- */
.mv {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
}
.mv .movie {
  width: 100%;
  height: 100%;
  background: url(../images/top/mv_movie.webp) no-repeat center/cover;
}
.mv .movie video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mv .scroll {
  position: absolute;
  left: 20px;
  bottom: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
@media all and (min-width: 751px) {
  .mv .scroll {
    left: 40px;
    bottom: 40px;
  }
}
.mv .scroll .scroll_text {
  text-align: center;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  letter-spacing: 0.1em;
  letter-spacing: 0.05em;
  font-size: 11px;
}
@media all and (min-width: 751px) {
  .mv .scroll .scroll_text {
    font-size: 12px;
  }
}
.mv .scroll .scroll_border {
  position: relative;
  height: 50px;
}
@media all and (min-width: 751px) {
  .mv .scroll .scroll_border {
    height: 70px;
  }
}
.mv .scroll .scroll_border::before, .mv .scroll .scroll_border::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  width: 1px;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
}
.mv .scroll .scroll_border::before {
  -webkit-animation: scrolldown 2s ease-in-out infinite;
          animation: scrolldown 2s ease-in-out infinite;
  opacity: 0.6;
}
.mv .scroll .scroll_border::after {
  opacity: 0.2;
}
@-webkit-keyframes scrolldown {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  40% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  60% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
@keyframes scrolldown {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  40% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  60% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
.mv .logo {
  position: fixed;
  top: 22px;
  left: 20px;
  z-index: 1;
  width: 35px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media all and (min-width: 751px) {
  .mv .logo {
    top: 30px;
    left: 40px;
    width: 43px;
  }
}
.mv .logo.hidden {
  opacity: 0;
  visibility: hidden;
}

/* 時間で変化する背景
---------------------------------------------------------- */
.time_bg {
  background-color: #F2EDE9;
}
.time_bg.sunset {
  background-color: #EDDAD6;
}
.time_bg.night {
  background-color: #1b1b1b;
  color: #fff;
}
.time_bg.night .news {
  border-color: rgba(255, 255, 255, 0.2);
}
.time_bg.night .news a .date {
  border-color: rgba(255, 255, 255, 0.2);
}
.time_bg.night .news .arrow {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

/* メインビジュアル下のお知らせ
---------------------------------------------------------- */
.sec_news {
  margin-top: 0;
  border-bottom: 1px solid rgba(32, 32, 32, 0.1);
  padding: 40px 0;
}
@media all and (min-width: 751px) {
  .sec_news {
    padding: 40px 0;
  }
}
.sec_news .sec_ttl {
  margin-bottom: 73px;
}
@media all and (max-width: 750px) {
  .sec_news .sec_ttl {
    margin-bottom: 13px;
    text-align: left;
  }
}
@media all and (max-width: 750px) {
  .sec_news .more_btn {
    margin-right: auto;
    margin-left: unset;
    margin-top: 20px;
  }
}

.news_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media all and (min-width: 751px) {
  .news_wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10%;
  }
}

.news_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.news {
  width: 100%;
}
.news a {
  display: block;
  position: relative;
  padding: 8px 0;
}
@media all and (min-width: 751px) {
  .news a {
    padding: 18px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
  }
}
.news a .datecate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media all and (min-width: 751px) {
  .news a .datecate {
    width: 20%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.news a .date {
  margin-bottom: 4px;
  font-size: 11px;
}
:lang(en) .news a .date {
  font-size: 12px;
}
@media all and (min-width: 751px) {
  .news a .date {
    font-size: 12px;
  }
  :lang(en) .news a .date {
    font-size: 14px;
    margin-bottom: 0;
  }
}
.news a .cate {
  font-size: 11px;
  color: #7B7B7B;
}
.news a .ttl {
  font-size: 11px;
}
:lang(en) .news a .ttl {
  font-size: 12px;
}
@media all and (min-width: 751px) {
  .news a .ttl {
    font-size: 12px;
  }
  :lang(en) .news a .ttl {
    font-size: 14px;
  }
}

.test {
  font-size: 11px;
}
@media all and (max-width: 750px) {
  :lang(en) .test {
    font-size: 12px;
  }
}
@media all and (min-width: 751px) {
  .test {
    font-size: 12px;
  }
}

/* めぐるめぐみ
---------------------------------------------------------- */
@media all and (max-width: 750px) {
  .sec_megumi {
    margin-top: 60px;
  }
}
:lang(ja) .sec_megumi .text_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px 0;
}
@media all and (min-width: 751px) {
  :lang(ja) .sec_megumi .text_wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0 100px;
  }
}
:lang(ja) .sec_megumi .megumi_ttl {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.25em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
}
@media all and (min-width: 751px) {
  :lang(ja) .sec_megumi .megumi_ttl {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    font-size: 30px;
  }
}
:lang(ja) .sec_megumi .megumi_txt {
  letter-spacing: 0.01em;
  line-height: 2.2;
}
@media all and (min-width: 751px) {
  :lang(ja) .sec_megumi .megumi_txt {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    line-height: 64px;
    letter-spacing: 0.01em;
  }
}
:lang(en) .sec_megumi {
  margin-top: 100px;
}
@media all and (min-width: 751px) {
  :lang(en) .sec_megumi {
    margin-top: 200px;
  }
}
:lang(en) .sec_megumi .text_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px 0;
}
@media all and (min-width: 751px) {
  :lang(en) .sec_megumi .text_wrap {
    gap: 54px 0;
  }
}
:lang(en) .sec_megumi .megumi_ttl {
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media all and (min-width: 751px) {
  :lang(en) .sec_megumi .megumi_ttl {
    font-size: 32px;
  }
}
:lang(en) .sec_megumi .megumi_txt_en p {
  text-align: left;
  font-size: 14px;
  letter-spacing: 0.03em;
  line-height: 1.64;
}
@media all and (min-width: 751px) {
  :lang(en) .sec_megumi .megumi_txt_en p {
    text-align: center;
    font-size: 16px;
    line-height: 2.5;
  }
}
@media all and (max-width: 750px) {
  :lang(en) .sec_megumi .megumi_txt_en p:not(:last-child) {
    margin-bottom: 20px;
  }
}
.sec_megumi .more_btn {
  margin-top: 50px;
}
@media all and (min-width: 751px) {
  .sec_megumi .more_btn {
    margin-inline: auto;
  }
}
@media all and (min-width: 751px) {
  :lang(ja) .sec_megumi .more_btn {
    margin-top: 100px;
  }
}
@media all and (min-width: 751px) {
  :lang(en) .sec_megumi .more_btn {
    margin-top: 80px;
  }
}

/* イントロ
---------------------------------------------------------- */
.sec_intro {
  padding: 60px 0 0;
}
@media all and (min-width: 751px) {
  .sec_intro {
    padding: 200px 0;
  }
}
.sec_intro .collage {
  position: relative;
  z-index: 0;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 26.6% 0;
}
@media all and (min-width: 751px) {
  .sec_intro .collage {
    margin: 0;
    padding: 4.3% 0;
    width: auto;
  }
}
.sec_intro .collage .main_img {
  margin: 0 auto;
  width: 61.3%;
}
@media all and (min-width: 751px) {
  .sec_intro .collage .main_img {
    width: 36%;
  }
}
.sec_intro .collage .sub_img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%) scale(0.8);
          transform: translateX(-50%) translateY(-50%) scale(0.8);
  z-index: -1;
  -webkit-transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0.7;
}
.sec_intro .collage .sub_img.mid {
  width: 44.8%;
}
@media all and (min-width: 751px) {
  .sec_intro .collage .sub_img.mid {
    width: 30.7%;
  }
}
.sec_intro .collage .sub_img.small {
  width: 36.5%;
}
@media all and (min-width: 751px) {
  .sec_intro .collage .sub_img.small {
    width: 22.3%;
  }
}
.sec_intro .collage.scroll_active .sub_img {
  -webkit-transform: translate(0, 0) scale(1);
          transform: translate(0, 0) scale(1);
  opacity: 1;
}
.sec_intro .collage.scroll_active .sub_img:nth-child(2) {
  top: 0;
  left: 0%;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media all and (min-width: 751px) {
  .sec_intro .collage.scroll_active .sub_img:nth-child(2) {
    top: 0;
    left: 3.7%;
  }
}
.sec_intro .collage.scroll_active .sub_img:nth-child(3) {
  top: 2.9%;
  left: 58.1%;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media all and (min-width: 751px) {
  .sec_intro .collage.scroll_active .sub_img:nth-child(3) {
    top: 1.9%;
    left: 67%;
  }
}
.sec_intro .collage.scroll_active .sub_img:nth-child(4) {
  top: 70.9%;
  left: 5.3%;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media all and (min-width: 751px) {
  .sec_intro .collage.scroll_active .sub_img:nth-child(4) {
    top: 58.4%;
    left: 11%;
  }
}
.sec_intro .collage.scroll_active .sub_img:nth-child(5) {
  top: 66.8%;
  left: 55.2%;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media all and (min-width: 751px) {
  .sec_intro .collage.scroll_active .sub_img:nth-child(5) {
    top: 46.8%;
    left: 66%;
  }
}
.sec_intro .text_wrap {
  padding-top: 90px;
  text-align: center;
}
@media all and (min-width: 751px) {
  .sec_intro .text_wrap {
    padding-top: 150px;
  }
}
:lang(en) .sec_intro .text_wrap .lead {
  font-size: 14px;
}
@media all and (min-width: 751px) {
  .sec_intro .text_wrap .lead {
    font-size: 15px;
  }
}
.sec_intro .text_wrap .ttl {
  margin: 10px 0 30px;
  font-size: 18px;
  font-weight: normal;
}
@media all and (max-width: 750px) {
  :lang(en) .sec_intro .text_wrap .ttl {
    margin: 6px 0 30px;
    font-size: 22px;
    line-height: 1.54;
  }
}
@media all and (min-width: 751px) {
  .sec_intro .text_wrap .ttl {
    margin: 25px 0 60px;
    font-size: 30px;
  }
}
.sec_intro .text_wrap .intro_text {
  text-align: left;
}
@media all and (min-width: 751px) {
  .sec_intro .text_wrap .intro_text {
    text-align: center;
  }
}
.sec_intro .text_wrap .intro_text p {
  line-height: 2.2;
}
:lang(en) .sec_intro .text_wrap .intro_text p {
  line-height: 1.64;
}
@media all and (min-width: 751px) {
  .sec_intro .text_wrap .intro_text p {
    line-height: 2.57;
  }
  :lang(en) .sec_intro .text_wrap .intro_text p {
    line-height: 2;
  }
}
.sec_intro .text_wrap .intro_text p:not(:last-child) {
  margin-bottom: 1.4em;
}
@media all and (min-width: 751px) {
  :lang(en) .sec_intro .text_wrap .intro_text p:not(:last-child) {
    margin-bottom: 2em;
  }
}
.sec_intro .intro_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media all and (min-width: 751px) {
  .sec_intro .intro_wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 120px;
  }
}
.sec_intro .intro_main {
  width: 100%;
  overflow: hidden;
}
@media all and (min-width: 751px) {
  .sec_intro .intro_main {
    width: 51.6%;
  }
}
.sec_intro .intro_main img {
  -o-object-fit: cover;
     object-fit: cover;
}
.sec_intro .intro_content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.sec_intro .intro_sub_list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media all and (min-width: 751px) {
  .sec_intro .intro_sub_list {
    gap: 18px;
  }
}
.sec_intro .intro_sub {
  overflow: hidden;
}
.sec_intro .intro_sub img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (max-width: 750px) {
  .sec_intro .intro_sub_splide {
    visibility: visible;
  }
  .sec_intro .intro_sub_splide.is-initialized .intro_sub_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0;
  }
}
.sec_intro .intro_texts {
  padding: 60px 20px;
  width: 100%;
}
@media all and (min-width: 751px) {
  .sec_intro .intro_texts {
    padding: 0;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.sec_intro .intro_texts .intro_lead {
  color: #7B7B7B;
  font-size: 13px;
  letter-spacing: 0.08em;
}
@media all and (min-width: 751px) {
  .sec_intro .intro_texts .intro_lead {
    font-size: 12px;
  }
}
.sec_intro .intro_texts .intro_lead .en {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.sec_intro .intro_texts .intro_ttl {
  margin: 10px 0 24px;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.03em;
}
@media all and (min-width: 751px) {
  .sec_intro .intro_texts .intro_ttl {
    margin: 8vw 0 40px;
    font-size: 30px;
  }
}
.sec_intro .intro_texts .intro_desc {
  width: min(600px, 100%);
  text-align: left;
}
.sec_intro .intro_texts .intro_desc p {
  line-height: 2.2;
}
@media all and (min-width: 751px) {
  .sec_intro .intro_texts .intro_desc p {
    line-height: 2.57;
  }
}
.sec_intro .intro_texts .intro_desc p:not(:last-child) {
  margin-bottom: 1.4em;
}

/* 食房、茶房、宿房の共通
---------------------------------------------------------- */
.category_list {
  overflow: hidden;
  margin-top: 100px;
}
@media all and (min-width: 751px) {
  .category_list {
    margin-top: 200px;
  }
}

.category:not(:first-child) {
  margin-top: 100px;
}
@media all and (min-width: 751px) {
  .category:not(:first-child) {
    margin-top: 200px;
  }
}
@media all and (min-width: 1800px) {
  .category:not(:first-child) {
    margin-top: 20vw;
  }
}
@media all and (min-width: 751px) {
  .category .contents {
    position: relative;
  }
}
.category .image_wrap {
  position: relative;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
.category .image_wrap .image_01 {
  width: 80%;
}
@media all and (min-width: 751px) {
  .category .image_wrap .image_01 {
    width: 62%;
  }
}
.category .image_wrap .image_02 {
  position: absolute;
  bottom: -85px;
  right: 10px;
  width: 40%;
}
@media all and (min-width: 751px) {
  .category .image_wrap .image_02 {
    width: 33%;
    top: 50%;
    bottom: auto;
    right: 40px;
  }
}
.category .image_wrap video {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}
.category .text_wrap {
  margin-top: 145px;
}
@media all and (min-width: 751px) {
  .category .text_wrap {
    margin-top: 130px;
  }
}
:lang(ja) .category .text_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
:lang(ja) .category .text_wrap .category_ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 0 7px;
}
@media all and (min-width: 751px) {
  :lang(ja) .category .text_wrap .category_ttl {
    gap: 0 18px;
    position: absolute;
    top: 30px;
    right: 0;
  }
}
:lang(ja) .category .text_wrap .category_ttl span {
  display: block;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  line-height: 1;
}
:lang(ja) .category .text_wrap .category_ttl .en {
  color: #F3A696;
  font-size: 10px;
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  letter-spacing: 0.1em;
  letter-spacing: 0.15em;
}
@media all and (min-width: 751px) {
  :lang(ja) .category .text_wrap .category_ttl .en {
    font-size: 15px;
  }
}
:lang(ja) .category .text_wrap .category_ttl .jp {
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 0.4em;
}
@media all and (min-width: 751px) {
  :lang(ja) .category .text_wrap .category_ttl .jp {
    font-size: 46px;
    letter-spacing: 0.12em;
  }
}
@media all and (max-width: 750px) {
  :lang(ja) .category .text_wrap .txts {
    width: 74.95%;
  }
}
@media all and (min-width: 751px) {
  :lang(ja) .category .text_wrap .txts {
    width: 42%;
  }
}
:lang(ja) .category .text_wrap .txts .detail_ttl {
  margin-bottom: 30px;
  font-size: 15px;
  font-weight: 400;
  line-height: 2.13;
  letter-spacing: 0.03em;
}
@media all and (min-width: 751px) {
  :lang(ja) .category .text_wrap .txts .detail_ttl {
    margin-bottom: 56px;
    font-size: 22px;
  }
}
:lang(ja) .category .text_wrap .txts p {
  font-weight: 400;
  line-height: 2;
}
@media all and (min-width: 751px) {
  :lang(ja) .category .text_wrap .txts p {
    line-height: 2.5;
  }
}
:lang(ja) .category .text_wrap .txts .more_btn {
  margin-top: 40px;
}
@media all and (min-width: 751px) {
  :lang(ja) .category .text_wrap .txts .more_btn {
    margin-top: 72px;
  }
}
:lang(en) .category .text_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
:lang(en) .category .text_wrap .category_ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 15px;
}
@media all and (min-width: 751px) {
  :lang(en) .category .text_wrap .category_ttl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 6px;
    position: absolute;
    top: 30px;
    right: 0;
  }
}
:lang(en) .category .text_wrap .category_ttl .en {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-size: 31px;
  letter-spacing: 0.06em;
}
@media all and (min-width: 751px) {
  :lang(en) .category .text_wrap .category_ttl .en {
    font-size: 50px;
  }
}
:lang(en) .category .text_wrap .category_ttl .jp {
  font-family: "Shippori Mincho", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  color: #F3A696;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.03em;
}
@media all and (min-width: 751px) {
  :lang(en) .category .text_wrap .category_ttl .jp {
    font-size: 15px;
  }
}
@media all and (min-width: 751px) {
  :lang(en) .category .text_wrap .txts {
    width: 60%;
  }
}
:lang(en) .category .text_wrap .txts .detail_ttl {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.66;
  letter-spacing: 0.03em;
}
@media all and (min-width: 751px) {
  :lang(en) .category .text_wrap .txts .detail_ttl {
    margin-bottom: 30px;
    font-size: 22px;
  }
}
@media all and (min-width: 751px) {
  :lang(en) .category .text_wrap .txts p {
    width: min(600px, 100%);
  }
}
:lang(en) .category .text_wrap .txts .more_btn {
  margin-top: 40px;
}
@media all and (min-width: 751px) {
  :lang(en) .category .text_wrap .txts .more_btn {
    margin-top: 72px;
  }
}
.category:nth-child(2n) .image_wrap .image_01 {
  margin: 0 0 0 auto;
}
.category:nth-child(2n) .image_wrap .image_02 {
  left: 10px;
  right: auto;
  bottom: -85px;
}
@media all and (min-width: 751px) {
  .category:nth-child(2n) .image_wrap .image_02 {
    left: 40px;
    bottom: auto;
  }
}
.category:nth-child(2n) .text_wrap .category_ttl {
  left: 0;
}
.category:nth-child(2n) .text_wrap .txts {
  margin: 0 0 0 auto;
}

/* Look Book
---------------------------------------------------------- */
.sec_look .sec_ttl {
  margin-bottom: 0;
}
.sec_look .img_wrap {
  display: block;
  position: relative;
}
.sec_look .img_wrap .ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}
:lang(ja) .sec_look .img_wrap .ttl .jp {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  font-size: 6.93vw;
  letter-spacing: 0.12em;
}
@media all and (min-width: 751px) {
  :lang(ja) .sec_look .img_wrap .ttl .jp {
    font-size: 2.78vw;
  }
}
@media screen and (min-width: 751px) and (max-width: 959px) {
  :lang(ja) .sec_look .img_wrap .ttl .jp {
    font-size: 5vw;
  }
}
:lang(ja) .sec_look .img_wrap .ttl .en {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-size: 4vw;
  letter-spacing: 0.1em;
  font-weight: 600;
}
@media all and (min-width: 751px) {
  :lang(ja) .sec_look .img_wrap .ttl .en {
    font-size: 1.46vw;
  }
}
@media screen and (min-width: 751px) and (max-width: 959px) {
  :lang(ja) .sec_look .img_wrap .ttl .en {
    font-size: 3vw;
  }
}
:lang(en) .sec_look .img_wrap .ttl .jp {
  font-family: "Shippori Mincho", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 4vw;
  letter-spacing: 0.12em;
  font-weight: 400;
}
@media all and (min-width: 751px) {
  :lang(en) .sec_look .img_wrap .ttl .jp {
    font-size: 1.17vw;
  }
}
@media screen and (min-width: 751px) and (max-width: 959px) {
  :lang(en) .sec_look .img_wrap .ttl .jp {
    font-size: 2vw;
  }
}
:lang(en) .sec_look .img_wrap .ttl .en {
  font-size: 7.93vw;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media all and (min-width: 751px) {
  :lang(en) .sec_look .img_wrap .ttl .en {
    font-size: 3.6vw;
  }
}
@media screen and (min-width: 751px) and (max-width: 959px) {
  :lang(en) .sec_look .img_wrap .ttl .en {
    font-size: 5vw;
  }
}
.sec_look .img_wrap .square_btn {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 65px;
  height: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  background-color: rgba(255, 255, 255, 0.8);
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-size: 13px;
}
@media screen and (min-width: 751px) and (max-width: 959px) {
  .sec_look .img_wrap .square_btn {
    width: 100px;
    height: 100px;
    font-size: 15px;
    gap: 10px;
  }
}
.sec_look .img_wrap .square_btn {
  /* 961-　*/
}
@media all and (min-width: 961px) {
  .sec_look .img_wrap .square_btn {
    display: none;
  }
}
.sec_look .img_wrap .square_btn .arrow {
  position: relative;
  display: block;
  overflow: hidden;
  width: 12px;
  height: 3px;
}
@media screen and (min-width: 751px) and (max-width: 959px) {
  .sec_look .img_wrap .square_btn .arrow {
    width: 15px;
    height: 5px;
  }
}
.sec_look .img_wrap .square_btn .arrow::before, .sec_look .img_wrap .square_btn .arrow::after {
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/common/ico_arrow.svg);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s;
  transition: -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s;
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s;
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s, -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s;
}
.sec_look .img_wrap .square_btn .arrow::after {
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
}
.sec_look .cursor {
  display: none;
  /* 961-　*/
}
@media all and (min-width: 961px) {
  .sec_look .cursor {
    opacity: 0;
    display: -ms-grid;
    display: grid;
    justify-items: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: fixed;
    top: -5px;
    left: -5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    -webkit-transition: width 0.5s, height 0.5s, top 0.5s, left 0.5s;
    transition: width 0.5s, height 0.5s, top 0.5s, left 0.5s;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    pointer-events: none;
    font-size: 15px;
  }
  .sec_look .cursor.cursor--hover {
    opacity: 1;
    top: -80px;
    left: -80px;
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.6);
  }
}

/* デフォルトのマウスカーソルを消す */
.hide_cursor {
  /* 961-　*/
}
@media all and (min-width: 961px) {
  .hide_cursor {
    cursor: none !important;
  }
  .hide_cursor a:hover {
    cursor: none !important;
  }
}

/* Stories of “TOKITO”
---------------------------------------------------------- */
.sec_stories {
  /* Look Bookの余白を考慮して他より余白を狭める */
  margin-top: 80px;
}
@media all and (min-width: 751px) {
  .sec_stories {
    margin-top: 150px;
  }
}
.sec_stories .stories_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media all and (min-width: 751px) {
  .sec_stories .stories_list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3.5%;
  }
}
@media all and (min-width: 751px) {
  .sec_stories .stories_list > li {
    width: 31%;
  }
}
.sec_stories .stories_list > li a .thumbnail {
  margin-bottom: 15px;
}
@media all and (min-width: 751px) {
  .sec_stories .stories_list > li a .thumbnail {
    margin-bottom: 20px;
    overflow: hidden;
  }
}
.sec_stories .stories_list > li a .thumbnail img {
  aspect-ratio: 4/3;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.7s;
  transition: -webkit-transform 0.7s;
  transition: transform 0.7s;
  transition: transform 0.7s, -webkit-transform 0.7s;
}
.sec_stories .stories_list > li a .post_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  color: #7B7B7B;
  font-size: 11px;
  margin-bottom: 5px;
}
@media all and (min-width: 751px) {
  .sec_stories .stories_list > li a .post_info {
    font-size: 12px;
    margin-bottom: 10px;
  }
}
.sec_stories .stories_list > li a .post_info .post_tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.sec_stories .stories_list > li a .post_title {
  font-weight: normal;
}
@media (min-width: 751px) and (hover: hover) {
  .sec_stories .stories_list > li a:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@media all and (min-width: 751px) {
  .sec_stories .stories_list > li:nth-child(2) a {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
  }
  .sec_stories .stories_list > li:nth-child(3) a {
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s;
  }
}
.sec_stories .more_btn {
  margin-top: 50px;
}
@media all and (min-width: 751px) {
  .sec_stories .more_btn {
    margin: 90px auto 0;
  }
}

/* Access
---------------------------------------------------------- */
.sec_access .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 50px 0;
}
@media all and (min-width: 751px) {
  .sec_access .wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
  }
}
.sec_access .txts .detail_ttl {
  margin-bottom: 26px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.03em;
}
:lang(en) .sec_access .txts .detail_ttl {
  font-size: 17px;
}
@media all and (min-width: 751px) {
  .sec_access .txts .detail_ttl {
    margin-bottom: 47px;
    font-size: 19px;
  }
  :lang(en) .sec_access .txts .detail_ttl {
    font-size: 22px;
  }
}
.sec_access .txts .text {
  line-height: 1.84;
}
@media all and (min-width: 751px) {
  .sec_access .txts .text {
    line-height: 1.85;
  }
}
.sec_access .txts .text.address {
  margin-bottom: 26px;
}
@media all and (min-width: 751px) {
  .sec_access .txts .text.address {
    margin-bottom: 36px;
  }
}
@media all and (max-width: 750px) {
  .sec_access .txts .text.address .number {
    margin-right: 5px;
  }
}
.sec_access .txts .text.address a {
  padding-right: 15px;
  position: relative;
}
.sec_access .txts .text.address a::after {
  position: absolute;
  content: "";
  background-image: url(../images/common/ico_external.svg);
  background-repeat: no-repeat;
  background-size: contain;
  top: calc(50% + 3px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 8px;
  right: 0;
}
.sec_access .txts .text.address a span {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(32, 32, 32, 0.6)), to(rgba(32, 32, 32, 0.6)));
  background-image: linear-gradient(90deg, rgba(32, 32, 32, 0.6), rgba(32, 32, 32, 0.6));
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 1px;
}
@media (hover: hover) {
  .sec_access .txts .text.address a span {
    -webkit-transition: background-size 0.4s;
    transition: background-size 0.4s;
  }
  .sec_access .txts .text.address a span:hover {
    background-size: 0 1px;
    background-position: right bottom;
  }
}
.sec_access .txts .text:not(.address):not(:last-child) {
  margin-bottom: 6px;
}
@media all and (min-width: 751px) {
  .sec_access .txts .text:not(.address):not(:last-child) {
    margin-bottom: 16px;
  }
}
@media (hover: hover) {
  .sec_access .txts .text:not(.address) a {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(32, 32, 32, 0.6)), to(rgba(32, 32, 32, 0.6)));
    background-image: linear-gradient(90deg, rgba(32, 32, 32, 0.6), rgba(32, 32, 32, 0.6));
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 0 1px;
    -webkit-transition: background-size 0.4s;
    transition: background-size 0.4s;
  }
  .sec_access .txts .text:not(.address) a:hover {
    background-size: 100% 1px;
    background-position: left bottom;
  }
}
.sec_access .map {
  position: relative;
}
@media all and (min-width: 751px) {
  .sec_access .map {
    width: 62.45%;
  }
}
.sec_access .map .logo {
  position: absolute;
  top: 34%;
  left: 67%;
  width: 5%;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
@media all and (min-width: 751px) {
  .sec_access .map .logo {
    top: 42%;
    left: 67.5%;
    width: 4%;
  }
}
.sec_access .map .pin {
  position: absolute;
  top: 71.5%;
  left: 69.5%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #F3A696;
  -webkit-animation: map_icon_pulse 2s infinite;
          animation: map_icon_pulse 2s infinite;
}
@media all and (min-width: 751px) {
  .sec_access .map .pin {
    width: 9px;
    height: 9px;
  }
}
@-webkit-keyframes map_icon_pulse {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    -webkit-box-shadow: 0 0 0 5px rgba(243, 166, 150, 0.2);
            box-shadow: 0 0 0 5px rgba(243, 166, 150, 0.2);
  }
  70% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-box-shadow: 0 0 0 17px rgba(243, 166, 150, 0);
            box-shadow: 0 0 0 17px rgba(243, 166, 150, 0);
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    -webkit-box-shadow: 0 0 0 5px rgba(243, 166, 150, 0);
            box-shadow: 0 0 0 5px rgba(243, 166, 150, 0);
  }
}
@keyframes map_icon_pulse {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    -webkit-box-shadow: 0 0 0 5px rgba(243, 166, 150, 0.2);
            box-shadow: 0 0 0 5px rgba(243, 166, 150, 0.2);
  }
  70% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-box-shadow: 0 0 0 17px rgba(243, 166, 150, 0);
            box-shadow: 0 0 0 17px rgba(243, 166, 150, 0);
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    -webkit-box-shadow: 0 0 0 5px rgba(243, 166, 150, 0);
            box-shadow: 0 0 0 5px rgba(243, 166, 150, 0);
  }
}

/* facility
---------------------------------------------------------- */
@media all and (max-width: 750px) {
  .sec_facility {
    margin-top: 60px;
  }
}
.sec_facility .detail_list {
  margin-top: 70px;
}
@media all and (min-width: 751px) {
  .sec_facility .detail_list {
    margin: 120px auto 0;
    max-width: 900px;
  }
}
.sec_facility .detail_list > li {
  padding: 20px 0;
  border-bottom: 1px solid #E6E6E6;
}
@media all and (min-width: 751px) {
  .sec_facility .detail_list > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 30px 0;
  }
}
.sec_facility .detail_list > li:first-child {
  border-top: 1px solid #E6E6E6;
}
.sec_facility .detail_list > li .ttl {
  font-weight: normal;
  margin-bottom: 15px;
}
@media all and (min-width: 751px) {
  .sec_facility .detail_list > li .ttl {
    margin: 0;
  }
}
.sec_facility .detail_list > li .cont {
  font-size: 12px;
}
@media all and (min-width: 751px) {
  .sec_facility .detail_list > li .cont {
    width: 68%;
    font-size: 14px;
  }
}
.sec_facility .detail_list > li .cont .note {
  margin-top: 8px;
  font-size: 11px;
  color: #7B7B7B;
}
.sec_facility .detail_list > li a {
  padding-right: 15px;
  position: relative;
}
.sec_facility .detail_list > li a::after {
  position: absolute;
  content: "";
  background-image: url(../images/common/ico_external.svg);
  background-repeat: no-repeat;
  background-size: contain;
  top: calc(50% + 3px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 8px;
  right: 0;
}
.sec_facility .detail_list > li a span {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(32, 32, 32, 0.6)), to(rgba(32, 32, 32, 0.6)));
  background-image: linear-gradient(90deg, rgba(32, 32, 32, 0.6), rgba(32, 32, 32, 0.6));
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 1px;
}
@media (hover: hover) {
  .sec_facility .detail_list > li a span {
    -webkit-transition: background-size 0.4s;
    transition: background-size 0.4s;
  }
  .sec_facility .detail_list > li a span:hover {
    background-size: 0 1px;
    background-position: right bottom;
  }
}

/* Instagram
---------------------------------------------------------- */
.sec_insta #sb_instagram #sbi_images {
  padding: 0;
}
.sec_insta .more_btn {
  margin-top: 30px;
}
@media all and (min-width: 751px) {
  .sec_insta .more_btn {
    margin: 60px auto 0;
  }
}
/*# sourceMappingURL=top.css.map */