@charset "UTF-8";
html {
  width: 100%;
  height: 100%;
}

@media (max-width: 1100px) and (min-width: 768px) {
  html {
    font-size: 16px;
    font-size: 1.4545454545vw;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 16px;
    font-size: 4.2666666667vw;
  }
}
body {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Noto Serif JP", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  color: #141414;
  overflow-x: hidden;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.02em;
  background-color: #fff;
  font-size: 1rem;
  font-size: max(13px, 1rem);
}
body.no_scroll {
  overflow: hidden;
  position: relative;
}

a {
  cursor: pointer;
  text-decoration: none;
  outline: none;
}

p {
  font-size: 1rem;
  font-size: max(13px, 1rem);
  line-height: 1.5;
}

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

.u-right {
  text-align: right;
}

.u-center {
  text-align: center;
}

.u-sp {
  display: none;
}

.u-tb {
  display: none;
}

@media screen and (max-width: 992px) {
  .u-tb {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 0.875rem;
  }
  p {
    font-size: 0.875rem;
  }
  .u-pc {
    display: none;
  }
  .u-sp {
    display: block;
  }
}
/* -----------------------------------
  ヘッダー header
  -----------------------------------*/
.l-header {
  width: 100%;
  margin: 0 auto;
  z-index: 999;
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
}
.l-header.is-active .c-hamburger span:not(.text) {
  background-color: #141441;
}
.l-header.is-active .c-hamburger span.text {
  color: #141441;
}

.l-header__wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
  height: 100%;
  margin: 0 auto;
  isolation: isolate;
  position: relative;
  z-index: 99999;
}

.l-header__logo {
  width: 8.75rem;
  background-color: #fff;
  padding-top: 56px;
  text-align: center;
}
.l-header__logo a {
  display: inline-block;
  max-width: 4.25rem;
}

.l-header__menu {
  display: none;
}

body.home .l-header__menu {
  display: block;
}
body.home .l-header__menu .list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
  gap: 24px;
}
body.home .l-header__menu .list li {
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
}
body.home .l-header__menu .list a {
  display: block;
  color: #fff;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  transition: 0.3s ease;
  text-align: center;
  text-orientation: upright;
  white-space: nowrap;
  position: relative;
}
body.home .l-header__menu .list a::after {
  content: "";
  display: block;
  width: 1px;
  height: 0;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: -4px;
  transition: 0.3s ease;
}
@media (hover: hover) {
  body.home .l-header__menu .list a:hover {
    opacity: 0.7;
  }
  body.home .l-header__menu .list a:hover::after {
    height: 100%;
  }
}

.l-header__main {
  padding: 3.5rem;
  -ms-flex: 1;
      flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: start;
      align-items: flex-start;
}

.l-header__language {
  padding: 100px 16px 0;
}
.l-header__language .list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  text-align: center;
}
.l-header__language .list a {
  font-family: "Shippori Mincho", serif;
  font-size: 0.875rem;
  color: #fff;
  padding: 12px 0;
  display: inline-block;
  min-width: 24px;
}
.l-header__language .list li:not(:last-child) {
  border-bottom: 1px solid #FFFFFF;
}
.l-header__language .list li.current a {
  color: #AB0000;
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.5);
}

.l-header__container {
  z-index: 999999;
  width: 100%;
  background: #fff;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  padding-top: 190px;
  padding-bottom: 60px;
}
.l-header__container .l-wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
  flex-direction: column;
}
.l-header__container .logo {
  width: 14%;
  max-width: 120px;
}

.l-header-nav__wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
  gap: 5rem;
}

.l-header-nav .list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
  gap: 2.5rem;
}
.l-header-nav .list li {
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
}
.l-header-nav .list a {
  display: block;
  font-size: 1.125rem;
  letter-spacing: 0.12em;
  font-weight: 500;
  transition: 0.3s ease;
  text-align: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 10px;
}
.l-header-nav .list a::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 30px;
  background-color: #aaa;
}
@media (hover: hover) {
  .l-header-nav .list a:hover {
    opacity: 0.7;
  }
}

/* -------- cta btn -------- */
.c-btn-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 40px;
  -ms-flex: 1;
      flex: 1;
  max-width: 210px;
}

.c-cta__btn-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 20px;
}

.c-cta-btn {
  height: 50px;
  transition: 0.3s ease;
  background-color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 210px;
  gap: 8px;
  font-size: max(16px, 1.125rem);
  color: #AB0000;
  border: 1px solid #AB0000;
}
.c-cta-btn .wrap {
  line-height: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 4px;
}
.c-cta-btn .text {
  display: inline-block;
  font-size: 0.625rem;
  font-size: 10px;
}
.c-cta-btn .num {
  font-size: max(16px, 1.125rem);
  line-height: 1;
}
@media (hover: hover) {
  .c-cta-btn:hover {
    background-color: #AB0000;
    color: #fff;
  }
  .c-cta-btn:hover.tel::before {
    background-color: #fff;
  }
}
.c-cta-btn::before {
  content: "";
  display: inline-block;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #202020;
}
.c-cta-btn.tel::before {
  width: 30px;
  height: 30px;
  -webkit-mask-image: url("../img/common/icon_tel.svg");
          mask-image: url("../img/common/icon_tel.svg");
  background-color: #AB0000;
}

.c-ig-btn {
  text-align: center;
  max-width: 210px;
}
.c-ig-btn a {
  color: #141414;
  font-size: 0.875rem;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  opacity: 0.6;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  gap: 16px;
}
.c-ig-btn a::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url("../img/common/icon_instagram.svg") no-repeat center/100%;
}

