@charset "UTF-8";
/* base/_base.scss */
/* =====================================
   Base Structure
===================================== */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  background-color: #fffffe;
}

body {
  font-family: "Yu Gothic Medium", "YuGothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 300;
  color: #837f7d;
  background-color: #fffffe;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
  font-family: "Zen Old Mincho", "Shippori Mincho B1", "Hiragino Mincho ProN", "serif";
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

/* =====================================
   Responsive Typography
===================================== */
@media screen and (min-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}
/* =====================================
   Main & Footer Layout
===================================== */
main {
  margin-top: 72px;
  background-color: #fffffe;
}

@media screen and (min-width: 1024px) {
  main {
    margin-top: 120px;
  }
}
footer {
  margin-top: auto;
}

/* abstracts/_reset.scss */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body, div, span, iframe, blockquote,
h1, h2, h3, h4, h5, h6, p, a, picture, figure, img, ol, ul, li,
article, aside, footer, header, menu, nav, section {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  text-decoration: none;
  color: inherit;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

article, aside, footer, header, menu, nav, section, img {
  display: block;
}

ul,
ol {
  list-style: none;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* ====================
  Base Tags
==================== */
html {
  font-size: 62.5%;
  background-color: #fffffe;
}

body {
  font-family: "Yu Gothic Medium", "YuGothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #837f7d;
  background-color: #f4efef;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul, ol {
  list-style: none;
}

/* ====================
  Layout Utility
==================== */
.container {
  width: 100%;
  padding: 1.5rem;
}
@media screen and (min-width: 768px) {
  .container {
    padding: 2rem;
  }
}
@media screen and (min-width: 1440px) {
  .container {
    max-width: 1440px;
    margin: 0 auto;
  }
}

/* ====================
  Common Components
==================== */
.ly_common_head {
  background-color: #008BF1;
  background-image: linear-gradient(45deg, rgb(0, 139, 241), rgb(105, 212, 249) 100%, rgb(4, 142, 241) 50%);
}

.bl_common_head_ttl {
  padding-top: 24px;
  padding-bottom: 24px;
  font-size: 2rem;
  font-weight: bold;
  color: #fffffe;
}
@media screen and (min-width: 768px) {
  .bl_common_head_ttl {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/*===================================
Follow usエリア（右固定）
===================================*/
/* SNS固定導線（右側中央に縦表示） */
.bl_snsFixed {
  position: fixed;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1000;
  pointer-events: none;
}
.bl_snsFixed a {
  pointer-events: auto;
}
.bl_snsFixed__label {
  writing-mode: vertical-rl;
  -ms-writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #938686;
  margin-bottom: 20px;
}
.bl_snsFixed__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.bl_snsFixed__icon {
  font-size: 24px;
  color: #938686;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.bl_snsFixed__icon:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  opacity: 0.8;
}

/****************************************
  Header Layout
*****************************************/
.ly_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  background-color: #403b38;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 9000;
}
@media screen and (min-width: 1024px) {
  .ly_header {
    height: 120px;
  }
}
.ly_header.is-scrolled {
  background-color: rgba(64, 59, 56, 0.8705882353);
  -webkit-box-shadow: 0px 10px 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 10px 0 rgba(0, 0, 0, 0.1);
}
.ly_header_inner {
  max-width: 1480px;
  height: 100%;
  margin: 0 auto;
  padding: 0 6%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .ly_header_inner {
    padding: 0 40px;
  }
}
.ly_header_nav {
  display: none;
  position: fixed;
  top: 72px;
  right: 100%;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 6%;
  padding-right: 6%;
  background-color: rgba(64, 59, 56, 0.8705882353);
  min-height: calc(var(--vh, 1vh) * 100 - 64px);
  z-index: 9800;
}
@media screen and (min-width: 768px) {
  .ly_header_nav {
    width: 300px;
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .ly_header_nav {
    display: block;
    position: static;
    width: auto;
    height: auto;
    min-height: auto;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    background: none;
  }
}

/****************************************
  Header Block
*****************************************/
.bl_header_logo {
  width: 50%;
  max-width: 160px;
  margin-right: 20px;
}
.bl_header_burger {
  position: relative;
  width: 30px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 9900;
}
@media screen and (min-width: 1024px) {
  .bl_header_burger {
    display: none;
  }
}
.bl_header_burger_line {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fffffe;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.bl_header_overlay {
  display: none;
  position: fixed;
  top: 72px;
  right: 0;
  content: "";
  width: 100%;
  min-height: calc(var(--vh, 1vh) * 100 - 72px);
  background-color: rgba(250, 250, 250, 0.5);
}
@media screen and (min-width: 1024px) {
  .bl_header_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.bl_header_menu_item:not(:first-of-type) {
  margin-top: 32px;
}
@media screen and (min-width: 1024px) {
  .bl_header_menu_item:not(:first-of-type) {
    margin-top: 0;
  }
  .bl_header_menu_item:not(:last-of-type) {
    margin-right: 20px;
  }
}
.bl_header_menu_link {
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  word-break: keep-all;
  color: #fff;
  font-family: "Zen Old Mincho", "Shippori Mincho B1", "Hiragino Mincho ProN", "serif";
}
.bl_header_menu_link:hover {
  text-decoration: underline;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#header_check {
  display: none;
}

#header_check:checked ~ .bl_header_burger .bl_header_burger_line:nth-last-of-type(1) {
  -webkit-transform: translateY(-11px) rotate(-135deg);
          transform: translateY(-11px) rotate(-135deg);
}
#header_check:checked ~ .bl_header_burger .bl_header_burger_line:nth-last-of-type(2) {
  width: 0;
}
#header_check:checked ~ .bl_header_burger .bl_header_burger_line:nth-last-of-type(3) {
  -webkit-transform: translateY(11px) rotate(135deg);
          transform: translateY(11px) rotate(135deg);
}
#header_check:checked ~ .ly_header_nav {
  display: block;
  -webkit-animation: header_nav 0.4s ease-in-out 0s forwards;
          animation: header_nav 0.4s ease-in-out 0s forwards;
}
@media screen and (min-width: 768px) {
  #header_check:checked ~ .ly_header_nav {
    -webkit-animation: header_nav 0.4s ease-in-out 0.2s forwards;
            animation: header_nav 0.4s ease-in-out 0.2s forwards;
  }
}
@media screen and (min-width: 768px) {
  #header_check:checked ~ .bl_header_overlay {
    display: block;
    -webkit-animation: header_overlay 0.4s ease-in-out 0s forwards;
            animation: header_overlay 0.4s ease-in-out 0s forwards;
  }
}
@media screen and (min-width: 1024px) {
  #header_check:checked ~ .bl_header_overlay {
    display: none;
  }
}

