@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Noto+Serif+JP:wght@400;500;600;700&family=Roboto+Condensed:wght@300;400&display=swap");
:root {
  --color_black: #111111;
  --color_darkgray: #333333;
  --color_baige: #FAF5EA;
  --color_pink: #DFBDC6;
  --color_green: #7ECCA8;
  --color_dark_green: #7AB298;
  --color_red: #D13A3A;
  --font_normal: "Noto Sans JP", sans-serif;
  --font_serif: "Noto Serif JP", serif;
  --font_minion: minion-pro, "Noto Serif JP", serif;
  --font_roboto: "Roboto Condensed", sans-serif;
}

html, body {
  font-family: var(--font_normal);
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  font-size: 62.5%;
  height: -webkit-fill-available;
  touch-action: manipulation;
}

body {
  font-size: 1.3rem;
  line-height: 1.5;
  color: #323232;
  letter-spacing: 0.095em;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}
@media only screen and (min-width: 991px) {
  body {
    font-size: 1.4rem;
  }
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  -webkit-backface-visibility: hidden;
  image-rendering: auto;
  max-width: 100%;
  height: auto;
}

p {
  line-height: 2.4;
}

a {
  color: #000;
  text-decoration: none;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}

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

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

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

@media only screen and (max-width: 550px) {
  .sp-s-hidden {
    display: none;
  }
}

.l-site_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 0;
  width: 100%;
  max-width: 500px;
  transform: translateX(-50%);
  padding: 20px 16px 20px 24px;
  z-index: 9999;
}

.p-header-logo__name {
  font-family: var(--font_minion);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  line-height: 1;
}
.p-header-logo__desc {
  font-size: 1rem;
  line-height: 1;
  margin: 0.4em 0 0;
}

.home .p-header-logo__name {
  font-family: var(--font_minion);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  line-height: 1;
}

.l-site-footer {
  background: #333;
  padding: 50px 40px 0;
  margin-top: auto;
}

.l-sns-content {
  margin-top: 64px;
  margin-bottom: 70px;
}

.p-footer-info-name {
  color: white;
  margin-top: 44px;
}
.p-footer-info-name__logo {
  font-family: var(--font_minion);
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin: 0;
  line-height: 1;
}
.p-footer-info-name__desc {
  font-size: 1rem;
  font-weight: bold;
  color: white;
  margin: 0.8em 0 0;
  line-height: 1;
}

.p-footer-info-address {
  font-size: 1.2rem;
  color: white;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin: 2em 0;
}
.p-footer-info-address a {
  color: white;
}

