@charset "UTF-8";
/* ベーススタイル
------------------------------------------ */
body {
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 500;
  color: #000;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  body {
    background-image: url(../../asset/images/background_image.jpg);
    background-repeat: round;
  }
}

a {
  color: #000;
  text-decoration: none;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

ul {
  list-style: none;
}

ol {
  list-style-type: none;
}

/* コンテンツ幅
------------------------------------------ */
@media screen and (max-width: 767px) {
  .content-inner {
    width: 100%;
    padding: 0 1.563rem;
  }
}
@media screen and (min-width: 768px) {
  .content-inner {
    width: min(102.857vw, 90rem);
    padding: 0 0.938rem;
    margin: 0 auto;
  }
}
/* 非表示
------------------------------------------ */
@media screen and (max-width: 767px) {
  ._sp {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  ._pc {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1149px) {
  ._tab {
    display: none;
  }
}
.nav__button {
  display: none;
}

.onlineshop-link {
  display: none;
}

/* 背景
------------------------------------------ */
@media screen and (min-width: 768px) {
  .background {
    background-image: url(../../asset/images/background_image.jpg);
    background-repeat: round;
  }
}

/* 文字関連
------------------------------------------ */
/* header
------------------------------------------ */
.header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}

.header__inner {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding-top: 1.25rem;
  }
}

.header a,
.nav__button p {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  color: #FFF;
  line-height: 1.25;
}
@media screen and (max-width: 767px) {
  .header a,
  .nav__button p {
    font-size: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .header-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 1.75rem;
  }
  .header-nav .nav__button {
    position: relative;
    padding-left: 1.813rem;
  }
}

@media screen and (min-width: 768px) {
  .header-nav__list {
    display: flex;
    align-items: center;
  }
}

.header-nav__item {
  position: relative;
}

.header-nav__item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.156rem;
  width: 100%;
  height: 0.063rem;
  background-color: #FFF;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}

@media screen and (min-width: 768px) {
  .header-nav__item:hover::after {
    transform: scale(1, 1);
  }
}
@media screen and (min-width: 768px) {
  .header-nav__item:nth-child(4),
  .header-nav__item:nth-child(5),
  .header-nav__item:nth-child(6) {
    margin-left: 1.813rem;
  }
}

@media screen and (min-width: 768px) {
  .header-nav__item:last-child {
    margin-left: 1.625rem;
  }
}

.header-nav__item {
  list-style: none;
}

@media screen and (min-width: 768px) {
  .nav__button a:hover {
    opacity: 0.8;
  }
}
@media screen and (min-width: 768px) {
  .header-nav__lang-list {
    margin-left: 1.625rem;
  }
  .header-nav__lang-list .lang__item:hover {
    opacity: 0.8;
  }
}
.nav__button a {
  display: flex;
  align-items: center;
  gap: 0.363rem;
  padding: 0.188rem 0.875rem 0.188rem 0.625rem;
  border: 0.063rem solid #FFF;
  border-radius: 3.125rem;
}
@media screen and (min-width: 768px) {
  .nav__button a {
    gap: 0.444rem;
    padding: 0.188rem 0.588rem 0.144rem 0.906rem;
  }
}

.button-icon {
  width: 0.858rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .button-icon {
    width: 0.813rem;
  }
}
.lang__item[data-state=active] a {
  opacity: 1;
}

.lang__item[data-state=inactive] a {
  opacity: 0.8;
}

.lang__item--en::before {
  content: "/";
  font-size: 0.875rem;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .lang__item--en::before {
    font-size: 0.813rem;
  }
}

/* Dropdown */
.nav__dropdown {
  position: relative;
  padding-left: 1.938rem;
  padding-right: 2.438rem;
}

.nav__dropdown p {
  cursor: pointer;
  position: relative;
}

.nav__dropdown > .header-nav__link {
  cursor: pointer;
}

.nav__dropdown > .header-nav__link::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-top: #FFF 0.063rem solid;
  border-right: #FFF 0.063rem solid;
  transform: rotate(135deg);
  transition: transform 0.3s;
  position: absolute;
  right: 25%;
  top: 39%;
}

.nav__dropdown-list {
  background-color: #000;
  border: 0.063rem solid #FFF;
  transform: scaleY(0);
  transform-origin: center top;
  transition: all 0.3s;
  width: 100%;
  position: absolute;
  left: 0;
  top: 1.25rem;
  padding: 1rem 0.625rem 0.938rem;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .nav__dropdown:hover .nav__dropdown-list {
    transform: scaleY(1);
  }
  .nav__dropdown:hover > .header-nav__link::after {
    transform: rotate(-45deg);
    top: 50%;
  }
}
.nav__dropdown-item > a::before {
  content: "- ";
  font-family: "Noto Serif JP", sans-serif;
  font-size: 0.875rem;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .nav__dropdown-item > a::before {
    font-size: 0.813rem;
  }
}

.nav__dropdown-item:not(:first-child) {
  margin-top: 0.625rem;
}

@media screen and (min-width: 768px) {
  .nav__dropdown-item a:hover {
    opacity: 0.8;
  }
}
.nav__dropdown-item a {
  font-size: 0.875rem;
  line-height: 1;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .nav__dropdown-item a {
    font-size: 0.813rem;
  }
}

/* Language-switcher */
.lang__list {
  display: flex;
}

.bogo-language-switcher {
  display: flex;
  gap: 0.313rem;
}

.bogo-language-switcher li:hover {
  opacity: 0.8;
}

.bogo-language-switcher .ja {
  order: 1;
}

.bogo-language-switcher .en {
  order: 2;
}

.bogo-language-switcher .en-US::before {
  content: "/";
  font-size: 0.875rem;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .bogo-language-switcher .en-US::before {
    font-size: 0.813rem;
  }
}

.en-US .bogo-language-name {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
}

.bogo-language-name a {
  opacity: 0.8;
}

.current a {
  opacity: 1;
}

/* Page-header
------------------------------------------ */
.page-header {
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .page-header {
    z-index: 100;
  }
}
@media screen and (min-width: 768px) {
  .page-header {
    position: relative;
  }
}
@media screen and (min-width: 768px) {
  .page-header .header__nav {
    padding-right: 1.75rem;
  }
}

.page-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .page-header__inner {
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .page-header__inner {
    padding-top: 0;
    justify-content: flex-end;
    align-items: center;
  }
}

.page-logo {
  width: 8.125rem;
}
@media screen and (max-width: 767px) {
  .page-logo {
    margin-top: -0.938rem;
    margin-left: -0.938rem;
  }
}
@media screen and (min-width: 768px) {
  .page-logo {
    width: 12rem;
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1149px) {
  .page-logo {
    width: clamp(10.625rem, 8.175rem + 5.104vw, 12rem);
  }
}

@media screen and (min-width: 768px) {
  .page-header .header-nav {
    padding-top: 1.25rem;
  }
}

/* footer
------------------------------------------ */
.footer {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .footer {
    margin-top: min(7.071vw, 6.188rem);
  }
}

/* Contact-Gallery */
.contact-gallery {
  background-color: rgba(33, 33, 33, 0.8);
}

.contact-gallery__inner {
  border-top: 0.063rem solid #cecece;
}

.contact-gallery__list {
  display: flex;
}
@media screen and (max-width: 767px) {
  .contact-gallery__list {
    flex-direction: column;
  }
}

.contact-gallery__item {
  border-bottom: 0.063rem solid #cecece;
}
@media screen and (max-width: 767px) {
  .contact-gallery__item {
    padding: 0 1.563rem 3.75rem;
  }
}
@media screen and (min-width: 768px) {
  .contact-gallery__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    padding: 3.75rem 0 3.875rem;
  }
}

.contact-gallery__item.page_en {
  justify-content: space-between;
}

.contact-gallery__title {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact-gallery__title {
    font-size: 1.875rem;
  }
}

.contact-gallery__text {
  color: #FFF;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 0.813rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .contact-gallery__text {
    font-size: 1rem;
    text-align: center;
    margin-top: 1.313rem;
  }
}

@media screen and (max-width: 767px) {
  .contact-gallery__item:first-child {
    padding-top: 3.125rem;
  }
  .contact-gallery__item:first-child .contact-gallery__text {
    max-width: 25.313rem;
    margin: 1.563rem auto 0;
  }
  .contact-gallery__item:first-child .view__button {
    margin-left: 0;
    margin-top: 2.625rem;
  }
  .contact-gallery__item:last-child {
    padding-top: 2.531rem;
  }
  .contact-gallery__item:last-child .contact-gallery__text {
    font-size: 1rem;
    line-height: 1.1875;
    margin-top: 1.813rem;
    text-align: center;
  }
  .contact-gallery__item:last-child .view__button {
    margin-left: 0;
    margin-top: 2.688rem;
  }
}
@media screen and (min-width: 768px) {
  .contact-gallery__item:first-child {
    border-right: 0.063rem solid #FFF;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .contact-gallery__item:first-child .view__button {
    margin-top: 1.625rem;
  }
  .contact-gallery__item:last-child {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .contact-gallery__item:last-child .view__button {
    margin-top: 4.5rem;
  }
}
/* Footer-wrapper */
.footer-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .footer-wrapper {
    padding-bottom: 2.694rem;
  }
}

.footer-wrapper::after {
  content: "";
  width: 17.75rem;
  height: 17.75rem;
  opacity: 0.5;
  background-image: url(../../asset/images/logo_circle_image_01.png);
  background-size: cover;
  position: absolute;
  bottom: -27%;
  left: -8.813rem;
  z-index: 30;
  animation: 30s linear infinite rotation;
}
@media screen and (min-width: 768px) {
  .footer-wrapper::after {
    width: min(32vw, 28rem);
    height: min(32vw, 28rem);
    bottom: -30%;
    left: -12%;
  }
}

.footer__logo {
  width: 12.5rem;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    width: 14.313rem;
  }
}

.footer__icon-wrapper {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-top: -0.938rem;
}
@media screen and (min-width: 768px) {
  .footer__icon-wrapper {
    margin-top: 0.313rem;
  }
}

.footer__icon-link {
  display: inline-block;
  width: 1.25rem;
}

@media screen and (min-width: 768px) {
  .footer__icon-link:hover {
    opacity: 0.8;
  }
}

@media screen and (max-width: 767px) {
  .footer-nav__wrapper {
    width: 10.625rem;
    margin: 1.25rem auto 0;
  }
}

