@charset "UTF-8";
/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.header * {
  box-sizing: border-box;
}

body.is-drawer-open {
  overflow: hidden;
}

/* ---- PC ---- */
@media only screen and (min-width: 1280px) {
  .sp {
    display: none;
  }
  .header {
    background: #FCEAF2;
  }
  .header__inner {
    max-width: 1414px;
    height: 186px;
    padding-top: 12px;
    margin: 0 auto;
    position: relative;
  }
  .header--text {
    display: block;
    font-size: 14px;
    line-height: 20px;
    position: absolute;
    top: 7px;
    left: 0px;
    color: #4F3B17;
    letter-spacing: 0.7px;
  }
  .header--left {
    position: absolute;
    top: 41px;
    left: 0px;
  }
  .logo a {
    display: block;
    width: 200px;
    height: 130px;
  }
  .logo img {
    width: 140px;
    height: 140px;
    display: block;
    object-fit: contain;
    transition: all 0.3s ease;
  }
  .logo img:hover {
    cursor: pointer;
    opacity: 0.5;
  }
  .header--right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-left: 200px;
  }
  .menu--top {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  .tel a {
    font-family: "Bpmf Huninn", sans-serif;
    font-size: 25px;
    font-weight: 400;
    color: #F478A3;
    margin-right: 45px;
    letter-spacing: 1.25px;
    text-decoration: none;
  }
  .tel__prefix {
    font-size: 16px;
    letter-spacing: 0.8px;
  }
  .menu--top .nav {
    margin-right: 30px;
  }
  .menu--top .nav ul {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .menu--top .nav ul li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.96px;
    color: #4F3B17;
  }
  .menu--top .nav ul li::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #F478A3;
    flex-shrink: 0;
  }
  .menu--top .nav ul li a {
    color: #4F3B17;
    text-decoration: underline;
    text-decoration-color: transparent;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.96px;
    transition: all 0.2s ease;
  }
  .menu--top .nav ul li a:hover {
    color: #F478A3;
    font-weight: 700;
    text-decoration-color: inherit;
  }
  .cta a {
    display: flex;
    align-items: center;
    width: 279px;
    height: 63px;
    gap: 14px;
    background: #F478A3;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.08px;
    padding-left: 13px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid #F478A3;
    transition: background 0.4s, color 0.4s;
    white-space: nowrap;
  }
  .cta a:hover {
    background: #fff;
    color: #F478A3;
  }
  .cta .img {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    background: #fff;
    position: relative;
  }
  .cta .img:before {
    content: "";
    display: block;
    width: 25px;
    height: 32px;
    background: url(../images/hf/icon_bee.webp) no-repeat center center/contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }
  .menu--bottom {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 0;
  }
  .menu--bottom .nav {
    width: 1200px;
    height: 86px;
    background: #FFFFFF;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1215686275);
    border-radius: 100px;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  /* PC: hamburger/drawer 非表示 */
}
@media only screen and (min-width: 1280px) and (max-width: 1400px) and (min-width: 1280px) {
  .menu--bottom .nav {
    width: 96%;
    margin: 0 auto;
    padding: 0 20px;
    border-radius: 50px;
  }
}
@media only screen and (min-width: 1280px) {
  .menu--bottom .nav ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .menu--bottom .nav ul li {
    height: 46px;
  }
  .menu--bottom .nav ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.96px;
    line-height: 22px;
    color: #4F3B17;
    text-decoration: none;
    transition: color 0.2s, font-weight 0.2s;
    position: relative;
  }
  .menu--bottom .nav ul li a::before {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #F478A3;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.2s ease;
  }
  .menu--bottom .nav ul li a:hover {
    color: #F478A3;
  }
  .menu--bottom .nav ul li a:hover::before {
    opacity: 1;
  }
  .js-hamburger {
    display: none;
  }
  .drawer {
    display: none;
  }
}
/* ---- SMP ---- */
@media only screen and (max-width: 1279px) {
  .header {
    position: absolute;
    background: transparent;
  }
  .header--text {
    display: none;
  }
  .header--left {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 10px;
    left: 15px;
  }
  .header--left .logo {
    width: 100%;
    height: 100%;
  }
  .header--left .logo a {
    display: block;
    width: 100%;
    height: 100%;
  }
  .header--left .logo a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .header--right {
    display: none;
  }
  .js-hamburger {
    position: absolute;
    top: 5px;
    right: 5px;
    padding-top: 16px;
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    gap: 5px;
    background: #F478A3;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 8px;
    font-weight: 400;
    letter-spacing: 0.48px;
    font-family: Bpmf Huninn, sans-serif;
  }
  body.is-top-page.is-mv-passed .header {
    pointer-events: none;
  }
  body.is-top-page.is-mv-passed .header--left {
    display: none;
  }
  body.is-mv-passed .js-hamburger {
    position: fixed;
    pointer-events: auto;
    animation: hamburger-fixed-in 0.35s ease forwards;
  }
  @keyframes hamburger-fixed-in {
    0% {
      opacity: 0;
      transform: translateY(-10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .js-hamburger__icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 25px;
  }
  .js-hamburger__icon span {
    display: block;
    width: 25px;
    height: 1.5px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
  }
  /* ドロワー */
  .drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFEFF5;
    z-index: 300;
    overflow-y: auto;
    overflow-x: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .drawer * {
    box-sizing: border-box;
  }
  .drawer.is-open {
    opacity: 1;
    visibility: visible;
  }
  .drawer__inner {
    width: calc(100% - 24px);
    max-width: 350px;
    margin: 0 auto;
    padding-bottom: 60px;
  }
  .js-drawer-close {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    height: 55px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 4px;
    margin-bottom: 8px;
  }
  .js-drawer-close__icon {
    display: block;
    width: 25px;
    height: 14px;
    position: relative;
    flex-shrink: 0;
  }
  .js-drawer-close__icon span {
    display: block;
    width: 25px;
    height: 1.5px;
    border-radius: 2px;
    background: #F478A3;
    position: absolute;
    top: 50%;
    left: 0;
  }
  .js-drawer-close__icon span:nth-child(1) {
    transform: rotate(28deg);
  }
  .js-drawer-close__icon span:nth-child(2) {
    transform: rotate(-28deg);
  }
  .drawer__list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .drawer__list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 10px;
    height: 50px;
    background: #fff;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1.2px;
    color: #4F3B17;
    text-decoration: none;
  }
  .drawer__list li a::after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #F478A3;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 8'%3E%3Cpath d='M0 0 L6 4 L0 8 Z' fill='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 5px 7px;
    margin-left: auto;
    flex-shrink: 0;
  }
  .drawer__list li a img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    flex-shrink: 0;
  }
  .drawer__sub {
    list-style: none;
    margin: 0 0 12px;
    padding: 0;
    display: flex;
    justify-content: space-between;
    gap: 8px;
    width: 204px;
    margin: 25px auto;
  }
  .drawer__sub li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.12px;
    color: #4F3B17;
    text-decoration: none;
  }
  .drawer__sub li a::before {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #F478A3;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 8'%3E%3Cpath d='M0 0 L6 4 L0 8 Z' fill='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 5px 7px;
    flex-shrink: 0;
  }
  .drawer__tel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 300px;
    max-width: 100%;
    height: 60px;
    margin: 0 auto;
    gap: 23px;
    background: #fff;
    border: 2px solid #F478A3;
    border-radius: 50px;
    padding: 0 50px 0 11px;
    margin-bottom: 15px;
    text-decoration: none;
  }
  .drawer__tel-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #F478A3;
    flex-shrink: 0;
  }
  .drawer__tel-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
  }
  .drawer__tel-body {
    display: flex;
    flex-direction: column;
  }
  .drawer__tel-num {
    font-family: "Bpmf Huninn", sans-serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 1.1px;
    color: #F478A3;
    line-height: 22px;
  }
  .drawer__tel-time {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.8px;
    color: #F478A3;
    line-height: 13px;
  }
  .drawer__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 49px 0 11px;
    width: 300px;
    max-width: 100%;
    margin: 0 auto;
    gap: 16px;
    background: #F478A3;
    border-radius: 50px;
    height: 60px;
    text-decoration: none;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
  }
  .drawer__cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    flex-shrink: 0;
  }
  .drawer__cta-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
  }
}
/* ============================================
   FOOTER
   ============================================ */
