@charset "UTF-8";
/* aタグ設定
------------------------------------- */
@media (any-hover: hover) {
  a:hover, button:hover {
    opacity: 0.75;
    cursor: pointer;
  }
}

a, button {
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  text-decoration: none;
  color: currentColor;
}

/* 基本設定
------------------------------------- */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  color: #111111;
  -webkit-text-size-adjust: 100%;
  font-size: 1.6rem;
  font-family: "Shippori Mincho B1", serif;
}

body.menu-open {
  overflow: hidden;
  width: 100%;
}

ul {
  list-style: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* デフォルトの三角形アイコンを非表示にする */
summary {
  display: block;
  list-style: none;
}

summary::-webkit-details-marker,
summary::marker {
  display: none;
}

img {
  width: 100%;
  height: auto;
}

.header__switch-jp {
  color: #111111;
}

.header__switch-en {
  color: #999;
}

.header {
  display: flex;
  align-items: center;
  transition: top 0.3s ease;
  z-index: 100;
}
.header.low {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #F4F3F1;
}
.header.low .header__item {
  border-right: 1px solid #111111;
}
.header.low .header__item:last-child {
  border: none;
}
.header.low .header__item a {
  color: #111111;
}
.header.low .header__logo {
  background: url("/assets/images/header_logo-bk.svg") 0 0 no-repeat;
  background-size: contain;
}
.header.low .header__switch-jp {
  color: #111111;
}
.header.low .menu__btn span {
  background-color: #111111;
}
.header.scrolled, .header.scrolled.low {
  top: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #F4F3F1;
}
.header.scrolled .header__item, .header.scrolled.low .header__item {
  border-right: 1px solid #111111;
}
.header.scrolled .header__item:last-child, .header.scrolled.low .header__item:last-child {
  border: none;
}
.header.scrolled .header__item a, .header.scrolled.low .header__item a {
  color: #111111;
}
.header.scrolled .header__logo, .header.scrolled.low .header__logo {
  background: url("/assets/images/header_logo-bk.svg") 0 0 no-repeat;
  background-size: contain;
}
.header.scrolled .header__switch-jp, .header.scrolled.low .header__switch-jp {
  color: #111111;
}
.header.scrolled .menu__btn span, .header.scrolled.low .menu__btn span {
  background-color: #111111;
}

.footer {
  font-weight: 700;
}

.line-left-right {
  position: relative;
}
.line-left-right::before {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transform-origin: left;
  transform: scaleX(0);
  background-color: #AEABA3;
  transition: transform 1s ease;
}
.line-left-right.on::before {
  transform: scaleX(1);
}

.square__wrapper, .bio__wrapper {
  position: relative;
}
.square__wrapper::before, .square__wrapper::after,
.square__wrapper .line-top,
.square__wrapper .line-left,
.square__wrapper .line-bottom,
.square__wrapper .line-right, .bio__wrapper::before, .bio__wrapper::after,
.bio__wrapper .line-top,
.bio__wrapper .line-left,
.bio__wrapper .line-bottom,
.bio__wrapper .line-right {
  content: "";
  position: absolute;
  background-color: #AEABA3;
  transition: all 1s ease;
}
.square__wrapper::before, .bio__wrapper::before {
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
}
.square__wrapper::after, .bio__wrapper::after {
  top: 0;
  left: 0;
  width: 1px;
  height: 0;
}
.square__wrapper .line-bottom, .bio__wrapper .line-bottom {
  bottom: 0;
  right: 0;
  width: 0;
  height: 1px;
}
.square__wrapper .line-right, .bio__wrapper .line-right {
  bottom: 0;
  right: 0;
  width: 1px;
  height: 0;
}
.square__wrapper.on::before, .bio__wrapper.on::before {
  width: 100%;
}
.square__wrapper.on::after, .bio__wrapper.on::after {
  height: 100%;
}
.square__wrapper.on .line-bottom, .bio__wrapper.on .line-bottom {
  width: 100%;
}
.square__wrapper.on .line-right, .bio__wrapper.on .line-right {
  height: 100%;
}

.vertical__line {
  transition: transform 0.6s ease;
  transform: scaleY(0);
}
.vertical__line.on {
  transform: scaleY(1);
}

.modal {
  display: none;
}

.modal.open {
  display: block;
}

/* 表示状態 */
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

/* レスポンシブ設定
------------------------------------- */
@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
  .btn {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #111111;
  }
  .btn::after {
    content: "";
    position: absolute;
  }
  .btn.btn-bk {
    color: #fff;
    background-color: #111111;
  }
  .btn .btn_line {
    position: relative;
  }
  .btn .btn_line::before {
    background: #111111;
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform 0.3s;
  }
  .btn .btn_line.--bk::before {
    background: #fff;
  }
  .btn:hover .btn_line::before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
  .header {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: 40px;
    width: 100%;
    padding-left: 50px;
    padding-right: 50px;
  }
  .header.low {
    top: 0;
  }
  .header.low .header__item a::after {
    background-color: #AEABA3;
  }
  .header.scrolled .header__logo {
    display: block;
    width: 30px;
  }
  .header.scrolled .header__item a::after {
    background-color: #AEABA3;
  }
  .header__logo {
    display: block;
    width: 55px;
    aspect-ratio: 55/101;
    background: url("/assets/images/header_logo.svg") 0 0 no-repeat;
    background-size: contain;
  }
  .header__logo span {
    display: none;
  }
  .header__right {
    display: flex;
    align-items: center;
  }
  .header__menu {
    display: flex;
    margin-right: 20px;
    font-size: 1.8rem;
  }
  .header__item {
    position: relative;
    border-right: 1px solid #AEABA3;
  }
  .header__item:last-child {
    border-right: none;
  }
  .header__item a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding-left: 40px;
    padding-right: 40px;
    color: #fff;
  }
  .header__item a::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 70%;
    height: 1px;
    background-color: #fff; /* リンクの色と同じ */
    transform: translateX(-50%) scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
  }
  .header__item a:hover {
    opacity: 1;
  }
  .header__item a:hover::after {
    transform: translateX(-50%) scaleX(1);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
  .header__item a:not(:hover)::after {
    transform-origin: right;
    transition: transform 0.3s ease;
  }
  .header__item a.--current::before {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 70%;
    height: 1px;
    background-color: #D0121B;
  }
  .header__item a.--current::after {
    display: none;
  }
  .header__switch {
    margin-left: auto;
    font-family: "Inter", sans-serif;
  }
  .link__area-item {
    display: flex;
    gap: 30px;
  }
  .link__contact {
    display: block;
    margin-top: 56px;
  }
  .modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
  }
  .modal__content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    padding: 0;
    z-index: 2;
  }
  .modal__video {
    position: relative;
    width: 90vw;
    max-width: 960px;
    aspect-ratio: 16/9;
    z-index: 1;
  }
  .modal__video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    pointer-events: auto;
  }
  .modal__close {
    position: absolute;
    top: -30px;
    right: 0;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
  }
  .modal__close span {
    position: absolute;
    display: block;
    width: 30px;
    height: 2px;
    background-color: #fff;
    border-radius: 1px;
    transition: 0.3s ease;
  }
  .modal__close span:nth-child(1) {
    top: 15px;
    transform: rotate(45deg);
  }
  .modal__close span:nth-child(2) {
    top: 15px;
    transform: rotate(-45deg);
  }
  .modal__overlay {
    position: fixed;
    inset: 0;
    z-index: 0;
    cursor: pointer;
  }
  button#openModalBtn {
    border: none;
    padding: 0;
    background: none;
    cursor: pointer;
  }
  button#openModalBtn img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  .footer {
    padding: 120px 20px 20px;
    background-color: #AEABA3;
  }
  .footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer__logo {
    display: block;
    width: 100px;
  }
  .footer__menu-list {
    display: flex;
    margin-top: 60px;
  }
  .footer__menu-list li {
    border-right: 1px solid #F4F3F1;
  }
  .footer__menu-list li:last-of-type {
    border: none;
  }
  .footer__menu-list.--contact {
    justify-content: center;
  }
  .footer__item {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 1.8rem;
  }
  .footer__container-shop {
    display: flex;
    justify-content: center;
    gap: 100px;
    width: 100%;
    margin-top: 40px;
    border-top: 1px solid #F4F3F1;
    border-bottom: 1px solid #F4F3F1;
  }
  .footer__topic {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 2rem;
  }
  .footer__shop-list li {
    display: flex;
    gap: 40px;
  }
  .footer__shop-list li a {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 1.8rem;
  }
  .footer__link-list {
    display: flex;
    gap: 37px;
    margin-top: 60px;
    font-size: 1.4rem;
  }
  .footer__link-reservation {
    width: 110px;
    height: 81px;
    text-align: center;
    border: 1px solid #F4F3F1;
  }
  .footer__link-reservation a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    height: 100%;
  }
  .footer__link-reservation a::after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #D0121B;
    border-right: 2px solid #D0121B;
    transform: rotate(45deg);
  }
  .footer__link-order {
    width: 124px;
    height: 81px;
    text-align: center;
    border: 1px solid #F4F3F1;
  }
  .footer__link-order a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    height: 100%;
  }
  .footer__link-order a::after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #D0121B;
    border-right: 2px solid #D0121B;
    transform: rotate(45deg);
  }
  .footer__sns a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 109px;
    height: 107px;
  }
  .footer__sns a img {
    width: 40px;
  }
  .footer__copy {
    margin-top: 84px;
  }
  .back-to-top {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 104px;
    height: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px;
    font-size: 1.3rem;
    background-color: #111111;
    color: #fff;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }
  .back-to-top::before {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    background: url("/assets/images/icon_pagetop.svg") 0 0 no-repeat;
    background-size: contain;
    transition: transform 0.3s;
  }
  .back-to-top:hover::before {
    transform: translateY(-3px);
  }
}
@media screen and (max-width: 1440px) {
  .header__item a {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 1300px) {
  .header__item a {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1100px) {
  .header {
    padding-left: 20px;
    padding-right: 20px;
  }
  .header__item a {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 900px) {
  .header {
    padding-left: 10px;
    padding-right: 10px;
  }
  .header__item a {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .btn {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #111111;
  }
  .btn::after {
    content: "";
    position: absolute;
  }
  .btn.btn-bk {
    color: #fff;
    background-color: #111111;
  }
  .header {
    position: fixed;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 68px;
  }
  .header__switch-jp {
    color: #fff;
  }
  .header__logo {
    display: block;
    width: 34px;
    aspect-ratio: 34/62;
    background: url("/assets/images/header_logo.svg") 0 0 no-repeat;
    background-size: contain;
  }
  .header__logo span {
    display: none;
  }
  .header__menu {
    display: none;
  }
  .header__switch {
    margin-left: auto;
    font-family: "Inter", sans-serif;
    font-size: 1.2rem;
  }
  .menu__btn {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 5px;
    top: 34px;
    right: 20px;
    z-index: 1000;
    width: 36px;
    height: 14px;
  }
  .menu__btn span {
    display: block;
    width: 36px;
    height: 1px;
    background-color: #fff;
    transition: transform 0.3s, opacity 0.3s;
  }
  .menu__btn.is-open span.bar_top {
    transform: translate(0, 6px) rotate(45deg);
  }
  .menu__btn.is-open span.bar_middle {
    opacity: 0;
    transform: scaleX(0);
  }
  .menu__btn.is-open span.bar_bottom {
    transform: translate(0, -6px) rotate(-45deg);
  }
  .menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    transition: opacity, visibility;
    transition-duration: 240ms;
    background-color: rgba(0, 0, 0, 0.3);
  }
  .menu.is-open {
    opacity: 1;
    visibility: visible;
  }
  .menu__container {
    position: relative;
    z-index: 100;
    width: 82%;
    padding-top: 50px;
    padding-bottom: 28px;
    background-color: #F4F3F1;
    text-align: center;
  }
  .menu__overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    display: none;
    width: 100%;
    height: 100vh;
    cursor: pointer;
  }
  .menu__logo {
    display: block;
    width: 55px;
    margin-left: auto;
    margin-right: auto;
  }
  .menu__list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 31px;
    width: 69%;
    margin-top: 22px;
    margin-left: auto;
    margin-right: auto;
  }
  .menu__item a {
    position: relative;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 1.6rem;
    font-weight: 700;
  }
  .menu__item a.--current::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 100%;
    height: 1px;
    background-color: #D0121B;
  }
  .menu__sns-list {
    display: flex;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .menu__sns {
    width: 70px;
  }
  .menu__sns a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 10px;
  }
  .menu__sns img {
    width: 30px;
    height: 30px;
  }
  .link__area-item {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .link__item {
    max-width: 404px;
    margin-left: auto;
    margin-right: auto;
  }
  .link__contact {
    display: block;
    max-width: 404px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
  }
  .modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
  }
  .modal__content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 960px;
    height: 100vh;
    padding: 2;
  }
  .modal__video {
    position: absolute;
    width: 100%;
    aspect-ratio: 16/9;
    z-index: 1;
  }
  .modal__video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    pointer-events: auto;
  }
  .modal__close {
    position: absolute;
    top: -30px;
    right: 0;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
  }
  .modal__close span {
    position: absolute;
    display: block;
    width: 30px;
    height: 2px;
    background-color: #fff;
    border-radius: 1px;
    transition: 0.3s ease;
  }
  .modal__close span:nth-child(1) {
    top: 15px;
    transform: rotate(45deg);
  }
  .modal__close span:nth-child(2) {
    top: 15px;
    transform: rotate(-45deg);
  }
  .modal__overlay {
    position: fixed;
    inset: 0;
    z-index: 0;
    cursor: pointer;
  }
  button#openModalBtn {
    border: none;
    padding: 0;
    background: none;
    cursor: pointer;
  }
  button#openModalBtn img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  .footer {
    padding: 60px 20px;
    background-color: #AEABA3;
  }
  .footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer__logo {
    display: block;
    width: 60px;
  }
  .footer__item {
    display: block;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-right: 20px;
    font-size: 1.4rem;
  }
  .footer__topic {
    padding-top: 6px;
    padding-bottom: 5px;
    font-size: 1.6rem;
  }
  .footer__content-link {
    display: flex;
    justify-content: space-between;
    width: 77%;
    max-width: 340px;
    margin-top: 25px;
  }
  .footer__shop-list li {
    display: flex;
    flex-direction: column;
  }
  .footer__shop-list li a {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 1.4rem;
  }
  .footer__link-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 340px;
    margin-top: 25px;
    font-size: 1.4rem;
  }
  .footer__link-list a {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-left: 22px;
    width: 100%;
    height: 100%;
  }
  .footer__link-reservation {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    width: 160px;
    height: 38px;
    margin-right: 20px;
    text-align: center;
    border: 1px solid #F4F3F1;
    font-size: 1rem;
  }
  .footer__link-reservation a::after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #D0121B;
    border-right: 2px solid #D0121B;
    transform: rotate(45deg);
  }
  .footer__link-order {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    width: 160px;
    height: 38px;
    border: 1px solid #F4F3F1;
    font-size: 1rem;
  }
  .footer__link-order a::after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #D0121B;
    border-right: 2px solid #D0121B;
    transform: rotate(45deg);
  }
  .footer__sns a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 76px;
    height: 75px;
    margin-top: 16px;
    font-size: 1rem;
    text-align: center;
  }
  .footer__sns a img {
    width: 28px;
  }
  .footer__copy {
    margin-top: 60px;
    font-size: 1.2rem;
  }
  .back-to-top {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 60px;
    height: 38px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px;
    font-size: 1rem;
    background-color: #111111;
    color: #fff;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }
  .back-to-top::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background: url("/assets/images/icon_pagetop.svg") 0 0 no-repeat;
    background-size: contain;
    transition: transform 0.3s;
  }
  .back-to-top:hover::before {
    transform: translateY(-3px);
  }
}
@media (max-width: 374px) {
  .footer__link-list {
    width: 100%;
  }
  .footer__link-list a {
    display: flex;
    justify-content: space-between;
    gap: 0;
    padding: 5px;
    flex-wrap: nowrap;
  }
  .footer__link-reservation, .footer__link-order {
    width: 45%;
  }
}/*# sourceMappingURL=base.css.map */