/* ------ hamburger btn ------*/
.c-hamburger {
  display: inline-block;
  transition: all 0.2s;
  box-sizing: border-box;
  position: fixed;
  top: 48px;
  width: 65px;
  height: 65px;
  z-index: 999999;
  display: block;
}
.c-hamburger span {
  position: absolute;
}
.c-hamburger span:not(.text) {
  display: inline-block;
  transition: all 0.2s;
  box-sizing: border-box;
  height: 1px;
  background-color: #fff;
  border-radius: 4px;
  left: 0;
  width: 100%;
}
.c-hamburger span:nth-of-type(1) {
  top: 10px;
}
.c-hamburger span:nth-of-type(2) {
  top: 20px;
}
.c-hamburger span:nth-of-type(3) {
  top: 30px;
}
.c-hamburger span.text {
  width: auto;
  height: auto;
  background: none;
  top: 40px;
  color: #fff;
  text-align: center;
  display: block;
  width: 100%;
}
.c-hamburger.is-active span:not(.text) {
  background-color: #141414;
}
.c-hamburger.is-active span:nth-of-type(1) {
  -ms-transform: translateY(10px) rotate(-20deg);
      transform: translateY(10px) rotate(-20deg);
}
.c-hamburger.is-active span:nth-of-type(2) {
  opacity: 0;
}
.c-hamburger.is-active span:nth-of-type(3) {
  -ms-transform: translateY(-10px) rotate(20deg);
      transform: translateY(-10px) rotate(20deg);
}
.c-hamburger.is-active span.text {
  font-size: 0;
  color: #141414;
}
.c-hamburger.is-active span.text::before {
  content: "Close";
  font-size: 0.875rem;
}

@media screen and (max-width: 992px) {
  .l-header__logo {
    width: 4.6875rem;
  }
  .l-header__logo a {
    max-width: 3.125rem;
  }
  body.home .l-header__menu {
    display: none;
  }
  .l-header__main {
    padding: 20px 14px;
  }
  .l-header__language {
    padding: 80px 10px;
  }
  .l-header__language .list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: center;
        align-items: center;
  }
  .l-header__language .list a {
    font-family: "Shippori Mincho", serif;
    font-size: 0.75rem;
    color: #fff;
    padding: 10px 2px;
    display: inline-block;
  }
  .l-header__language .list li:not(:last-child) {
    border-bottom: 1px solid #FFFFFF;
  }
  .l-header__language .list li.current a {
    color: #AB0000;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.5);
  }
  /* -------- cta btn -------- */
  .c-btn-block {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 30px;
    -ms-flex: 1;
        flex: 1;
    max-width: 194px;
  }
  .c-cta__btn-list {
    gap: 12px;
  }
  .c-cta-btn {
    max-width: 194px;
    gap: 8px;
    font-size: 1rem;
  }
  .c-cta-btn .wrap {
    line-height: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 4px;
  }
  .c-cta-btn::before {
    content: "";
    display: inline-block;
    -webkit-mask-size: 100%;
            mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    background-color: #202020;
  }
  .c-cta-btn.tel::before {
    width: 20px;
    height: 20px;
  }
  .c-ig-btn {
    text-align: left;
    max-width: 194px;
  }
  /* ------ hamburger btn ------*/
  .c-hamburger {
    display: inline-block;
    transition: all 0.2s;
    box-sizing: border-box;
    top: 10px;
    width: 50px;
    height: 50px;
    z-index: 999999;
    display: block;
  }
  .c-hamburger span {
    position: absolute;
  }
  .c-hamburger span:not(.text) {
    display: inline-block;
    transition: all 0.2s;
    box-sizing: border-box;
    height: 1px;
    background-color: #fff;
    border-radius: 4px;
    left: 0;
    width: 100%;
  }
  .c-hamburger span:nth-of-type(1) {
    top: 10px;
  }
  .c-hamburger span:nth-of-type(2) {
    top: 18px;
  }
  .c-hamburger span:nth-of-type(3) {
    top: 26px;
  }
  .c-hamburger span.text {
    top: 34px;
    font-size: 0.75rem;
  }
  .c-hamburger.is-active span:nth-of-type(1) {
    -ms-transform: translateY(8px) rotate(-30deg);
        transform: translateY(8px) rotate(-30deg);
  }
  .c-hamburger.is-active span:nth-of-type(3) {
    -ms-transform: translateY(-8px) rotate(30deg);
        transform: translateY(-8px) rotate(30deg);
  }
  .c-hamburger.is-active span.text::before {
    content: 0.75rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__container {
    z-index: 999999;
    width: 100%;
    background: #fff;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    padding: 5rem 0;
  }
  .l-header__container .l-wrap {
    width: calc(100% - 68px);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    flex-direction: column;
    gap: 30px;
  }
  .l-header__container .logo {
    width: 22%;
    max-width: 78px;
    margin: 0 auto;
  }
  .l-header-nav__wrap {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: start;
        align-items: flex-start;
    gap: 45px;
  }
  .l-header-nav .list {
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 16px;
  }
  .l-header-nav .list li {
    -ms-writing-mode: initial;
        writing-mode: initial;
  }
  .l-header-nav .list a {
    display: block;
    font-size: 0.875rem;
    letter-spacing: 0.12em;
    font-weight: 500;
    transition: 0.3s ease;
    text-align: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: start;
        justify-content: flex-start;
    gap: 5px;
  }
  .l-header-nav .list a::before {
    width: 30px;
    height: 1px;
  }
}
@media screen and (max-width: 767px) and (hover: hover) {
  .l-header-nav .list a:hover {
    opacity: 0.7;
  }
}
/* -----------------------------------
  footer
  -----------------------------------*/
.l-footer {
  background-color: #141414;
}
.l-footer .l-wrap {
  max-width: 1300px;
}

.l-footer__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  gap: 3rem;
}

.l-footer__img {
  width: 48%;
  max-width: 600px;
  margin-left: calc(50% - 50vw);
  position: relative;
}
.l-footer__img::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(110deg, rgba(0, 0, 0, 0) 0%, rgb(20, 20, 20) 80%);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
.l-footer__img img {
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.l-footer__contents {
  -ms-flex: 1;
      flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  gap: 4rem;
  padding: 4rem 0;
}
.l-footer__contents .c-ig-btn {
  text-align: center;
}
.l-footer__contents .c-ig-btn a {
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  color: #fff;
  border-bottom: 1px solid #fff;
  padding-bottom: 8px;
}
.l-footer__contents .c-ig-btn a::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: none;
  -webkit-mask-image: url("../img/common/icon_instagram.svg");
          mask-image: url("../img/common/icon_instagram.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #fff;
}
.l-footer__contents .c-btn-block {
/*   margin-top: auto; */
  padding-bottom: 10px;
  width: 210px;
}
.l-footer__contents .c-btn-block .c-btn-border {
  margin-top: 40px;
}

.l-footer__menu {
  border-right: 1px solid #fff;
  padding: 2.5rem 4rem;
}
.l-footer__menu .l-footer__nav {
  min-width: 16.875rem;
}
.l-footer__menu .l-footer__nav li:not(:last-child) {
  margin-bottom: 20px;
}
.l-footer__menu .l-footer__nav a {
  position: relative;
  font-weight: 600;
  color: #fff;
  padding: 4px 8px;
  font-size: 1.125rem;
}
.l-footer__menu .l-footer__nav a::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  bottom: -2px;
  -ms-transform: scale(0, 1);
      transform: scale(0, 1);
  -ms-transform-origin: right top;
      transform-origin: right top;
  transition: transform 0.3s;
}
@media (hover: hover) {
  .l-footer__menu .l-footer__nav a:hover::before {
    -ms-transform: scale(1, 1);
        transform: scale(1, 1);
    -ms-transform-origin: left top;
        transform-origin: left top;
  }
}

