@charset "UTF-8";
/* ===============================================
# pxをremに変換
$px 文字サイズ
$basepx 基準となるピクセル数
=============================================== */
/* ===============================================
# line-heightを計算する
$pixels 文字サイズ
$height figma上のline-height
=============================================== */
:root {
  --color-light-gray: #F4F2EF;
  --color-dark-gray: #7B8B96;
  --color-dark-gray2: #7B8A96;
  --color-dark-gray3:#7B8996;
  --color-gray-warm: #F4F2EF;
  --color-text: #333333;
  --color-white: #fff;
  --color-black: #000;
  --color-black2:#0D0D0D;
  --font-mincho: "YuMinchoPr6N","Yu Mincho","YuMincho","游明朝","Hiragino Mincho ProN","Hiragino Mincho Pro","Noto Serif JP","MS PMincho",serif;
  --font-title: "Allison", "Brush Script MT", "Segoe Script", cursive;
}

html {
  font-size: 16px;
}

body {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  color: var(--color-white);
  overflow-x: hidden;
  background-color: var(--color-black2);
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
/*
html {
  scroll-behavior: smooth;
}
*/
/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 101;
  height: 123px;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .header {
    max-width: 95%;
  }
}
@media screen and (max-width: 768px) {
  .header {
    max-width: 100%;
    margin-top: 0;
    left: 0;
    transform: unset;
    border-radius: 0;
    box-shadow: unset;
  }
}

.header__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 0 0.9375rem;
  height: inherit;
  z-index: 102;
}
@media screen and (max-width: 1024px) {
  .header__inner {
    padding: 0 0.625rem;
  }
}

.header__title {
  display: flex;
  align-items: flex-start;
  margin-right: auto;
  height: inherit;
}

.header__logo {
  width: 123px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 80px;
  }
}

.header__nav {
  height: inherit;
}

.header__items {
  display: flex;
  align-items: flex-start;
  height: inherit;
}

.header__item {
  width: 11.8125rem;
  border-bottom-left-radius: 0.625rem;
  border-bottom-right-radius: 0.625rem;
  overflow: hidden;
}

.header__item__link {
  display: flex;
  align-items: center;
  justify-content: center;
  inline-size: 100%;
  min-block-size: 69px;
  color: var(--color-white);
  font-family: var(--font-mincho);
  font-size: 1.25rem;
  line-height: 2.2;
  background-color: var(--color-black);
  border: 1px solid var(--color-white);
  border-radius: inherit;
  text-decoration: none;
}

.header__hamburger-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.3125rem;
  aspect-ratio: 1/1;
  border-bottom-left-radius: 0.625rem;
  border-bottom-right-radius: 0.625rem;
  background-color: var(--color-black);
  border: 1px solid var(--color-white);
  margin-left: 0.9375rem;
}
@media screen and (max-width: 1024px) {
  .header__hamburger-wrap {
    margin-left: 0.625rem;
  }
}
@media screen and (max-width: 768px) {
  .header__hamburger-wrap {
    width: 3.4375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0;
  }
}

.header__hamburger {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

.header__hamburger-lines {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 1.75rem;
  height: 1.125rem;
}

.header__hamburger-lines span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 50%;
  transition: all 0.3s;
}

.header__hamburger.is-active .header__hamburger-lines span:first-child {
  transform: translateY(9px) rotate(45deg);
}

.header__hamburger.is-active .header__hamburger-lines span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.is-active .header__hamburger-lines span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.drawer {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  height: 100vh;
  overflow-y: auto;
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  -webkit-overflow-scrolling: touch;
  background-color: rgba(0, 0, 0, 0.8);
  transition: transform 0.3s ease;
  padding: 3.75rem 0.9375rem;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (max-width: 768px) {
  .drawer {
    height: 100vh;
    padding: 2.5rem 0.9375rem 3.75rem;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: unset;
  }
}

.drawer.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.drawer__items {
  max-width: 640px;
  width: 100%;
  margin: 6.25rem auto 0;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .drawer__items {
    padding: 0 0.9375rem;
  }
}

.drawer__item {
  position: relative;
  border-top: 1px solid var(--color-white);
  padding: 0.9375rem 0;
}

.drawer__item::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
  background-image: url(../images/right-arrow-w.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  width: 0.8125rem;
  aspect-ratio: 13/22;
}

.drawer__link {
  font-family: var(--font-mincho);
  text-transform: capitalize;
  display: block;
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--color-white);
  text-decoration: none;
}

.drawer__item a:hover {
  opacity: 0.7;
}

.drawer__btn-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

.drawer__items-bottom {
  margin-top: 1.875rem;
}

@media screen and (max-width: 768px) {
  body.is-drawer-active {
    overflow: hidden;
  }
}

/* パンくず */
.breadcrumb {
  margin-top: 1.25rem;
}

.breadcrumb__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  padding: 1rem 5rem 0;
}
@media screen and (max-width: 768px) {
  .breadcrumb__inner {
    padding: 1rem 1.25rem 0;
    font-size: 0.75rem;
    row-gap: 0.5rem;
  }
}
@media screen and (max-width: 430px) {
  .breadcrumb__inner {
    font-size: 0.625rem;
  }
}

.breadcrumb a {
  color: var(--color-darkgray);
}

.breadcrumb .current-item {
  font-weight: 700;
  color: var(--color-darkgray);
}

.breadcrumb__between::before {
  content: ">";
  color: var(--color-white);
  display: inline-block;
}

.breadcrumb span[property=name] {
  display: inline-block;
  padding: 0;
  vertical-align: middle;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
}

.more-btn {
  position: relative;
  display: block;
  width: 12.3125rem;
  text-align: center;
  color: var(--color-white);
  text-decoration: none;
  font-family: var(--font-mincho);
  font-size: 1rem;
  line-height: 2.1875;
  padding-bottom: 0.625rem;
}

