@charset "UTF-8";
:root {
  --text: #5A4A3A;
  --main: #AB8E7C;
  --bg: #F2F0ED;
  --ac: #E3DCD2;
  --en: Cormorant Garamond, Times New Roman, 游明朝体, Yu Mincho, YuMincho, ヒラギノ明朝 Pro, Hiragino Mincho Pro, MS P明朝, MS PMincho, serif;
  --fsz: 13px;
  --ls: 0.15em;
  --lh: 2;
  --gothic: Noto Sans JP, Helvetica Neue, Helvetica, Hiragino Sans, Hiragino Kaku Gothic ProN, Arial, Yu Gothic, Meiryo, Osaka, ＭＳ Ｐゴシック, MS PGothic, sans-serif;
  --serif: Noto Serif JP, Times New Roman, 游明朝体, Yu Mincho, YuMincho, ヒラギノ明朝 Pro, Hiragino Mincho Pro, MS P明朝, MS PMincho, serif;
  --en: Cormorant Garamond, Times New Roman, 游明朝体, Yu Mincho, YuMincho, ヒラギノ明朝 Pro, Hiragino Mincho Pro, MS P明朝, MS PMincho, serif;
}
@media screen and (min-width: 375px) {
  :root {
    --fsz: 14px;
  }
}
@media screen and (min-width: 768px) {
  :root {
    --fsz: 16px;
  }
}
:root {
  --headerHeight: 60px;
}
@media screen and (min-width: 1024px) {
  :root {
    --headerHeight: 100px;
  }
}
:root {
  --innerWidth: calc(100% - 32px);
  --innerMax: 600px;
}
@media screen and (min-width: 768px) {
  :root {
    --innerWidth: calc(100% - 40px);
    --innerMax: 1000px;
  }
}
:root {
  --speed: 0.3s;
}

* {
  letter-spacing: var(--ls);
  line-height: var(--lh);
}
*::before, *::after {
  letter-spacing: var(--ls);
  line-height: var(--lh);
}

html {
  margin: 0 !important;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-size: var(--fsz);
  font-family: var(--gothic);
  font-weight: 400;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
  position: relative;
}
body::-webkit-scrollbar {
  display: none;
}

section {
  position: relative;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  color: currentColor;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
}
a:hover {
  outline-width: 0;
  text-decoration: none;
  opacity: 0.8;
}
a.underline {
  text-decoration: underline;
}
a.underline:hover {
  text-decoration: none;
}
a.disabled {
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
  }
}

img {
  max-width: 100%;
  height: auto;
  border-style: none;
  object-fit: contain;
  vertical-align: bottom;
}

strong {
  font-weight: 700;
}

/* ============= common class ================ */
.block {
  width: 100%;
  display: block;
}

.fit {
  position: relative;
  overflow: hidden;
}
.fit__item {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}