.p-footer-info-time {
  font-size: 1.2rem;
  color: white;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.p-footer-more-button {
  text-align: right;
}
.p-footer-more-button .c-button-more {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: white;
  padding-right: 67px;
}
.p-footer-more-button .c-button-more::before {
  background: white;
  right: 5px;
}
.p-footer-more-button .c-button-more::after {
  width: 12px;
  height: 12px;
  border-color: white;
  top: calc(50% - 5px);
}

.c-cta-button {
  background: #FAF5EA;
  width: 100%;
  height: 65px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.5em;
  font-family: var(--font_minion);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  position: relative;
}
.c-cta-button .sm {
  font-size: 1.2rem;
  font-weight: 500;
  margin-left: 0.1em;
  letter-spacing: 0.05em;
}
.c-cta-button:nth-child(n+2) {
  margin-top: 16px;
}
.c-cta-button__icon {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 1.8em;
  top: calc(50% - 12px);
}

.c-copyright {
  width: 100%;
  height: 64px;
  display: grid;
  place-content: center;
  border-top: 1px solid #707070;
  font-family: var(--font_minion);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: white;
}

.l-site-container {
  position: relative;
}

.l-pc-layout {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 100vh;
  background: url("../images/common/bg_pc_background.png");
  background-size: cover;
}
.l-pc-layout__image01 {
  position: absolute;
  top: 46px;
  left: 50px;
  z-index: 10;
}
@media only screen and (max-width: 991px) {
  .l-pc-layout__image01 {
    display: none;
  }
}
.l-pc-layout__image01 img {
  display: block;
  position: relative;
  z-index: 10;
}
.l-pc-layout__image01::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #bcc8bf;
  position: absolute;
  top: 20px;
  left: 20px;
  display: block;
  z-index: 1;
}
.l-pc-layout__image02 {
  position: absolute;
  right: 47px;
  bottom: max(33%, 340px);
  z-index: 10;
}
@media only screen and (max-width: 1024px) {
  .l-pc-layout__image02 {
    display: none;
  }
}
.l-pc-layout__image02 img {
  display: block;
  position: relative;
  z-index: 10;
}
.l-pc-layout__image02::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #bcc8bf;
  position: absolute;
  top: 20px;
  left: 20px;
  display: block;
  z-index: 1;
}
.l-pc-layout__circle-logo {
  position: absolute;
  left: 57%;
  top: 74%;
}
@media only screen and (max-width: 991px) {
  .l-pc-layout__circle-logo {
    display: none;
  }
}
.l-pc-layout__circle-logo img {
  max-width: none;
}
.l-pc-layout__logo {
  position: absolute;
  left: 50px;
  bottom: 40px;
}
@media only screen and (max-width: 1230px) {
  .l-pc-layout__logo {
    display: none;
  }
}
.l-pc-layout__menu {
  position: absolute;
  right: 40px;
  top: 40px;
  z-index: 20;
}
@media only screen and (max-width: 991px) {
  .l-pc-layout__menu {
    display: none;
  }
}
.l-pc-layout__sns {
  position: absolute;
  right: 0;
  bottom: 40px;
}
@media only screen and (max-width: 991px) {
  .l-pc-layout__sns {
    display: none;
  }
}

.l-mobile-layout {
  max-width: 500px;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
  position: relative;
  min-height: 100vh;
  min-height: 100 dvh;
  display: flex;
  flex-direction: column;
}
.l-mobile-layout.has-gradation {
  position: relative;
}
.l-mobile-layout.has-gradation::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150vh;
  background: #dfbdc6;
  background: linear-gradient(180deg, rgba(223, 189, 198, 0.7) 19%, rgba(250, 245, 234, 0.6) 65%, white 100%);
}

.l-mobile-layout__gradation {
  position: relative;
}
.l-mobile-layout__gradation::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150vh;
  background: #dfbdc6;
  background: linear-gradient(180deg, #dfbdc6 19%, #faf5ea 65%, white 100%);
}

.l-nav-global {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  left: 50%;
  top: -120vh;
  width: 100%;
  max-width: 500px;
  min-height: 100vh;
  min-height: 100 dvh;
  transform: translateX(-50%);
  background: var(--color_pink);
  z-index: 200;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.l-nav-global__inner {
  width: 100%;
  min-height: 100vh;
  min-height: 100 dvh;
  padding-bottom: 100px;
  display: grid;
  place-content: center;
}
.l-nav-global .menu {
  padding-left: 0;
  list-style: none;
  font-family: var(--font_minion);
  font-size: 1.65rem;
  letter-spacing: 0.2em;
}
.l-nav-global .menu li {
  margin: 1.3em 0;
}
.l-nav-global .menu li a {
  color: #111;
}
.l-nav-global__buttons {
  width: 70vw;
  max-width: 320px;
}

.menu-is-open .l-nav-global {
  opacity: 1;
  visibility: visible;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
  transform: translate(-50%, 120vh);
}

.l-main-visual {
  display: grid;
  grid-template-columns: 60px calc(100% - 60px);
}

.l-block.bg-pink {
  background: rgba(255, 226, 233, 0.3);
  margin-top: 34px;
  padding-bottom: 60px;
}
.l-block__inner {
  padding-left: 10%;
  padding-right: 10%;
}
.l-block__inner.wide {
  padding-left: 10px;
  padding-right: 10px;
}
@media only screen and (min-width: 991px) {
  .l-block__inner.wide {
    padding-left: 10%;
    padding-right: 10%;
  }
}

.l-image-layout__container {
  width: calc(100% - 45px);
  height: calc(100% - 45px);
  margin-bottom: 85px;
  position: relative;
}
.l-image-layout__container img {
  position: relative;
  width: 100%;
  z-index: 10;
}
.l-image-layout__container::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 45px;
  top: 45px;
  z-index: 1;
}
.l-image-layout__container.right {
  margin-left: 45px;
}
.l-image-layout__container.right::before {
  left: -45px;
}