.footer {
  width: 100%;
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
}

.footer * {
  box-sizing: border-box;
}

/* ---- PC ---- */
@media only screen and (min-width: 1280px) {
  /* footer--top: contact (left) + data-foot (right) on pink bg */
  .footer--top {
    background: #F478A3;
    display: flex;
    align-items: stretch;
    padding-bottom: 110px;
    position: relative;
    z-index: 0;
  }
  .footer--top__inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
  }
  /* ---- contact section ---- */
  .footer__contact {
    flex: 0 0 50%;
    display: flex;
    padding: 90px 0 200px 70px;
  }
  .footer__contact-inner {
    width: 100%;
  }
  .footer__contact-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 36px;
  }
  .footer__contact-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
  }
  .footer__contact-title {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 2.72px;
    color: #fff;
    margin: 0;
    line-height: 1.2;
  }
  .footer__contact-desc {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1.28px;
    color: #fff;
    margin: 0 0 20px;
    line-height: 1.8;
  }
  .footer__contact-tel {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 0 0 6px;
  }
  .footer__contact-tel-label {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.8px;
    color: #fff;
  }
  .footer__contact-num {
    font-family: "Bpmf Huninn", sans-serif;
    font-size: 35px;
    font-weight: 400;
    letter-spacing: 1.75px;
    color: #fff;
  }
  .footer__contact-hours {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1.28px;
    color: #fff;
    margin: 0 0 30px;
  }
  .footer__contact-address {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1.28px;
    color: #fff;
    margin: 0 0 15px;
  }
  .footer__contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 150px;
    height: 36px;
    padding: 0 0 3px 37px;
    background: #F478A3;
    border: 2px solid #fff;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.96px;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
    position: relative;
  }
  .footer__contact-btn::before {
    content: "";
    display: block;
    width: 23px;
    height: 23px;
    background: url(../images/hf/pin_white.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: 5px;
    left: 10px;
    transition: all 0.3s ease;
  }
  .footer__contact-btn:hover {
    background: #fff;
  }
  .footer__contact-btn:hover::before {
    background: url(../images/hf/pin_pink.png) no-repeat;
    background-size: contain;
  }
  .footer__contact-btn:hover {
    background: #fff;
    color: #F478A3;
  }
  /* ---- data-foot section ---- */
  .footer__data-foot {
    flex: 0 0 50%;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-top: -50px;
  }
  .footer__data-card-outer {
    position: relative;
    z-index: 0;
    flex: 1;
    max-width: 644px;
    padding: 0;
    margin-right: 20px;
  }
  .footer__data-card-outer::before {
    content: "";
    position: absolute;
    top: -5px;
    right: -10px;
    bottom: 0px;
    left: 0;
    z-index: -1;
    background: #FFB6CC;
    border-radius: 5px;
    transform: rotate(3deg);
    transform-origin: center;
    pointer-events: none;
  }
  .footer__data-card-outer::after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 0;
    width: 80px;
    height: 71px;
    background-image: url("../images/top/top_icon_18.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 10;
  }
  .footer__data-card {
    position: relative;
    z-index: 1;
    padding: 30px 30px 30px 60px;
    background: #fff;
    border: 1px solid #E8E8E8;
    border-top: 1px solid #E8E8E8;
    border-bottom: 1px solid #E8E8E8;
    border-radius: 5px;
  }
  .footer__data-card::before {
    content: "";
    position: absolute;
    top: 12px;
    bottom: 21px;
    left: 22px;
    width: 10px;
    background-image: radial-gradient(circle 5px, #EDEDED 99%, transparent 100%);
    background-size: 10px 35px;
    background-repeat: repeat-y;
    pointer-events: none;
    z-index: 10;
  }
  .footer__data-section {
    padding: 20px 0;
    border-bottom: 1px solid #E8E8E8;
  }
  .footer__data-section:first-child {
    border-top: 1px solid #E8E8E8;
  }
  .footer__data-head {
    display: flex;
    align-items: center;
    gap: 8px;
    float: left;
    min-height: 32px;
  }
  .footer__data-icon {
    width: 25px;
    height: 31px;
    object-fit: contain;
    flex-shrink: 0;
  }
  .footer__data-title {
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 1.36px;
    color: #4F3B17;
    margin: 0;
    line-height: 25px;
  }
  .footer__data-body {
    padding-left: 212px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.8px;
    color: #4F3B17;
    margin: 0;
    line-height: 26px;
  }
  .footer__data-body a {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.8px;
    color: #4F3B17;
  }
  .footer__data-illust {
    width: 50px;
    height: 44px;
    object-fit: contain;
    flex: 0 0 auto;
    margin-top: 232px;
  }
  /* ---- footer-bottom: map + nav stacked ---- */
  .footer-bottom {
    width: 100%;
    padding-bottom: 120px;
    background-color: #FFEFF5;
  }
  .footer__map-area {
    display: flex;
    flex-direction: column;
    background: #FFEFF5 0% 0% no-repeat padding-box;
    margin-top: -90px;
    z-index: 9999;
    position: relative;
  }
  .footer__map {
    width: 100%;
    max-width: 1280px;
    height: 457px;
    border-radius: 20px;
    margin: -90px auto 0;
  }
  .footer__map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 20px;
  }
  /* nav area: logo + 4 nav columns on FFEFF5 bg */
  .footer__nav-wrap {
    background: #FFEFF5;
    width: 100%;
    position: relative;
  }
  .footer__nav-wrap::before {
    content: "";
    display: block;
    width: 100%;
    height: 88px;
    background: url(../images/hf/footer-nami.png) no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
  }
  .footer__nav-area {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
  }
  .footer__nav-area:before {
    content: "";
    display: block;
    width: 432px;
    height: 100px;
    background: url(../images/top/train-cars.png) no-repeat;
    background-size: contain;
    position: absolute;
    bottom: -120px;
    right: 0;
  }
  .footer__logo {
    flex-shrink: 0;
    width: 130px;
    height: 130px;
    margin: -60px auto 50px;
    overflow: hidden;
    position: relative;
    z-index: 999999;
  }
  .footer__logo a {
    display: block;
  }
  .footer__logo img {
    width: 100%;
    height: auto;
    display: block;
  }
  .footer__nav {
    width: 100%;
    max-width: 1122px;
    margin: 0 auto;
  }
  .footer__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, max-content);
    justify-content: space-between;
    row-gap: 15px;
  }
  .footer__nav-list li:nth-child(-n+4) {
    grid-column: 1;
  }
  .footer__nav-list li:nth-child(1) {
    grid-row: 1;
  }
  .footer__nav-list li:nth-child(2) {
    grid-row: 2;
  }
  .footer__nav-list li:nth-child(3) {
    grid-row: 3;
  }
  .footer__nav-list li:nth-child(4) {
    grid-row: 4;
  }
  .footer__nav-list li:nth-child(n+5):nth-child(-n+7) {
    grid-column: 2;
  }
  .footer__nav-list li:nth-child(5) {
    grid-row: 1;
  }
  .footer__nav-list li:nth-child(6) {
    grid-row: 2;
  }
  .footer__nav-list li:nth-child(7) {
    grid-row: 3;
  }
  .footer__nav-list li:nth-child(n+8):nth-child(-n+10) {
    grid-column: 3;
  }
  .footer__nav-list li:nth-child(8) {
    grid-row: 1;
  }
  .footer__nav-list li:nth-child(9) {
    grid-row: 2;
  }
  .footer__nav-list li:nth-child(10) {
    grid-row: 3;
  }
  .footer__nav-list li:nth-child(n+11) {
    grid-column: 4;
  }
  .footer__nav-list li:nth-child(11) {
    grid-row: 1;
  }
  .footer__nav-list li:nth-child(12) {
    grid-row: 2;
  }
  .footer__nav-list li:nth-child(13) {
    grid-row: 3;
  }
  .footer__nav-list li a {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 1.12px;
    color: #4F3B17;
    text-decoration: none;
    transition: all 0.2s ease;
  }
  .footer__nav-list li a:hover {
    color: #F478A3;
    font-weight: 700;
    text-decoration: underline;
  }
  .footer__nav-illust {
    flex-shrink: 0;
    width: 216px;
    height: 50px;
    object-fit: contain;
    align-self: flex-end;
  }
  .footer__bottom {
    text-align: center;
    height: 100px;
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding-left: 100px;
    background: #fff;
  }
  .footer__copy {
    font-family: "Bpmf Huninn", sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1.28px;
    color: #B4B4B4;
    margin: 0;
    display: block;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
  }
  /* PC: SMP固定バー非表示 */
  .footer__fixed {
    display: none;
  }
}
/* ---- SMP ---- */
@media only screen and (max-width: 1279px) {
  /* footer--top: contact + data-foot stacked on pink bg */
  .footer--top {
    background: #F478A3;
    display: flex;
    flex-direction: column;
  }
  .footer__contact {
    padding: 45px 0 45px;
    width: 307px;
    margin: 0 auto;
  }
  .footer__contact-inner {
    width: 100%;
  }
  .footer__contact-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }
  .footer__contact-icon {
    width: 35px;
    height: 35px;
    object-fit: contain;
    flex-shrink: 0;
  }
  .footer__contact-title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1.92px;
    color: #fff;
    margin: 0;
    line-height: 1.2;
  }
  .footer__contact-desc {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1.2px;
    color: #fff;
    margin: 0 0 25px;
    line-height: 23.5px;
  }
  .footer__contact-tel {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin: 0 0 6px;
  }
  .footer__contact-tel-label {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.78px;
    color: #fff;
  }
  .footer__contact-num {
    font-family: "Bpmf Huninn", sans-serif;
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: #fff;
  }
  .footer__contact-hours {
    font-size: 13px;
    line-height: 13px;
    font-weight: 500;
    letter-spacing: 1.04px;
    color: #fff;
    margin: 0 0 20px;
  }
  .footer__contact-address {
    font-size: 13px;
    line-height: 13px;
    font-weight: 500;
    letter-spacing: 1.04px;
    color: #fff;
    margin: 0 0 12.5px;
  }
  .footer__contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: 125px;
    height: 30px;
    background: #F478A3;
    border: 1px solid #fff;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    padding-left: 30px;
    letter-spacing: 0.78px;
    color: #fff;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
  }
  .footer__contact-btn::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background: url(../images/hf/pin_white.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: 7px;
    left: 10px;
  }
  /* ---- data-foot section ---- */
  .footer__data-foot {
    display: flex;
    flex-direction: column;
    padding: 0 19px 130px;
  }
  .footer__data-card-outer {
    position: relative;
    z-index: 0;
    padding: 0;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .footer__data-card-outer::before {
    content: "";
    position: absolute;
    top: -4px;
    right: -8px;
    bottom: 0px;
    left: 0px;
    z-index: -1;
    background: #FFB6CC;
    border-radius: 5px;
    transform: rotate(2deg);
    transform-origin: center;
    pointer-events: none;
  }
  .footer__data-card-outer::after {
    content: "";
    position: absolute;
    right: 9px;
    bottom: 0;
    width: 55px;
    height: 49px;
    background-image: url("../images/top/top_icon_18.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 10;
  }
  .footer__data-card {
    position: relative;
    z-index: 1;
    padding: 26px 30px 26px 36px;
    background: #fff;
    border: 1px solid #E8E8E8;
    border-top: 1px solid #E8E8E8;
    border-bottom: 1px solid #E8E8E8;
    border-radius: 5px;
  }
  .footer__data-card::before {
    content: "";
    position: absolute;
    background-repeat: repeat-y;
    pointer-events: none;
    z-index: 10;
    background-image: radial-gradient(circle 5px, #EDEDED 99%, transparent 100%);
    top: 15px;
    bottom: 11px;
    left: 15px;
    width: 15px;
    background-size: 11px 25px;
  }
  .footer__data-section {
    padding: 18px 0 14px 15px;
    border-bottom: 1px solid #E8E8E8;
  }
  .footer__data-section:nth-child(1) {
    border-top: 1px solid #E8E8E8;
  }
  .footer__data-head {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
  }
  .footer__data-icon {
    width: 20px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
  }
  .footer__data-title {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.12px;
    color: #4F3B17;
    margin: 0;
    line-height: 21px;
  }
  .footer__data-body {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.65px;
    color: #4F3B17;
    margin: 0;
    line-height: 24px;
  }
  .footer__data-body a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.65px;
    color: #4F3B17;
  }
  .footer__data-illust {
    display: block;
    width: 50px;
    height: 44px;
    object-fit: contain;
    margin-top: 12px;
    margin-left: auto;
  }
  /* ---- footer-bottom ---- */
  .footer-bottom {
    width: 100%;
  }
  .footer__map-area {
    display: flex;
    flex-direction: column;
    width: 370px;
    margin: -100px auto 0;
    border-radius: 5px;
    z-index: 10;
    position: relative;
  }
  .footer__map {
    height: 211px;
    border-radius: 5px;
  }
  .footer__map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 5px;
  }
  /* nav area: FFEFF5 bg, 2-column nav with pink arrows */
  .footer__nav-wrap {
    background: #FFEFF5;
    padding-top: 118px;
    margin-top: -110px;
    position: relative;
  }
  .footer__nav-wrap::before {
    content: "";
    display: block;
    width: 100%;
    height: 44px;
    background: url(../images/hf/footer-nami_smp.png) no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 66px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }
  .footer__logo {
    width: 90px;
    height: 90px;
    overflow: hidden;
    margin: -38px auto 45px;
    position: relative;
    z-index: 15;
  }
  .footer__logo img {
    width: 100%;
    height: 100%;
  }
  .footer__nav {
    width: 360px;
    margin: 0 auto;
    padding-bottom: 100px;
    position: relative;
  }
  .footer__nav:before {
    content: "";
    display: block;
    width: 260px;
    height: 60px;
    background: url(../images/top/train-cars.png) no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .footer__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 0;
    row-gap: 20px;
  }
  .footer__nav-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.04px;
    color: #4F3B17;
    text-decoration: none;
  }
  .footer__nav-list li a .sp {
    display: block;
  }
  .footer__nav-list li a::before {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #F478A3;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 8'%3E%3Cpath d='M0 0 L6 4 L0 8 Z' fill='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 5px 7px;
    flex-shrink: 0;
  }
  .footer__nav-illust {
    display: none;
  }
  .footer__bottom {
    padding: 12px 20px;
    text-align: center;
    padding-bottom: 45px;
    background: #fff;
  }
  .footer__copy {
    font-family: "Bpmf Huninn", sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.88px;
    color: #B4B4B4;
    text-align: center;
    margin: 0;
  }
  /* SMP固定バー */
  .footer__fixed {
    position: fixed;
    bottom: 0;
    left: 1%;
    width: 98%;
    margin: 0 auto;
    height: 40px;
    display: flex;
    gap: 5px;
    align-items: stretch;
    z-index: 150;
    transform: translateY(100%);
    transition: transform 0.4s ease;
  }
}
@media only screen and (max-width: 1279px) and (max-width: 399px) {
  .footer__fixed {
    gap: 1px;
  }
}
@media only screen and (max-width: 1279px) {
  .footer__fixed.is-visible {
    transform: translateY(0);
  }
  .footer__fixed-tel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 5;
    padding: 4px 8px 4px 6px;
    background: #F478A3;
    border-radius: 5px 5px 0 0;
    text-decoration: none;
    border-right: 1px solid rgba(255, 255, 255, 0.4);
  }
}
@media only screen and (max-width: 1279px) and (max-width: 399px) {
  .footer__fixed-tel {
    padding: 4px 0px 4px 6px;
  }
}
@media only screen and (max-width: 1279px) {
  .footer__fixed-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 5;
    padding: 4px 8px;
    background: #F478A3;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.72px;
    color: #fff;
    border-radius: 5px 5px 0 0;
    text-decoration: none;
    border-right: 1px solid rgba(255, 255, 255, 0.4);
  }
}
@media only screen and (max-width: 1279px) and (max-width: 399px) {
  .footer__fixed-cta {
    font-size: 11px;
    padding: 4px 4px;
    flex: none;
  }
}
@media only screen and (max-width: 1279px) {
  .footer__fixed-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #FD8CAE;
    flex-shrink: 0;
  }
  .footer__fixed-icon img {
    width: 16px;
    height: 16px;
    object-fit: contain;
  }
  .footer__fixed-tel-body {
    display: flex;
    flex-direction: column;
  }
  .footer__fixed-num {
    font-family: "Bpmf Huninn", sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.7px;
    color: #fff;
    line-height: 1.1;
  }
  .footer__fixed-time {
    font-size: 6.5px;
    font-weight: 500;
    letter-spacing: 0.36px;
    color: #fff;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 1279px) and (max-width: 399px) {
  .footer__fixed-time {
    letter-spacing: 0px;
  }
}
@media only screen and (max-width: 1279px) {
  .footer__fixed-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 40px;
    background: #F478A3;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.7px;
    color: #fff;
    border-radius: 5px 5px 0 0;
    text-decoration: none;
    gap: 2px;
  }
  .footer__fixed-top::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 8px solid #fff;
  }
}
#wp-chat-floating {
  display: none;
}