.disp_none {
  display: none !important;
}
@media screen and (min-width: 576px) {
  .disp_xs {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .disp_tab, .disp_pc, .disp_notsp {
    display: none !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .disp_sp, .disp_pc {
    display: none !important;
  }
}
@media screen and (max-width: 1023px) {
  .disp_lg {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) {
  .disp_sp, .disp_tab, .disp_notpc {
    display: none !important;
  }
}
@media screen and (min-width: 1200px) {
  .disp_lg {
    display: none !important;
  }
}

.en {
  font-family: var(--en);
}

.serif {
  font-family: var(--serif);
}

.js-collapse {
  cursor: pointer;
}

/* ============= common parts ================ */
.inner {
  width: var(--innerWidth);
  max-width: var(--innerMax);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .inner--wide {
    max-width: 1200px;
  }
}

.btn {
  padding: 0.75em 0.625em;
  background-color: var(--main);
  border: 1px solid var(--main);
  border-radius: 30px;
  color: #fff;
  font-size: 114.29%;
  --ls: 0.06em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-gap: 0.75em;
  transition: var(--speed);
  position: relative;
}
.btn::after {
  content: "";
  width: 15px;
  height: 15px;
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="17" height="5" viewBox="0 0 17 5" fill="none">  <path d="M11.7666 0.119206C11.9768 -0.0597587 12.2926 -0.0342654 12.4717 0.175847L16.583 5.00007H0.5C0.223858 5.00007 0 4.77621 0 4.50007C0 4.22392 0.223858 4.00007 0.5 4.00007H14.417L11.71 0.824284C11.5311 0.614116 11.5565 0.298252 11.7666 0.119206Z" fill="%23fff"/></svg>') center/contain no-repeat;
  display: block;
  flex-shrink: 0;
}
.btn .icon {
  position: relative;
  transition: var(--speed);
}
.btn .icon .icon--hov {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: var(--speed);
}
.btn:hover {
  background-color: #fff;
  color: var(--main);
  opacity: 1;
}
.btn:hover::after {
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="17" height="5" viewBox="0 0 17 5" fill="none">  <path d="M11.7666 0.119206C11.9768 -0.0597587 12.2926 -0.0342654 12.4717 0.175847L16.583 5.00007H0.5C0.223858 5.00007 0 4.77621 0 4.50007C0 4.22392 0.223858 4.00007 0.5 4.00007H14.417L11.71 0.824284C11.5311 0.614116 11.5565 0.298252 11.7666 0.119206Z" fill="%23AB8E7C"/></svg>') center/contain no-repeat;
}
.btn:hover .icon img {
  opacity: 0;
}
.btn:hover .icon img.icon--hov {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .btn {
    font-size: 125%;
  }
  .btn::after {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
}

.secTtl {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}
.secTtl__jp {
  color: #8B7B6B;
  font-size: 100%;
  font-weight: 400;
  font-family: var(--serif);
  --lh: 1;
}
@media screen and (min-width: 768px) {
  .secTtl__jp {
    font-size: 87.5%;
  }
}
.secTtl__en {
  font-family: var(--en);
  font-size: 228.57%;
  font-weight: 400;
  --ls: 0.06em;
  --lh: 1.6;
}

/*------------------------------------------------------
    header
-------------------------------------------------------*/
.header {
  width: 100%;
  height: var(--headerHeight);
  padding: 5px 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  transition: background-color var(--speed) ease;
}
@media screen and (min-width: 1024px) {
  .header {
    padding: 20px 0;
  }
}
.header__inner {
  width: calc(100% - 10px);
  max-width: 100%;
  height: 100%;
  padding: 0 20px;
  background: var(--bg);
  border-radius: 100px;
  box-shadow: 2px 2px 7px 0 rgba(100, 51, 27, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 10px;
}
@media screen and (min-width: 1024px) {
  .header__inner {
    width: var(--innerWidth);
    max-width: 1380px;
    grid-gap: 10px;
  }
}
@media screen and (min-width: 1200px) {
  .header__inner {
    grid-gap: 20px;
  }
}
.header__sitelogo {
  width: 116px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.header__sitelogo a {
  position: relative;
}
.header__sitelogo img {
  transition: var(--speed);
}
@media screen and (min-width: 768px) {
  .header__sitelogo {
    width: 127px;
  }
}
.header__navWrap {
  width: 100%;
}
.header__navWrap_inner {
  display: contents;
}
@media screen and (max-width: 1023px) {
  .header__navWrap {
    padding: calc(var(--headerHeight) + 25px) 16px 25px;
    height: 100vh;
    background-color: var(--bg);
    position: fixed;
    top: 0;
    left: 0;
    overflow-y: scroll;
    opacity: 0;
    pointer-events: none;
    transition: var(--speed);
  }
  .header__navWrap.visible {
    opacity: 1;
    pointer-events: auto;
  }
}
.header__gnav a {
  --ls: 0.05em;
  white-space: nowrap;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .header__gnav {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px 0;
  }
  .header__gnav > li:first-child {
    grid-column: span 2;
  }
  .header__gnav > li > a {
    font-size: 114.29%;
    font-weight: 600;
    font-family: var(--serif);
    --lh: 2.2;
    pointer-events: none;
  }
  .header__gnav .sub-menu {
    margin-top: 25px;
    display: grid;
    grid-gap: 25px;
  }
  .header__gnav .sub-menu a {
    --lh: 1;
    display: flex;
    align-items: center;
    grid-gap: 10px;
  }
  .header__gnav .sub-menu a::before {
    content: "";
    width: 11px;
    height: 1px;
    background: #B87B5E;
    display: block;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 1024px) {
  .header__gnav {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    grid-gap: 10px;
  }
  .header__gnav li {
    display: flex;
    align-items: center;
  }
  .header__gnav a {
    font-size: 75%;
    --ls: 0.11em;
  }
  .header__gnav a:hover {
    color: var(--main);
    opacity: 1;
  }
}
@media screen and (min-width: 1200px) {
  .header__gnav {
    grid-gap: 20px;
  }
  .header__gnav a {
    font-size: 81.25%;
  }
}
.header__snsLink {
  margin-top: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 20px;
}
.header__snsLink img {
  width: 40px;
  background-color: var(--main);
  border-radius: 50%;
  display: block;
}
.header__contactBtn {
  padding: 1px 10px;
  margin: 0 5px 0 auto;
  border-color: var(--bg);
  font-size: 92.86%;
  --ls: 0;
  grid-gap: 7px;
  flex-shrink: 0;
}
.header__contactBtn:hover {
  background-color: var(--bg);
  border-color: var(--main);
}
@media screen and (min-width: 768px) {
  .header__contactBtn {
    padding: 5px 22px;
    font-size: 87.5%;
    grid-gap: 10px;
  }
  .header__contactBtn::after {
    position: relative;
    inset: 0;
    transform: translate(0, 0);
  }
}
@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .header__contactBtn {
    padding: 5px 15px;
    font-size: 81.25%;
  }
}
.header__spToggler {
  width: 29px;
  height: 23px;
  padding: 0;
  border: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-gap: 10px;
  flex-shrink: 0;
  position: relative;
}
.header__spToggler:focus {
  outline: 0;
  box-shadow: none;
}
.header__spToggler span {
  width: 29px;
  height: 1px;
  margin: 0 auto;
  background-color: var(--text);
  display: block;
  transition: var(--speed);
}
.header__spToggler.open span {
  width: 35px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(35deg);
}
.header__spToggler.open span + span {
  transform: rotate(-35deg);
}
.header__spToggler.open span + span + span {
  transform: scale(0);
}

/*------------------------------------------------------
  main
-------------------------------------------------------*/
.ctaArea {
  width: 100%;
  padding: 70px 0;
}
@media screen and (min-width: 768px) {
  .ctaArea {
    padding: 100px 0;
  }
}
.ctaArea__inner {
  padding: 35px 15px;
  background: url(../img/common/cta-area_bg-sp.jpg) center/cover no-repeat;
  border-radius: 10px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .ctaArea__inner {
    padding: 75px 15px;
    background-image: url(../img/common/cta-area_bg-pc.jpg);
  }
}
.ctaArea__ttl {
  width: 100%;
  padding-bottom: 8px;
  margin-bottom: 20px;
  border-bottom: 1px solid #fff;
  font-size: 200%;
  font-weight: 600;
  --lh: 1.4;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .ctaArea__ttl {
    max-width: 714px;
    padding-bottom: 3px;
    font-size: 175%;
    --lh: 2.2;
  }
}
.ctaArea__txt {
  font-size: 114.29%;
  --ls: 0;
  --lh: 1.8;
}
@media screen and (min-width: 768px) {
  .ctaArea__txt {
    font-size: 100%;
    --ls: 0.15em;
    --lh: 2.5;
    text-align: center;
  }
}
.ctaArea__btnWrap {
  margin-top: 2px;
  display: grid;
  grid-gap: 20px;
}
.ctaArea__btnWrap_btn {
  width: 280px;
  padding: 6px;
  border-color: var(--bg);
  font-size: 128.57%;
  font-family: var(--serif);
}
.ctaArea__btnWrap_btn::after {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.ctaArea__btnWrap_btn--web {
  background-color: var(--bg);
  color: var(--text);
}
.ctaArea__btnWrap_btn--web::after {
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="17" height="5" viewBox="0 0 17 5" fill="none">  <path d="M11.7666 0.119206C11.9768 -0.0597587 12.2926 -0.0342654 12.4717 0.175847L16.583 5.00007H0.5C0.223858 5.00007 0 4.77621 0 4.50007C0 4.22392 0.223858 4.00007 0.5 4.00007H14.417L11.71 0.824284C11.5311 0.614116 11.5565 0.298252 11.7666 0.119206Z" fill="%235A4A3A"/></svg>') center/contain no-repeat;
}
@media screen and (min-width: 768px) {
  .ctaArea__btnWrap {
    margin-top: 32px;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
  }
  .ctaArea__btnWrap_btn {
    font-size: 112.5%;
  }
}

@media screen and (max-width: 1023px) {
  .page--thanks .header {
    background-color: var(--bg);
  }
  .page--thanks .header .header__sitelogo .default {
    opacity: 0;
  }
  .page--thanks .header .header__sitelogo .scrolled {
    opacity: 1;
  }
  .page--thanks .header .header__spToggler span {
    background: var(--main);
  }
}
.page--thanks section {
  padding: 60px 0 0;
  margin-top: var(--headerHeight);
  text-align: center;
}
.page--thanks section .btnWrap {
  margin-top: 50px;
}
.page--thanks section .btn {
  width: 260px;
}
@media screen and (min-width: 768px) {
  .page--thanks section .btn {
    height: 50px;
  }
}

/*------------------------------------------------------
    footer
-------------------------------------------------------*/
.footer {
  padding: 60px 0 82px;
  background-color: var(--bg);
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 115px 0 50px;
  }
}
@media screen and (min-width: 1440px) {
  .footer {
    padding-bottom: 40px;
  }
}
.footer__inner {
  display: grid;
  grid-gap: 40px;
}
.footer__infoBlk {
  padding: 0 10px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 20px;
  position: relative;
}
.footer__infoBlk::after {
  content: "";
  width: calc(100% - 20px);
  height: 1px;
  background-color: #C9A99A;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .footer__infoBlk {
    padding: 0 0 30px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .footer__infoBlk::after {
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .footer__infoBlk {
    align-items: flex-end;
  }
}
.footer__infoBlk_logoWrap {
  --ls: 0.05em;
  --lh: 2.2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 5px;
}
.footer__infoBlk_logoWrap_logo {
  width: 227px;
}
@media screen and (min-width: 768px) {
  .footer__infoBlk_logoWrap {
    font-size: 87.5%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .footer__infoBlk_logoWrap_logo {
    width: 200px;
  }
}
.footer__infoBlk_address {
  --ls: 0.05em;
}
.footer__infoBlk_address_tel {
  color: #8B7B6B;
  font-size: 171.43%;
  font-weight: 600;
  --ls: 0.05em;
  --lh: 1.5;
  white-space: nowrap;
  display: flex;
  align-items: center;
  grid-gap: 16px;
}
.footer__infoBlk_address_tel a {
  color: var(--text);
}
@media screen and (min-width: 768px) {
  .footer__infoBlk_address {
    font-size: 87.5%;
  }
}
.footer__infoBlk_btnWrap {
  margin-top: -5px;
  display: grid;
  grid-gap: 10px;
}
.footer__infoBlk_btnWrap_btn {
  padding: 5px 35px 5px 45px;
  font-size: 128.57%;
  font-weight: 600;
}
.footer__infoBlk_btnWrap_btn::after {
  position: relative;
  inset: 0;
  transform: translateX(16px);
}
.footer__infoBlk_btnWrap_btn > span {
  display: flex;
  align-items: center;
}
.footer__infoBlk_btnWrap_btn .icon {
  width: 2.2222em;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .footer__infoBlk_btnWrap_btn {
    font-size: 112.5%;
  }
}
@media screen and (min-width: 1200px) {
  .footer__infoBlk_btnWrap {
    display: flex;
    align-items: center;
  }
}
.footer__navBlk {
  padding: 0 10px;
}
@media screen and (min-width: 768px) {
  .footer__navBlk {
    padding: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.footer__navBlk_list a {
  --ls: 0.05em;
  white-space: nowrap;
  position: relative;
}
.footer__navBlk_list {
  display: grid;
  grid-gap: 25px 0;
}
.footer__navBlk_list > li > a {
  font-size: 114.29%;
  font-weight: 600;
  font-family: var(--serif);
  --lh: 2.2;
  pointer-events: none;
}
.footer__navBlk_list .sub-menu {
  margin-top: 25px;
  display: grid;
  grid-gap: 25px;
}
.footer__navBlk_list .sub-menu a {
  --lh: 1;
  display: flex;
  align-items: center;
  grid-gap: 10px;
}
.footer__navBlk_list .sub-menu a::before {
  content: "";
  width: 11px;
  height: 1px;
  background: #B87B5E;
  display: block;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .footer__navBlk_list {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 60px;
  }
  .footer__navBlk_list > li > a {
    font-size: 100%;
  }
  .footer__navBlk_list .sub-menu {
    font-size: 87.5%;
  }
}
@media screen and (min-width: 1024px) {
  .footer__navBlk_list {
    grid-gap: 160px;
  }
}
.footer__navBlk_snsLink {
  margin-top: 55px;
  display: flex;
  align-items: center;
  grid-gap: 20px;
}
.footer__navBlk_snsLink a {
  width: 40px;
  background-color: var(--main);
  border-radius: 50%;
  display: block;
  position: relative;
}
.footer__navBlk_snsLink a:hover {
  background-color: #fff;
  opacity: 1;
}
.footer__navBlk_snsLink a:hover img {
  opacity: 0;
}
.footer__navBlk_snsLink a:hover img.hov {
  opacity: 1;
}
.footer__navBlk_snsLink img {
  transition: var(--speed);
}
.footer__navBlk_snsLink .hov {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .footer__navBlk_snsLink {
    flex-shrink: 0;
  }
}
.footer__copyright {
  margin-top: 15px;
  font-size: 71.43%;
  --ls: 0.05em;
  --lh: 2.2;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 75px;
    font-size: 62.5%;
  }
}
.footer__cta {
  width: 100%;
  padding: 6px 16px 0;
  background-color: rgba(255, 255, 255, 0.67);
  border-color: #fff;
  border-style: solid;
  border-width: 1px 1px 0 1px;
  backdrop-filter: blur(5px);
  border-radius: 10px 10px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-gap: 7px;
  position: fixed;
  bottom: -1px;
  right: 0;
  z-index: 1050;
}
@media screen and (min-width: 768px) {
  .footer__cta {
    width: auto;
    flex-direction: row;
    align-items: center;
    grid-gap: 12px;
  }
}
.footer__cta_tel {
  font-size: 114.29%;
  font-weight: 600;
  --ls: 0.05em;
  --lh: 1;
  white-space: nowrap;
}
.footer__cta_tel a {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 0.625em;
}
.footer__cta_tel .icon {
  width: 0.875em;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .footer__cta_tel {
    font-size: 125%;
  }
  .footer__cta_tel a {
    grid-gap: 0.5em;
  }
  .footer__cta_tel .icon {
    width: 1em;
  }
}
.footer__cta_btnWrap {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0.5em;
}
.footer__cta_btnWrap_btn {
  width: 100%;
  padding: 0;
  border-color: #fff;
  border-width: 1px 1px 0;
  border-radius: 10px 10px 0 0;
  font-size: 100%;
  font-weight: 500;
  --lh: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 5px;
}
.footer__cta_btnWrap_btn:hover {
  border-color: var(--main);
}
.footer__cta_btnWrap_btn::after {
  display: none;
}
.footer__cta_btnWrap_btn .icon {
  width: 2.1429em;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .footer__cta_btnWrap {
    font-size: 87.5%;
    align-self: flex-end;
  }
  .footer__cta_btnWrap_btn {
    padding: 0 1.1429em;
  }
  .footer__cta_btnWrap_btn .icon {
    width: 40px;
  }
}