.p-pc-layout-decoration__01 {
  display: block;
  position: absolute;
  top: 0;
  left: -150px;
}
.p-pc-layout-decoration__02 {
  display: block;
  position: absolute;
  right: -100px;
  bottom: -70px;
  transform: rotate(-160deg);
}

.p-main-visual-copy {
  position: relative;
}
.p-main-visual-copy img {
  width: 52px;
  position: absolute;
  top: 0;
  left: calc(50% - 14px);
  mix-blend-mode: overlay;
  z-index: 100;
}

.p-main-visual-gallery__container {
  position: relative;
}
.p-main-visual-gallery__container .swiper-wrapper {
  height: 125vw;
}
@media only screen and (min-width: 991px) {
  .p-main-visual-gallery__container .swiper-wrapper {
    height: 750px;
  }
}
.p-main-visual-gallery__container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 10;
}
.p-main-visual-gallery__container::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 50px;
  left: 50px;
  z-index: 1;
}

.p-front-intro-block {
  margin-top: 128px;
  position: relative;
}
.p-front-intro-block p {
  margin: 0;
  line-height: 3;
}
.p-front-intro-block .p-more-button {
  text-align: right;
  margin-top: 40px;
}

.p-front-intro-block-header {
  position: relative;
}
.p-front-intro-block-header__title {
  font-family: var(--font_serif);
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 1.2em;
}
.p-front-intro-block-header__title .dot {
  display: inline-block;
  position: relative;
  text-indent: -9999px;
  width: 0.4em;
}
.p-front-intro-block-header__title .dot::after {
  content: "";
  width: 3px;
  height: 3px;
  background: #323232;
  border-radius: 50%;
  position: absolute;
  left: 4px;
  top: 51%;
}
.p-front-intro-block-header .p-text-decoration {
  position: absolute;
  right: -40px;
  top: -70px;
}

.p-front-block-header .p-text-decoration, .p-page-block-header .p-text-decoration {
  position: absolute;
  right: -20px;
  top: -30px;
  z-index: 100;
}
.p-front-block-header .p-text-decoration.menu, .p-page-block-header .p-text-decoration.menu {
  right: 0;
  top: 60px;
}
.p-front-block-header .p-text-decoration.salon, .p-page-block-header .p-text-decoration.salon {
  right: 0;
  top: 10px;
}
.p-front-block-header__title, .p-page-block-header__title {
  font-family: var(--font_serif);
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-align: center;
  padding-top: 1.1em;
  margin-bottom: 1.8em;
  position: relative;
}
.p-front-block-header__title::before, .p-page-block-header__title::before {
  content: "";
  width: 1px;
  height: 1em;
  background: var(--color_darkgray);
  position: absolute;
  top: 0;
  left: 50%;
  transform: rotate(18deg);
}
.p-front-block-header__title.font-en, .p-page-block-header__title.font-en {
  font-family: var(--font_minion);
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.2em;
}
.p-front-block-header__title.font-en .sm, .p-page-block-header__title.font-en .sm {
  font-size: 1.8rem;
}

.p-page-block-header__title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 3em;
  margin-bottom: 1.6em;
}

.p-front-content {
  margin-top: 64px;
  position: relative;
}
.p-front-content.bg-pink {
  background: rgba(255, 226, 233, 0.31);
  padding-top: 35px;
  padding-bottom: 30px;
}
.p-front-content p {
  line-height: 3;
  margin: 0;
}
.p-front-content .p-more-button {
  text-align: right;
  margin-top: 40px;
}
.p-front-content .p-more-button-center {
  width: 100%;
  height: calc(100% - 26px);
  display: grid;
  place-content: center;
  margin: 0;
}
.p-front-content .c-list-has-border {
  margin-top: 30px;
}

