@charset "UTF-8";
/* ---------------------------------------
  基本情報
-----------------------------------------*/
html {
  overflow-y: scroll;
  font-size: 62.5%;
}
@media screen and (max-width: 1440px) {
  html {
    font-size: 0.6944444444vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.5641025641vw;
  }
}

body, h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, form {
  margin: 0;
  padding: 0;
  border: none;
  line-height: 100%;
  list-style-type: none;
  font-style: normal;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  text-align: left;
  color: #574E4C;
  word-break: break-word;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Noto Serif JP", serif;
  color: #574E4C;
  font-weight: 400;
}

textarea {
  resize: vertical;
}

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

a {
  text-decoration: none;
  color: inherit;
  outline: none;
}

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

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

/* responsive
--------------------------------*/
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* base
--------------------------------*/
p, dt, dd, li, th, td,
input, button, textarea, select {
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  p, dt, dd, li, th, td,
  input, button, textarea, select {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 768px) {
  .tel-link {
    pointer-events: none;
  }
}

@media screen and (max-width: 767px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
  img {
    width: 100%;
  }
}
/* ---------------------------------------------
  レイアウト
-----------------------------------------------*/
.l-wrap {
  max-width: 126rem;
  width: calc(100% - 4rem);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .l-wrap {
    width: calc(100% - 3.2rem);
  }
}

.l-container {
  overflow: hidden;
}

body {
  background: #F6F6F6;
}
body.is-menu-open {
  overflow: hidden;
}

/* ---------------------------------------------
  装飾
-----------------------------------------------*/
.u-bold {
  font-weight: 700;
}

.u-underline {
  text-decoration: underline;
}

/* ---------------------------------------------
  パーツ
-----------------------------------------------*/
/* ボタン
--------------------------------*/
/* タイトル
--------------------------------*/
/* ---------------------------------------------
  header
-----------------------------------------------*/
.l-header {
  position: relative;
  z-index: 9999;
  width: 100%;
  transition: 0.3s;
}
.l-header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}
.l-header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 2rem 1.2rem;
  max-width: 133rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-header_inner {
    align-items: center;
    padding: 1.2rem 1.5rem;
  }
}
.l-header_left {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.l-header_logo {
  display: block;
  width: 30rem;
}
@media screen and (max-width: 767px) {
  .l-header_logo {
    width: 17rem;
  }
}
.l-header_logo img {
  width: 100%;
  height: auto;
}
.l-header_sub {
  font-size: 1.2rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #393030;
  letter-spacing: 0.05em;
}
.l-header_right {
  display: flex;
  align-items: center;
  gap: 3.2rem;
}
.l-header_nav_list {
  display: flex;
  gap: 3.2rem;
}
.l-header_nav_list li {
  font-size: 1.4rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #393030;
}
@media screen and (min-width: 768px) {
  .l-header_nav_list li a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .l-header_nav_list li a:hover {
    opacity: 0.7;
  }
}
.l-header_trigger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.6rem;
  width: 3.2rem;
  height: 1.3rem;
  cursor: pointer;
  position: relative;
}
.l-header_trigger span {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #BFBDBD, #955A64);
  transition: transform 0.3s, opacity 0.3s;
}
.l-header_trigger span:nth-child(2) {
  top: 100%;
}
.l-header_trigger.is-open span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.l-header_trigger.is-open span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

/* SPナビ
--------------------------------*/
.l-sp-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f6edea;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3.2rem;
  padding: 6rem 3rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  overflow: hidden;
}
.l-sp-nav::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  aspect-ratio: 157/79;
  background: url("../images/common/logo_mark.svg") no-repeat center/contain;
  opacity: 0.05;
  pointer-events: none;
}
.l-sp-nav.is-open {
  opacity: 1;
  pointer-events: auto;
}
.l-sp-nav__mark {
  width: 12rem;
  position: relative;
  z-index: 1;
}
.l-sp-nav__mark img {
  width: 100%;
}
.l-sp-nav_list {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 100%;
  max-width: 28rem;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(177, 130, 138, 0.35);
}
.l-sp-nav_item {
  font-size: 1.6rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  border-bottom: 1px solid rgba(177, 130, 138, 0.35);
}
.l-sp-nav_item a {
  display: block;
  padding: 1.6rem 0;
  color: #393030;
}
@media screen and (min-width: 768px) {
  .l-sp-nav_item a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .l-sp-nav_item a:hover {
    opacity: 0.7;
  }
}
.l-sp-nav__reserve {
  position: relative;
  z-index: 1;
}
.l-sp-nav__reserve_link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 3.2rem;
  background: #955A64;
  border-radius: 10rem;
  font-size: 1.4rem;
  font-family: "Gotu", sans-serif;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .l-sp-nav__reserve_link {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .l-sp-nav__reserve_link:hover {
    opacity: 0.7;
  }
}
.l-sp-nav__reserve_dot {
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  background: #fff;
  border-radius: 50%;
}
.l-sp-nav__tagline {
  font-size: 1.1rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #b1828a;
  letter-spacing: 0.12em;
  position: relative;
  z-index: 1;
}