@-webkit-keyframes header_nav {
  0% {
    right: -100%;
  }
  100% {
    right: 0;
  }
}

@keyframes header_nav {
  0% {
    right: -100%;
  }
  100% {
    right: 0;
  }
}
@-webkit-keyframes header_overlay {
  0% {
    right: -100%;
  }
  100% {
    right: 0;
  }
}
@keyframes header_overlay {
  0% {
    right: -100%;
  }
  100% {
    right: 0;
  }
}
/****************************************
  Header Helper
*****************************************/
.hp_header_menu_btn {
  width: 100%;
  border-radius: 10px;
}
@media screen and (min-width: 1024px) {
  .hp_header_menu_btn {
    width: 160px;
  }
}
@media screen and (min-width: 1440px) {
  .hp_header_menu_btn {
    width: 180px;
  }
}
.hp_header_menu_btn > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 1.4rem;
  font-weight: bold;
  font-family: "Yu Gothic Medium", "YuGothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
}
.hp_header_menu_btn--line {
  background-color: #06c755;
  color: #fffffe;
}
.hp_header_menu_btn--line > a {
  color: #fffffe;
  font-weight: bold;
}
.hp_header_menu_btn--line:hover {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #09af4c;
}
.hp_header_menu_btn--tel {
  background-color: #fffffe;
  border: 1px solid #baa024;
}
.hp_header_menu_btn--tel > a {
  color: #baa024;
  font-weight: bold;
}
.hp_header_menu_btn--tel:hover {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  background-color: #baa024;
}
.hp_header_menu_btn--tel:hover > a {
  color: #fffffe;
}