.p-front-menu-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 10px;
  padding: 0 10px;
}
@media only screen and (min-width: 991px) {
  .p-front-menu-block {
    padding: 0 10%;
  }
}
.p-front-menu-block__item {
  text-align: center;
}
.p-front-menu-block__item .thumb {
  display: block;
  width: 100%;
}
.p-front-menu-block__item .thumb img {
  width: 100%;
}
.p-front-menu-block__item .menu_title {
  font-size: 1.2rem;
  line-height: 1.5;
}

.p-info-block-row {
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  padding: 0.8em 0 1em;
  position: relative;
}
.p-info-block-row:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.p-info-block-row::after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  right: 8px;
  top: calc(50% - 7px);
  background: url("../images/icons/icon-arrow-right-circle-thin.svg") center center no-repeat;
  background-size: contain;
}
.p-info-block-row__date {
  font-family: var(--font_minion);
  font-size: 1.2rem;
  letter-spacing: 0.025em;
}
.p-info-block-row__title {
  display: inline-block;
  font-size: 1.3rem;
  line-height: 1.3;
  margin-top: 0.5em;
}

.p-page-content .p-more-button {
  text-align: right;
  margin-top: 40px;
}

.p-menu-block {
  margin-top: 48px;
}
.p-menu-block:nth-child(n+2) {
  margin-top: 80px;
}
.p-menu-block__title {
  font-family: var(--font_minion);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--color_green);
  position: relative;
  padding-left: 24px;
}
.p-menu-block__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 16px;
  height: 1px;
  background: var(--color_green);
  display: block;
}
.p-menu-block__desc {
  line-height: 2.4;
}
.p-menu-block__name-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 0;
  font-size: 1.2rem;
  font-weight: 500;
}
.p-menu-block__name-list li {
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  padding-bottom: 8px;
}
.p-menu-block__name-list li:nth-child(-n+3) {
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  padding-top: 8px;
}

.p-photo-gallery-block {
  margin-top: 48px;
}

.p-gallery-button {
  text-align: right;
  margin-top: 15px;
}

.p-single-post-block {
  border-top: 1px solid #666;
  padding-top: 24px;
}
.p-single-post-block__date {
  font-family: var(--font_minion);
  font-size: 1.2rem;
}
.p-single-post-block__title {
  font-family: var(--font_minion);
  font-size: 1.95rem;
  font-weight: 500;
  line-height: 1.2;
  position: relative;
  padding-left: 24px;
  margin-bottom: 1.7em;
  margin-right: -1.5em;
}
.p-single-post-block__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 16px;
  height: 1px;
  background: var(--color_black);
  display: block;
}

.p-google-map-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 2em;
}
.p-google-map-container iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}

.p-business-info-block {
  border-top: 1px solid rgba(0, 0, 0, 0.3);
}
.p-business-info-block__title {
  font-family: var(--font_minion);
  font-size: 1.5rem;
  font-weight: 500;
  position: relative;
  padding-left: 20px;
  margin-top: 0.8em;
  margin-bottom: 0;
}
.p-business-info-block__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 1px;
  background: var(--color_black);
  display: block;
}
.p-business-info-block__title + p {
  margin-top: 0;
}
.c-loading {
  display: grid;
  place-content: center;
  background: var(--color_pink);
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  position: fixed;
  top: 0;
  z-index: 99999;
}
.c-loading.animated {
  opacity: 0;
  visibility: hidden;
  -moz-transition: 2.5s;
  -webkit-transition: 2.5s;
  -ms-transition: 2.5s;
  transition: 2.5s;
}
.c-loading__inner {
  position: relative;
}

.c-loading-block svg.mask {
  width: 80vw;
  max-width: 600px;
}