/* 下線＋斜め線の背景 */
.more-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 12.3125rem;
  height: 0.75rem;
  background: url(../images/more-btn-border.svg) no-repeat left bottom;
  background-size: 12.3125rem auto;
  transition: transform 0.3s ease;
}

/* ホバー時に10px右へスライド */
.more-btn:hover::after {
  transform: translateX(0.625rem);
  opacity: 1;
}

.c-button {
  position: relative;
  font-family: var(--font-mincho);
  max-width: 286px;
  width: 100%;
  font-size: 1rem;
  text-align: center;
  border: 1px solid var(--color-white);
  color: var(--color-white);
  cursor: pointer;
  text-decoration: none;
  padding: 0.9375rem 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .c-button {
    font-size: 1.25rem;
    max-width: 90%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 430px) {
  .c-button {
    font-size: 1.125rem;
    max-width: 100%;
  }
}

.c-button::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0.625rem;
  transform: translateY(-50%);
  background-image: url(../images/right-arrow-w.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  width: 0.3125rem;
  aspect-ratio: 5/9;
}

.c-button:hover {
  border: 1px solid var(--color-black);
  color: var(--color-black);
  background-color: var(--color-white);
  opacity: 1;
}

.c-button:hover::after {
  background-image: url(../images/right-arrow-bl.svg);
}

.footer {
  padding: 9.6875rem 0 10.8125rem;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 3.125rem 0 5rem;
  }
}

.footer__inner {
  max-width: 1100px;
  padding: 0 1.5625rem 2.5rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}
.footer_info{
  flex: 0 1 auto;
}
.footer_bnr{
  flex: 0 1 auto;
}
.footer_bnr a{
  display: block;
  width: min(100%, 750px);
  border: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    padding: 0 0.9375rem 1.875rem;
    display: block;
  }
  .footer_bnr{
    width: min(100%, 290px);
    margin: 30px auto 0 auto;
  }
}

.footer__logo {
  display: flex;
  justify-content: center;
}

.footer__logo-img {
  width: 157px;
  aspect-ratio: 157/60;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer__logo-img {
    width: 132px;
  }
}

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

.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5625rem;
  margin-top: 1.1875rem;
}
@media screen and (max-width: 768px) {
  .footer__nav-list {
    flex-direction: column;
    align-items: center;
  }
}

.footer__item {
  position: relative;
}

.footer__text {
  font-size: 1rem;
  line-height: 1.875;
  font-weight: 400;
  color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .footer__text {
    text-align: center;
    margin-top: 1.25rem;
  }
}

.footer__link,
.footer__item-link {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-white);
}

.footer__nav-bottom {
  margin-top: 2.625rem;
}

.footer__nav-bottom-list {
  display: flex;
  justify-content: flex-start;
  gap: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .footer__nav-bottom-list {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }
}

.footer__nav-bottom-item {
  max-width: 290px;
  width: 100%;
}

.footer__nav-bottom-link {
  position: relative;
  font-family: var(--font-mincho);
  font-size: 1rem;
  line-height: 2.5;
  color: var(--color-white);
  border: 1px solid var(--color-white);
  width: 100%;
  margin: 0 auto;
  padding: 0.625rem 0.9375rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.footer__nav-bottom-link:hover {
  border: 1px solid var(--color-black);
  color: var(--color-black);
  background-color: var(--color-white);
  opacity: 1;
}

.footer__nav-bottom-link::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0.625rem;
  transform: translateY(-50%);
  background-image: url(../images/right-arrow-w.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  width: 0.3125rem;
  aspect-ratio: 5/9;
}

.footer__nav-bottom-link:hover::after {
  background-image: url(../images/right-arrow-bl.svg);
}

.page-top {
  display: block;
  position: fixed;
  bottom: -100px;
  right: 40px;
  background-color: rgba(51, 51, 51, 0.5);
  cursor: pointer;
  opacity: 0;
  width: 3.75rem;
  height: 3.75rem;
  z-index: 10;
  transition: 0.3s ease;
}
@media screen and (max-width: 768px) {
  .page-top {
    width: 2.5rem;
    height: 2.5rem;
    right: 5%;
  }
}

.page-top::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -25%) rotate(-45deg);
  border-top: 3px solid var(--color-white);
  border-right: 3px solid var(--color-white);
  height: 20px;
  width: 20px;
}
@media screen and (max-width: 768px) {
  .page-top::after {
    height: 0.625rem;
    width: 0.625rem;
  }
}

.page-top.active {
  bottom: 3.75rem;
  opacity: 1;
}

/* ページネーション */
.pagination {
  margin-top: 3.4375rem;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 0.5625rem;
}

.pagination__arrow {
  color: var(--color-primary);
}

.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--color-white);
  border: 1px solid var(--color-white);
  font-weight: 400;
  transition: all 0.3s ease;
}

.page-numbers:hover {
  opacity: 1;
  background-color: var(--color-white);
  color: var(--color-black);
}

.page-numbers.current {
  color: var(--color-black);
  background-color: var(--color-white);
}

.page-numbers.dots,
.page-numbers.prev,
.page-numbers.next {
  border: none;
  background-color: transparent;
}

/****************************************/
/****************************************/
.top-about {
  position: relative;
  padding: 21.4375rem 0 15.875rem;
}
@media screen and (max-width: 768px) {
  .top-about {
    padding: 8.75rem 0 8.125rem;
  }
}

@media screen and (max-width: 768px) {
  .top-about__inner {
    max-width: 640px;
    padding: 0 1.25rem;
    margin: 0 auto;
  }
}