@media screen and (max-width: 767px) {
  .l-footer {
    margin-top: 80px;
    padding-bottom: 80px;
  }
  .l-footer .l-wrap {
    width: calc(100% - 3.75rem);
  }
  .l-footer__block {
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 40px;
  }
  .l-footer__img {
    width: 100vw;
    max-width: initial;
    margin-left: calc(50% - 50vw);
  }
  .l-footer__img img {
    width: 100%;
    aspect-ratio: 375/250;
    min-height: initial;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 50% 80%;
       object-position: 50% 80%;
  }
  .l-footer__contents {
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 0;
    padding: 0;
  }
  .l-footer__contents .c-btn-block {
    -ms-flex-align: center;
        align-items: center;
    width: 100%;
    max-width: 175px;
    margin: 0 auto;
  }
  .l-footer__contents .c-btn-block .c-btn-border {
    margin-top: 0;
  }
  .l-footer__contents .c-cta__btn-list {
    width: 100%;
  }
  .l-footer__contents .c-ig-btn {
    -ms-flex-align: center;
        align-items: center;
  }
  .l-footer__contents .c-ig-btn a {
    -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
    color: #fff;
    border-bottom: 1px solid #fff;
    padding-bottom: 8px;
  }
  .l-footer__contents .c-ig-btn a::after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background: none;
    -webkit-mask-image: url("../img/common/icon_instagram.svg");
            mask-image: url("../img/common/icon_instagram.svg");
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
            mask-size: 100%;
    background-color: #fff;
  }
  .l-footer__menu {
    border-right: none;
    border-bottom: 1px solid #fff;
    padding: 0 0 2.5rem;
    margin-bottom: 40px;
  }
  .l-footer__menu .l-footer__nav {
    min-width: 16.875rem;
  }
  .l-footer__menu .l-footer__nav li:not(:last-child) {
    margin-bottom: 16px;
  }
  .l-footer__menu .l-footer__nav a {
    padding: 0;
    font-size: 1rem;
    line-height: 1.7;
  }
}
/* —————————————————
  component
  —————————————————*/
/* ---------- title ----------*/
.c-ttl {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
  gap: 8px;
}

.c-ttl__en {
/*   -ms-writing-mode: tb-rl; */
/*       writing-mode: vertical-rl; */
  font-family: "Shippori Mincho", serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
}

.c-ttl__ja {
/*   -ms-writing-mode: tb-rl; */
/*       writing-mode: vertical-rl; */
  display: block;
  font-size: 2rem;
  letter-spacing: 0.25em;
  line-height: 1.2;
}
.c-ttl__ja.horizontal {
  -ms-writing-mode: initial;
      writing-mode: initial;
  letter-spacing: 0.05em;
  margin-bottom: 4rem;
}

@media screen and (max-width: 767px) {
  .c-ttl {
    -ms-flex-pack: center;
        justify-content: center;
  }
  .c-ttl__en {
    font-size: 0.8125rem;
  }
  .c-ttl__ja {
    font-size: 1.5rem;
  }
}
/* ---------- btn ----------*/
.c-btn {
/*   -ms-writing-mode: tb-rl; */
/*       writing-mode: vertical-rl; */
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  transition: 0.3s ease;
  position: relative;
  gap: 20px;
  border-radius: 100px;
  margin-top: 50px;
}
.c-btn .text {
  border-left: 1px solid #DDDDDD;
  position: relative;
  padding-left: 5px;
}
.c-btn .text::after {
  content: "";
  display: block;
  width: 2px;
  height: 28px;
  position: absolute;
  top: 0;
  left: -1px;
  background-color: #AB0000;
  transition: 0.3s ease;
}
.c-btn::after {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  -webkit-mask-image: url("../img/common/icon_arrow.svg");
          mask-image: url("../img/common/icon_arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-position: center;
          mask-position: center;
  background: #AB0000;
  transition: 0.3s ease;
  z-index: 1;
}
@media (hover: hover) {
  .c-btn:hover .text::after {
    width: 100%;
  }
}
.c-btn.horizontal {
  -ms-writing-mode: initial;
      writing-mode: initial;
}
.c-btn.horizontal .text {
  padding: 0 0 5px;
  border-left: none;
  border-bottom: 1px solid #ddd;
}
.c-btn.horizontal .text::after {
  width: 28px;
  height: 2px;
  top: initial;
  bottom: -1px;
  left: 0;
}

/* @media screen and (max-width: 767px) { */
  .c-btn-wrap {
    text-align: right;
  }
  .c-btn {
    -ms-writing-mode: initial;
        writing-mode: initial;
    gap: 8px;
    margin-top: 30px;
    letter-spacing: 0.05em;
  }
  .c-btn .text {
    border-left: none;
    padding-left: 0;
    padding-bottom: 5px;
    border-bottom: 1px solid #DDDDDD;
  }
  .c-btn .text::after {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    position: absolute;
    top: initial;
    bottom: -1px;
    left: 0;
  }
  .c-btn::after {
    width: 24px;
    height: 24px;
  }
/* } */
.c-btn-border {
  height: 50px;
  transition: 0.3s ease;
  background-color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 100%;
  max-width: 210px;
  gap: 5px;
  font-size: 1.125rem;
  line-height: 1.4;
  color: #AB0000;
  border: 1px solid #AB0000;
}
.c-btn-border .sub {
  font-size: 0.625rem;
  display: block;
  line-height: 1;
}
@media (hover: hover) {
  .c-btn-border:hover {
    background-color: #AB0000;
    color: #fff;
  }
}

.c-lead {
/*   -ms-writing-mode: tb-rl; */
/*       writing-mode: vertical-rl; */
  line-height: 1.9;
  letter-spacing: 0.2em;
}

.c-lead-border {
  /* -ms-writing-mode: tb-rl; */
  /* writing-mode: vertical-rl; */
  letter-spacing: 0.2em;
}
.c-lead-border span {
    /* border-left: 1px solid #DDDDDD; */
  padding: 0 10px;
  display: block;
}
/* .c-lead-border span:first-child {
  border-right: 1px solid #DDDDDD;
} */

.c-img-block {
  width: calc(100vw - 10rem);
  margin-left: calc(50% - 50vw);
}

.u-center {
  text-align: center;
}

.u-right {
  text-align: right;
}

.u-border {
  border-bottom: 1px solid #DDDDDD;
}

.u-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  line-height: 1.7;
}