.c-loading-logo {
  font-family: var(--font_minion);
  font-size: 1.8rem;
  letter-spacing: 0.35em;
  color: #111;
  text-align: center;
  opacity: 0;
  margin-top: 6px;
}
.c-loading-logo.is-visible {
  -moz-transition: 1s;
  -webkit-transition: 1s;
  -ms-transition: 1s;
  transition: 1s;
  opacity: 1;
}

.c-pc-layout-logo {
  line-height: 1;
}
.c-pc-layout-logo__name {
  font-family: var(--font_minion);
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: #111;
}
.c-pc-layout-logo__desc {
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}

.c-pc-layout-menu .menu {
  padding-left: 0;
  list-style: none;
  font-family: var(--font_minion);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-align: right;
}
.c-pc-layout-menu .menu li {
  margin: 1em 0;
}
.c-pc-layout-menu .menu li a {
  position: relative;
  color: #111;
  padding-bottom: 0.2em;
}
.c-pc-layout-menu .menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  background: #111;
  width: 100%;
  height: 1px;
  transition: all 0.3s;
  transform: scale(0, 1);
  /*X方向0、Y方向1*/
  transform-origin: left top;
  /*左上基点*/
}
.c-pc-layout-menu .menu li.current_page_item a::after, .c-pc-layout-menu .menu li a:hover::after {
  transform: scale(1, 1);
}

.c-pc-layout-sns-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5em;
}
.c-pc-layout-sns-block__title {
  font-family: var(--font_minion);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: #111;
  transform: rotate(-90deg);
}
.c-pc-layout-sns-block__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
}
.c-pc-layout-sns-block__icon img {
  filter: invert(0) brightness(0);
}

.c-header-button {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  position: fixed;
  top: 12px;
  right: 5px;
  background: transparent;
  cursor: pointer;
  z-index: 9999;
}
@media only screen and (min-width: 991px) {
  .c-header-button {
    right: 50%;
    transform: translateX(245px);
  }
}
.c-header-button__bar {
  position: absolute;
  left: 9px;
  background: #111;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.c-header-button__bar:nth-child(1) {
  top: 16px;
  width: 24px;
  height: 2px;
}
.c-header-button__bar:nth-child(2) {
  top: 24px;
  width: 20px;
  height: 2px;
}
.c-header-button.is-active .c-header-button__bar:nth-child(1) {
  transform: rotate(45deg);
  top: 21px;
}
.c-header-button.is-active .c-header-button__bar:nth-child(2) {
  transform: rotate(-45deg);
  width: 24px;
  top: 21px;
}

.c-link-instagram a {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font_minion);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: white;
}
.c-link-instagram a .icon {
  display: block;
  width: 24px;
  height: 24px;
}
.c-link-instagram a .icon img {
  display: block;
  vertical-align: bottom;
}

.c-button-more {
  font-family: var(--font_minion);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  display: inline-block;
  padding-right: 73px;
}
.c-button-more::before {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  background: var(--color_black);
  position: absolute;
  right: 10px;
  top: calc((100% - 1px) / 2);
}
.c-button-more::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid var(--color_black);
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: calc(50% - 10px);
  box-sizing: border-box;
}

.c-list-has-border {
  list-style: none;
  padding-left: 0;
  font-size: 1.2rem;
  line-height: 1.38;
  margin-top: 2em;
}
.c-list-has-border li {
  font-weight: 500;
  border-top: 1px solid var(--color_pink);
  padding: 1em 0.5em 1em 2.4em;
  position: relative;
}
.c-list-has-border li:last-child {
  border-bottom: 1px solid var(--color_pink);
}
.c-list-has-border li::before {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  border: 2px solid var(--color_pink);
  border-radius: 50%;
  position: absolute;
  left: 6px;
  top: calc((100% - 11px) / 2);
}

.c-sns-share-block__title {
  font-family: var(--font_minion);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-align: center;
  margin: 0;
}
.c-sns-share-block__link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-top: 25px;
}
.c-sns-share-block__icon .tw {
  width: 24px;
}
.c-sns-share-block__icon .fb {
  width: 12px;
}
.c-sns-share-block__icon .line {
  width: 24px;
}