.footer__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .footer__nav {
    flex-direction: row;
    margin-top: 5.125rem;
  }
}
@media screen and (min-width: 768px) {
  .footer__nav .nav__button {
    padding-left: 1.813rem;
    padding-right: 0;
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .footer__nav .nav__button {
    margin-top: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .footer-nav__list {
    display: flex;
    align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .footer-nav__item:nth-child(n+4) {
    margin-left: 1.875rem;
  }
}

.footer-nav__link,
.footer-nav__item p,
.policy-map__link,
.footer__copyright {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  color: #FFF;
}

@media screen and (max-width: 767px) {
  .footer-nav__list {
    width: 7.531rem;
  }
}

@media screen and (max-width: 767px) {
  .footer-nav__item {
    border-bottom: 0.063rem solid #cecece;
    padding-bottom: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .footer-nav__item:not(:first-child) {
    padding-top: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .footer-nav__dropdown-item {
    margin-top: 0.625rem;
  }
}

.footer-nav__dropdown-item > a::before {
  content: "- ";
  font-size: 0.875rem;
  color: #FFF;
  font-family: "Noto Serif JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .footer-nav__dropdown-item > a::before {
    font-size: 0.813rem;
  }
}

.footer-nav__link,
.nav__button p {
  font-size: 1rem;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .footer-nav__link,
  .nav__button p {
    font-size: 1rem;
  }
}

.footer-nav__dropdown-item a,
.policy-map__link,
.footer__copyright {
  font-size: 0.813rem;
  line-height: 1.2142857143;
}
@media screen and (min-width: 768px) {
  .footer-nav__dropdown-item a,
  .policy-map__link,
  .footer__copyright {
    font-size: 0.875rem;
  }
}

@media screen and (min-width: 768px) {
  .footer-nav__item {
    position: relative;
  }
  .policy-map__link {
    cursor: pointer;
    position: relative;
  }
  .footer-nav__item::after,
  .policy-map__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.156rem;
    width: 100%;
    height: 0.063rem;
    background-color: #FFF;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
  }
  .footer-nav__item:hover::after,
  .policy-map__link:hover::after {
    transform: scale(1, 1);
  }
}
.policy-map_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .policy-map_wrapper {
    justify-content: center;
    gap: 1.875rem;
    margin-top: 1.75rem;
    padding-right: 0.75rem;
  }
}

.footer__copyright {
  font-weight: 500;
  text-align: center;
  margin-top: 2.531rem;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    font-size: 0.875rem;
    margin-top: 4.938rem;
  }
}

/* Drop down */
.footer-nav__dropdown > .footer-nav__link {
  cursor: pointer;
  position: relative;
  display: block;
}

.footer-nav__dropdown > .footer-nav__link::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-top: #FFF 0.063rem solid;
  border-right: #FFF 0.063rem solid;
  transform: rotate(135deg);
  transition: transform 0.3s;
  position: absolute;
  right: -25%;
  top: 39%;
}
@media screen and (max-width: 767px) {
  .footer-nav__dropdown > .footer-nav__link::after {
    right: 0;
  }
}

@media screen and (min-width: 768px) {
  .footer-nav__dropdown {
    position: relative;
    padding: 0 2.563rem 0 1.875rem;
  }
  .footer .footer-nav__dropdown-list {
    display: block;
  }
  .footer-nav__dropdown-list {
    background-color: #000;
    border: 0.063rem solid #FFF;
    transform: scaleY(0);
    transform-origin: center top;
    transition: all 0.3s;
    width: 100%;
    position: absolute;
    left: 0;
    top: 1.375rem;
    padding: 1rem 0.625rem 0.938rem;
    z-index: 1;
  }
  .footer-nav__dropdown:hover .footer-nav__dropdown-list {
    transform: scaleY(1);
  }
  .footer-nav__item:hover > .footer-nav__link::after {
    transform: rotate(-45deg);
    top: 50%;
  }
  .footer-nav__dropdown-item:not(:first-child) {
    margin-top: 0.625rem;
  }
  .footer-nav__dropdown-item a:hover {
    opacity: 0.8;
  }
  .footer-nav__dropdown-item a {
    font-size: 0.875rem;
    line-height: 1;
    cursor: pointer;
  }
}
/* Accordion */
@media screen and (max-width: 767px) {
  .footer-nav__dropdown > .footer-nav__link.open::after {
    transform: rotate(-45deg);
    top: 50%;
  }
}
/* page-footer
------------------------------------------ */
.page-footer {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .page-footer {
    margin-top: 0.625rem;
  }
}

/* fv
------------------------------------------ */
.fv {
  max-width: 100%;
  position: relative;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .fv {
    background-image: url(../../asset/images/background_image.jpg);
    background-repeat: round;
  }
}
@media screen and (min-width: 768px) {
  .fv {
    background-color: #000;
  }
}

@media screen and (max-width: 767px) {
  .fv::after {
    content: "";
    width: 78.889vw;
    height: 78.889vw;
    opacity: 0.8;
    background-image: url(../../asset/images/logo_circle_image_01.png);
    background-size: cover;
    position: absolute;
    bottom: 5.5%;
    right: -43%;
    z-index: 60;
    animation: 30s linear infinite rotation;
  }
}
@media screen and (min-width: 768px) {
  .fv::after {
    width: min(37.857vw, 33.125rem);
    height: min(37.857vw, 33.125rem);
  }
}

.logo {
  position: absolute;
  z-index: 60;
  top: 10.688rem;
  right: -13.5%;
}
@media screen and (min-width: 768px) {
  .logo {
    width: 29%;
    top: 6.3%;
    left: 19.4%;
    right: auto;
  }
}

.logo::before {
  content: "";
  background-image: url(../../asset/images/logo-main_image_01.png);
  background-size: cover;
  width: 39.444vw;
  height: 39.444vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .logo::before {
    width: min(16.357vw, 14.313rem);
    height: min(16.357vw, 14.313rem);
  }
}

.rotation {
  position: relative;
  animation: 30s linear infinite rotation;
}
@media screen and (max-width: 767px) {
  .rotation {
    width: 62.417vw;
  }
}