.u-red {
  color: #AB0000;
}

.l-wrap {
  width: calc(100% - 6.25rem);
  max-width: 1120px;
  margin: 0 auto;
}

@media screen and (max-width: 992px) {
  .l-wrap {
    width: calc(100% - 40px);
  }
  .c-lead {
    line-height: 2.2;
  }
  .c-img-block {
    width: calc(100vw - 4.6875rem);
  }
}
@media screen and (max-width: 767px) {
  .c-lead {
    font-size: 0.8125rem;
    line-height: 2;
  }
  .c-lead-border span {
    padding: 0 0.375rem;
    font-size: 0.8125rem;
    line-height: 1.2;
  }
  .c-img-block {
    width: calc(100vw - 20px);
  }
  .u-desc {
    font-size: 0.75rem;
  }
}
/* ---------------------------------------------
  top-loading
  --------------------------------------------- */
.l-loading {
  z-index: 9999;
  display: block;
  width: 100%;
  height: 100svh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
}
.l-loading .l-loading__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  opacity: 0;
  transition: 1s ease;
  width: 25%;
  max-width: 144px;
}
.l-loading.is-active .l-loading__logo {
  opacity: 1;
}

/* ---------------------------------------------
  top mv
  --------------------------------------------- */
.l-main-home {
  overflow: hidden;
}

.p-top-mv {
  width: 100%;
  position: relative;
}
.p-top-mv .c-btn-block {
  width: 100%;
  max-width: 210px;
  position: absolute;
  left: 56px;
  bottom: 56px;
  z-index: 3;
}

.p-top-mv__img {
  width: calc(100% - 8.75rem);
  overflow: hidden;
  position: relative;
}
.p-top-mv__img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.5) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.p-top-mv__img img {
  width: 100%;
  aspect-ratio: 1300/800;
  min-height: 640px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}

.p-top-mv__slider {
  height: 100%;
}
.p-top-mv__slider .swiper-slide {
  height: 100%;
}

.p-top-scroll {
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  font-family: "Shippori Mincho", serif;
  position: absolute;
  bottom: -8rem;
  right: 3.375rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  z-index: 99;
  gap: 24px;
}
.p-top-scroll .text {
  display: block;
  letter-spacing: 0.1em;
}
.p-top-scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 16rem;
  background-color: #0B2A49;
}

@media screen and (max-width: 992px) {
  .p-top-mv__img {
    width: calc(100% - 4.6875rem);
  }
  .p-top-mv .c-btn-block {
    max-width: 175px;
    left: 14px;
    bottom: 35px;
    z-index: 2;
  }
  .p-top-scroll {
    top: initial;
    bottom: 0;
    right: 1.5rem;
    height: auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    z-index: 99;
    gap: 24px;
  }
  .p-top-scroll::after {
    width: 1px;
    height: 200px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-mv__img {
    width: calc(100% - 4.6875rem);
    overflow: hidden;
    position: relative;
  }
  .p-top-mv__img img {
    width: 100%;
    aspect-ratio: 300/690;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
/* ---------------------------------------------
   top news
  --------------------------------------------- */
.p-top-news {
  padding: 7.5rem 0;
}

.p-top-news__container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  gap: 40px;
  padding: 0 1.875rem;
}

.p-top-news__main {
  width: 70%;
  max-width: 660px;
}

.p-news__list {
  -ms-flex: 1;
      flex: 1;
}
.p-news__list li a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  transition: 0.3s ease;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(20, 20, 20, 0.2);
}
.p-news__list li a::after {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  -webkit-mask-image: url("../img/common/icon_arrow.svg");
          mask-image: url("../img/common/icon_arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-position: center;
          mask-position: center;
  background: #6D6C6A;
  transition: 0.3s ease;
  z-index: 1;
}
@media (hover: hover) {
  .p-news__list li a:hover {
    opacity: 0.8;
  }
}
.p-news__list .p-news__text {
  -ms-flex: 1;
      flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 32px;
}
.p-news__list .news-date {
  font-weight: 600;
  color: #333;
  font-size: 0.75rem;
  font-size: 12px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 16px;
}
.p-news__list .news-category {
  display: inline-block;
  font-weight: 500;
  border: 1px solid #AB0000;
  color: #AB0000;
  line-height: 1.2;
  padding: 4px;
  font-size: 0.75rem;
  font-size: 12px;
}
.p-news__list .news-ttl {
  -ms-flex: 1;
      flex: 1;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.25;
  transition: 0.3s ease;
}

@media screen and (max-width: 767px) {
  .p-top-news {
    padding: 50px 0;
  }
  .p-top-news__container {
    display: block;
    padding: 0;
  }
  .p-top-news__container .c-ttl {
    margin-bottom: 40px;
  }
  .p-top-news__main {
    width: 100%;
    max-width: 100%;
  }
  .p-news__list li a {
    gap: 8px;
    padding: 24px 16px;
  }
  .p-news__list li a::after {
    width: 22px;
    height: 22px;
  }
  .p-news__list .p-news__text {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 12px;
  }
  .p-news__list .news-date {
    font-size: 0.8125rem;
    gap: 16px;
  }
  .p-news__list .news-category {
    padding: 4px;
    font-size: 0.625rem;
  }
  .p-news__list .news-ttl {
    -ms-flex: initial;
        flex: initial;
    letter-spacing: 0.02em;
  }
}
/* ---------------------------------------------
  top about
  --------------------------------------------- */
.p-top-about .l-wrap {
  max-width: 1048px;
}
.p-top-about .c-ttl {
/*   margin-left: 4rem; */
}
.p-top-about .c-btn-wrap {
  margin-top: auto;
}

.p-top-about__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 2.5rem;
}

.p-top-about__contents {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 24px;
}

.p-top-about__img {
  width: 106%;
  -ms-transform: translateX(calc(-53% + 50vw));
      transform: translateX(calc(-53% + 50vw));
  margin-top: 6.25rem;
}

.p-top-img {
  margin-top: 9.375rem;
}

@media screen and (max-width: 767px) {
  .p-top-about .l-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    gap: 5rem;
  }
  .p-top-about .c-ttl {
    margin: 0 auto;
  }
  .p-top-about__block {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-pack: center;
        justify-content: center;
  }
  .p-top-about__block .c-btn-wrap {
    width: 100%;
  }
  .p-top-about__contents {
    width: 100%;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    gap: 2.5rem;
  }
  .p-top-about__img {
    width: calc(100vw - 20px);
    -ms-transform: none;
        transform: none;
    margin-top: 0;
  }
  .p-top-img {
    margin-top: 8.75rem;
  }
}
/* ---------------------------------------------
  top menu
  --------------------------------------------- */