.top-about__content {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 5.75rem;
  position: relative;
  overflow: visible;
}
@media screen and (max-width: 1200px) {
  .top-about__content {
    gap: clamp(1.875rem, -5.014rem + 14.35vw, 5.75rem);
  }
}
@media screen and (max-width: 768px) {
  .top-about__content {
    justify-content: flex-start;
    flex-direction: column;
    gap: 2.5rem;
  }
}

@media screen and (max-width: 768px) {
  .top-about__head-en {
    text-align: center;
  }
}

.top-about__image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  display: flex;
  gap: 1.875rem;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .top-about__image {
    position: unset;
    justify-content: flex-start;
    width: 45%;
  }
}

.top-about__image img {
  width: 46%;
  height: auto;
  aspect-ratio: 447/651;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .top-about__image img {
    width: 100%;
  }
}

.top-about__body {
  position: relative;
  width: 32%;
  margin-left: 12%;
}
@media screen and (max-width: 1024px) {
  .top-about__body {
    width: 39%;
    margin-left: 5%;
  }
}
@media screen and (max-width: 768px) {
  .top-about__body {
    width: 100%;
    margin-left: 0;
  }
}

.top-about__body::after {
  position: absolute;
  content: "";
  top: -4.5rem;
  right: 1.5rem;
  transform: translateX(-50%);
  background-image: url(../images/about-deco01.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  width: 5.75rem;
  aspect-ratio: 46/117;
}
@media screen and (max-width: 1200px) {
  .top-about__body::after {
    width: 5rem;
    right: 0.625rem;
  }
}
@media screen and (max-width: 768px) {
  .top-about__body::after {
    width: 4.25rem;
    top: -6.5rem;
    right: -1.25rem;
  }
}

.top-about__text {
  font-size: 1rem;
  line-height: 2.1875;
  margin-top: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .top-about__text {
    margin-top: 2.25rem;
  }
}
@media screen and (max-width: 768px) {
  .top-about__text {
    text-align: center;
    margin-top: 2rem;
  }
}

.top-about__text + .top-about__text {
  margin-top: 2.8125rem;
}

/****************************************/
/****************************************/
.menu {
  padding-bottom: 11.25rem;
}
@media screen and (max-width: 768px) {
  .menu {
    padding-bottom: 5rem;
  }
}

.menu__items {
  width: 100%;
  display: flex;
  gap: 1.75rem;
}

.menu__inner {
  margin-top: 20.625rem;
}
@media screen and (max-width: 768px) {
  .menu__inner {
    margin-top: 15.625rem;
  }
}

.menu__button {
  position: relative;
  display: flex;
  justify-content: center;
}

.menu__button::before {
  position: absolute;
  content: "";
  top: -12.5rem;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../images/menu-deco01.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  width: 5.3125rem;
  aspect-ratio: 85/208;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .menu__button::before {
    width: 3.3125rem;
    top: -7.8125rem;
  }
}

.menu__button-link {
  position: relative;
  border: 1px solid var(--color-white);
  max-width: 621px;
  width: 100%;
  padding: 1.25rem 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.0625rem;
  color: var(--color-white);
  overflow: hidden;
  transition: all 0.3s;
}
.menu__button-link .menu__button-text-sub {
  font-family: var(--font-mincho);
  font-size: 1.5625rem;
  line-height: 1.6;
}
.menu__button-text-main{
  line-height: 1;
  font-family: var(--font-mincho)!important;
  font-size: 3rem!important;
}
@media screen and (max-width: 768px) {
  .menu__button-link .menu__button-text-sub {
    font-size: 3.2552083333vw;
  }
}
@media screen and (max-width: 768px) {
  .menu__button-link {
    flex-direction: column;
    align-items: center;
    padding: 0.75rem 0.625rem;
    gap: 0.3125rem;
  }
  .menu__button-text-main{
    font-size: 1.8rem!important;
  }
}

.menu__button-link:hover {
  border: 1px solid var(--color-black);
  color: var(--color-black);
  background-color: var(--color-white);
  opacity: 1;
}

.menu__button-link:hover::after {
  background-image: url(../images/right-arrow-bl.svg);
}

.menu__button-link::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
  background-image: url(../images/right-arrow-w.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  width: 0.8125rem;
  aspect-ratio: 13/22;
}

/****************************************/
/****************************************/
.top-news {
  padding: 7.25rem 0;
}
@media screen and (max-width: 768px) {
  .top-news {
    padding: 5.3125rem 0;
  }
}
@media screen and (max-width: 430px) {
  .top-news {
    padding: 3.125rem 0;
  }
}

.top-news__content {
  width: 100%;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .top-news__content {
    flex-direction: column;
  }
}

.top-news__content-left {
  width: 25%;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .top-news__content-left {
    width: 100%;
  }
}

.top-news__content-right {
  flex: 1;
}

.top-news__title {
  position: relative;
  display: inline-block;
  margin-top: 7.5rem;
}
@media screen and (max-width: 768px) {
  .top-news__title {
    display: block;
    margin-top: 3.75rem;
    text-align: center;
  }
}

.top-news__title::before {
  position: absolute;
  content: "";
  top: -8.8125rem;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../images/news-deco01.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  width: 5.875rem;
  aspect-ratio: 94/141;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .top-news__title::before {
    width: 3.75rem;
    top: -6.25rem;
  }
}

.top-news__list {
  margin-top: 1.875rem;
}

.top-news__btn-wrap {
  margin-top: 3.125rem;
  margin-inline: auto;
  text-align: center;
}

.top-news__btn {
  margin-inline: auto;
}

/****************************************/
/****************************************/
.top-access {
  padding: 17.125rem 0 8.0625rem;
}
@media screen and (max-width: 768px) {
  .top-access {
    padding: 7.5rem 0 3.75rem;
  }
}

.top-access__inner {
  display: flex;
  gap: 1.875rem;
}
@media screen and (max-width: 1024px) {
  .top-access__inner {
    gap: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .top-access__inner {
    gap: 8.75rem;
    flex-direction: column;
  }
}

.top-access__left {
  width: 41.6%;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .top-access__left {
    width: 100%;
  }
}

.top-access__body + .top-access__body {
  margin-top: 2.5rem;
}

.top-access__body.top-access__body--open-close {
  position: relative;
}
.top-access__body.top-access__body--open-close::after {
  position: absolute;
  content: "";
  bottom: 0.3125rem;
  right: 0;
  transform: translateX(-50%);
  background-image: url(../images/open-close-deco01.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  width: 4.625rem;
  aspect-ratio: 74/189;
}
@media screen and (max-width: 1024px) {
  .top-access__body.top-access__body--open-close::after {
    right: -5.625rem;
    width: 4.0625rem;
  }
}
@media screen and (max-width: 768px) {
  .top-access__body.top-access__body--open-close::after {
    left: 50%;
    width: 3.375rem;
    bottom: -8.75rem;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 768px) {
  .top-access__body .top-access__text:first-of-type {
    margin-top: 1.25rem;
  }
}

.top-access__title {
  font-size: 2.5rem;
  line-height: 2.2;
}
@media screen and (max-width: 768px) {
  .top-access__title {
    text-align: center;
  }
}

.top-access__text {
  font-size: 1rem;
  line-height: 1.875;
}
@media screen and (max-width: 768px) {
  .top-access__text {
    text-align: center;
  }
}

.top-access__link {
  color: var(--color-white);
}

.top-access__right {
  width: 58.3%;
  max-height: 445px;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .top-access__right {
    width: 100%;
  }
}
.top-access__right iframe {
  height: 445px;
  width: 100%;
}

/****************************************/
/****************************************/
.sister-store {
  padding: 6.75rem 0;
}
@media screen and (max-width: 768px) {
  .sister-store {
    padding: 4.0625rem 0;
  }
}

.sister-store__items {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border: 1px solid var(--color-white);
}
@media screen and (max-width: 768px) {
  .sister-store__items {
    flex-direction: column;
  }
}

.sister-store__item {
  width: 25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 1200px) {
  .sister-store__item {
    width: 33.3%;
  }
}
@media screen and (max-width: 768px) {
  .sister-store__item {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .sister-store__item:nth-child(2) {
    padding: 1.875rem 0;
  }
}

.sister-store__title {
  font-family: var(--font-mincho);
  font-size: 1.5625rem;
  line-height: 2.2;
  text-align: center;
}
.sister-store__title span {
  display: block;
}

.sister-store__title-top {
  font-size: 1.125rem;
  line-height: 2.2222222222;
}

.sister-store__link {
  margin-top: 2.8125rem;
}
@media screen and (max-width: 768px) {
  .sister-store__link {
    margin-top: 0.3125rem;
  }
}

/****************************************/
/****************************************/
.news.news--page {
  padding: 5rem 0 6.75rem;
}

.news.news--category {
  padding: 5rem 0 6.75rem;
}

.news__item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--color-white);
}
@media screen and (max-width: 768px) {
  .news__item {
    flex-direction: column;
    align-items: flex-start;
  }
}

.news__head-ja {
  margin-top: 1.125rem;
}

.news-item__unit {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .news-item__unit {
    flex-wrap: wrap;
    margin-top: 1.25rem;
  }
}
@media screen and (max-width: 430px) {
  .news-item__unit {
    width: 100%;
  }
}

.news-item__date {
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .news-item__date {
    font-size: 0.875rem;
  }
}

.news-item__link {
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 400;
  margin-left: 1.25rem;
  line-height: 2.5;
  padding: 0.625rem 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 768px) {
  .news-item__link {
    font-size: 0.875rem;
    margin-left: 0px;
    padding-top: 0;
  }
}

.news__content {
  margin-top: 0;
}

.news--category .news__content {
  margin-top: 3.75rem;
}

/****************************************/
/****************************************/
@media screen and (max-width: 1200px) {
  .menu-section {
    padding: 0 0.9375rem;
  }
}
@media screen and (max-width: 768px) {
  .menu-section {
    padding: 0 0.9375rem;
  }
}

.menu-section + .menu-section {
  margin-top: 8.375rem;
}
@media screen and (max-width: 768px) {
  .menu-section + .menu-section {
    margin-top: 5rem;
  }
}

.menu-section__inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 3.625rem 1.5625rem;
  border: 1px solid var(--color-white);
}
@media screen and (max-width: 768px) {
  .menu-section__inner {
    max-width: 700px;
    padding: 2.5rem 1.25rem 1.875rem;
  }
}

.menu-title {
  font-family: var(--font-mincho);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 2.5rem;
}

.menu-title::after {
  position: absolute;
  content: "";
  background-image: url(../images/menu/menu-title-deco.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  width: 13.5625rem;
  aspect-ratio: 217/32;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
@media screen and (max-width: 430px) {
  .menu-title::after {
    width: 50%;
  }
}

.menu-title-en {
  font-size: 1.875rem;
  font-weight: normal;
  line-height: 1.3636363636;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .menu-title-en {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 430px) {
  .menu-title-en {
    font-size: 1.25rem;
  }
}

.menu-title-ja {
  font-size: 1rem;
  font-weight: normal;
  line-height: 2.1875;
  text-align: center;
}
@media screen and (max-width: 430px) {
  .menu-title-ja {
    font-size: 0.875rem;
    line-height: 2.1428571429;
  }
}

.menu-text {
  font-family: var(--font-mincho);
  font-size: 1.125rem;
  line-height: 2.2222222222;
}
@media screen and (max-width: 430px) {
  .menu-text {
    font-size: 1rem;
    line-height: 2.1875;
  }
}
.menu-text.text-sm {
  font-size: 1rem;
  line-height: 2.1875;
}
@media screen and (max-width: 430px) {
  .menu-text.text-sm {
    font-size: 0.875rem;
    line-height: 1.7857142857;
  }
}
.menu-text.text-xs {
  font-size: 0.875rem;
  line-height: 1.7857142857;
}
@media screen and (max-width: 430px) {
  .menu-text.text-xs {
    font-size: 0.75rem;
    line-height: 1.6666666667;
  }
}

.menu-items {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.menu-item {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.3125rem;
}

.sweets-pairring__cards {
  padding: 0 1.25rem;
}
@media screen and (max-width: 768px) {
  .sweets-pairring__cards {
    padding-bottom: 2.5rem;
  }
}

.sweets-pairring__card {
  padding-top: 3rem;
  margin-top: 2.875rem;
  border-top: 1px solid var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .sweets-pairring__card {
    flex-direction: column;
  }
}

.sweets-pairring__card-left {
  width: 25.7%;
}
@media screen and (max-width: 768px) {
  .sweets-pairring__card-left {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .sweets-pairring__card-left img {
    width: 75%;
    margin-inline: auto;
  }
}

.sweets-pairring__card-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 1;
  padding: 0 0.9375rem;
}
@media screen and (max-width: 768px) {
  .sweets-pairring__card-center {
    padding: 1.875rem 0.625rem;
  }
}

.menu-item__hang {
  width: 3rem;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1/1;
  margin-top: 1.125rem;
}
@media screen and (max-width: 430px) {
  .menu-item__hang {
    width: 1.875rem;
  }
}

.sweets-pairring__drink-items {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.875rem;
}

.sweets-pairring__drink-item {
  text-align: center;
}

.sweets-pairring__alcohol {
  line-height: 1.2;
}
.sweets-pairring__alcohol .highlight {
  color: var(--color-black);
  background-color: var(--color-white);
  padding: 0.125rem 0.625rem;
  margin-left: 0.625rem;
}
@media screen and (max-width: 430px) {
  .sweets-pairring__alcohol {
    line-height: 1.5;
  }
}

.sweets-pairring__card-right {
  width: 26.8%;
}
@media screen and (max-width: 768px) {
  .sweets-pairring__card-right {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .sweets-pairring__card-right img {
    width: 75%;
    margin-inline: auto;
  }
}

.menu-columns-list {
  display: grid;
  margin-top: 3.75rem;
  padding: 0 0.9375rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .menu-columns-list {
    padding: 0 0.3125rem 0.9375rem;
  }
}

.menu-columns-item:first-child {
  padding-right: 3.125rem;
}
@media screen and (max-width: 1024px) {
  .menu-columns-item:first-child {
    padding-right: clamp(1.563rem, -2.207rem + 7.84vw, 2.813rem);
  }
}
@media screen and (max-width: 768px) {
  .menu-columns-item:first-child {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.menu-columns-item:not(:first-child) {
  border-left: 1px solid var(--color-white);
  padding-left: 3.125rem;
  padding-right: 3.125rem;
}
@media screen and (max-width: 1024px) {
  .menu-columns-item:not(:first-child) {
    padding-left: clamp(1.563rem, -2.207rem + 7.84vw, 2.813rem);
    padding-right: clamp(1.563rem, -2.207rem + 7.84vw, 2.813rem);
  }
}
@media screen and (max-width: 768px) {
  .menu-columns-item:not(:first-child) {
    border-left: 0;
    border-top: 1px solid var(--color-white);
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.menu-columns-item:last-child {
  padding-left: 3.125rem;
  padding-right: 0;
}
@media screen and (max-width: 1024px) {
  .menu-columns-item:last-child {
    padding-left: clamp(1.563rem, -2.207rem + 7.84vw, 2.813rem);
  }
}
@media screen and (max-width: 768px) {
  .menu-columns-item:last-child {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.menu-column-title {
  text-align: center;
  padding-bottom: 0.1875rem;
  border-bottom: 1px solid var(--color-white);
}

.menu-single {
  max-width: 600px;
  width: 100%;
  margin: 3.125rem auto 0;
  padding: 0 0.9375rem;
}
@media screen and (max-width: 768px) {
  .menu-single {
    padding: 0 0.3125rem;
  }
}

.menu-detail__list {
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .menu-detail__list {
    padding-bottom: 1.875rem;
  }
}

.menu-detail__item {
  padding-left: 1.5625rem;
  position: relative;
}
.menu-detail__item .note {
  display: block;
  font-size: 1rem;
  line-height: 1.25;
}
.menu-detail__item.menu-detail__item--circle {
  margin-top: 0.9375rem;
}
.menu-detail__item.menu-detail__item--price {
  display: flex;
  justify-content: space-between;
  gap: 0.9375rem;
}
.menu-detail__item.menu-detail__item--none {
  padding-left: 0;
}

.menu-detail__item::before {
  content: "●";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.menu-detail__item.menu-detail__item--circle::before {
  content: "〇";
}

.menu-detail__item.menu-detail__item--none::before {
  content: "";
}

.menu-order-wrap {
  padding: 0 0.9375rem;
  margin-top: 2.6875rem;
}

.menu-order {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 1.875rem 0;
  border-top: 1px solid var(--color-white);
}
@media screen and (max-width: 768px) {
  .menu-order {
    flex-direction: column;
  }
}

.menu-order__left {
  width: 25%;
  padding-left: 1.25rem;
}
@media screen and (max-width: 768px) {
  .menu-order__left {
    width: 100%;
    text-align: center;
  }
}

.menu-order__center {
  flex: 1;
}

.menu-order__right {
  width: 17%;
  border-left: 1px solid var(--color-white);
  text-align: right;
  padding-right: 2.5rem;
}
@media screen and (max-width: 768px) {
  .menu-order__right {
    width: 100%;
    border-left: 0;
    border-top: 1px solid var(--color-white);
    text-align: center;
    padding-right: 0;
    padding-top: 1.875rem;
  }
}

.menu-note {
  margin-top: 3.625rem;
}
@media screen and (max-width: 1200px) {
  .menu-note {
    padding: 0 0.9375rem;
  }
}
@media screen and (max-width: 768px) {
  .menu-note {
    margin-top: 1.875rem;
  }
}

.menu-note__inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .menu-note__inner {
    padding: 0 0.9375rem;
  }
}

/****************************************/
/****************************************/
.sweets-pairring__items {
  margin-top: 1.5625rem;
}

/****************************************/
/****************************************/
.cocktails-columns {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .cocktails-columns {
    grid-template-columns: 1fr;
  }
}

/****************************************/
/****************************************/
.mocktails-columns {
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .mocktails-columns {
    grid-template-columns: 1fr;
  }
}

/****************************************/
/****************************************/
.whiskey__text {
  text-align: center;
  margin-top: 0.625rem;
}

/****************************************/
/****************************************/
.original-cream-soda__text {
  text-align: center;
  margin-top: 0.9375rem;
}

/****************************************/
/****************************************/
.soft-drink-columns {
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .soft-drink-columns {
    grid-template-columns: 1fr;
  }
}

.soft-drink-column:first-child {
  padding-left: 3.4375rem;
  padding-right: 10.25rem;
}
@media screen and (max-width: 1024px) {
  .soft-drink-column:first-child {
    padding-left: clamp(1.875rem, -2.837rem + 9.8vw, 3.438rem);
    padding-right: clamp(4.375rem, -10.703rem + 31.37vw, 9.375rem);
  }
}
@media screen and (max-width: 768px) {
  .soft-drink-column:first-child {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.soft-drink-column:last-child {
  padding-left: 10.25rem;
  padding-right: 3.4375rem;
}
@media screen and (max-width: 1024px) {
  .soft-drink-column:last-child {
    padding-right: clamp(1.875rem, -2.837rem + 9.8vw, 3.438rem);
    padding-left: clamp(4.375rem, -10.703rem + 31.37vw, 9.375rem);
  }
}
@media screen and (max-width: 768px) {
  .soft-drink-column:last-child {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

/****************************************/
/****************************************/
.contact {
  position: relative;
  padding: 6.25rem 0;
  margin-top: 1.25rem;
}
@media screen and (max-width: 430px) {
  .contact {
    padding: 1.875rem 0 5rem;
  }
}

.contact__title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .contact__title {
    font-size: 1.75rem;
  }
}

.contact__text {
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 300;
  text-align: center;
}

.wpcf7-form{
  width: min(100%, 800px);
  margin: 0 auto;
}

.form__list {
  margin-top: 3.75rem;
}

.form__field {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .form__field {
    flex-direction: column;
  }
}

.form__label {
  min-width: 240px;
}
@media screen and (max-width: 768px) {
  .form__label {
    min-width: unset;
  }
}

.form__field + .form__field {
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .form__field + .form__field {
    margin-top: 1.25rem;
  }
}

.form__data {
  flex-grow: 1;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .form__data {
    margin-top: 0.625rem;
  }
}

.form__acceptance {
  margin-top: 2.25rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .form__acceptance {
    margin-top: 1.875rem;
  }
}

.form__input::-moz-placeholder, .form__textarea::-moz-placeholder {
  color: #999999;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: #999999;
}

.form__textarea {
  height: 15.625rem;
  resize: none;
}

.form__label {
  font-size: 1.125rem;
  line-height: 1.8;
  font-weight: 600;
  color: var(--color-white);
}
.form__label .require {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 2;
  margin-left: 0.75rem;
  color: #dc3232;
  background-color: var(--color-white);
  padding: 0.0625rem 0.3125rem;
}
@media screen and (max-width: 430px) {
  .form__label {
    font-size: 1rem;
  }
}

.form__label label {
  display: flex;
  align-items: center;
  color: var(--color-white);
}

.form__input,
.form__select,
.form__textarea,
.form__acceptance-text {
  font-size: 1.125rem;
  width: 100%;
  padding: 0.625rem 0.9375rem;
  border: 1px solid #E3E3E3;
  background-color: #F8F8F8;
}
@media screen and (max-width: 430px) {
  .form__input,
.form__select,
.form__textarea,
.form__acceptance-text {
    padding: 0.5rem 0.9375rem;
    font-size: 1rem;
  }
}

.form__data-select {
  position: relative;
}

.form__data-select::after {
  position: absolute;
  top: 60%;
  right: 15px;
  width: 0;
  height: 0;
  margin-top: -3px;
  border-width: 6px 6px 0 6px;
  border-style: solid;
  border-color: var(--color-white) transparent transparent transparent;
  content: "";
  pointer-events: none;
}

.form__data-radio {
  display: flex;
  flex-wrap: wrap;
}

.form__privacy-text {
  font-size: 1rem;
  font-weight: 500;
  margin-left: 0.9375rem;
  color: var(--color-white);
  line-height: 1.8;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 430px) {
  .form__privacy-text {
    font-size: 0.875rem;
    margin-left: 0.5rem;
  }
}

.form__privacy-note {
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 0.9375rem;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-form-control-wrap[data-name=privacy] .wpcf7-list-item-label {
  position: relative;
  display: inline-block;
  padding-left: 1.5rem;
}

.wpcf7-form-control-wrap[data-name=privacy] .wpcf7-list-item-label::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  content: "";
  border: 1px solid var(--color-white);
}

.wpcf7-form-control-wrap[data-name=privacy] .wpcf7-list-item-label::after {
  position: absolute;
  content: "";
  top: 9px;
  left: 3px;
  width: 0.9375rem;
  height: 0.5rem;
  transform: rotate(-45deg);
  opacity: 0;
  border-bottom: 2px solid var(--color-white);
  border-left: 2px solid var(--color-white);
}

.form__checkbox:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.form__privacy-link {
  display: inline-block;
  color: var(--deep-white);
  font-weight: 500;
  border-bottom: 1px solid var(--color-white);
  padding-bottom: 2px;
}

.form__submit-button {
  padding: 1rem 1.375rem;
  max-width: 21.875rem;
  margin: 3.125rem auto 0;
  border: 1px solid var(--color-white);
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .form__submit-button {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 430px) {
  .form__submit-button {
    font-size: 1.125rem;
    max-width: 100%;
  }
}

.form__submit-button:hover {
  opacity: 1;
}

.form__submit-button input {
  color: var(--color-white);
}

.form__note {
  font-size: 0.875rem;
  color: var(--color-white);
  line-height: 1.8;
  letter-spacing: 0.06em;
  margin-top: 1.25rem;
  text-align: center;
}

.wpcf7 .wpcf7-submit:disabled {
  color: var(--color-white);
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-form.sent .wpcf7-response-output {
  display: none;
}

/****************************************/
/****************************************/
.site-content h2,
.site-content h3 {
  margin-bottom: 1.875rem;
}

.site-content p,
.site-content h4,
.site-content h5,
.site-content h6,
.site-content img,
.site-content ul,
.site-content ol,
.site-content table {
  margin-bottom: 0.9375rem;
}

.site-content p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .site-content p {
    font-size: 0.875rem;
  }
}

.site-content h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .site-content h2 {
    font-size: 1.75rem;
  }
}

.site-content h3 {
  position: relative;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  padding-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .site-content h3 {
    font-size: 1.5rem;
  }
}

.site-content h3::after {
  position: absolute;
  content: "";
  width: 3.5rem;
  height: 0.125rem;
  bottom: 0;
  left: 0;
  background-color: var(--color-white);
}

.site-content h4 {
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .site-content h4 {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 430px) {
  .site-content h4 {
    font-size: 1.25rem;
  }
}

.site-content h5 {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .site-content h5 {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 430px) {
  .site-content h5 {
    font-size: 1.125rem;
  }
}

.site-content h6 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .site-content h6 {
    font-size: 1rem;
  }
}

.site-content ul {
  list-style: none;
  padding-left: 2.25rem;
}
@media screen and (max-width: 768px) {
  .site-content ul {
    padding-left: 0.9375rem;
  }
}

.site-content ul li {
  font-size: 1rem;
  display: flex;
  align-items: baseline;
}
@media screen and (max-width: 768px) {
  .site-content ul li {
    align-items: baseline;
  }
}

.site-content ul li::before {
  content: "⚫︎";
  color: var(--color-white);
  font-size: 0.5em;
  margin-right: 1em;
}

.site-content ul li:not(:first-child) {
  margin-top: 0.625rem;
}

.site-content ol {
  counter-reset: number;
  list-style-type: none !important;
  padding-left: 1.25rem;
}

.site-content ol li {
  position: relative;
  line-height: 1.6;
  padding-left: 2.1875rem;
}

.site-content ol li:not(:first-child) {
  margin-top: 0.625rem;
}

.site-content ol li:before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  background-color: var(--color-white);
  color: var(--color-white);
  font-weight: 500;
  font-size: 1rem;
  left: 0;
  width: 1.5625rem;
  height: 1.5625rem;
  line-height: 25px;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.site-content table table {
  border: none;
}

.site-content table thead {
  border-bottom: 1px solid var(--color-white);
}

.site-content table th {
  background: var(--color-gray-warm);
  color: var(--color-black);
}

.site-content table td {
  border: 1px solid var(--color-black);
  background-color: var(--color-white);
  color: var(--color-black);
}

.site-content a {
  color: var(--color-white);
  text-decoration: underline;
  word-break: break-all;
}

@media screen and (max-width: 768px) {
  .site-content figure {
    text-align: center;
  }
}

.site-content figure.wp-block-image img {
  width: auto !important;
  max-width: 100%;
  height: auto;
  display: inline-block;
}

/* YouTube iframe対応（レスポンシブ） */
.site-content iframe {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9; /* CSSでアスペクト比を維持 */
  margin-bottom: 0.9375rem;
}

/* 旧ブラウザ対応が必要な場合はwrapで対応 */
.site-content .video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9のアスペクト比 */
  margin-bottom: 0.9375rem;
}

.site-content .video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-title {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.inner {
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5625rem;
}
@media screen and (max-width: 768px) {
  .inner {
    max-width: 700px;
    padding: 0 1.25rem;
  }
}

.inner-m {
  width: 100%;
  max-width: 1000px;
  padding: 0 3.125rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .inner-m {
    padding: 0 1.5625rem;
  }
}

.inner900 {
  max-width: 900px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-secondary);
}
@media screen and (max-width: 768px) {
  .text {
    font-size: 1rem;
  }
}

.title-en {
  font-family: var(--font-title);
  text-transform: capitalize;
  font-size: 5.2rem;
  font-weight: 400;
  line-height: 2.2;
  word-break: break-word;
}
@media screen and (max-width: 1060px) {
  .title-en.top_insta{
    font-size: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .title-en {
    font-size: 4rem;
    line-height: 1.6;
  }
}
@media screen and (max-width: 430px) {
  .title-en {
    font-size: 3rem;
  }
}

.page-heading {
  width: 100%;
  text-align: center;
  background-color: var(--color-dark-gray2);
  color: var(--color-white);
  font-size: 1.875rem;
  font-weight: 700;
  padding: 0.5rem 0.9375rem;
}
@media screen and (max-width: 768px) {
  .page-heading {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 430px) {
  .page-heading {
    font-size: 1.25rem;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

.pc-only {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.page-content {
  padding: 5.4375rem 0;
}
@media screen and (max-width: 768px) {
  .page-content {
    padding: 2.5rem 0 3.75rem;
  }
}

.post {
  padding: 3.75rem 0;
}
@media screen and (max-width: 768px) {
  .post {
    padding: 2.5rem 0 3.75rem;
  }
}

.post__inner {
  width: 100%;
  max-width: 1000px;
  padding: 0 3.125rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .post__inner {
    padding: 0 1.5625rem;
  }
}

.post__body {
  padding-top: 3.75rem;
}

.post__meta {
  display: flex;
  /*justify-content: space-between;*/
  justify-content: center;
  align-items: center;
  margin-top: 0.9375rem;
  flex-wrap: wrap;
}

.post__category {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-white);
  padding: 0.625rem 0.9375rem;
  background-color: var(--color-dark-gray);
  border-radius: 1.5625rem;
  min-width: 185px;
  text-align: center;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .post__category {
    font-size: 0.75rem;
  }
}

.post__date {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .post__date {
    font-size: 0.875rem;
  }
}

.post__title {
  font-family: var(--font-mincho);
  position: relative;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .post__title {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 430px) {
  .post__title {
    font-size: 1.5rem;
  }
}

.post__title::after {
  position: absolute;
  content: "";
  width: 100%;
  background: var(--color-light-gray);
  height: 1px;
  left: 0;
  bottom: -5px;
}

.post__thumb {
  padding-bottom: 1.25rem;
}

.single-nav__items {
  margin-top: 90px;
  max-width: 500px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(calc(33.3333333333% - 20px), 1fr));
  -moz-column-gap: 20px;
  column-gap: 20px;
  justify-items: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .single-nav__items {
    margin-top: 3.4375rem;
    grid-template-columns: 1fr;
    row-gap: 1.6875rem;
  }
}

.single-nav__item {
  width: 100%;
}

.page-nav-button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid var(--color-white);
  color: var(--color-white);
  padding: 0.625rem 1.25rem;
  transition: background-color 0.3s ease;
}

.page-nav-button:hover {
  border: 1px solid transparent;
  background-color: var(--color-white);
  color: var(--color-black);
  opacity: 1;
}

/****************************************/
/****************************************/
#mv{
  width: 100%;
  display: flex;
	align-items: center;
  justify-content: center;
  height: 100vh;
  background: url(../images/fv.webp) no-repeat center bottom / cover;
}

#mv img{
  display: block;
  width: clamp(300px, 60vw, 560px);
  transform: translateY(-25%);
}

@media (max-width: 1200px){
  #mv{
    aspect-ratio: 760 / 800;
    height: auto;
    background-image: url(../images/fv_sp.webp);
  }
}

.fv {
  position: relative;
  height: 100vh;
  background-image: url(../images/fv.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.fv.fv--page {
  height: 23.25rem;
  background-position: bottom center;
}
.fv.fv--page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}
.fv.fv--page .fv__content {
  position: relative;
  z-index: 1;
  top: 55%;
}
@media screen and (max-width: 768px) {
  .fv.fv--page {
    height: 17.5rem;
  }
}
.fv.fv--menu {
  height: 20.5rem;
  background: none;
}
.fv.fv--menu::before {
  display: none;
}
.fv.fv--menu .fv__content {
  top: 65%;
}

.fv__inner {
  position: relative;
  max-width: 1312.5px;
  margin: 0 auto;
  height: inherit;
}

.fv__content {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 5;
  left: 50%;
  top: 47%;
  transform: translate(-50%, -50%);
}

.fv__heading {
  position: relative;
}
.fv__heading.fv__heading--menu::before {
  position: absolute;
  content: "";
  top: -4.8125rem;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../images/menu/menu-deco.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  width: 3.625rem;
  aspect-ratio: 58/87;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .fv__heading.fv__heading--menu::before {
    top: -5.625rem;
  }
}

.fv__logo {
  width: 35rem;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1/1;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .fv__content{
    top: 35%;
  }
  .fv__logo {
    min-width: 70vw!important; 
  }
}
@media (max-height: 560px) {
 
}

.fv__title {
  font-family: var(--font-title);
  font-weight: normal;
  color: var(--color-white);
  font-size: 4.75rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .fv__title {
    font-size: 4rem;
  }
}
@media screen and (max-width: 430px) {
  .fv__title {
    font-size: 3rem;
  }
}

.fv__title-sub {
  font-family: var(--font-mincho);
  display: block;
  color: var(--color-white);
  text-align: center;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .fv__title-sub {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 430px) {
  .fv__title-sub {
    font-size: 0.75rem;
  }
}

.fv__text {
  color: var(--color-white);
  font-size: 1.25rem;
  line-height: 1.4;
  margin-top: 4.1875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .fv__text {
    font-size: 1.953125vw;
    margin-top: 5.859375vw;
  }
}
@media screen and (max-width: 768px) {
  .fv__text {
    margin-top: 1.875rem;
    padding: 0.3125rem 0.625rem 0.3125rem 1.375rem;
    font-size: 3.90625vw;
  }
}
@media (max-height: 560px) {
  .fv__text {
    font-size: 1.953125vw;
    margin-top: 1.953125vw;
  }
}

.error-not-found {
  padding: 5rem 0 7.5rem;
}

.error-not-found__text {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
}

/* Swiper */
.swiper {
  visibility: hidden;
  opacity: 0;
}

.cf-turnstile{
  margin-top: 40px;
	text-align: center;
}