@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fv__inner {
  position: relative;
  z-index: 50;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .fv__image-wrapper {
    display: flex;
    flex-direction: row-reverse;
    gap: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .fv__image-main {
    position: relative;
    z-index: 10;
  }
}
@media screen and (min-width: 768px) {
  .fv__image-main {
    width: 66.1%;
  }
}

.fv__image-slide {
  position: relative;
}
@media screen and (max-width: 767px) {
  .fv__image-slide {
    width: 100%;
    height: 38.625rem;
    position: absolute;
    top: 20.75rem;
    right: 0;
    background-color: #000;
  }
}
@media screen and (min-width: 768px) {
  .fv__image-slide {
    width: 33.3%;
  }
}

/* スライド画像 */
.slide-image {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  opacity: 0; /* デフォルトの状態を隠す */
  animation: none;
}

.slide-image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .start-animation .slide-image:first-child {
    animation: slideShow01 20s linear infinite 0s;
  }
  .start-animation .slide-image:nth-child(2) {
    animation: slideShow02 20s linear infinite 0s;
  }
  .start-animation .slide-image:nth-child(3) {
    animation: slideShow03 20s linear infinite 0s;
  }
  @keyframes slideShow01 {
    0% {
      opacity: 1;
    }
    25% {
      opacity: 1;
    }
    40% {
      opacity: 1;
    }
    45% {
      opacity: 0;
    }
    90% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes slideShow02 {
    0% {
      opacity: 0;
    }
    25% {
      opacity: 0;
    }
    40% {
      opacity: 1;
    }
    60% {
      opacity: 1;
    }
    85% {
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
  }
  @keyframes slideShow03 {
    0% {
      opacity: 0;
    }
    60% {
      opacity: 0;
    }
    75% {
      opacity: 1;
    }
    90% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
}
@media screen and (max-width: 767px) {
  .start-animation .slide-image:first-child {
    animation: slideShow04 12s linear infinite 0s;
  }
  .start-animation .slide-image:nth-child(3) {
    animation: slideShow05 12s linear infinite 0s; /* 2枚目がフェードインするタイミングを遅らせる */
  }
  @keyframes slideShow04 {
    0% {
      opacity: 1;
    }
    25% {
      opacity: 1;
    }
    45% {
      opacity: 1;
    }
    60% {
      opacity: 0;
    }
    80% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes slideShow05 {
    0% {
      opacity: 0;
    }
    25% {
      opacity: 0;
    }
    40% {
      opacity: 0;
    }
    60% {
      opacity: 1;
    }
    85% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
}
.fv__under-image {
  margin-top: 0.5rem;
  position: relative;
  overflow-x: hidden;
}

.logo-circle {
  width: min(37.857vw, 33.125rem);
  height: min(37.857vw, 33.125rem);
  opacity: 0.8;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  bottom: -56%;
  right: -20%;
  animation: 30s linear infinite rotation;
  overflow-x: hidden;
  z-index: 10;
}

/* Scroll */
.scroll {
  position: absolute;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  color: #FFF;
  font-size: 1.25rem;
  line-height: 1.2;
  top: 45.7%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .scroll {
    font-size: min(1.429vw, 1.25rem);
    top: auto;
    bottom: min(6.071vw, 5.313rem);
  }
}

.scroll::after {
  content: "";
  display: inline-block;
  position: absolute;
  background-color: #FFF;
  left: 50%;
  bottom: -4.063rem;
  transform: translateX(-50%);
  width: 0.063rem;
  height: 3.438rem;
  animation: scroll 1.5s infinite;
}
@media screen and (min-width: 768px) {
  .scroll::after {
    height: min(3.929vw, 3.438rem);
    bottom: max(-4.643vw, -4.063rem);
  }
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/* Loading
------------------------------------------ */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeOut 2s 3.5s forwards;
  pointer-events: none;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.loading__logo {
  opacity: 0;
  animation: logo_fade 3.5s 0.5s forwards;
  width: 14.313rem;
}

@keyframes logo_fade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  60% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
  }
}
/* hamburger
------------------------------------------ */
@media screen and (max-width: 767px) {
  .hamburger__wrapper {
    position: absolute;
    top: 0.313rem;
    right: 0.063rem;
    padding: 0 0.25rem;
    z-index: 100;
  }
}
@media screen and (min-width: 768px) {
  .hamburger__wrapper {
    position: fixed;
    top: 0.313rem;
    right: 0.063rem;
    z-index: 100;
    top: 1.25rem;
    right: 1.75rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
  }
}

@media screen and (min-width: 768px) {
  .hamburger__wrapper.visible {
    opacity: 1;
    visibility: visible;
  }
}

.hamburger-button {
  position: relative;
  width: 3.625rem;
  height: 3.625rem;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .hamburger-button {
    width: 3.625rem;
    height: 3.625rem;
    background-color: #333;
    border: 0.063rem solid #FFF;
  }
}

.hamburger-button__bar {
  display: inline-block;
  width: 2.125rem;
  height: 0.063rem;
  background-color: #FFF;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .hamburger-button__bar {
    z-index: 50;
  }
}
@media screen and (min-width: 768px) {
  .hamburger-button__bar {
    width: 2.125rem;
    height: 0.063rem;
  }
}

.hamburger-button__bar:first-child {
  top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .hamburger-button__bar:first-child {
    top: 1.25rem;
  }
}

.hamburger-button__bar:nth-child(2) {
  top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .hamburger-button__bar:nth-child(2) {
    top: 1.75rem;
  }
}

.hamburger-button__bar:last-child {
  bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .hamburger-button__bar:last-child {
    bottom: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .hamburger-button__background {
    position: fixed;
    width: 3.25rem;
    height: 3.25rem;
    background-color: #333;
    border: 0.063rem solid #FFF;
    top: 0.563rem;
    right: 0.594rem;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
  }
  .hamburger-button__background .hamburger-button {
    width: 100%;
    height: 3.125rem;
  }
  .hamburger-button__background .hamburger-button .hamburger-button__bar:first-child {
    top: 0.938rem;
  }
  .hamburger-button__background .hamburger-button .hamburger-button__bar:nth-child(2) {
    top: 1.563rem;
  }
  .hamburger-button__background .hamburger-button .hamburger-button__bar:last-child {
    bottom: 0.938rem;
  }
}

@media screen and (max-width: 767px) {
  .hamburger-button__background.visible {
    opacity: 1;
    visibility: visible;
  }
}

.hamburger-button__wrapper--open {
  position: fixed;
  top: 1.625rem;
  right: 1.188rem;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .hamburger-button__wrapper--open {
    top: 1.25rem;
    right: 1.75rem;
    width: 3.625rem;
    height: 3.625rem;
    border: none;
  }
}
.hamburger-button__wrapper--open .lang__list {
  display: none;
}

.hamburger-button--open {
  overflow: hidden;
  width: 2.063rem;
  height: 1.125rem;
}
@media screen and (min-width: 768px) {
  .hamburger-button--open {
    width: 100%;
    height: 100%;
    border: none;
    background-color: transparent;
  }
}
.hamburger-button--open .hamburger-button__bar {
  top: 50%;
}
.hamburger-button--open .hamburger-button__bar:first-child {
  transform: translateX(-50%) translateY(-50%) rotate(28deg);
}
.hamburger-button--open .hamburger-button__bar:last-child {
  transform: translateX(-50%) translateY(-50%) rotate(-28deg);
}
.hamburger-button--open .hamburger-button__bar:nth-child(2) {
  display: none;
}

.hamburger-button__background .hamburger-button.hamburger-button--open {
  overflow: hidden;
  width: 2.063rem;
  height: 1.125rem;
}
@media screen and (min-width: 768px) {
  .hamburger-button__background .hamburger-button.hamburger-button--open {
    width: 100%;
    height: 100%;
    border: none;
    background-color: transparent;
  }
}
.hamburger-button__background .hamburger-button.hamburger-button--open .hamburger-button__bar {
  top: 50%;
}
.hamburger-button__background .hamburger-button.hamburger-button--open .hamburger-button__bar:first-child {
  transform: translateX(-50%) translateY(-50%) rotate(28deg);
}
.hamburger-button__background .hamburger-button.hamburger-button--open .hamburger-button__bar:last-child {
  transform: translateX(-50%) translateY(-50%) rotate(-28deg);
}
.hamburger-button__background .hamburger-button.hamburger-button--open .hamburger-button__bar:nth-child(2) {
  display: none;
}

.hamburger-button__wrapper .lang__list,
.hamburger-button__wrapper--sp .lang__list {
  justify-content: center;
  font-size: 0.813rem;
  line-height: 1.2142857143;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .hamburger-button__wrapper .lang__list,
  .hamburger-button__wrapper--sp .lang__list {
    font-size: 1rem;
    line-height: 1.25;
    margin-top: 0.625rem;
  }
}
.hamburger-button__wrapper .lang__list a,
.hamburger-button__wrapper--sp .lang__list a {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  color: #FFF;
}

.hamburger-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 16.25rem;
  background-color: #151515;
  transition: all 0.6s;
  padding: 3.125rem 4.281rem 3.75rem;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .hamburger-menu {
    width: 16.25rem;
    padding: 3.125rem 4.25rem 3.75rem;
  }
}

.hamburger-menu__item,
.hamburger-menu__item--accordion {
  padding-bottom: 0.75rem;
  border-bottom: 0.063rem solid #cecece;
}
@media screen and (min-width: 768px) {
  .hamburger-menu__item,
  .hamburger-menu__item--accordion {
    padding-bottom: 0.75rem;
  }
}

.hamburger-menu__item:nth-child(n+2):nth-child(-n+5),
.hamburger-menu__item--accordion {
  padding-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .hamburger-menu__item:nth-child(n+2):nth-child(-n+5),
  .hamburger-menu__item--accordion {
    padding-top: 0.75rem;
  }
}

.hamburger-menu > .nav__button {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .hamburger-menu > .nav__button {
    margin-top: 1.25rem;
  }
}

.hamburger-menu__item a {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  color: #FFF;
  font-size: 1rem;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .hamburger-menu__item a {
    font-size: 1rem;
  }
}

.hamburger-menu__item--accordion a {
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .hamburger-menu__item--accordion a {
    font-size: 0.813rem;
  }
}

/* Accotdion
------------------------------------------ */
.hamburger-menu__item--accordion > a {
  position: relative;
  display: block;
  font-size: 1rem;
  color: #FFF;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .hamburger-menu__item--accordion > a {
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .accordion-menu a {
    font-size: 0.813rem;
    color: #FFF;
    font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  }
}

.hamburger-menu__item--accordion > a::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-top: #FFF 0.063rem solid;
  border-right: #FFF 0.063rem solid;
  transform: rotate(135deg);
  transition: transform 0.3s;
  position: absolute;
  right: 50%;
  top: 39%;
}

.hamburger-menu__item--accordion > a.open:after {
  transform: rotate(-45deg);
  top: 50%;
}

.hamburger-menu__item--accordion .nav__dropdown {
  padding: 0;
}
.hamburger-menu__item--accordion .nav__dropdown-item {
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .hamburger-menu__item--accordion .nav__dropdown-item {
    margin-top: 0.75rem;
  }
}
.hamburger-menu__item--accordion .nav__dropdown-item a {
  font-size: 0.813rem;
  color: #FFF;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
}
@media screen and (min-width: 768px) {
  .hamburger-menu__item--accordion .nav__dropdown-item a {
    font-size: 0.875rem;
  }
}

.hamburger-menu {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s linear;
}

.hamburger-menu-active {
  pointer-events: auto;
  opacity: 1;
}

.accordion-menu {
  display: none;
}

/* page-top
------------------------------------------ */
.page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 20;
}
@media screen and (min-width: 768px) {
  .page-top {
    bottom: 1.25rem;
    right: 1.75rem;
  }
}

.page-top a {
  width: 1.875rem;
  height: 1.875rem;
  display: block;
  border-radius: 100%;
  background-color: #151515;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page-top a {
    border: 0.063rem solid #FFF;
  }
}
@media screen and (min-width: 768px) {
  .page-top a {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.page-top a::after {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-top: #FFF 0.063rem solid;
  border-right: #FFF 0.063rem solid;
  transform: rotate(-45deg);
  position: absolute;
  top: 42%;
  left: 38%;
}
@media screen and (min-width: 768px) {
  .page-top a::after {
    width: 0.5rem;
    height: 0.5rem;
    top: 45%;
    left: 40%;
  }
}

/* View-botton
------------------------------------------ */
.view__button {
  display: flex;
  align-items: center;
  gap: 1.813rem;
  border-bottom: 0.063rem solid #FFF;
  transition: 0.3s;
  width: 8.797rem;
  padding-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .view__button {
    margin-left: auto;
    gap: 1.813rem;
  }
}
@media screen and (min-width: 768px) {
  .view__button {
    width: 8.797rem;
    padding-bottom: 0.625rem;
    gap: 1.813rem;
  }
}

.view__button-text {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  color: #FFF;
  line-height: 1.2222222222;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .view__button-text {
    font-size: 1.125rem;
  }
}

.view__button-arrow {
  position: relative;
  display: inline-block;
  height: 0.063rem;
  background-color: #FFF;
  margin-top: 0.313rem;
  transition: 0.3s;
  width: 1.875rem;
}
@media screen and (min-width: 768px) {
  .view__button-arrow {
    width: 1.875rem;
  }
}

.view__button-arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  height: 0.063rem;
  background-color: #FFF;
  transform: rotate(45deg);
  transform-origin: calc(100% - 0.5px) 50%;
  width: 0.625rem;
}
@media screen and (min-width: 768px) {
  .view__button-arrow::before {
    width: 0.625rem;
  }
}

@media screen and (min-width: 768px) {
  .hover-transform:hover {
    width: 9.688rem;
    gap: 2.703rem;
  }
}

@media screen and (max-width: 767px) {
  .news-detail .view__button {
    margin-left: 0;
  }
}

/* News-list,Contact,Gallery view-button
------------------------------------------ */
@media screen and (min-width: 768px) {
  .view-button__inner .view__button::after {
    content: "";
    display: inline-block;
    width: 8.797rem;
    height: 1px;
    background-color: #FFF;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(-50%);
    transition: all 0.3s ease-out;
  }
  .view-button__inner .view__button {
    border: none;
    position: relative;
  }
  .view-button__inner .view__button-text::before,
  .view-button__inner .view__button-text::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    height: 0.063rem;
    background: #FFF;
    transition: all 0.3s ease-out;
    transform: translateX(-50%);
  }
  .view-button__inner .view__button-text::before {
    width: 1.875rem;
    transform: translateY(-50%);
  }
  .view-button__inner .view__button-text::after {
    width: 0.625rem;
    transform: translateY(-50%) rotate(45deg);
    transform-origin: right center;
  }
  .view-button__inner .view__button-arrow {
    display: none;
  }
  .view-button__inner .hover-action:hover.view__button::after {
    width: 9.688rem;
  }
  .view-button__inner .hover-action:hover .view__button-text::before,
  .view-button__inner .hover-action:hover .view__button-text::after {
    right: -0.8rem;
  }
}
/* Section-title
------------------------------------------ */
.section-title {
  color: #FFF;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-weight: 400;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .section-title {
    font-size: 3.125rem;
  }
}