.c-page-header {
  position: relative;
}
.c-page-header__text-decoration {
  position: absolute;
  right: -20px;
  top: -26px;
}
.c-page-header__text-decoration.menu {
  width: 84px;
}

.c-page-header-title {
  font-family: var(--font_serif);
  font-size: 2.3rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-align: center;
  padding-top: 1.1em;
  margin-top: 1.6em;
  margin-bottom: 1.7em;
  position: relative;
}
.c-page-header-title::before {
  content: "";
  width: 1px;
  height: 1em;
  background: var(--color_darkgray);
  position: absolute;
  top: 0;
  left: calc(50% + 0.3em);
  transform: rotate(18deg);
}
.c-page-header-title.font-en {
  font-family: var(--font_minion);
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.2em;
}
.c-page-header-title.font-en .sm {
  font-size: 1.8rem;
}

.c-page-block-title {
  font-family: var(--font_minion);
  font-size: 1.95rem;
  font-weight: 500;
  color: var(--color_green);
  position: relative;
  padding-left: 24px;
}
.c-page-block-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 16px;
  height: 1px;
  background: var(--color_green);
  display: block;
}

.c-page-link-button {
  background: var(--color_baige);
  width: 100%;
  height: 60px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 18px;
  font-family: var(--font_serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  position: relative;
}
.c-page-link-button::after {
  content: "";
  width: 16px;
  height: 8px;
  background: url("../images/common/arrow_down.svg") center center no-repeat;
  background-size: contain;
}
.c-page-link-button:nth-child(n+2) {
  margin-top: 20px;
}

.c-menu-block__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 1em 0.3em;
}
.c-menu-block__row.discount {
  padding: 0.5em 0.3em 1.5em;
}
.c-menu-block__row.discount .menu-name {
  font-weight: 600;
  width: 200px;
}
.c-menu-block__row.discount .line {
  border-bottom: none;
  height: 8px;
  width: 30px;
  background: url("../images/common/arrow-red.png") right center space;
  background-size: contain;
}
.c-menu-block__row.discount .menu-price {
  font-size: 2rem;
  font-style: italic;
  color: var(--color_red);
}
.c-menu-block .menu-name {
  font-family: var(--font_serif);
  flex-shrink: 0;
}
.c-menu-block .menu-name .sm {
  display: inline-block;
  font-family: var(--font_normal);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 1px;
}
.c-menu-block .line {
  display: block;
  font-size: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed var(--color_green);
}
.c-menu-block .menu-price {
  font-family: var(--font_roboto);
  font-size: 1.6rem;
  flex-shrink: 0;
}
.c-menu-block .menu-price .yen {
  font-size: 1.5rem;
}
.c-menu-block__title {
  font-weight: 500;
  padding-left: 15px;
  position: relative;
}
.c-menu-block__title::before {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background: #707070;
  position: absolute;
  left: 0;
  top: 50%;
}
.c-menu-block__discount-num {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color_red);
  color: white;
  font-weight: 600;
  width: 6em;
}
.bg-pink .c-menu-block {
  border-top: 1px solid var(--color_black);
  padding-top: 1.5em;
}
.bg-pink .c-menu-block:last-of-type {
  border-bottom: 1px solid var(--color_black);
}
.bg-pink .c-menu-block__discount-name {
  font-weight: 500;
}
.bg-pink .c-menu-block__row.discount {
  padding: 0 0 1em;
}

.c-photo-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}
.c-photo-gallery__item a {
  display: block;
}
.c-photo-gallery__item a img {
  width: 100%;
  vertical-align: bottom;
}
.c-photo-gallery__caption {
  margin-top: 0.8em;
  font-size: 1.1rem;
  line-height: 1.2;
}

.c-page-cta {
  margin-top: 2.4em;
}

.c-notice {
  font-size: 0.85em;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 0.3em;
  margin: 1em;
}
.c-notice::before {
  content: "※";
}