.p-top-menu {
  padding: 10rem 0 8.125rem;
}
.p-top-menu .l-wrap {
  max-width: 1048px;
}
.p-top-menu .c-ttl {
/*   margin-left: 4rem; */
}
.p-top-menu .c-btn-wrap {
  margin-top: auto;
}

.p-top-menu__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
  gap: 2.5rem;
}

.p-top-menu__contents {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  padding-bottom: 5rem;
	gap: 16px;
}
.p-top-menu__contents .c-btn {
/*   margin-right: 4rem; */
  margin-top: auto;
}

.p-top-menu__img {
  width: 56vw;
  margin-left: calc(50% - 50vw);
}

@media screen and (max-width: 767px) {
  .p-top-menu {
    padding: 60px 0 40px;
  }
  .p-top-menu__block {
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 6.25rem;
  }
  .p-top-menu__contents {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-bottom: 0;
  }
  .p-top-menu__contents .c-btn-wrap {
    width: 100%;
  }
  .p-top-menu__contents .c-btn {
    margin-right: 0;
    margin-top: 50px;
  }
  .p-top-menu__contents .c-lead-border {
    font-size: 0.875rem;
  }
  .p-top-menu__contents .c-lead-border span {
    padding: 0 0.5rem;
    letter-spacing: 0.3em;
  }
  .p-top-menu__img {
    width: calc(100vw - 20px);
  }
}
/* ---------------------------------------------
  top store
  --------------------------------------------- */
.p-top-store {
  padding: 5rem 0;
  position: relative;
  margin-bottom: 7.5rem;
}
.p-top-store::before {
  content: "";
  display: block;
  width: 90.27vw;
  height: 100%;
  background-color: #F7F6F3;
  position: absolute;
  top: 0;
  right: 0;
}
.p-top-store .l-wrap {
  max-width: 1220px;
  position: relative;
}
.p-top-store .c-ttl {
  margin-right: 3.5rem;
}

.p-top-store__heading {
	margin-bottom: 32px;
}

.p-top-store__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}

.p-top-store-overview {
  -ms-flex: 1;
      flex: 1;
  max-width: 485px;
}
.p-top-store-overview dl {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid #808080;
  padding: 24px 0;
}
.p-top-store-overview dl:first-child {
  padding-top: 0;
}
.p-top-store-overview dl dt {
  width: 140px;
  font-weight: 700;
  font-size: 0.875rem;
  display: -ms-flexbox;
  display: flex;
  padding: 0 10px;
}
.p-top-store-overview dl dd {
  -ms-flex: 1;
      flex: 1;
  line-height: 2;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
}

.p-top-store__map {
  width: 40%;
  max-width: 493px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-left: 40px;
}
.p-top-store__map iframe {
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1300px) {
  .p-top-store::before {
    width: calc(100% - 1.25rem);
  }
}
@media screen and (max-width: 992px) {
  .p-top-store {
    padding: 45px 0;
    margin-bottom: 0;
  }
  .p-top-store::before {
    width: calc(100% - 30px);
    top: 0;
    right: initial;
    left: 50%;
    -ms-transform: translateX(-50%);
        transform: translateX(-50%);
  }
  .p-top-store .l-wrap {
    width: calc(100% - 60px);
  }
  .p-top-store .c-ttl {
    margin-right: 3.5rem;
    -ms-flex-pack: center;
        justify-content: center;
  }
  .p-top-store__block {
    display: block;
  }
  .p-top-store__block .c-ttl {
    margin: 0 0 30px;
  }
  .p-top-store-overview {
    -ms-flex: 1;
        flex: 1;
    max-width: 100%;
  }
  .p-top-store-overview dl {
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 5px;
    padding: 16px 0;
  }
  .p-top-store-overview dl dt {
    padding: 0;
  }
  .p-top-store-overview dl dd {
    -ms-flex: 1;
        flex: 1;
    line-height: 1.7;
    font-weight: 400;
    font-size: 0.8125rem;
  }
  .p-top-store__map {
    width: 100%;
    max-width: 100%;
    margin: 30px 0 0;
  }
}
/*=========== lower pages Common ===========*/
.c-heading {
  position: relative;
  overflow: hidden;
  width: calc(100% - 8.75rem);
}

.c-heading__text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 8px;
  position: absolute;
  top: 50%;
  left: calc(50% + 4.375rem);
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
}

.c-heading__en {
/*   -ms-writing-mode: tb-rl; */
/*       writing-mode: vertical-rl; */
  font-family: "Shippori Mincho", serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
}