.section-title span {
  border-bottom: 0.063rem solid #FFF;
  padding-bottom: 0.313rem;
}

/* Pagination
------------------------------------------ */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .pagination {
    margin-top: 3.15rem;
  }
}

.pagination {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.pagination span,
.pagination .page {
  font-weight: 700;
  color: #FFF;
  font-size: 0.813rem;
  line-height: 1.4285714286;
  border: 0.063rem solid #FFF;
  width: 1.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.25rem 0 0.375rem;
}
@media screen and (min-width: 768px) {
  .pagination span,
  .pagination .page {
    font-size: 0.875rem;
  }
}
.pagination .current {
  border: 0.063rem solid #646464;
  background-color: #646464;
}
.pagination .nextpostslink,
.pagination .previouspostslink {
  color: #FFF;
}

.pagination .extend {
  border: none;
}

/* Breadcrumb
------------------------------------------ */
.breadcrumb {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .breadcrumb {
    margin-top: 6.25rem;
  }
}

.breadcrumb__inner {
  color: #FFF;
  font-size: 0.75rem;
  line-height: 2.6666666667;
}
@media screen and (max-width: 767px) {
  .breadcrumb__inner {
    padding: 0 1.563rem;
  }
}
@media screen and (min-width: 768px) {
  .breadcrumb__inner {
    max-width: 70rem;
    margin: 0 auto;
    padding: 0 1.25rem;
    font-size: 0.75rem;
  }
}

.breadcrumb a,
.breadcrumb span {
  color: #FFF;
  font-size: 0.75rem;
  line-height: 2.6666666667;
}
@media screen and (min-width: 768px) {
  .breadcrumb a,
  .breadcrumb span {
    font-size: 0.75rem;
  }
}

/* About
------------------------------------------ */
.about {
  position: relative;
  overflow-x: clip;
}
@media screen and (max-width: 767px) {
  .about {
    z-index: 60;
    margin-top: -12.75rem;
    padding-top: 6.375rem;
  }
}
@media screen and (min-width: 768px) {
  .about {
    padding-top: min(7.143vw, 6.25rem);
  }
}
.about .section-title {
  padding-left: 0.313rem;
}
@media screen and (max-width: 767px) {
  .about .section-title {
    font-size: 1.875rem;
  }
}
@media screen and (min-width: 768px) {
  .about .section-title {
    margin-top: -0.313rem;
  }
}

@media screen and (min-width: 768px) {
  .about::before {
    content: "";
    width: min(37.857vw, 33.125rem);
    height: min(37.857vw, 33.125rem);
    opacity: 0.8;
    background-image: url(../../asset/images/logo_circle_image_01.png);
    background-size: cover;
    position: absolute;
    top: -4rem;
    right: -20%;
    z-index: 30;
    animation: 30s linear infinite rotation;
  }
}

.about__inner {
  padding: 0 1.563rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .about__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: min(6.429vw, 5.625rem);
    padding: 0;
  }
}

@media screen and (min-width: 768px) {
  .about__content {
    width: 34.9%;
    padding: min(5.786vw, 5.063rem) 0;
  }
}

.about__content-text-wrapper {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .about__content-text-wrapper {
    margin-top: 1.875rem;
  }
}

.about__content-text {
  color: #E8E8E8;
  font-size: 0.813rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .about__content-text {
    line-height: 2;
    font-size: 1rem;
  }
}

.about__image-slide {
  position: relative;
  width: 58.8%;
  height: min(55vw, 48.125rem);
}

@media screen and (max-width: 767px) {
  .about .view__button {
    margin-top: 1.875rem;
  }
}
@media screen and (min-width: 768px) {
  .about .view__button {
    margin-top: 2.25rem;
  }
}

.bottom-space {
  margin-bottom: 2em;
}

/* Service
------------------------------------------ */
.service {
  margin-top: 4.875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .service {
    margin-top: min(7.179vw, 6.281rem);
  }
}
@media screen and (min-width: 768px) {
  .service .section-title {
    margin-top: -0.313rem;
  }
}

@media screen and (min-width: 768px) {
  .service::before {
    content: "";
    width: min(29.643vw, 25.938rem);
    height: min(29.643vw, 25.938rem);
    opacity: 0.8;
    background-image: url(../../asset/images/logo_circle_image_01.png);
    background-size: cover;
    position: absolute;
    bottom: -3.75rem;
    left: -15%;
    z-index: 30;
    animation: 30s linear infinite rotation;
  }
}