/* RESERVEボタン
--------------------------------*/
.c-btn-reserve_link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.3rem 6rem;
  background: #955A64;
  border-radius: 10rem;
  font-size: 1.4rem;
  font-family: "Gotu", sans-serif;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .c-btn-reserve_link {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .c-btn-reserve_link:hover {
    opacity: 0.7;
  }
}
.c-btn-reserve_link {
  position: relative;
}
.c-btn-reserve_link::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.5rem;
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  background: #fff;
  border-radius: 50%;
}

/* ---------------------------------------------
  footer
-----------------------------------------------*/
.l-footer {
  background: #e9e1df;
  padding: 7rem 0 3rem;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 5.6rem 0 3rem;
  }
}
.l-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    flex-direction: column;
    gap: 3.2rem;
  }
}
.l-footer__left {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .l-footer__left {
    width: 100%;
  }
}
.l-footer__logo {
  width: 25.7rem;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    width: 16.7rem;
  }
}
.l-footer__logo img {
  width: 100%;
}
.l-footer__address {
  font-size: 1.4rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #393030;
  font-style: normal;
  line-height: 1.8;
}
.l-footer__address p:nth-child(2) {
  margin-top: 1rem;
}
.l-footer__address p:nth-child(2) a {
  position: relative;
}
.l-footer__address p:nth-child(2) a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -1.7rem;
  width: 1.4rem;
  height: 1.4rem;
  background: url(../images/common/icon_blank.svg) no-repeat center center/contain;
}
.l-footer__online {
  text-decoration: none;
  color: #393030;
}
@media screen and (min-width: 768px) {
  .l-footer__online {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .l-footer__online:hover {
    opacity: 0.7;
  }
}
.l-footer__map {
  width: 33.3rem;
  height: 20rem;
}
@media screen and (max-width: 767px) {
  .l-footer__map {
    width: 100%;
  }
}
.l-footer__map iframe {
  width: 100%;
  display: block;
  height: 100%;
}
.l-footer__right {
  padding-top: 5rem;
}
.l-footer__tagline {
  width: 100%;
  justify-content: flex-start;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .l-footer__tagline {
    flex-direction: column;
  }
}
.l-footer__tagline_mark {
  width: 15.7rem;
}
.l-footer__tagline_mark img {
  width: 100%;
}
.l-footer__tagline_txt {
  font-size: 3.2rem;
  font-family: "Noto Serif JP", serif;
  color: #955A64;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .l-footer__tagline_txt {
    font-size: 2.4rem;
  }
}
.l-footer__nav {
  margin-top: 13rem;
}
@media screen and (max-width: 767px) {
  .l-footer__nav {
    margin-top: 0;
  }
}
.l-footer__nav_list {
  display: flex;
  gap: 3.2rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .l-footer__nav_list {
    flex-direction: column;
    justify-content: flex-start;
    gap: 2rem;
  }
}
.l-footer__nav_list li {
  font-size: 1.4rem;
  font-family: "Gotu", sans-serif;
  font-weight: 400;
  color: #393030;
}
@media screen and (min-width: 768px) {
  .l-footer__nav_list li a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .l-footer__nav_list li a:hover {
    opacity: 0.7;
  }
}
.l-footer__sns {
  margin-top: 1.5rem;
  display: flex;
  justify-content: flex-end;
  gap: 1.2rem;
}
@media screen and (max-width: 767px) {
  .l-footer__sns {
    margin-top: 2.4rem;
    justify-content: flex-start;
  }
}
.l-footer__sns_item {
  display: block;
  width: 2.2rem;
}
.l-footer__sns_item img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-footer__sns_item {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .l-footer__sns_item:hover {
    opacity: 0.7;
  }
}
.l-footer__copy {
  margin-top: 4rem;
  font-size: 1.2rem;
  font-family: "Gotu", sans-serif;
  font-weight: 400;
  color: #393030;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .l-footer__copy {
    font-size: 1.4rem;
    text-align: center;
  }
}

/* ---------------------------------------------
  フローティング
-----------------------------------------------*/
.p-float {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100000;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.p-float__reserve {
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  background: #955A64;
  color: #fff;
  font-size: 1.6rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  width: 7rem;
  height: 17.4rem;
  border-radius: 0.8rem 0 0 0.8rem;
  letter-spacing: 0.1em;
  line-height: 1.1;
  padding-right: 1rem;
}
@media screen and (min-width: 768px) {
  .p-float__reserve {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .p-float__reserve:hover {
    opacity: 0.7;
  }
}
.p-float__line {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: #06c755;
  width: 7rem;
  height: 17.4rem;
  border-radius: 0.8rem 0 0 0.8rem;
  padding: 0.8rem 1rem 1.2rem 0;
}
@media screen and (min-width: 768px) {
  .p-float__line {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .p-float__line:hover {
    opacity: 0.7;
  }
}
.p-float__line img {
  width: 4.3rem;
  height: 4.3rem;
  object-fit: contain;
  flex-shrink: 0;
  margin-bottom: 0.4rem;
}
.p-float__line span {
  writing-mode: vertical-rl;
  color: #fff;
  font-size: 1.6rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.05em;
}

/* ---------------------------------------------
  main
-----------------------------------------------*//*# sourceMappingURL=common.css.map */