.c-heading__ja {
/*   -ms-writing-mode: tb-rl; */
/*       writing-mode: vertical-rl; */
  display: block;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.c-heading__img {
  width: 100%;
  position: relative;
}
.c-heading__img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(106, 106, 106, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.c-heading__img img {
  width: 100%;
  aspect-ratio: 1300/400;
  min-height: 25rem;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 992px) {
  .c-heading {
    width: calc(100% - 4.6875rem);
  }
}
@media screen and (max-width: 767px) {
  .c-heading__text {
    left: calc(50% + 1.25rem);
    width: 50%;
  }
  .c-heading__en {
    font-size: 0.875rem;
  }
  .c-heading__ja {
    font-size: 1.5rem;
  }
  .c-heading__img {
    width: 100%;
  }
  .c-heading__img img {
    width: 100%;
    min-height: initial;
    aspect-ratio: 300/440;
  }
}
/* ----------- breadcrumb -----------*/
.c-breadcrumb {
  padding: 8px 0;
}
.c-breadcrumb .l-wrap {
  max-width: 1120px;
}

.c-breadcrumb__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  max-width: 1320px;
}
.c-breadcrumb__list li:not(:last-of-type)::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-top: 1px solid #141414;
  border-right: 1px solid #141414;
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
  margin: 0 12px;
}
.c-breadcrumb__list li,
.c-breadcrumb__list a {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .c-breadcrumb {
    padding: 4px 0;
  }
  .c-breadcrumb__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .c-breadcrumb__list li:not(:last-of-type)::after {
    width: 6px;
    height: 6px;
    margin: 0 8px 2px;
  }
  .c-breadcrumb__list li,
  .c-breadcrumb__list a {
    font-size: 0.75rem;
  }
}
.p-section-bg .l-wrap {
  max-width: 1280px;
  background-color: #F7F6F3;
  padding: 4rem 2.5rem 6.25rem;
}

@media screen and (max-width: 767px) {
  .p-section-bg .l-wrap {
    width: calc(100% - 30px);
    padding: 45px 15px 80px;
  }
}
/* ---------------------------------------------
  page about
  --------------------------------------------- */
.p-about-section {
  padding: 6.25rem 0;
}
.p-about-section .l-wrap {
  max-width: 1048px;
}

.p-about__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
  gap: 3.75rem;
}

.p-about__contents {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex: 1;
      flex: 1;
	gap: 32px;
}
.p-about__contents .c-ttl__ja {
/*   margin-left: 3.75rem; */
}

.p-about__img {
  width: 31.5vw;
  margin-left: calc(50% - 50vw);
}

.p-about-img-block {
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10.625rem;
}
.p-about-img-block img {
  max-height: 43vw;
  object-fit: cover;
}
.p-about-img-block img:first-child {
  width: 48%;
}
.p-about-img-block img:last-child {
  width: 52%;
}

@media screen and (max-width: 767px) {
  .p-about-section {
    padding: 40px 0;
  }
  .p-about__block {
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    gap: 32px;
  }
  .p-about__contents {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex: 1;
        flex: 1;
    width: 100%;
  }
  .p-about__contents .c-ttl__ja {
    margin: 0 0 30px 0;
  }
  .p-about__img {
    width: 100%;
    margin-left: 0;
  }
  .p-about-img-block {
    -ms-flex-direction: column;
        flex-direction: column;
    width: calc(100% - 40px);
    margin: 0 auto 80px;
  }
  .p-about-img-block img {
    max-height: initial;
  }
  .p-about-img-block img:first-child {
    width: 100%;
  }
  .p-about-img-block img:last-child {
    width: 100%;
  }
}
/* ---------------------------------------------
  about feature
  --------------------------------------------- */
.p-about-feature {
  margin-bottom: 12.5rem;
}

.p-about-feature__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 70px 24px;
}
.p-about-feature__block .block-item {
  width: calc(50% - 12px);
}
.p-about-feature__block .feature-text {
  margin-left: 1.5rem;
  padding: 1.875rem 0 0 24px;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  flex-direction: column;
  position: relative;
}
.p-about-feature__block .feature-text::before {
  content: "";
  display: block;
  width: 1px;
  height: 130px;
  background-color: #AB0000;
  position: absolute;
  top: 0;
  left: 0;
}
.p-about-feature__block .feature-ttl {
  font-size: 1.5rem;
  min-width: 3.125rem;
}

@media screen and (max-width: 767px) {
  .p-about-feature {
    margin-bottom: 0;
  }
  .p-about-feature .c-ttl__ja {
    margin-bottom: 30px;
  }
  .p-about-feature__block {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: center;
        justify-content: center;
    gap: 74px;
  }
  .p-about-feature__block .block-item {
    width: 100%;
  }
  .p-about-feature__block .feature-text {
    margin-left: 14px;
    padding: 16px 0 0 14px;
    gap: 12px;
  }
  .p-about-feature__block .feature-text::before {
    height: 100px;
  }
  .p-about-feature__block .feature-ttl {
    font-size: 1.25rem;
    min-width: 2.8125rem;
  }
  .p-about-feature__block .u-desc {
    letter-spacing: 0;
  }
}
/* ---------------------------------------------
  page menu
  --------------------------------------------- */
.p-menu-section {
  padding: 7.5rem 0;
}
.p-menu-section .l-wrap {
  max-width: 1048px;
}
.p-menu-section.section-1 {
  padding: 7.5rem 0;
}
.p-menu-section.section-1 .l-wrap {
  max-width: 1000px;
}
.p-menu-section.section-2 {
  padding-bottom: 12.5rem;
}
.p-menu-section.section-2 .l-wrap {
  max-width: 1120px;
}

.p-menu__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
  gap: 5rem;
}

.p-menu__contents {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex: 1;
      flex: 1;
  gap: 24px;
}
.p-menu__contents .c-ttl__ja {
/*   margin-left: 4rem; */
}

.p-menu__img {
  width: 46%;
  margin-left: calc(50% - 50vw);
}

@media screen and (max-width: 767px) {
  .p-menu-section .l-wrap {
    max-width: 1048px;
  }
  .p-menu-section.section-1 {
    padding: 40px 0;
  }
  .p-menu-section.section-2 {
    padding-bottom: 0;
  }
  .p-menu__block {
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    gap: 40px;
  }
  .p-menu__contents {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex: 1;
        flex: 1;
    width: 100%;
  }
  .p-menu__contents .c-ttl__ja {
    margin: 0 0 30px 0;
  }
  .p-menu__img {
    width: 100%;
  }
}
/* ---------------------------------------------
      menu detail
   --------------------------------------------- */