.c-price-block {
  background: var(--color_dark_green);
  width: 100%;
  height: 45px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  padding: 4px 26px 0;
  position: relative;
  color: white;
}
.c-price-block__name {
  font-family: var(--font_minion);
  line-height: 1;
}
.c-price-block__name .lg {
  font-size: 1.5em;
  margin: 0 0.3em;
}
.c-price-block__price {
  font-family: var(--font_roboto);
  font-size: 1.9rem;
  flex-shrink: 0;
}
.c-price-block__price .yen {
  font-size: 1.5rem;
}

@media only screen and (min-width: 991px) {
  .admin-bar .c-header-button {
    top: 42px;
  }
}

@media screen and (max-width: 600px) {
  #wpadminbar {
    position: fixed;
    top: auto;
    bottom: 0;
  }

  .admin-bar .l-site_header {
    top: 0;
  }
  .admin-bar .l-mobile-layout {
    top: -46px;
  }
}
.fade-in {
  opacity: 0;
  transition-duration: 1600ms;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 50px);
}

.fade-in-down {
  transform: translate(0, -50px);
}

.fade-in-left {
  transform: translate(-50px, 0);
}

.fade-in-right {
  transform: translate(50px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

.fade-in-up.delay300, .fade-in-down.delay300, .fade-in-left.delay300, .fade-in-right.delay300 {
  transition-delay: 300ms;
}

.lum-lightbox {
  background: var(--color_baige);
}
@media only screen and (min-width: 600px) {
  .lum-lightbox {
    max-width: 500px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.lum-lightbox-image-wrapper {
  -webkit-overflow-scrolling: touch;
  display: flex;
  justify-content: center;
  overflow: auto;
}

.lum-lightbox-inner .lum-lightbox-caption {
  color: var(--color_black);
  bottom: auto;
  left: 0;
}

.lum-lightbox-position-helper {
  margin-top: 240px;
}
@media (max-width: 460px) {
  .lum-lightbox-position-helper {
    margin-top: 160px;
  }
}

.lum-gallery-button {
  top: calc(50vh - 110px);
  width: 40px;
  height: 100%;
}
@media (max-width: 460px) {
  .lum-gallery-button {
    top: calc(50vh - 25px);
  }
}
.lum-gallery-button::after {
  border: none;
}

.lum-previous-button {
  left: 0;
}
.lum-previous-button::after {
  left: 5px;
  top: 50%;
  border-left: none;
  border-radius: 0;
  box-shadow: none;
  height: 20px;
  background: url("../images/gallery/arrow_prev.svg") left center no-repeat;
  background-size: contain;
  transform: translateY(0) rotate(0);
}

.lum-next-button {
  right: 0;
}
.lum-next-button::after {
  right: 5px;
  top: 50%;
  border-right: none;
  border-radius: 0;
  box-shadow: none;
  height: 20px;
  background: url("../images/gallery/arrow_next.svg") right center no-repeat;
  background-size: contain;
  transform: translateY(0) rotate(0);
  opacity: 0.8;
}

.lum-close-button {
  top: 198px;
  right: 10%;
  opacity: 0.8;
}
@media (max-width: 460px) {
  .lum-close-button {
    top: 126px;
    right: 16px;
  }
}
.lum-close-button::before, .lum-close-button::after {
  background-color: var(--color_black);
}
@media (max-width: 460px) {
  .lum-close-button::before, .lum-close-button::after {
    height: 25px;
    width: 1px;
  }
}

.wp-block-image {
  padding: 1em;
}

.anim-rotate {
  -webkit-animation: rotate-infinite infinite linear 60s;
  animation: rotate-infinite infinite linear 60s;
}

@media (max-width: 460px) {
  .lum-lightbox-inner img {
    max-height: 100%;
    max-width: 100%;
  }
}
@keyframes rotate-infinite {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.mt0 {
  margin-top: 0 !important;
}

/*# sourceMappingURL=base.css.map */