.service__inner {
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (max-width: 767px) {
  .service__inner {
    gap: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .service__inner {
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
    margin-right: min(6.429vw, 5.625rem);
  }
}

@media screen and (max-width: 767px) {
  .service__content {
    padding: 0 1.563rem;
  }
}
@media screen and (min-width: 768px) {
  .service__content {
    width: 35.12%;
    padding: 1.906rem 0;
  }
}

@media screen and (max-width: 767px) {
  .service__content-title {
    font-size: 1.875rem;
  }
}

.service__content-text-wrapper {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .service__content-text-wrapper {
    margin-top: 1.875rem;
  }
}

.service__content-text {
  color: #E8E8E8;
  font-size: 0.813rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .service__content-text {
    line-height: 2;
    font-size: 1rem;
  }
}

.service__image-slide {
  position: relative;
  height: 20.938rem;
}
@media screen and (min-width: 768px) {
  .service__image-slide {
    width: 58.8%;
    height: min(55vw, 48.125rem);
  }
}
@media screen and (min-width: 768px) {
  .service__image-slide .slide-image {
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  .service__image-slide .slide-image {
    padding-right: 1.563rem;
  }
}

.service__image-slide img {
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.service .view__button {
  margin-top: 1.813rem;
}
@media screen and (min-width: 768px) {
  .service .view__button {
    margin-top: 2.688rem;
  }
}

/* Link
------------------------------------------ */
.link {
  margin-top: 7.181rem;
  position: relative;
  overflow-x: clip;
}
@media screen and (min-width: 768px) {
  .link {
    margin-top: min(7.893vw, 6.906rem);
  }
}

.link::before {
  content: "";
  width: 78.889vw;
  height: 79.444vw;
  opacity: 0.6;
  background-image: url(../../asset/images/logo_circle_image_01.png);
  background-size: cover;
  position: absolute;
  top: -16%;
  left: -48%;
  z-index: 30;
  animation: 30s linear infinite rotation;
}
@media screen and (min-width: 768px) {
  .link::before {
    width: min(19vw, 16.625rem);
    height: min(19vw, 16.625rem);
    top: auto;
    bottom: -39%;
    left: auto;
    right: -3.5%;
  }
}

.link__list {
  display: flex;
}
@media screen and (max-width: 767px) {
  .link__list {
    max-width: 40.125rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 767px) {
  .link__list {
    flex-direction: column;
  }
}

@media screen and (min-width: 768px) {
  .link__item {
    width: 33.3%;
  }
}

.link__item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  height: 85.556vw;
  max-height: 26.736rem;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .link__item-wrapper {
    height: min(28.571vw, 25rem);
  }
}

.link__item-wrapper::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  background-image: url(../../asset/images/onlineshop_image_pc-01.jpg);
  -ms-background-size: cover;
  background-size: cover;
  transition: all 0.3s ease-out;
}

.link__item:nth-child(2) .link__item-wrapper::after {
  background-image: url(../../asset/images/sommelir_image_pc-01.jpg);
}

.link__item:last-child .link__item-wrapper::after {
  background-image: url(../../asset/images/art_image_pc-01.jpg);
}

.link__item-title-inner {
  background-color: #000;
  opacity: 0.8;
  color: #FFF;
  text-align: center;
  padding: 1.188rem 0 1.438rem;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .link__item-title-inner {
    padding: min(2.143vw, 1.875rem) 0 min(1.857vw, 1.625rem);
  }
}

.link__item-title--en {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.2333333333;
  position: relative;
  padding-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .link__item-title--en {
    font-size: 2.5rem;
    line-height: 1.2;
    padding-bottom: 0.5rem;
  }
}

.link__item-title--ja {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.1875;
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .link__item-title--ja {
    font-size: 1rem;
    margin-top: 0.75rem;
  }
}

.link__item-title--en::after {
  content: "";
  display: inline-block;
  width: 5rem;
  height: 0.063rem;
  background-color: #FFF;
  position: absolute;
  bottom: -0.188rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .link__item-title--en::after {
    width: 5rem;
    bottom: 0;
  }
}

.link__item-title-inner::before,
.link__item-title-inner::after {
  content: "";
  position: absolute;
  bottom: 15%;
  right: 1.563rem;
  height: 0.063rem;
  background: #FFF;
  transition: all 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .link__item-title-inner::before,
  .link__item-title-inner::after {
    bottom: 17%;
    right: 1.425rem;
  }
}

.link__item-title-inner::before {
  width: 1.875rem;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .link__item-title-inner::before {
    width: 1.875rem;
  }
}

.link__item-title-inner::after {
  width: 0.625rem;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: right center;
}
@media screen and (min-width: 768px) {
  .link__item-title-inner::after {
    width: 0.625rem;
  }
}

.link__item-wrapper:hover::after {
  transform: scale(1.1);
}

.link__item-wrapper:hover .link__item-title-inner::before,
.link__item-wrapper:hover .link__item-title-inner::after {
  right: 0.8rem;
}

/* Lang-en */
.lang__en .link__item-title--en {
  padding-bottom: 0;
}
.lang__en .link__item-title--en::after {
  content: none;
}
@media screen and (min-width: 768px) {
  .lang__en .link__item-title-inner::before,
  .lang__en .link__item-title-inner::after {
    bottom: 41%;
  }
}

/* News
------------------------------------------ */
.news {
  margin-top: 4.938rem;
}
@media screen and (min-width: 768px) {
  .news {
    margin-top: min(7.357vw, 6.438rem);
  }
}

.news__inner {
  padding: 0 2.5rem;
}
@media screen and (min-width: 768px) {
  .news__inner {
    width: 70rem;
    padding: 0 1.25rem;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1149px) {
  .news__inner {
    width: 93.333vw;
  }
}

.news__title {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .news__title {
    font-size: 1.875rem;
  }
}
@media screen and (min-width: 768px) {
  .news__title {
    margin-top: -0.313rem;
    padding-left: 0.313rem;
  }
}

.news__list {
  display: flex;
  margin-top: 2.813rem;
}
@media screen and (max-width: 767px) {
  .news__list {
    flex-direction: column;
    margin-top: 2.5rem;
    gap: 0.375rem;
  }
}
@media screen and (min-width: 768px) {
  .news__list {
    justify-content: space-between;
  }
}

@media screen and (max-width: 767px) {
  .news__item {
    max-width: 31.25rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) {
  .news__item {
    width: 13.438rem;
  }
}

@media screen and (max-width: 767px) {
  .news__item:not(:first-child) {
    margin-top: 1.875rem;
  }
}
@media screen and (min-width: 768px) {
  .news__item:not(:first-child) {
    margin-left: 0.625rem;
  }
}

.news__item-image {
  overflow: hidden;
}
.news__item-image img {
  transition: all 0.3s ease-out;
}

.news__item-content {
  color: #FFF;
  display: flex;
  flex-direction: column;
}

.news__item-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .news__item-meta {
    font-size: 0.75rem;
    margin-top: 0.813rem;
  }
}

.news__item-text {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 0.813rem;
  line-height: 2;
  flex: 1;
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .news__item-text {
    font-size: 0.875rem;
    margin-top: 0.813rem;
  }
}

.news .view__button {
  margin-left: 0;
  margin-top: 3.125rem;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .news .view__button {
    margin-top: 3.625rem;
  }
}

.view-button__inner {
  display: flex;
  justify-content: center;
}

.news__item:hover .news__item-image img {
  transform: scale(1.2);
}

.news__item:hover .news__item-content {
  opacity: 0.8;
}

/* Online shop
------------------------------------------ */
.onlineshop-link {
  border-radius: 0.313rem;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .onlineshop-link {
    margin-top: 6.25rem;
  }
}

.onlineshop-link__inner {
  position: relative;
}
@media screen and (max-width: 767px) {
  .onlineshop-link__inner {
    max-width: 34.688rem;
    padding: 0 1.563rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) {
  .onlineshop-link__inner {
    width: 36.875rem;
    height: 14.938rem;
    margin: 0 auto;
    padding: 0 1.25rem;
  }
}

.onlineshop-link__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  height: 86.111vw;
  max-height: 29.869rem;
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .onlineshop-link__wrapper {
    height: 100%;
  }
}

.onlineshop-link__wrapper::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  background-image: url(../../asset/images/onlineshop_image_sp-02.png);
  -ms-background-size: contain;
  background-size: cover;
  transition: all 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .onlineshop-link__wrapper::after {
    background-image: url(../../asset/images/onlineshop_image_pc-02.png);
    background-size: cover;
  }
}

.onlineshop-link__title-inner {
  background-color: #000;
  opacity: 0.8;
  color: #FFF;
  position: relative;
  z-index: 10;
  padding: 2.389vw 0 4vw 5.556vw;
  border-radius: 0 0 5px 5px;
}
@media screen and (min-width: 768px) {
  .onlineshop-link__title-inner {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    padding: 0.375rem 0 0.938rem 1.688rem;
  }
}

.onlineshop-link__title--en {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 1.875rem;
  line-height: 1.2333333333;
  position: relative;
}
@media screen and (min-width: 768px) {
  .onlineshop-link__title--en {
    font-size: 2.5rem;
    line-height: 1.2;
  }
}

.onlineshop-link__title--ja {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.3125;
}
@media screen and (min-width: 768px) {
  .onlineshop-link__title--ja {
    font-size: 1rem;
  }
}

.arrow-background {
  background-color: #000;
  width: 5.375rem;
  height: 8.406rem;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  border-radius: 0 0 5px 0;
}
@media screen and (min-width: 768px) {
  .arrow-background {
    width: 6.518rem;
    height: 6.674rem;
  }
}

.arrow-background::before,
.arrow-background::after {
  content: "";
  position: absolute;
  bottom: 1.038rem;
  right: 0.581rem;
  height: 0.063rem;
  background: #FFF;
  transition: all 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .arrow-background::before,
  .arrow-background::after {
    bottom: 1.781rem;
    right: 1.381rem;
  }
}

.arrow-background::before {
  width: 1.875rem;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .arrow-background::before {
    width: 1.875rem;
  }
}

.arrow-background::after {
  width: 0.625rem;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: right center;
}
@media screen and (min-width: 768px) {
  .arrow-background::after {
    width: 0.625rem;
  }
}

.onlineshop-link__wrapper:hover::after {
  transform: scale(1.1);
}

.onlineshop-link__wrapper:hover .arrow-background::before,
.onlineshop-link__wrapper:hover .arrow-background::after {
  right: 0.8rem;
}

/* Page-About
------------------------------------------ */
/* humburger */
@media screen and (max-width: 767px) {
  .page-hamburger-button__background {
    opacity: 0;
    transition: opacity 0.1s ease;
  }
}

/* Profile */
.profile {
  padding-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .profile {
    padding-top: 6.25rem;
  }
}

.profile__inner {
  padding: 0 1.563rem;
}
@media screen and (max-width: 767px) {
  .profile__inner {
    max-width: 33.125rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) {
  .profile__inner {
    padding: 0 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .profile__content {
    display: flex;
    justify-content: space-between;
    gap: 0.938rem;
    max-width: 70rem;
    margin: 3.563rem auto 0;
  }
}

.profile__title {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .profile__title {
    font-size: 1.5rem;
  }
}

.profile-ceo__wrapper {
  display: flex;
  flex-direction: column;
}

.profile-ceo__name-wrapper {
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .profile-ceo__name-wrapper {
    text-align: center;
    margin-top: 1.563rem;
  }
}
@media screen and (min-width: 768px) {
  .profile-ceo__name-wrapper {
    border-bottom: 0.063rem solid #FFF;
    padding-bottom: 0.688rem;
  }
}

.profile-ceo__title {
  font-size: 0.813rem;
}
@media screen and (min-width: 768px) {
  .profile-ceo__title {
    font-size: 0.875rem;
  }
}

.profile-ceo__name {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 1.625rem;
  line-height: 1.2307692308;
  margin-top: 0.063rem;
}
@media screen and (min-width: 768px) {
  .profile-ceo__name {
    font-size: 1.625rem;
  }
}

.profile-ceo__image {
  margin: 0.625rem auto 0;
  width: 15rem;
}
@media screen and (min-width: 768px) {
  .profile-ceo__image {
    margin-top: 0;
    width: 18.75rem;
  }
}

.profile-ceo__about {
  color: #FFF;
  font-size: 0.813rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .profile-ceo__about {
    max-width: 12.75rem;
    margin: 0.625rem auto 0;
  }
}
@media screen and (min-width: 768px) {
  .profile-ceo__about {
    font-size: 0.875rem;
    margin-top: 1.25rem;
  }
}

.profile-ceo__message {
  color: #E8E8E8;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .profile-ceo__message {
    margin-top: 0rem;
    max-width: 65.1%;
  }
}

@media screen and (min-width: 768px) {
  .profile-ceo__message-wrapper {
    margin-top: 1.875rem;
  }
}

.profile-ceo__message-text {
  font-size: 0.813rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .profile-ceo__message-text {
    font-size: 1rem;
    line-height: 2;
  }
}

/* Vision */
.vision {
  margin-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .vision {
    margin-top: 8.125rem;
  }
}

@media screen and (min-width: 768px) {
  .vision__inner {
    display: flex;
    align-items: center;
    gap: min(5.714vw, 5rem);
    padding-right: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .vision__title {
    font-size: 1.5rem;
  }
}

.vision__image {
  padding-right: 4.167vw;
}
@media screen and (min-width: 768px) {
  .vision__image {
    padding-right: 0;
    width: 55%;
  }
}

@media screen and (max-width: 767px) {
  .vision__content {
    max-width: 40.125rem;
    margin: 1.25rem auto 0;
    padding: 0 1.563rem;
  }
}
@media screen and (min-width: 768px) {
  .vision__content {
    width: 28.75rem;
  }
}

.vision__text {
  font-size: 0.813rem;
  line-height: 2;
  color: #E8E8E8;
  margin-top: 2.375rem;
}
@media screen and (min-width: 768px) {
  .vision__text {
    font-size: 1rem;
    margin-top: 3.125rem;
  }
}

/* Company */
.company {
  margin-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .company {
    margin-top: 6.875rem;
  }
}

@media screen and (max-width: 767px) {
  .company__inner {
    padding: 0 1.563rem;
  }
}
@media screen and (min-width: 768px) {
  .company__inner {
    width: 57.5rem;
    padding: 0 1.25rem;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1149px) {
  .company__inner {
    width: clamp(43.75rem, 19.306rem + 50.926vw, 57.5rem);
  }
}

.company__title {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .company__title {
    font-size: 1.5rem;
  }
}

.company__profile {
  margin-top: 2.813rem;
}
@media screen and (min-width: 768px) {
  .company__profile {
    margin-top: 4.063rem;
  }
}

.company-profile__list {
  color: #FFF;
  display: flex;
  padding-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .company-profile__list {
    padding-bottom: 1.25rem;
    padding-left: min(3vw, 2.625rem);
  }
}

.company-profile__list:not(:last-child) {
  border-bottom: 0.063rem solid #d8d8d8;
}

.company-profile__list:not(:first-child) {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .company-profile__list:not(:first-child) {
    margin-top: 1.313rem;
  }
}

.company-profile__term {
  font-size: 0.938rem;
  line-height: 1.8;
  max-width: 5.469rem;
  width: 100%;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .company-profile__term {
    font-size: 1rem;
    max-width: 9.25rem;
  }
}

.company-profile__description {
  font-size: 0.813rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .company-profile__description {
    padding-top: 0.125rem;
  }
}
@media screen and (min-width: 768px) {
  .company-profile__description {
    font-size: 1rem;
    line-height: 1.8;
  }
}

/* Page-service
------------------------------------------ */
.page-service {
  padding-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .page-service {
    padding-top: 6.25rem;
  }
}

.page-service__text-wrapper {
  padding: 0 1.563rem;
}
@media screen and (min-width: 768px) {
  .page-service__text-wrapper {
    padding: 0 1.25rem 0 0;
    margin-left: min(18.571vw, 16.25rem);
    max-width: 45rem;
  }
}

.page-service__text {
  color: #E8E8E8;
  font-size: 0.813rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .page-service__text {
    font-size: 1rem;
  }
}

.page-service__list {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .page-service__list {
    margin-top: 6.25rem;
  }
}

@media screen and (max-width: 767px) {
  .page-service__content {
    padding: 0 1.563rem;
    margin-top: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .page-service__item {
    display: flex;
    align-items: center;
    gap: min(2.857vw, 2.5rem);
  }
}

@media screen and (max-width: 767px) {
  .page-service__item:nth-child(odd) .page-service__image {
    padding-right: 1.563rem;
  }
}

@media screen and (max-width: 767px) {
  .page-service__item:nth-child(even) .page-service__image {
    padding-left: 1.563rem;
  }
}
@media screen and (min-width: 768px) {
  .page-service__item:nth-child(even) {
    flex-direction: row-reverse;
  }
}

.page-service__item:not(:first-child) {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .page-service__item:not(:first-child) {
    margin-top: 6.25rem;
  }
}

@media screen and (min-width: 768px) {
  .page-service__image {
    width: 64.3%;
  }
}

@media screen and (min-width: 768px) {
  .page-service__content {
    width: 23.125rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1149px) {
  .page-service__content {
    width: 30.833vw;
  }
}

@media screen and (max-width: 767px) {
  .page-service__content-title {
    font-size: 1.5rem;
    line-height: 1.2;
  }
}
@media screen and (min-width: 768px) and (max-width: 1149px) {
  .page-service__content-title {
    font-size: clamp(2.1875rem, 0.521rem + 3.472vw, 3.125rem);
  }
}

.borderd-none {
  border-bottom: none !important;
}

.borderd-text {
  border-bottom: 0.063rem solid #FFF !important;
}

.page-service__content-text {
  color: #E8E8E8;
  font-size: 0.813rem;
  line-height: 2;
  margin-top: 2.188rem;
}
@media screen and (min-width: 768px) {
  .page-service__content-text {
    font-size: 1rem;
    margin-top: 2.188rem;
  }
}

.page-service .view-button__inner {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .page-service .view-button__inner {
    margin-top: 2.5rem;
    justify-content: flex-start;
  }
}

/* Wine Importer
------------------------------------------ */
.child-page-service {
  padding-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .child-page-service {
    padding-top: 6.25rem;
  }
}

.page-fv__title-sub {
  font-size: 1.875rem;
  line-height: 1.21875;
}
@media screen and (min-width: 768px) {
  .page-fv__title-sub {
    font-size: clamp(1.5rem, 0.892rem + 1.266vw, 2rem);
    line-height: 1.2;
    margin-top: 1.25rem;
  }
}

.child-page-service__text,
.child-page-service__content-text,
.child-page-service__content-text--bottom,
.child-page-service__note-text,
.child-page-service__note-text a {
  color: #E8E8E8;
  font-size: 0.813rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .child-page-service__text,
  .child-page-service__content-text,
  .child-page-service__content-text--bottom,
  .child-page-service__note-text,
  .child-page-service__note-text a {
    font-size: 1rem;
  }
}

.child-page-service__note-text a {
  text-decoration: underline;
}

.child-page-service__text {
  margin-top: 2.5rem;
  padding: 0 1.563rem;
}
@media screen and (min-width: 768px) {
  .child-page-service__text {
    margin-top: 0;
    margin-left: min(18.571vw, 16.25rem);
    max-width: 45rem;
    padding: 0 1.25rem 0 0;
  }
}

@media screen and (max-width: 767px) {
  .child-page-service .onlineshop-link {
    margin-top: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .child-page-service .onlineshop-link {
    margin-top: 3.125rem;
  }
}

.child-page-service__list {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .child-page-service__list {
    margin-top: 6.25rem;
  }
}

.child-page-service__item:not(:first-child) {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .child-page-service__item:not(:first-child) {
    margin-top: 3.75rem;
  }
}

@media screen and (max-width: 767px) {
  .child-page-service__item:nth-child(odd) .child-page-service__image {
    padding-right: 1.563rem;
  }
}
@media screen and (min-width: 768px) {
  .child-page-service__item:nth-child(odd) .child-page-service__content {
    padding-right: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .child-page-service__item:nth-child(even) .child-page-service__image {
    padding-left: 1.563rem;
  }
}
@media screen and (min-width: 768px) {
  .child-page-service__item:nth-child(even) .flex-container {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 768px) {
  .child-page-service__item:nth-child(even) .child-page-service__content {
    padding-left: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .flex-container {
    display: flex;
    align-items: center;
    gap: min(4.286vw, 3.75rem);
  }
}

@media screen and (min-width: 768px) {
  .child-page-service__image {
    width: 37.5rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1149px) {
  .child-page-service__image {
    width: clamp(28.125rem, 11.42rem + 34.803vw, 37.5rem);
  }
}

@media screen and (max-width: 767px) {
  .child-page-service__content {
    padding: 0 1.563rem;
    margin-top: 1.625rem;
  }
}
@media screen and (min-width: 768px) {
  .child-page-service__content {
    width: min(40vw, 35rem);
  }
}

.child-page-service__content-title {
  color: #FFF;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  border-bottom: 0.063rem solid #FFF;
  padding-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .child-page-service__content-title {
    font-size: 1.375rem;
    padding-bottom: 0.5rem;
  }
}

.child-page-service__content-text {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .child-page-service__content-text {
    margin-top: 1.875rem;
  }
}

.child-page-service__note {
  border: 0.063rem solid #FFF;
}
@media screen and (max-width: 767px) {
  .child-page-service__note {
    margin: 1.25rem 1.563rem 0;
    padding: 1.25rem 1.25rem 1.281rem;
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .child-page-service__note {
    width: 62.5rem;
    padding: 2.5rem 8.125rem 2.531rem;
    margin: 2.5rem auto 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1149px) {
  .child-page-service__note {
    width: 83.333vw;
    padding: 3.333vw 10.833vw 3.375vw;
  }
}

.child-page-service .view__button {
  margin: 1.875rem auto 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .child-page-service .view__button {
    display: none;
  }
}
.child-page-service .js-accordion-title::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-top: #FFF 0.063rem solid;
  border-right: #FFF 0.063rem solid;
  transform: rotate(135deg);
  transition: transform 0.3s;
  position: absolute;
  right: 0;
  top: 30%;
}
.child-page-service .js-accordion-title.open:after {
  transform: rotate(-45deg);
  top: 30%;
}

/* Gallery
------------------------------------------ */
.gallery-content {
  padding-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .gallery-content {
    padding-top: 3.125rem;
  }
}

.gallery-content__inner {
  padding: 0 1.563rem;
}
@media screen and (min-width: 768px) {
  .gallery-content__inner {
    width: 43.75rem;
    padding: 0 1.25rem;
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  .gallery-content__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    grid-gap: 1.875rem;
  }
}

@media screen and (max-width: 767px) {
  .gallery-content__item {
    max-width: 31.25rem;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 767px) {
  .gallery-content__item:not(:first-child) {
    margin-top: 1.875rem;
  }
}

.gallery-content .view__button {
  margin: 0 auto;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .gallery-content .view__button {
    margin-top: 3.75rem;
  }
}
@media screen and (min-width: 768px) {
  .gallery-content .view__button {
    margin-top: 3.75rem;
  }
}
.gallery-content .view__button:hover {
  opacity: 0.8;
}
.gallery-content .js-accordion-title::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-top: #FFF 0.063rem solid;
  border-right: #FFF 0.063rem solid;
  transform: rotate(135deg);
  transition: transform 0.3s;
  position: absolute;
  right: 0;
  top: 30%;
}
.gallery-content .js-accordion-title.open:after {
  transform: rotate(-45deg);
  top: 30%;
}

#sbi_load {
  float: none !important;
  width: 8.797rem !important;
  margin: 2.813rem auto 0 !important;
  position: relative !important;
  cursor: pointer;
}

.sbi_load_btn {
  display: flex !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

.sbi_btn_text {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif !important;
  color: #FFF !important;
  line-height: 1.2222222222 !important;
  font-size: 1.125rem !important;
  display: block;
  text-align: left;
  border-bottom: 0.063rem solid #FFF;
  padding-bottom: 0.625rem !important;
  position: relative;
}

.sbi_btn_text::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-top: #FFF 0.063rem solid;
  border-right: #FFF 0.063rem solid;
  transform: rotate(135deg);
  transition: transform 0.3s;
  position: absolute;
  right: 0;
  top: 30%;
}

.sbi_load_btn:hover {
  box-shadow: none !important;
}

.sbi_load_btn:hover .sbi_btn_text {
  opacity: 0.8 !important;
}

.sbi_load_btn:hover.sbi_btn_text::after {
  border-top: rgba(255, 255, 255, 0.8) 0.063rem solid !important;
  border-right: rgba(255, 255, 255, 0.8) 0.063rem solid !important;
}

.news-archive {
  padding-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .news-archive {
    padding-top: 3.125rem;
  }
}

.news-archive__inner {
  padding: 0 1.563rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .news-archive__inner {
    max-width: 31.25rem;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .news-archive__inner {
    width: clamp(45rem, 36.494rem + 17.722vw, 52rem);
    padding: 0 1.25rem;
    margin: 0 auto;
  }
}

.search {
  position: absolute;
  top: 0;
  right: 1.563rem;
  z-index: 10;
  background-color: #151515;
}
@media screen and (min-width: 768px) {
  .search {
    right: 1.25rem;
  }
}

.search__inner {
  width: 11.25rem;
  margin-left: auto;
  border: 0.063rem solid #FFF;
}
@media screen and (min-width: 768px) {
  .search__inner {
    width: 11.25rem;
  }
}

.search__title-text,
.search__item a {
  color: #FFF;
  font-size: 0.813rem;
  line-height: 1.4285714286;
  width: 100%;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .search__title-text,
  .search__item a {
    font-size: 0.875rem;
  }
}

.search__inner {
  padding-left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .search__inner {
    padding-left: 0.625rem;
  }
}

.search__title {
  position: relative;
  padding: 0.375rem 0;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .search__title {
    padding: 0.375rem 0;
  }
}

.search .js-accordion-title::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-top: #FFF 0.063rem solid;
  border-right: #FFF 0.063rem solid;
  transform: rotate(135deg);
  transition: transform 0.3s;
  position: absolute;
  right: 6%;
  top: 37%;
}
.search .js-accordion-title.open:after {
  transform: rotate(-45deg);
  top: 41%;
}

.search__list {
  display: none;
  padding-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .search__list {
    padding-bottom: 1.875rem;
  }
}

.search__item {
  margin-top: 0.625rem;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .search__item {
    margin-top: 0.625rem;
  }
}

.search__item:hover {
  opacity: 0.8;
}

.news-archive__list {
  padding-top: 3.875rem;
}
@media screen and (max-width: 767px) {
  .news-archive__list {
    max-width: 31.25rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) {
  .news-archive__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    grid-column-gap: 4.563rem;
    grid-row-gap: 3.125rem;
  }
}

@media screen and (max-width: 767px) {
  .news-archive__item:not(:first-child) {
    margin-top: 1.875rem;
  }
}

.news-archive__item a {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.news-archive__item-content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.news-archive__item-title {
  flex: 1;
}

.news-archive__item-title {
  color: #FFF;
}

.news-archive__item-title {
  font-family: "Noto Serif JP", serif;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .news-archive__item-title {
    margin-top: 0.625rem;
  }
}

.news-archive__item-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .news-archive__item-meta {
    margin-top: 0.625rem;
  }
}

.news-archive__item-date {
  color: #FFF;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .news-archive__item-date {
    font-size: 0.75rem;
  }
}

.news-archive__item-category {
  color: #FFF;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .news-archive__item-category {
    font-size: 0.75rem;
  }
}

.news-archive__item-text {
  font-size: 0.813rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .news-archive__item-text {
    font-size: 0.875rem;
  }
}

.no-article {
  color: #FFF;
}

/* Detail-news
------------------------------------------ */
.news-detail__title,
.news-detail__date,
.news-detail__category,
.news-detail__content > h2,
.news-detail__content > h3,
.news-detail__content > h4,
.pre-link a,
.next-link a,
.recommend__title,
.recommend__item-date,
.recommend__item-category,
.recommend__item-text {
  color: #FFF;
}

.news-detail__content > p {
  color: #E8E8E8;
}

.news-detail {
  padding-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .news-detail {
    padding-top: 3.125rem;
  }
}

.news-detail__inner {
  padding: 0 1.563rem;
}
@media screen and (min-width: 768px) {
  .news-detail__inner {
    width: 42.5rem;
    padding: 0 1.25rem;
    margin: 0 auto;
  }
}

.news-detail__title {
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
}
@media screen and (min-width: 768px) {
  .news-detail__title {
    font-size: 1.5rem;
  }
}

.news-detail__image {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .news-detail__image {
    margin-top: 0.625rem;
  }
}

.news-detail__meta {
  display: flex;
  justify-content: space-between;
  margin-top: 0.688rem;
}
@media screen and (min-width: 768px) {
  .news-detail__meta {
    margin-top: 0.688rem;
  }
}

.news-detail__date,
.news-detail__category {
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .news-detail__date,
  .news-detail__category {
    font-size: 0.75rem;
  }
}

.news-detail__content {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .news-detail__content {
    margin-top: 1.25rem;
  }
}

.news-detail__content > h2 {
  border-top: 0.063rem solid #FFF;
  border-bottom: 0.063rem solid #FFF;
  font-family: "Noto Serif JP", serif;
  font-size: 1.375rem;
  line-height: 1.3636363636;
  padding: 0.313rem 0;
}
@media screen and (min-width: 768px) {
  .news-detail__content > h2 {
    font-size: 1.375rem;
    padding: 0.313rem 0;
  }
}

.news-detail__content > p {
  font-size: 1rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .news-detail__content > p {
    font-size: 1rem;
  }
}

.news-detail__content h2 + p,
.news-detail__content h3 + p,
.news-detail__content h4 + p {
  margin-top: 1.25rem;
}
.news-detail__content h2 + p ~ p:not(h3 ~ p),
.news-detail__content h3 + p ~ p:not(h4 ~ p),
.news-detail__content h4 + p ~ p {
  margin-top: 0.688rem;
}

.news-detail__content > h3,
.news-detail__content > h4 {
  margin-top: 2.5rem;
}

.news-detail__content > h3 {
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  border-bottom: 0.063rem solid #FFF;
  font-size: 1.25rem;
  line-height: 1.5;
  padding-bottom: 0.438rem;
}
@media screen and (min-width: 768px) {
  .news-detail__content > h3 {
    font-size: 1.25rem;
    padding-bottom: 0.438rem;
  }
}

.news-detail__content > h4 {
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  padding-left: 2.5rem;
}
@media screen and (min-width: 768px) {
  .news-detail__content > h4 {
    font-size: 1.125rem;
    padding-left: 2.5rem;
  }
}

.news-detail__content > h4::before {
  content: "";
  display: inline-block;
  width: 1.875rem;
  height: 0.063rem;
  background-color: #FFF;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .news-detail__content > h4::before {
    width: 1.875rem;
  }
}

.pre-next {
  display: flex;
  justify-content: space-between;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .pre-next {
    margin-top: 3.75rem;
  }
}

.pre-link,
.next-link {
  position: relative;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 1.125rem;
  line-height: 1.2222222222;
}
@media screen and (min-width: 768px) {
  .pre-link,
  .next-link {
    font-size: 1.125rem;
  }
}

.pre-link::after,
.next-link::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #FFF;
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}

.pre-link:hover::after,
.next-link:hover::after {
  transform: scale(1, 1);
}

.news-detail .view-button__inner {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .news-detail .view-button__inner {
    margin-top: 1.875rem;
  }
}
.news-detail .view__button {
  justify-content: space-between;
}

.recommend {
  margin-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .recommend {
    margin-top: 6.25rem;
  }
}

.recommend__inner {
  padding: 0 1.563rem;
}
@media screen and (min-width: 768px) {
  .recommend__inner {
    padding: 0 1.25rem;
    width: clamp(45rem, 36.494rem + 17.722vw, 52rem);
    margin: 0 auto;
  }
}

.recommend__title {
  text-align: center;
}

.recommend__title span {
  border-bottom: 0.063rem solid #FFF;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 2.5rem;
  line-height: 1.2;
  padding-bottom: 0.313rem;
}
@media screen and (min-width: 768px) {
  .recommend__title span {
    font-size: 3.125rem;
    padding-bottom: 0.313rem;
  }
}

.recommend__list {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .recommend__list {
    display: flex;
    justify-content: space-between;
    margin-top: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .recommend__item {
    width: 13.438rem;
  }
}

@media screen and (max-width: 767px) {
  .recommend__item:not(:first-child) {
    margin-top: 1.875rem;
  }
}

.recommend__item-content {
  display: flex;
  flex-direction: column;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .recommend__item-content {
    margin-top: 0.625rem;
  }
}

.recommend__item-meta {
  display: flex;
  justify-content: space-between;
}

.recommend__item-date,
.recommend__item-category {
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .recommend__item-date,
  .recommend__item-category {
    font-size: 0.75rem;
  }
}

.recommend__item-text {
  flex: 1;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 0.813rem;
  line-height: 2;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .recommend__item-text {
    font-size: 0.875rem;
    margin-top: 1.25rem;
  }
}

/* Contact
------------------------------------------ */
.contact {
  padding-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .contact {
    padding-top: 3.125rem;
  }
}

.contact__inner {
  padding: 0 1.563rem;
}
@media screen and (min-width: 768px) {
  .contact__inner {
    width: 43.063rem;
    padding: 0 1.25rem;
    margin: 0 auto;
  }
}

.contact__top-text,
.privacy__link,
.form__label,
.form__cautions,
.form__label-text,
.form__label-text a,
.contact__form-submit input {
  color: #FFF;
}

.required {
  color: #ff0000;
  font-size: 0.625rem;
  margin-left: 0.25rem;
}
@media screen and (min-width: 768px) {
  .required {
    font-size: 0.625rem;
    margin-left: 0.25rem;
  }
}

.contact__top-text,
.contact__top-text a {
  font-size: 0.813rem;
  line-height: 1.6875;
}
@media screen and (min-width: 768px) {
  .contact__top-text,
  .contact__top-text a {
    font-size: 1rem;
  }
}

.contact__top-text a {
  text-decoration: underline;
}

.contact__form {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .contact__form {
    margin-top: 1.875rem;
  }
}

@media screen and (min-width: 768px) {
  .form__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.form__wrapper:not(:first-child) {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .form__wrapper:not(:first-child) {
    margin-top: 1.875rem;
  }
}

.form__label {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  line-height: 1.4285714286;
}
@media screen and (min-width: 768px) {
  .form__label {
    font-size: 0.875rem;
  }
}

@media screen and (min-width: 768px) {
  .form__wrapper:nth-child(6) .form__label {
    margin-top: -0.938rem;
  }
}

.form__input input,
.form__textarea {
  background-color: #FFF;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .form__input input,
  .form__textarea {
    width: 30rem;
  }
}

.form__input input {
  padding: 0.563rem 0.938rem;
  font-size: 0.938rem;
  color: #000;
}
@media screen and (min-width: 768px) {
  .form__input input {
    padding: 0.563rem 0.938rem;
    font-size: 0.938rem;
  }
}

.form__cautions {
  font-size: 0.813rem;
  margin-top: 0.313rem;
}
@media screen and (min-width: 768px) {
  .form__cautions {
    font-size: 1rem;
    margin-top: 0.313rem;
  }
}

@media screen and (min-width: 768px) {
  .form__wrapper--textarea {
    align-items: flex-start;
  }
  .form__wrapper--textarea .form__label {
    margin-top: 0.625rem;
  }
}

.form__textarea {
  height: 8.688rem;
  overflow: scroll;
}
@media screen and (min-width: 768px) {
  .form__textarea {
    height: 8.688rem;
  }
}

textarea {
  width: 100%;
  padding: 0.563rem 0.938rem;
  height: 8.625rem;
}
@media screen and (min-width: 768px) {
  textarea {
    padding: 0.563rem 0.938rem;
    height: 8.625rem;
  }
}

.contact__form-privacy {
  display: flex;
  justify-content: center;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .contact__form-privacy {
    margin-top: 1.875rem;
  }
}

.contact__form-privacy a,
.contact__form-privacy span {
  color: #FFF;
  font-size: 0.75rem;
  line-height: 1.4285714286;
}
@media screen and (min-width: 768px) {
  .contact__form-privacy a,
  .contact__form-privacy span {
    font-size: 0.875rem;
  }
}

.form__label-text a {
  text-decoration: underline;
}

.wpcf7-list-item input[type=checkbox] {
  position: absolute;
  top: 50%;
  left: 0.875rem;
  transform: translateY(-50%);
  z-index: 1;
  margin: 0;
  width: 0.875rem;
  height: 0.875rem;
  cursor: pointer;
  opacity: 0;
}

.wpcf7-list-item-label {
  position: relative;
  display: flex;
  align-items: center;
}

.form__label-text {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.contact__form-privacy__inner .wpcf7-list-item-label::before {
  content: "";
  display: block;
  border: 0.063rem solid #FFF;
  width: 0.875rem;
  height: 0.875rem;
  margin-right: 0.438rem;
}
@media screen and (max-width: 767px) {
  .contact__form-privacy__inner .wpcf7-list-item-label::before {
    width: 0.875rem;
    height: 0.875rem;
  }
}

.contact__form-privacy__inner .wpcf7-list-item-label::after {
  content: "";
  display: block;
  position: absolute;
  border-left: 0.063rem solid #FFF;
  border-bottom: 0.063rem solid #FFF;
  transform: rotate(-45deg);
  width: 0.563rem;
  height: 0.25rem;
  top: 0.438rem;
  left: 0.188rem;
  transition: all 0.3s;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .contact__form-privacy__inner .wpcf7-list-item-label::after {
    width: 0.563rem;
    height: 0.25rem;
    top: 0.438rem;
    left: 0.188rem;
  }
}

input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.contact__form-submit {
  position: relative;
  border: 0.063rem solid #FFF;
  border-radius: 2.5rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contact__form-submit {
    max-width: 19.25rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) {
  .contact__form-submit {
    width: 25.313rem;
    margin: 0 auto;
    border-radius: 2.5rem;
    margin-top: 2.5rem;
  }
}

.contact__form-submit::before {
  content: "";
  position: absolute;
  display: inline-block;
  height: 0.063rem;
  background-color: #FFF;
  width: 1.875rem;
  top: 50%;
  right: 1.875rem;
}
@media screen and (min-width: 768px) {
  .contact__form-submit::before {
    width: 1.875rem;
    right: 1.875rem;
    transition: all 0.3s ease-out;
  }
}

.contact__form-submit::after {
  content: "";
  position: absolute;
  top: 45.5%;
  right: 1.875rem;
  height: 0.063rem;
  background-color: #FFF;
  transform: rotate(45deg);
  width: 0.375rem;
}
@media screen and (min-width: 768px) {
  .contact__form-submit::after {
    width: 0.375rem;
    right: 1.875rem;
    transition: all 0.3s ease-out;
  }
}

.contact__form-submit input {
  display: block;
  text-align: left;
  width: 100%;
  padding: 1.5rem 1.875rem 1.381rem;
  font-family: "Noto Serif JP", serif;
  font-size: 1.125rem;
  line-height: 1.3333333333;
}
@media screen and (min-width: 768px) {
  .contact__form-submit input {
    font-size: 1.125rem;
    padding: 1.5rem 1.875rem 1.381rem;
  }
}

.wpcf7-form > p {
  display: inline-block;
}

.wpcf7-spinner {
	display:none !important;
}

.contact__form-submit:hover {
  background-color: #343434;
  border: 0.063rem solid #343434;
}
.wpcf7 form.sent .wpcf7-response-output{
	color:#FFFFFF;
}
@media screen and (min-width: 768px) {
  .contact__form-submit:hover.contact__form-submit::before,
  .contact__form-submit:hover.contact__form-submit::after {
    right: 1.563rem;
  }
}

/* Site map
------------------------------------------ */
.sitemap {
  padding-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .sitemap {
    padding-top: 3.125rem;
  }
}

.sitemap__inner {
  padding: 0 1.563rem;
}
@media screen and (min-width: 768px) {
  .sitemap__inner {
    padding: 0 1.25rem;
    width: 57.531rem;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1149px) {
  .sitemap__inner {
    width: clamp(46.25rem, 26.148rem + 41.879vw, 57.53125rem);
  }
}

.sitemap__inner a {
  color: #FFF;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
}

.sitemap__top {
  border-top: 0.063rem solid #FFF;
  border-bottom: 0.063rem solid #FFF;
  padding: 0.656rem 0 0.656rem;
}
@media screen and (min-width: 768px) {
  .sitemap__top {
    padding: 0.656rem 0 0.656rem;
  }
}

.sitemap__top-link {
  position: relative;
  font-size: 1.375rem;
  line-height: 1.2272727273;
  padding-left: 0.938rem;
}
@media screen and (min-width: 768px) {
  .sitemap__top-link {
    font-size: 1.375rem;
    padding-left: 0.938rem;
  }
}

.sitemap__nav {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .sitemap__nav {
    margin-top: 2.5rem;
  }
}

.sitemap__list {
  display: flex;
}
@media screen and (max-width: 767px) {
  .sitemap__list {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .sitemap__list {
    justify-content: space-between;
  }
}

@media screen and (max-width: 767px) {
  .sitemap__item:not(:first-child) {
    margin-top: 1.875rem;
  }
}

.sitemap__item-link {
  position: relative;
  font-size: 1.25rem;
  line-height: 1.2;
  padding-left: 0.938rem;
}
@media screen and (min-width: 768px) {
  .sitemap__item-link {
    font-size: 1.25rem;
    padding-left: 0.938rem;
  }
}

.sitemap-service__item-link {
  position: relative;
  font-size: 1.125rem;
  line-height: 1.2222222222;
  padding-left: 0.938rem;
}
@media screen and (min-width: 768px) {
  .sitemap-service__item-link {
    font-size: 1.125rem;
    padding-left: 0.938rem;
  }
}

.sitemap-service__list {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .sitemap-service__list {
    padding-left: 1.875rem;
  }
}
@media screen and (min-width: 768px) {
  .sitemap-service__list {
    margin-top: 1.875rem;
    width: 8.313rem;
    margin-left: 13.813rem;
  }
}

.sitemap-service__item:not(:first-child) {
  margin-top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .sitemap-service__item:not(:first-child) {
    margin-top: 1.75rem;
  }
}

.sitemap__top-link::before,
.sitemap__item-link::before,
.sitemap-service__item-link::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  border: 0;
  border-top: 0.063rem solid #FFF;
  border-right: 0.063rem solid #FFF;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  left: 0;
}

.line-break::before {
  content: none;
}

.line-break {
  display: flex;
  flex-direction: column;
}

.line-break span {
  position: relative;
}

.line-break span::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  border: 0;
  border-top: 0.063rem solid #FFF;
  border-right: 0.063rem solid #FFF;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  left: -13%;
}
@media screen and (max-width: 767px) {
  .line-break span::before {
    left: -0.938rem;
  }
}

.sitemap__item,
.sitemap-service__item {
  position: relative;
}

@media screen and (min-width: 768px) {
  .sitemap__item::after,
  .sitemap-service__item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.156rem;
    width: 100%;
    height: 0.063rem;
    background-color: #FFF;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
  }
}

@media screen and (min-width: 768px) {
  .sitemap__item:hover::after,
  .sitemap-service__item:hover::after {
    transform: scale(1, 1);
  }
  .sitemap__top-link:hover {
    opacity: 0.8;
  }
}
/* Privacy Policy
------------------------------------------ */
._br h2 {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .text-center {
    text-align: center;
  }
}

.privacypolicy {
  padding-top: 4.5rem;
  padding-bottom: 3.669rem;
}
@media screen and (min-width: 768px) {
  .privacypolicy {
    padding-top: 4.5rem;
    padding-bottom: 3.669rem;
  }
}

.privacypolicy__inner {
  padding: 0 1.563rem;
}
@media screen and (min-width: 768px) {
  .privacypolicy__inner {
    width: 42.5rem;
    padding: 0 1.25rem;
    margin: 0 auto;
  }
}

.privacypolicy__heading {
  border-top: 0.063rem solid #FFF;
  border-bottom: 0.063rem solid #FFF;
  font-family: "Noto Serif JP", serif;
  font-size: 1.375rem;
  line-height: 1.3636363636;
  padding: 0.313rem 0;
  color: #FFF;
}
@media screen and (min-width: 768px) {
  .privacypolicy__heading {
    font-size: 1.375rem;
    padding: 0.313rem 0;
  }
}

.privacypolicy__text-wrapper {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .privacypolicy__text-wrapper {
    margin-top: 1.25rem;
  }
}

.privacypolicy__text {
  color: #FFF;
  font-size: 0.813rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .privacypolicy__text {
    font-size: 1rem;
  }
}

.privacypolicy__text span {
  border-bottom: 1px solid #FFF;
}

.privacypolicy .space-top--l {
  margin-top: 2.5rem;
}

.privacypolicy__list {
  list-style-type: decimal;
  padding-left: 2.5rem;
}

.privacypolicy-contact__list {
  display: flex;
}

/* Page-Fv
------------------------------------------ */
.page-fv {
  padding-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .page-fv {
    padding-top: 3.75rem;
  }
}

.page-fv__inner {
  position: relative;
  z-index: 80;
}
@media screen and (min-width: 768px) {
  .page-fv__inner {
    display: flex;
  }
}

.page-fv__title {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  color: #FFF;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .page-fv__title {
    font-size: 1.875rem;
    line-height: 1.2;
  }
}
@media screen and (min-width: 768px) {
  .page-fv__title {
    width: min(18.571vw, 16.25rem);
    line-height: 1.2;
    padding-top: min(7.071vw, 6.188rem);
    font-size: clamp(2.5rem, 0.981rem + 3.165vw, 3.75rem);
  }
}

.page-fv__title span {
  display: block;
  border-bottom: 0.063rem solid #FFF;
}
@media screen and (max-width: 767px) {
  .page-fv__title span {
    display: inline-block;
    padding-left: 1.563rem;
  }
}
@media screen and (min-width: 768px) {
  .page-fv__title span {
    padding-left: min(3.286vw, 2.875rem);
  }
}

.page-fv__title .page-fv__title-sub {
  display: block;
}

@media screen and (max-width: 767px) {
  .page-fv__image {
    margin-top: 1.281rem;
    padding-left: 6.944vw;
  }
}
@media screen and (min-width: 768px) {
  .page-fv__image {
    flex: 1;
    max-width: min(81.429vw, 71.25rem);
  }
}

.top-title__inner {
  display: flex;
  justify-content: center;
  border-bottom: 0.063rem solid #FFF;
  padding-bottom: 0.313rem;
}

@media screen and (min-width: 768px) {
  .top-title__text {
    text-align: center;
    font-size: 3.75rem;
    padding-top: 0;
  }
}/*# sourceMappingURL=style.css.map */