.p-menu-detail__block {
  border: 1px solid #AB0000;
  padding: 4rem;
}
.p-menu-detail__block:not(:last-child) {
  margin-bottom: 4.5rem;
}
.p-menu-detail__block .inner {
  max-width: 870px;
  margin: 0 auto;
}
.p-menu-detail__block .p-menu__en {
  color: #AB0000;
  font-family: "Shippori Mincho", serif;
  padding: 0 10px;
}
.p-menu-detail__block .p-menu__ja {
  font-size: 2rem;
}
.p-menu-detail__block .menu-note {
  margin-top: 40px;
  padding: 0 24px;
}
.p-menu-detail__block .menu-note p:not(:last-child) {
  margin-bottom: 24px;
}
.p-menu-detail__block .menu-note-list {
  margin-top: 2.5rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
  padding: 0 24px;
  font-size: 0.875rem;
}
.p-menu-detail__block .menu-note-list li {
  padding-left: 16px;
  text-indent: -16px;
}
.p-menu-detail__block .menu-note-list li::before {
  content: "・";
}
.p-menu-detail__block .c-fBox {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 40px;
  max-width: 820px;
  margin: 60px auto 0;
}
.p-menu-detail__block .c-fBox .block-text {
  width: 50%;
}
.p-menu-detail__block .c-fBox .block-text p:not(:last-child) {
  margin-bottom: 24px;
}
.p-menu-detail__block .c-fBox .block-img {
  width: 46%;
}
.p-menu-detail__block .c-fBox .block-img img {
  border-radius: 4px;
}
.p-menu-detail__block.menu-alcohol .menu-note {
  margin-top: 20px;
}

.p-menu-detail__container {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 16px;
  padding: 0 24px;
}
.p-menu-detail__container.column-2 {
  grid-template-rows: initial;
}
.p-menu-detail__container.column-2 .menu-box:first-child {
  grid-area: initial;
}
.p-menu-detail__container.column-2 .u-desc {
  line-height: 1.2;
  letter-spacing: 0.08em;
}
.p-menu-detail__container .menu-ttl {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.p-menu-detail__container .menu-ttl .sm {
  font-size: 1rem;
}
.p-menu-detail__container .menu-box {
  border: 1px solid rgba(17, 17, 17, 0.4);
  border-radius: 4px;
  padding: 24px;
}
.p-menu-detail__container .menu-box.-max {
  grid-area: 1/1/2/3;
}
.p-menu-detail__container .menu-list {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  padding-left: 16px;
  text-indent: -16px;
}
.p-menu-detail__container .menu-list li:not(:last-child) {
  margin-bottom: 10px;
}
.p-menu-detail__container .menu-list li::before {
  content: "・";
}
.p-menu-detail__container .price {
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.p-menu-detail__container .price .tax {
  font-size: 0.625rem;
  display: inline-block;
  font-weight: 400;
  margin-left: 8px;
}
.p-menu-detail__container .sub-ttl {
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .p-menu-detail__block {
    padding: 40px 16px;
  }
  .p-menu-detail__block:not(:last-child) {
    margin-bottom: 30px;
  }
  .p-menu-detail__block .p-menu__ja {
    font-size: 1.5rem;
  }
  .p-menu-detail__block .menu-note {
    margin-top: 40px;
    padding: 0;
  }
  .p-menu-detail__block .menu-note p:not(:last-child) {
    margin-bottom: 24px;
  }
  .p-menu-detail__block .menu-note-list {
    margin-top: 20px;
    line-height: 1.7;
    font-size: 0.75rem;
    padding: 0;
  }
  .p-menu-detail__block .menu-note-list li {
    padding-left: 12px;
    text-indent: -12px;
  }
  .p-menu-detail__block .c-fBox {
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    gap: 20px;
  }
  .p-menu-detail__block .c-fBox .block-text {
    width: 100%;
  }
  .p-menu-detail__block .c-fBox .block-text p:not(:last-child) {
    margin-bottom: 24px;
  }
  .p-menu-detail__block .c-fBox .block-img {
    width: 100%;
  }
  .p-menu-detail__container {
    margin-top: 30px;
    grid-template-columns: 1fr;
    padding: 0;
  }
  .p-menu-detail__container .menu-ttl {
    font-size: 1.375rem;
  }
  .p-menu-detail__container .menu-ttl .sm {
    font-size: 0.875rem;
  }
  .p-menu-detail__container .menu-box:first-child {
    grid-area: initial;
  }
  .p-menu-detail__container .menu-list {
    font-size: 0.75rem;
    padding-left: 12px;
    text-indent: -12px;
  }
}
/* ---------------------------------------------
  page seat-room
  --------------------------------------------- */
.p-seat-room-section {
  padding: 6.25rem 0 8.75rem;
}
.p-seat-room-section .l-wrap {
  max-width: 1048px;
}

.p-seat-room__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
  gap: 3.75rem;
}

.p-seat-room__contents {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex: 1;
      flex: 1;
  gap: 32px;
}
.p-seat-room__contents .c-ttl__ja {
/*   margin-left: 3.75rem; */
}

.p-seat-room__img {
  width: 36%;
  margin-left: calc(58% - 50vw);
}

@media screen and (max-width: 767px) {
  .p-seat-room-section {
    padding: 40px 0 80px;
  }
  .p-seat-room__block {
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    gap: 40px;
  }
  .p-seat-room__contents {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex: 1;
        flex: 1;
    width: 100%;
  }
  .p-seat-room__contents .c-ttl__ja {
    margin: 0 0 30px 0;
  }
  .p-seat-room__img {
    width: 74%;
    margin: 0 auto;
    -ms-transform: translateX(-6%);
        transform: translateX(-6%);
  }
}
/* ---------------------------------------------
    seat-room detail
    --------------------------------------------- */
.p-seat-room-detail {
  margin-bottom: 3.75rem;
}

.p-seat-room-detail__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 64px;
}
.p-seat-room-detail__block .block-item {
  display: -ms-flexbox;
  display: flex;
  gap: 3.125rem;
}
.p-seat-room-detail__block .detail-text {
  width: 48%;
  padding-left: 28px;
  position: relative;
  margin-top: 3.75rem;
}
.p-seat-room-detail__block .detail-text::before {
  content: "";
  display: block;
  width: 1px;
  height: 130px;
  background-color: #AB0000;
  position: absolute;
  top: 0;
  left: 0;
}
.p-seat-room-detail__block .detail-text p {
  letter-spacing: 0.01em;
}
.p-seat-room-detail__block .detail-text p:not(:last-of-type) {
  margin-bottom: 24px;
}
.p-seat-room-detail__block .detail-img {
  width: 52%;
}
.p-seat-room-detail__block .detail-ttl {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

@media screen and (max-width: 767px) {
  .p-seat-room-detail .c-ttl__ja {
    margin-bottom: 30px;
  }
  .p-seat-room-detail__block {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: center;
        justify-content: center;
    gap: 80px;
  }
  .p-seat-room-detail__block .block-item {
    width: 100%;
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 30px;
  }
  .p-seat-room-detail__block .detail-text {
    width: 100%;
    margin-top: 0;
    padding-left: 14px;
  }
  .p-seat-room-detail__block .detail-text p:not(:last-of-type) {
    margin-bottom: 16px;
  }
  .p-seat-room-detail__block .detail-ttl {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }
  .p-seat-room-detail__block .detail-img {
    width: 100%;
  }
}
/* ---------------------------------------------
  page news
  --------------------------------------------- */
.p-news-section {
  padding: 6.25rem 0;
}
.p-news-section .l-wrap {
  max-width: 800px;
}

@media screen and (max-width: 767px) {
  .p-news-section {
    padding: 40px 0;
  }
}
/* ---------- pagenation ---------- */
ul.page-numbers {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  margin-top: 40px;
  gap: 40px;
}

.page-numbers li .page-numbers {
  display: block;
  font-size: 1.125rem;
  transition: 0.3s ease;
  color: #707070;
}

.page-numbers li .page-numbers.dots {
  border: none;
  width: auto;
}

.page-numbers li a.page-numbers:hover {
  opacity: 0.7;
}

.page-numbers li .current {
  color: #141414;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  ul.page-numbers {
    margin: 30px auto 0;
    gap: 32px;
  }
}
/* ---------------------------------------------
  news article
  --------------------------------------------- */