.hp_header_menu_btn i {
  margin-right: 0.5em;
  font-size: 1.4rem;
  vertical-align: middle;
}

.hp_bg_main {
  background-color: #403b38 !important;
}

.hp_bg_accent {
  background-color: #baa024 !important;
}

/****************************************
  Header CTA（電話＋LINE）
*****************************************/
.bl_header_cta_wrapper {
  margin-bottom: 12px;
  display: block;
}
@media screen and (min-width: 1024px) {
  .bl_header_cta_wrapper {
    display: block;
  }
}

.bl_header_cta {
  display: block;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media screen and (min-width: 1024px) {
  .bl_header_cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.bl_header_cta .hp_header_menu_btn {
  margin: 0;
}
.bl_header_cta .hp_header_menu_btn > a {
  font-size: 1.4rem;
  font-weight: bold;
  font-family: "Yu Gothic Medium", "YuGothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 16px;
}
.bl_header_cta .hp_header_menu_btn i {
  margin-right: 0.5em;
  font-size: 1.4rem;
}
.bl_header_cta .hp_header_menu_btn--tel {
  background-color: #fffffe;
  border: 1px solid #baa024;
}
.bl_header_cta .hp_header_menu_btn--tel > a {
  color: #baa024;
}
.bl_header_cta .hp_header_menu_btn--tel:hover {
  background-color: #baa024;
}
.bl_header_cta .hp_header_menu_btn--tel:hover > a {
  color: #fff;
}
.bl_header_cta .hp_header_menu_link {
  font-size: 3rem;
  color: #fffffe;
}
@media screen and (min-width: 1024px) {
  .bl_header_cta .hp_header_menu_link {
    font-size: 2.5rem;
  }
}

.bl_header_menu_item {
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .bl_header_menu_item {
    margin-bottom: unset;
  }
}

#header_check:checked ~ .ly_header_nav {
  /* --- モバイル ――――――――――――――――――― */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* block → flex に変更 */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; /* 縦並び */
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; /* 左寄せに */
  /* --- PC (既存レイアウト維持) -------------- */
}
@media screen and (min-width: 1024px) {
  #header_check:checked ~ .ly_header_nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row; /* 横並びに戻す */
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

/* ② ─── 並び順を指定（order） ─── */
/* ▼ 通常メニュー（テキストリンク）*/
.bl_header_menu {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1; /* モバイルで最初 */
}
@media screen and (min-width: 1024px) {
  .bl_header_menu {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0; /* PCは元の順序 */
  }
}

/* ▼ CTA ラッパー（LINE → 電話）*/
.bl_header_cta_wrapper {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2; /* モバイルで後ろ */
  margin-top: 32px;
  width: 100%; /* メニューとの間隔 */
}
@media screen and (min-width: 1024px) {
  .bl_header_cta_wrapper {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0; /* PCは元の順序 */
    margin-top: 0;
    width: unset; /* 余白もリセット */
  }
}

.bl_header_menu_item .hp_header_menu_link-sub {
  text-align: left;
  line-height: 0.6rem;
}
@media screen and (min-width: 1024px) {
  .bl_header_menu_item .hp_header_menu_link-sub {
    text-align: right;
    line-height: 0.6rem;
  }
}

a.is-disabled {
  pointer-events: none; /* クリック／タップを無視 */
  cursor: default; /* マウスカーソルも通常に */
  opacity: 0.6; /* 任意：見た目で区別したい場合 */
}

.ly_footer {
  background-color: #403b38;
  color: #fff;
  padding: 40px 20px;
}
.ly_footer .ly_footer_inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.ly_footer .bl_footer_logoWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-bottom: 24px;
}
.ly_footer .bl_footer_logo {
  display: inline-block;
}
.ly_footer .bl_footer_logo_img {
  max-width: 200px;
  width: 100%;
  height: auto;
  display: block;
}
.ly_footer .bl_footer_menu {
  font-family: "Zen Old Mincho", "Shippori Mincho B1", "Hiragino Mincho ProN", "serif";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  list-style: none;
  margin-bottom: 24px;
}
.ly_footer .bl_footer_menu li a {
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
}
.ly_footer .bl_footer_menu li a:hover {
  text-decoration: underline;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ly_footer .bl_footer_cta {
  display: none;
}
@media (min-width: 768px) {
  .ly_footer .bl_footer_cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
  }
}
.ly_footer .bl_footer_cta .bl_footer_cta_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  /*&--tel {
    background-color: #fffffe;
    color: #baa024;
    border: 1px solid #baa024;

    &:hover {
      background-color: #baa024;
      color: #fffffe;
      border: 1px solid #baa024;
    }
  }*/
}
.ly_footer .bl_footer_cta .bl_footer_cta_btn--line {
  background-color: #06c755;
  color: #fffffe;
  border: 1px solid #06c755;
}
.ly_footer .bl_footer_cta .bl_footer_cta_btn--line:hover {
  opacity: 0.8;
}
.ly_footer .bl_footer_cta .bl_footer_cta_btn--tel {
  background-color: #efefef;
  color: #c4c4c4;
  border: 1px solid #c4c4c4;
}
.ly_footer .ly_copyright {
  text-align: center;
  font-size: 1.2rem;
  color: #ccc;
}
@media (min-width: 768px) {
  .ly_footer {
    padding-bottom: 20px;
  }
}

