@charset "UTF-8";
:root {
  /* Font sizes: */
  --fontsize-10: 0.625rem; /* 10px */
  --fontsize-11: 0.6875rem; /* 11px */
  --fontsize-12: 0.75rem; /* 12px */
  --fontsize-13: 0.8125rem; /* 13px */
  --fontsize-14: 0.875rem; /* 14px */
  --fontsize-15: 0.9375rem; /* 15px */
  --fontsize-16: 1rem; /* 16px */
  --fontsize-17: 1.0625rem; /* 17px */
  --fontsize-18: 1.125rem; /* 18px */
  --fontsize-19: 1.1875rem; /* 19px */
  --fontsize-20: 1.25rem; /* 20px */
  --fontsize-21: 1.3125rem; /* 21px */
  --fontsize-22: 1.375rem; /* 22px */
  --fontsize-23: 1.4375rem; /* 23px */
  --fontsize-24: 1.5rem; /* 24px */
  --fontsize-25: 1.5625rem; /* 25px */
  --fontsize-26: 1.625rem; /* 26px */
  --fontsize-27: 1.6875rem; /* 27px */
  --fontsize-28: 1.75rem; /* 28px */
  --fontsize-29: 1.8125rem; /* 29px */
  --fontsize-30: 1.875rem; /* 30px */
  --fontsize-31: 1.9375rem; /* 31px */
  --fontsize-32: 2rem; /* 32px */
  --fontsize-33: 2.0625rem; /* 33px */
  --fontsize-34: 2.125rem; /* 34px */
  --fontsize-35: 2.1875rem; /* 35px */
  --fontsize-36: 2.25rem; /* 36px */
  --fontsize-37: 2.3125rem; /* 37px */
  --fontsize-38: 2.375rem; /* 38px */
  --fontsize-39: 2.4375rem; /* 39px */
  --fontsize-40: 2.5rem; /* 40px */
  /* Colors: */
  --color-e60012: #E60012;
  --color-ff8200: #FF8200;
  --color-69472f: #69472F;
  --color-f9f6f1: #F9F6F1;
  --color-c3a58c: #C3A58C;
  --col0r-f9f6f1: #F9F6F1;
  --color-ffffff: #FFFFFF;
  /* header高さ */
  --header-height: 60px;
  /* 点線 */
  --decoration-dotted-line: repeating-linear-gradient(to right, #c7c7c7, #c7c7c7 2px, transparent 2px, transparent 4px);
}

@media (min-width: 992px) {
  :root {
    /* header高さ */
    --header-height: 195px;
  }
}
html {
  block-size: 100%;
  -webkit-text-size-adjust: none;
}

body {
  height: 100vh;
  min-height: 100vh;
  font-family: "Noto Sans JP", sans-serif;
  font-size: var(--fontsize-16);
  line-height: 1.7;
  color: var(--color-69472f);
  font-weight: 400;
  font-style: normal;
  background-color: var(--color-ffffff);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: var(--header-height);
}

body.fixed {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}

main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

h6, h5, h4, h3, h2, h1 {
  font-weight: bold;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

h1 {
  line-height: 1.3;
}

h2 {
  line-height: 1.4;
}

h3 {
  line-height: 1.4;
}

h4 {
  line-height: 1.5;
}

h5 {
  line-height: 1.6;
}

h6 {
  line-height: 1.6;
}

:where(ul, ol)[class*=list] {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

a, path {
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
  color: var(--color-402a8c);
}

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

svg {
  width: 100%;
  height: auto;
}

/* Layout ================================= */
.l-container {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 20px;
}

.l-section {
  padding-block: 25px;
}

.l-fullwidth {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}

@media (min-width: 768px) {
  .l-section {
    padding-block: 50px;
  }
}
/* text ================================= */
.text-center {
  text-align: center;
}

/* visibility ================================= */
.visually-hidden {
  visibility: hidden;
}

/* space ================================= */
.u-pt-0 {
  padding-top: 0 !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

/* btn ================================= */
.btn {
  display: inline-block;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.btn:hover {
  opacity: 0.7;
  color: inherit;
}

.btn-shadow {
  -webkit-box-shadow: 0 3px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 0px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .btn-shadow {
    -webkit-box-shadow: 0 6px 0px rgba(0, 0, 0, 0.2);
            box-shadow: 0 6px 0px rgba(0, 0, 0, 0.2);
  }
}
.btn--outline {
  max-width: 300px;
  width: 100%;
  height: 50px;
  font-size: var(--fontsize-12);
  font-weight: 500;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 8px 34px 8px 10px;
  border: 1px solid currentColor;
  border-radius: 30px;
  background-color: var(--color-ffffff);
  position: relative;
}
.btn--outline::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent currentColor;
  position: absolute;
  right: 26px;
}

.btn--primary {
  color: var(--color-69472f);
}
.btn--primary:hover {
  background-color: var(--color-69472f);
  border: 1px solid var(--color-69472f);
  color: var(--color-ffffff);
}

.btn--cta {
  max-width: 300px;
  width: 100%;
  height: 50px;
  font-size: var(--fontsize-12);
  font-weight: 500;
  text-decoration: none;
  color: #FFFFFF;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 8px 10px 8px 10px;
  border: 1px solid currentColor;
  border-radius: 30px;
  background-color: var(--color-e60012);
  border: 1px solid var(--color-e60012);
  position: relative;
}
.btn--cta::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent currentColor;
  position: absolute;
  right: 26px;
}
.btn--cta:hover {
  color: var(--color-e60012);
  background-color: var(--color-ffffff);
}

@media (min-width: 768px) {
  .btn--outline {
    max-width: 400px;
    height: 60px;
    font-size: var(--fontsize-18);
    padding: 12px 44px 12px 24px;
  }
  .btn--cta {
    max-width: 320px;
    height: 60px;
    font-size: var(--fontsize-18);
    padding: 12px 24px 12px 24px;
  }
}
/* bg color ================================= */
.bg-brown-soft {
  background-color: var(--color-c3a58c);
}

.bg-cream {
  background-color: var(--color-f9f6f1);
}

.bg-illustration {
  background: url(../../images/common/bg_illustration.png) 0 0 repeat;
}

.has-waves {
  --wave-height: 25px;
  position: relative;
  overflow: hidden;
  padding-top: var(--wave-height);
  padding-bottom: var(--wave-height);
  z-index: 0;
}
.has-waves::before, .has-waves::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--wave-height);
  background-image: url("../../images/common/bg_waves.svg");
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: center;
  pointer-events: none;
  z-index: -1;
}
.has-waves::before {
  top: 0;
}
.has-waves::after {
  bottom: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media (min-width: 768px) {
  .has-waves {
    --wave-height: 80px;
  }
}
/* shadow ================================= */
/* pc sp view ================================= */
.is-sp-only {
  display: block;
}

.is-pc-only {
  display: none;
}

@media (min-width: 768px) {
  .is-sp-only {
    display: none;
  }
  .is-pc-only {
    display: block;
  }
}
/* header ================================= */
.site-header {
  width: 100%;
  height: var(--header-height);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: var(--color-ffffff);
}

.header-top {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  z-index: 1;
  position: relative;
}

.header-top__inner {
  height: 60px;
  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;
  position: relative;
  padding-right: 70px;
  gap: 10px;
}

.header-logo {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.header-logo__link {
  display: inline-block;
}
.header-logo__link > img {
  width: 103px;
  height: 30px;
}

.utility-nav {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 71.6667%;
          flex: 1 1 71.6667%;
  display: none;
}

.utility-nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.social-nav {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.social-nav__list {
  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;
  gap: 20px;
}

.social-nav__link {
  display: block;
  width: 40px;
  height: 40px;
}

.contact-nav {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  max-width: 220px;
}

.contact-nav__btn {
  width: 100%;
  height: 45px;
  font-size: var(--fontsize-18);
  text-decoration: none;
  color: var(--color-69472f);
  font-weight: 500;
  background-color: var(--color-ffffff);
  border: 1px solid var(--color-69472f);
  border-radius: 10px;
  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;
  padding: 8px;
}
.contact-nav__btn:hover {
  background-color: var(--color-69472f);
  color: var(--color-ffffff);
}

.site-header__nav-area {
  background-color: var(--color-f9f6f1);
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
  opacity: 0;
  visibility: hidden;
  display: none;
}

/* header Nav open/close ================================= */
.site-header__nav-area.open {
  width: 100%;
  height: calc(100% - 60px);
  position: fixed;
  left: 0;
  opacity: 1;
  visibility: visible;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; /* iOS対策 */
  display: block;
}
.site-header__nav-area.open .site-header__nav {
  width: 100%;
  max-width: 600px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
  gap: 30px;
}
.site-header__nav-area.open .site-header__nav-list {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  max-width: none;
  height: auto;
}
.site-header__nav-area.open .site-header__nav-item {
  width: 100%;
  background-color: var(--color-ffffff);
  border-radius: 10px;
  border-right: none;
  overflow: hidden;
}
.site-header__nav-area.open .site-header__nav-item:first-child {
  border-left: none;
}
.site-header__nav-area.open .site-header__nav-item .social-nav {
  padding-top: 16px;
  padding-bottom: 16px;
}
.site-header__nav-area.open .site-header__nav-link {
  padding: 16px 32px 16px 16px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-transition: none;
  transition: none;
  position: relative;
}
.site-header__nav-area.open .site-header__nav-link::before {
  content: "";
  width: 13px;
  height: 13px;
  background: url(../../images/common/submenu_plus.svg) 0 0 no-repeat;
  display: inline-block;
  position: absolute;
  top: 0;
  left: auto;
  right: 18px;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  opacity: 1;
}
.site-header__nav-area.open .site-header__submenu-link:hover {
  border-bottom: none;
}
.site-header__nav-area.open .site-header__submenu-link::before {
  content: "";
  width: 100%;
  height: 1px;
  background-image: var(--decoration-dotted-line);
  background-size: auto 1px;
  background-repeat: repeat-x;
  position: absolute;
  left: 0;
  bottom: 0;
}
.site-header__nav-area.open .shop-nav {
  width: 100%;
  max-width: 600px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-right: auto;
}
.site-header__nav-area.open .shop-nav .shop-nav__btn {
  max-width: 600px;
  -webkit-transition: none;
  transition: none;
}
.site-header__nav-area.open .contact-nav {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.site-header__nav-area.close {
  opacity: 0;
  visibility: hidden;
}

/* header Nav open/close end ================================= */
.site-header__nav {
  width: 100%;
  height: 100%;
  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;
  gap: 20px;
}

.site-header__nav-list {
  width: 100%;
  max-width: 600px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: var(--fontsize-16);
}

.site-header__nav-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 16%;
          flex: 1 0 16%;
  width: 16%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-right: 1px solid #c7c4bf;
}
.site-header__nav-item:first-child {
  border-left: 1px solid #c7c4bf;
}
.site-header__nav-item .site-header__nav-link {
  text-decoration: none;
  font-weight: 500;
  color: var(--color-69472f);
  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;
  height: 100%;
  position: relative;
}
.site-header__nav-item .site-header__nav-link:hover {
  color: var(--color-e60012);
}

.site-header__nav-item .site-header__nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -40px;
  width: 100%;
  height: 3px;
  background-color: var(--color-e60012);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.shop-nav {
  width: 280px;
  margin-left: auto;
}

.shop-nav__btn {
  width: 100%;
  max-width: 280px;
  height: 55px !important;
  color: var(--color-ffffff);
  font-size: var(--fontsize-20);
  font-weight: 500;
  text-decoration: none;
  background-color: var(--color-e60012);
  border: none;
  border-radius: 10px;
  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;
  padding: 8px;
}
.shop-nav__btn:hover {
  color: var(--color-ffffff);
  background-color: rgba(230, 0, 18, 0.6);
}
.shop-nav__btn > span {
  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;
}
.shop-nav__btn > span::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 8px;
  background-image: url("../../images/common/icon_shop_header.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
}

/* header Submenu ================================= */
.site-header__submenu {
  width: 100%;
  height: 0;
  position: relative;
  left: auto;
  top: auto;
  bottom: auto;
  background: #fff;
  opacity: 1; /* 常に表示 */
  -webkit-transition: height 0.4s ease;
  transition: height 0.4s ease;
  overflow: hidden;
  z-index: 1000;
}

.site-header__submenu-inner {
  display: grid;
  gap: 20px;
  padding-top: 24px;
  padding-bottom: 24px;
}

.site-header__submenu-link {
  font-weight: 500;
  text-decoration: none;
  padding-bottom: 8px;
  position: relative;
}
.site-header__submenu-link::after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 8px;
  background-image: url(../../images/common/submenu_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.site-header__submenu-link:hover {
  color: var(--color-e60012);
  border-bottom: 1px solid var(--color-e60012);
}
.site-header__submenu-link:hover::after {
  background-image: url(../../images/common/submenu_arrow__hover.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* header SP ================================= */
.header-toggle {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 60px;
  height: 60px;
  background-color: var(--col0r-f9f6f1);
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  border: none;
}

.header-toggle__line {
  position: absolute;
  left: 15px;
  width: 30px;
  height: 2px;
  background-color: var(--color-69472f);
  -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;
}

.header-toggle__line:nth-of-type(1) {
  top: 21px;
}

.header-toggle__line:nth-of-type(2) {
  top: 30px;
}

.header-toggle__line:nth-of-type(3) {
  top: 39px;
}

.header-toggle.active .header-toggle__line:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(45deg);
          transform: translateY(9px) rotate(45deg);
}

.header-toggle.active .header-toggle__line:nth-of-type(2) {
  opacity: 0;
}

.header-toggle.active .header-toggle__line:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(-45deg);
          transform: translateY(-9px) rotate(-45deg);
}

.site-header__top-shop .shop-nav__btn {
  width: 144px;
  height: 30px !important;
  font-size: var(--fontsize-12);
  border-radius: 5px;
}
.site-header__top-shop .shop-nav__btn > span::before {
  content: none;
}

.is-header-mobile {
  display: block;
}

.is-header-desktop {
  display: none;
}

.site-header__nav-area.open .has-arrow .site-header__nav-link::before {
  content: none;
}

.site-header__nav-item.has-arrow > .site-header__nav-link {
  position: relative;
  padding-right: 1.5em;
  padding: 16px 40px 16px 16px;
}

.site-header__nav-item.has-arrow > .site-header__nav-link::after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 8px;
  background-image: url(../../images/common/submenu_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (max-width: 991px) {
  /* SPのプラスマイナスbtn */
  .site-header__nav-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .site-header__nav-link {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .site-header__nav-area.open .site-header__nav-link::before {
    content: none;
  }
  .site-header__submenu-toggle {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: url(../../images/common/submenu_plus.svg) 50% 50% no-repeat;
    background-size: 20px 20px;
    border: none;
    display: inline-block;
    opacity: 1;
    margin-right: 16px;
  }
  .site-header__submenu-toggle.is-open {
    background: url(../../images/common/submenu_minus.svg) 50% 50% no-repeat;
    background-size: 20px 20px;
  }
  .site-header__nav-head.is-open {
    position: relative;
  }
  .site-header__nav-head.is-open::after {
    content: "";
    width: calc(100% - 32px);
    height: 1px;
    background-color: var(--color-e60012);
    display: inline-block;
    position: absolute;
    left: 16px;
    bottom: 0;
  }
}
@media (min-width: 992px) {
  /* PC header ================================= */
  .site-header {
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  }
  .header-top {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .header-top__inner {
    height: 100px;
    padding-right: 20px;
  }
  .header-logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 205px;
            flex: 0 0 205px;
  }
  .header-logo__link {
    display: inline-block;
  }
  .header-logo__link > img {
    width: 205px;
    height: 60px;
  }
  .utility-nav {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 71.6667%;
            flex: 1 1 71.6667%;
    display: block;
  }
  .site-header__nav-area {
    opacity: 1;
    visibility: visible;
    display: block;
  }
  .site-header__nav-area.close {
    opacity: 1;
    visibility: visible;
  }
  .site-header__nav-item .site-header__nav-link {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .site-header__nav-item .site-header__nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -34px;
    width: 100%;
    height: 3px;
    background-color: var(--color-e60012);
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .site-header__nav-item > .site-header__nav-link:hover::before {
    opacity: 1;
  }
  /* header Submenu ================================= */
  .site-header__submenu {
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    top: 100%;
    bottom: auto;
    background: #fff;
    -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 1000;
  }
  .site-header__item:hover .site-header__submenu,
  .site-header__submenu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .site-header__submenu-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .site-header__submenu-link {
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid #c7c4bf;
    padding-bottom: 8px;
    padding-right: 18px;
    position: relative;
  }
  .site-header__submenu-link::before {
    content: none;
  }
  .site-header__submenu-link::after {
    content: "";
    display: inline-block;
    width: 13px;
    height: 8px;
    background-image: url(../../images/common/submenu_arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .site-header__submenu-link:hover {
    color: var(--color-e60012);
    border-bottom: 1px solid var(--color-e60012);
  }
  .site-header__submenu-link:hover::after {
    background-image: url(../../images/common/submenu_arrow__hover.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .header-toggle {
    display: none;
  }
  .is-header-mobile {
    display: none;
  }
  .is-header-desktop {
    display: block;
  }
  .site-header__submenu-toggle {
    display: none;
  }
}
@media (max-width: 991px) {
  .site-header__nav-link.js-ac {
    pointer-events: auto;
    cursor: pointer;
    text-decoration: none;
  }
}
/* footer ================================= */
.site-footer__inner {
  padding-top: 40px;
  padding-bottom: 20px;
}

.site-footer__contact-area {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.site-footer__contact-item {
  border-radius: 12px;
  background-color: var(--color-ffffff);
  overflow: hidden;
  display: grid;
  gap: 16px;
  grid-row: span 3;
  grid-template-rows: subgrid;
  padding-bottom: 16px;
}

.site-footer__contact-title {
  color: var(--color-ffffff);
  background-color: var(--color-69472f);
  text-align: center;
  padding: 0 16px;
}
.site-footer__contact-title > h6 {
  font-size: var(--fontsize-17);
  font-weight: 600;
  padding: 16px 0;
  margin: 0;
}

.site-footer__contact-tel {
  display: inline-block;
  font-size: var(--fontsize-23);
  font-weight: 600;
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.site-footer__contact-tel > a {
  line-height: 1.2;
  text-decoration: none;
  color: var(--color-69472f);
  padding-left: 1.826em;
  position: relative;
}
.site-footer__contact-tel > a::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.52em;
  background-image: url("../../images/common/icon_phone_footer.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 3px;
  left: 0;
}
.site-footer__contact-tel::before {
  content: "";
  display: inline-block;
  width: 90%;
  height: 1px;
  background-image: var(--decoration-dotted-line);
  background-size: auto 1px;
  background-repeat: repeat-x;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  margin-left: auto;
  margin-right: auto;
}

.site-footer__contact-note {
  font-size: var(--fontsize-18);
  line-height: 1.3;
  text-align: center;
  padding: 0 16px;
}

.site-footer__logo {
  margin-top: 26px;
}

.site-footer__logo-link {
  display: inline-block;
}
.site-footer__logo-link > img {
  width: 140px;
  height: 25px;
}

.site-footer__nav {
  color: var(--color-ffffff);
  margin-top: 20px;
  display: none;
}

.site-footer__nav-list {
  font-size: var(--fontsize-18);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.site-footer__nav-item {
  position: relative;
}
.site-footer__nav-item::before {
  content: "";
  width: 1px;
  height: 17px;
  background-color: var(--color-ffffff);
  position: absolute;
  top: 7px;
  left: -8px;
  display: inline-block;
}
.site-footer__nav-item:first-child::before {
  display: none;
}

.site-footer__nav-link {
  text-decoration: none;
  color: var(--color-ffffff);
}
.site-footer__nav-link:hover {
  color: var(--color-ffffff);
  opacity: 0.7;
}

.site-footer__copyright {
  height: 50px;
  font-size: var(--fontsize-10);
  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;
}

@media (min-width: 768px) {
  .site-footer__inner {
    padding-top: 50px;
    padding-bottom: 20px;
  }
  .site-footer__contact-area {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .site-footer__contact-item {
    gap: 26px;
    padding-bottom: 30px;
  }
  .site-footer__contact-title {
    padding: 0 30px;
  }
  .site-footer__contact-title > h6 {
    font-size: var(--fontsize-30);
  }
  .site-footer__contact-tel {
    font-size: var(--fontsize-40);
    padding: 0 30px;
  }
  .site-footer__contact-note {
    font-size: var(--fontsize-30);
    padding-bottom: 0 30px;
  }
  .site-footer__logo-link > img {
    width: 334px;
    height: 60px;
  }
  .site-footer__copyright {
    height: 80px;
    font-size: var(--fontsize-18);
  }
}
@media (min-width: 992px) {
  .site-footer__nav {
    display: block;
  }
}
/* page top ================================= */
.page-top__link {
  width: 35px;
  height: 80px;
  position: fixed;
  position: fixed;
  background: url(../../images/common/up_img.svg) no-repeat center center;
  background-size: cover;
  bottom: -100px;
  right: 20px;
  z-index: 10;
  -webkit-transition: bottom 0.3s;
  transition: bottom 0.3s;
}

.page-top__link.is-show {
  bottom: 20px;
}

@media (min-width: 768px) {
  .page-top__link {
    width: 65px;
    height: 148px;
  }
}
@media (min-width: 992px) {
  .page-top__link {
    width: 95px;
    height: 213px;
  }
}
/* title ================================= */
.section__title {
  color: var(--color-69472f);
  font-size: clamp(1.5rem, -0.278rem + 3.7vw, 2.5rem);
  margin-bottom: 1.25em;
}

.section__title--bar {
  position: relative;
  padding-left: 1.25em;
  line-height: 1.4;
}
.section__title--bar::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--color-ff8200);
  border-radius: 5px 5px 5px 5px;
  display: inline-block;
}
.section__title--bar::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 5px;
  height: 52%;
  background-color: var(--color-e60012);
  border-radius: 5px 5px 0px 0px;
  display: inline-block;
}

@media (min-width: 768px) {
  .section__title--bar::before {
    width: 10px;
  }
  .section__title--bar::after {
    width: 10px;
  }
}
/* 下層ページ ================================= */
/* パンクズ */
.breadcrumb-wrapper {
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: auto;
  position: relative;
  z-index: 30; /**/
  pointer-events: auto; /**/
}

.breadcrumb {
  font-size: var(--fontsize-14);
  display: block;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
}

.breadcrumb li {
  color: #000000;
  display: inline-block;
  position: relative;
  padding-right: 20px;
}

.breadcrumb > li::after {
  content: "";
  width: 9px;
  height: 9px;
  border: 1px solid;
  border-color: #000000 #000000 transparent transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  display: inline-block;
  position: absolute;
  top: 9px;
  right: 4px;
}

.breadcrumb > li:last-child::after {
  content: none;
}

.breadcrumb > li > a {
  color: #000000;
  text-decoration: none;
}
.breadcrumb > li > a:hover {
  text-decoration: none;
  opacity: 0.5;
}

@media (min-width: 768px) {
  .breadcrumb-wrapper {
    height: 60px;
  }
  .breadcrumb {
    font-size: var(--fontsize-16);
  }
}
/* page-hero */
.page-hero {
  height: 100px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero__inner {
  height: 100%;
  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;
}

.page-hero__title {
  color: var(--color-ffffff);
  font-size: clamp(1.75rem, -2.917rem + 9.72vw, 4.375rem);
  font-weight: 600;
  text-align: center;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
  margin-bottom: 0;
  padding-bottom: 5px;
  position: relative;
}

.dotted {
  background-image: repeating-linear-gradient(to right, #ff8000, #ff8000 6px, transparent 6px, transparent 12px);
  background-size: auto 3px;
  background-position: left bottom;
  background-repeat: repeat-x;
  -webkit-filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.4));
          filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.4));
}

@media (min-width: 768px) {
  .page-hero {
    height: 300px;
  }
  .page-hero__title {
    padding-bottom: 10px;
  }
}
/* ページ内リンク */
.u-anchor-offset {
  scroll-margin-top: 70px;
}

@media (min-width: 992px) {
  .u-anchor-offset {
    scroll-margin-top: 200px;
  }
}
.grecaptcha-badge {
  visibility: hidden;
}/*# sourceMappingURL=common.css.map */