.p-news-article__area {
  padding: 96px 0;
}
.p-news-article__area .l-wrap {
  max-width: 800px;
}

.p-news-article__head {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  gap: 24px 20px;
  margin-bottom: 60px;
}
.p-news-article__head .p-news__date {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 8px;
}
.p-news-article__head .p-news__category {
  display: inline-block;
  font-weight: 500;
  border: 1px solid #AB0000;
  color: #AB0000;
  line-height: 1.2;
  padding: 4px;
}
.p-news-article__head .p-news__ttl {
  width: 100%;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0;
}

.p-news-article__thumbnail {
  margin-bottom: 60px;
}

.p-news-article__body {
  position: relative;
}
.p-news-article__body p {
  line-height: 1.5;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
}
.p-news-article__body p:not(:last-child) {
  margin-bottom: 24px;
}
.p-news-article__body a {
  color: #AB0000;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-family: "Noto Sans JP", sans-serif;
}
.p-news-article__body img {
  width: 100%;
}
.p-news-article__body img + p,
.p-news-article__body figure + p {
  margin-top: 40px;
}
.p-news-article__body h2 {
  position: relative;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-top: 60px;
  margin-bottom: 24px;
}
.p-news-article__body h3 {
  font-size: 1.125rem;
  border-left: 2px solid #141414;
  font-weight: 700;
  line-height: 1.4;
  padding-left: 12px;
  margin-top: 24px;
  margin-bottom: 24px;
}
.p-news-article__body h4 {
  font-size: 1rem;
  color: #fff;
  padding: 4px 12px;
  background-color: #AB0000;
  margin-top: 24px;
  margin-bottom: 24px;
}
.p-news-article__body h4 + p {
  margin-bottom: 16px;
}
.p-news-article__body h4 + p + h4 {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .p-news-article__area {
    padding: 40px 0 0;
  }
  .p-news-article__area .c-btn {
    margin-top: 30px;
  }
  .p-news-article__head .p-news__ttl {
    font-size: 1.375rem;
    line-height: 1.65;
  }
  .p-news-article__thumbnail {
    margin-bottom: 30px;
  }
  .p-news-article__body p {
    font-size: 0.875rem;
  }
  .p-news-article__body h2 {
    margin-top: 40px;
    font-size: 1.125rem;
  }
  .p-news-article__body h3 {
    font-size: 1rem;
    padding-left: 12px;
  }
  .p-news-article__body h4 {
    font-size: 1rem;
  }
}
/* ---------------------------------------------
  404
  --------------------------------------------- */
body.error404 .l-header .c-hamburger span:not(.text) {
  background-color: #141441;
}
body.error404 .l-header .c-hamburger span.text {
  color: #141414;
}
body.error404 .l-header .l-header__language li {
  border-bottom-color: #141414;
}
body.error404 .l-header .l-header__language li:not(.current) a {
  color: #141414;
}

.p-error-sec {
  text-align: center;
  padding: 12.5rem 0;
}
.p-error-sec .error-num {
  font-size: 5.625rem;
  font-weight: 700;
  line-height: 1;
  color: #AB0000;
  margin-bottom: 8px;
  font-family: "Shippori Mincho", serif;
}
.p-error-sec .ttl-en {
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 700;
  margin-bottom: 30px;
  font-family: "Shippori Mincho", serif;
}
.p-error-sec .ttl-ja {
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 700;
}
.p-error-sec .c-btn-round {
  width: 100%;
  max-width: 320px;
  margin-top: 80px;
}

@media screen and (max-width: 767px) {
  .p-error-sec {
    padding: 120px 0;
  }
  .p-error-sec .error-num {
    font-size: 4.375rem;
  }
  .p-error-sec .ttl-en {
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 700;
    margin-bottom: 30px;
  }
  .p-error-sec .ttl-ja {
    font-size: 0.875rem;
    line-height: 1.6;
    font-weight: 700;
  }
  .p-error-sec .c-btn-round {
    margin-top: 60px;
  }
}