/****************************************
  Animation Utilities
*****************************************/
.FadeIn {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}
.FadeIn.is-inview {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}
.FadeIn--top {
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}
.FadeIn--bottom {
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.FadeIn--left {
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
}
.FadeIn--right {
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}
.FadeIn--scale {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.FadeIn--delay-1 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.FadeIn--delay-2 {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.FadeIn--delay-3 {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.FadeIn--delay-4 {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.br-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .br-pc {
    display: inline;
  }
}

.br-sp {
  display: inline;
}
@media screen and (min-width: 768px) {
  .br-sp {
    display: none;
  }
}

/****************************************

  Helper CSS

*****************************************/
.hp_mgNone {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.hp_mgTop {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .hp_mgTop {
    margin-top: 80px;
  }
}
.hp_mgBottom {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .hp_mgBottom {
    margin-bottom: 80px;
  }
}
.hp_mgTB {
  margin-top: 40px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .hp_mgTB {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}
.hp_mgLR {
  margin-left: auto;
  margin-right: auto;
}
.hp_dispSP {
  display: block;
}
@media screen and (min-width: 768px) {
  .hp_dispSP {
    display: none;
  }
}
.hp_dispTab {
  display: none;
}
@media screen and (min-width: 768px) {
  .hp_dispTab {
    display: block;
  }
}
.hp_dispPC {
  display: none;
}
@media screen and (min-width: 1024px) {
  .hp_dispPC {
    display: block;
  }
}
.hp_txtCenter {
  text-align: center;
}
.hp_txtAccent {
  color: #baa024;
  font-weight: bold;
}
.hp_post_middle {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
}
.hp_post_box {
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 16px;
  padding-right: 16px;
}
@media screen and (min-width: 768px) {
  .hp_post_box {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 24px;
    padding-right: 24px;
  }
}

.hp_archive_cardUnit {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .hp_archive_cardUnit .bl_card {
    width: calc((100% - 40px) / 2);
    margin-right: 40px;
  }
  .hp_archive_cardUnit .bl_card:nth-of-type(2) {
    margin-top: 0;
  }
  .hp_archive_cardUnit .bl_card:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 1024px) {
  .hp_archive_cardUnit .bl_card:nth-of-type(3) {
    margin-top: 40px;
  }
  .hp_archive_cardUnit .bl_card:nth-of-type(2n) {
    margin-right: 0;
  }
}

.hp_border {
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
  border: 1px solid #d1d1d1;
}
@media screen and (min-width: 768px) {
  .hp_border {
    padding-bottom: 24px;
    padding-left: 24px;
    padding-right: 24px;
  }
}

.hp_thankspage_mv {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.hp_thanks_bg01 {
  padding-top: 40px;
  padding-bottom: 40px;
  background-image: url("../images/thanks/bg01.jpg");
  background-size: cover;
  background-position: center center;
}
@media screen and (min-width: 768px) {
  .hp_thanks_bg01 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.hp_constPage_point_pic_pc {
  margin-top: auto;
  margin-bottom: auto;
  width: 100%;
  max-width: 320px;
}

.hp_restaurantPage_MV_txtarea {
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (min-width: 768px) {
  .hp_restaurantPage_MV_txtarea {
    padding-left: 0;
    padding-right: 0;
  }
}

/****************************************

  Button CSS

*****************************************/
.bl_btn {
  display: block;
  width: 100%;
  max-width: 360px;
  padding-top: 16px;
  padding-bottom: 16px;
  text-align: center;
  font-weight: bold;
  color: #403b38;
  background-color: #fffffe;
  border: 1px solid #403b38;
  border-radius: 64px;
  cursor: pointer;
}
.bl_btn:hover, .bl_btn:active {
  opacity: 0.8;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.bl_btn__secondary {
  border: 1px solid #baa024;
  color: #baa024;
}
.bl_btn__tertiary {
  border: 1px solid #837f7d;
  color: #837f7d;
}

.bl_solidBtn {
  display: block;
  width: 100%;
  max-width: 360px;
  padding-top: 16px;
  padding-bottom: 16px;
  text-align: center;
  font-weight: bold;
  color: #fffffe;
  background-color: #403b38;
  border: 1px solid #403b38;
  border-radius: 64px;
  cursor: pointer;
}
.bl_solidBtn:hover, .bl_solidBtn:active {
  opacity: 0.8;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.bl_solidBtn__secondary {
  background-color: #baa024;
  border: 1px solid #baa024;
}
.bl_solidBtn__tertiary {
  background-color: #707070;
  border: 1px solid #707070;
}

.hp_btn__center {
  margin-left: auto;
  margin-right: auto;
}

/****************************************

  CardUnit CSS

*****************************************/
.bl_cardUnit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .bl_cardUnit {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.bl_card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fffffe;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 10px 1px rgba(170, 170, 170, 0.5);
          box-shadow: 0 0 10px 1px rgba(170, 170, 170, 0.5);
}
.bl_card:not(:first-of-type) {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .bl_card {
    width: calc((100% - 40px) / 2);
    margin-right: 40px;
  }
  .bl_card:nth-of-type(2) {
    margin-top: 0;
  }
  .bl_card:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 1024px) {
  .bl_card {
    width: calc((100% - 80px) / 3);
  }
  .bl_card:nth-of-type(3) {
    margin-top: 0;
  }
  .bl_card:nth-of-type(2n) {
    margin-right: 40px;
  }
  .bl_card:nth-of-type(3n) {
    margin-right: 0;
  }
}
.bl_card_thumb > img {
  border-radius: 20px 20px 0 0;
}
.bl_card_body {
  margin-top: 24px;
  margin-bottom: 24px;
  margin-left: 16px;
  margin-right: 16px;
}
.bl_card_logo {
  width: 100%;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}
.bl_card_date {
  margin-bottom: 16px;
}
.bl_card_ttl {
  font-size: 1.6rem;
  font-weight: bold;
}
.bl_card_desc {
  margin-top: 16px;
}
.bl_card_category {
  margin-top: 16px;
}
.bl_card_btn_wrapper {
  margin-top: auto;
  margin-bottom: 24px;
  margin-left: 16px;
  margin-right: 16px;
}
.bl_card_btn {
  display: block;
  width: 100%;
  max-width: 360px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fffffe;
  background-color: #403b38;
  border-radius: 32px;
}
.bl_card_btn:hover, .bl_card_btn:active {
  opacity: 0.8;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.bl_card__full {
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: transparent;
}
.bl_card__full .bl_card_thumb > img {
  border-radius: 0;
}
.bl_card__full .bl_card_body {
  margin-left: 0;
  margin-right: 0;
}

/****************************************

  Conversion CSS

*****************************************/
.ly_conversion {
  background-color: #403b38;
}
.ly_conversion_inner {
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 6%;
  padding-right: 6%;
}
@media screen and (min-width: 768px) {
  .ly_conversion_inner {
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
.ly_conversion_btnWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .ly_conversion_btnWrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .ly_conversion_btnWrap {
    margin-top: 64px;
  }
}
.ly_conversion_btnWrap > a:nth-of-type(2) {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .ly_conversion_btnWrap > a:nth-of-type(2) {
    margin-top: 0;
    margin-left: 40px;
    margin-right: 0;
  }
}
@media screen and (min-width: 1024px) {
  .ly_conversion_btnWrap > a:nth-of-type(2) {
    margin-top: 0;
    margin-left: 80px;
  }
}

.bl_conversion_txt {
  font-size: 2rem;
  font-weight: bold;
  color: #fffffe;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .bl_conversion_txt {
    font-size: 2.4rem;
  }
}

/****************************************

  Cookie CSS

*****************************************/
#cookie-notice a, #cookie-notice span {
  color: #fffffe;
}

.bl_floatingBtn {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  height: 56px;
  padding: 0;
  background: rgba(255, 255, 255, 0.95);
  z-index: 999;
  -webkit-box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
}
.bl_floatingBtn__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  height: 100%;
  padding: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #333;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.bl_floatingBtn__item i {
  font-size: 16px;
  margin-right: 8px;
}
.bl_floatingBtn__item:active {
  -webkit-transform: none;
          transform: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.bl_floatingBtn__item--line {
  background-color: #06c755;
  color: #fffffe;
}
.bl_floatingBtn__item--tel {
  background-color: #fffffe;
  color: #baa024;
  border: 1px solid #baa024;
}
.bl_floatingBtn__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.bl_floatingBtn__label--pc {
  display: none;
}
.bl_floatingBtn__label--sp {
  display: inline;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .bl_floatingBtn {
    top: 40%;
    bottom: auto;
    left: auto;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: auto;
    padding: 0;
    background: transparent;
    gap: 16px;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .bl_floatingBtn__item {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 16px 10px;
    border-radius: 10px 0 0 10px;
    -webkit-box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.1);
            box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.1);
  }
  .bl_floatingBtn__item i {
    font-size: 18px;
    margin: 0 0 6px 0;
  }
  .bl_floatingBtn__item:active {
    -webkit-transform: scale(0.96);
            transform: scale(0.96);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  }
  .bl_floatingBtn__text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
  }
  .bl_floatingBtn__label--pc {
    display: inline;
    font-size: 14px;
    font-weight: bold;
    white-space: pre-line;
    text-align: center;
    line-height: 1.2;
  }
  .bl_floatingBtn__label--sp {
    display: none;
  }
}

/****************************************

  Pagination CSS

*****************************************/
.bl_pagination {
  margin: 1rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.4rem;
}

.bl_pagination_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.el_pagination_link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 1rem 1.6rem;
  font-family: "Lato", sans-serif;
  letter-spacing: normal;
  text-transform: uppercase;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.el_pagination_link:hover {
  color: #fffffe;
  background-color: #403b38;
}

.el_pagination_pager {
  display: inline-block;
  padding: 1rem 1.6rem;
  font-family: "Lato", sans-serif;
  letter-spacing: normal;
  text-transform: uppercase;
}
.el_pagination_pager:hover {
  color: #fffffe;
  background-color: #403b38;
}

.el_pagination_active {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 1rem 1.6rem;
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  color: #fffffe;
  background-color: #403b38;
}

/****************************************

  Post CSS

*****************************************/
.bl_post h2 {
  margin-bottom: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  font-size: 2rem;
  font-weight: bold;
  border-left: 8px solid #403b38;
}
.bl_post h2:not(:first-child) {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .bl_post h2 {
    font-size: 2.4rem;
  }
}
.bl_post h3 {
  margin-bottom: 20px;
  font-size: 1.6rem;
  font-weight: bold;
}
.bl_post h3:not(:first-child) {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .bl_post h3 {
    font-size: 2rem;
  }
}
.bl_post h4 {
  margin-bottom: 20px;
  font-size: 1.4rem;
  font-weight: bold;
}
.bl_post h4:not(:first-child) {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .bl_post h4 {
    font-size: 1.6rem;
  }
}
.bl_post ol > li {
  margin-left: 32px;
  list-style: decimal;
}
.bl_post p {
  margin-top: 20px;
  margin-bottom: 16px;
  word-break: break-all;
}
@media screen and (min-width: 768px) {
  .bl_post p {
    margin-top: 40px;
  }
}
.bl_post a {
  color: #403b38;
  word-break: break-all;
}
.bl_post strong {
  font-weight: bold;
}
.bl_post figure, .bl_post img {
  display: inline-block;
  margin-top: 20px;
  width: auto;
}
@media screen and (min-width: 768px) {
  .bl_post figure, .bl_post img {
    margin-top: 40px;
  }
}
.bl_post .wp-element-caption {
  text-align: center;
}
.bl_post .hp_img_s {
  margin-left: auto;
  margin-right: auto;
  width: 40% !important;
}
@media screen and (min-width: 768px) {
  .bl_post .hp_img_s {
    width: 30% !important;
  }
}
.bl_post .hp_img_m {
  margin-left: auto;
  margin-right: auto;
  width: 60% !important;
}
@media screen and (min-width: 768px) {
  .bl_post .hp_img_m {
    width: 50% !important;
  }
}
.bl_post .hp_img_l {
  margin-left: auto;
  margin-right: auto;
  width: 80% !important;
}
@media screen and (min-width: 768px) {
  .bl_post .hp_img_l {
    width: 70% !important;
  }
}
.bl_post .hp_img_pc50 {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .bl_post .hp_img_pc50 {
    width: 50% !important;
  }
}
.bl_post .hp_img_pc60 {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .bl_post .hp_img_pc60 {
    width: 60% !important;
  }
}
.bl_post .hp_img_pc70 {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .bl_post .hp_img_pc70 {
    width: 70% !important;
  }
}
.bl_post .hp_img_pc80 {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .bl_post .hp_img_pc80 {
    width: 80% !important;
  }
}
.bl_post .hp_img_pc90 {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .bl_post .hp_img_pc90 {
    width: 90% !important;
  }
}
.bl_post .hp_border {
  border: 1px solid #afafaf;
}

/****************************************

  Section CSS

*****************************************/
.ly_section_inner {
  width: 100%;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 6%;
  padding-right: 6%;
}
@media screen and (min-width: 768px) {
  .ly_section_inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.bl_section_ttl {
  margin-bottom: 40px;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_section_ttl {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 768px) {
  .bl_section_ttl {
    font-size: 3rem;
  }
}
.bl_section_desc {
  margin-top: 40px;
  margin-bottom: 40px;
  font-weight: bold;
  text-align: center;
}

.hp_section_bg {
  background-color: #403b38;
}
.hp_section_bg .ly_section_inner {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .hp_section_bg .ly_section_inner {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.hp_section_bg__accent {
  background-color: #f2faff;
}
.hp_section_bg__accent .ly_section_inner {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .hp_section_bg__accent .ly_section_inner {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.hp_section_bg__light {
  background-color: #fafafa;
}
.hp_section_bg__light .ly_section_inner {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .hp_section_bg__light .ly_section_inner {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

/****************************************

  Sidebar CSS

*****************************************/
.bl_sidebar_box_inner {
  margin-bottom: 40px;
}
.bl_sidebar_ttl {
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  border-bottom: 1px solid #403b38;
  border-left: 8px solid #403b38;
}
@media screen and (min-width: 768px) {
  .bl_sidebar_ttl {
    font-size: 2rem;
  }
}
.bl_sidebar_categorylist {
  margin-top: 16px;
  margin-bottom: 40px;
}
.bl_sidebar_caseList {
  margin-top: 16px;
  margin-bottom: 40px;
}
.bl_sidebar_caseList_ttl {
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .bl_sidebar_caseList_ttl {
    font-size: 1.8rem;
  }
}
.bl_sidebar_caseList > .bl_sidebar_categorylist {
  padding-left: 16px;
  padding-right: 16px;
}
.bl_sidebar_archive {
  margin-top: 16px;
  margin-bottom: 40px;
}
.bl_sidebar_archive_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 20px;
}
.bl_sidebar_archive_thumb {
  width: 30%;
  margin-right: 16px;
}
.bl_sidebar_archive_body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.bl_sidebar_archive_body > h3 {
  font-size: 1.4rem;
  font-weight: bold;
}