@charset "UTF-8";

/* === Common === */
:root {
    /* --- z-index --- */
    --z-fixed: 120;
    --z-hamburger: 250;
    --z-menu: 150;
    --z-slider: 100;
    --z-modal: 300;
    --z-overlay: 200;
    --z-default: 1;
    --z-back: -1;

    /* --- spacing --- */
    --spacing-xs: 20px;
    --spacing-sm: 40px;
    --spacing-md: 60px;
    --spacing-lg: 80px;
    --spacing-xl: 100px;
    --spacing-section-sp: 120px;
    --spacing-section-pc: 160px;

    /* --- border-radius --- */
    --border-radius-sm: 5px;
    --border-radius-btn: 6px;
    --border-radius-circle: 50%;

    /* --- font-size/primitive --- */
    --font-size-10: 0.625rem;/* 10px */
    --font-size-12: 0.75rem;/* 12px */
    --font-size-13: 0.8125rem;/* 13px */
    --font-size-14: 0.875rem;/* 14px */
    --font-size-15: 0.9375rem;/* 15px */
    --font-size-16: 1rem;/* 16px */
    --font-size-18: 1.125rem;/* 18px */
    --font-size-20: 1.25rem;/* 20px */
    --font-size-22: 1.375rem;/* 22px */
    --font-size-24: 1.5rem;/* 24px */
    --font-size-28: 1.75rem;/* 28px */
    --font-size-30: 1.875rem;/* 30px */
    --font-size-31: 1.9375rem;/* 31px */
    --font-size-34: 2.125rem;/* 34px */
    --font-size-36: 2.25rem;/* 36px */
    --font-size-40: 2.5rem;/* 40px */
    --font-size-60: 3.75rem;/* 60px */

    /* --- font-size/semantic --- */
    --font-size-body-sp: var(--font-size-16);
    --font-size-heading-en-sp: var(--font-size-18);
    --font-size-heading-jp-sp: var(--font-size-28);

    --font-size-body-pc: var(--font-size-16);
    --font-size-heading-en-pc: var(--font-size-24);
    --font-size-heading-jp-pc: var(--font-size-40);

    /* --- font-weight/primitive --- */
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* --- font-weight/semantic --- */
    --font-weight-base: var(--font-weight-regular);
    --font-weight-heading-en: var(--font-weight-bold);
    --font-weight-heading-jp: var(--font-weight-bold);
    --font-weight-sub-title: var(--font-weight-bold);
    --font-weight-btn: var(--font-weight-bold);

    /* --- line-height --- */
    --line-height-base: 2.3;
    --line-height-heading: 1.35;
    --line-height-btn-sp: 77px;
    --line-height-btn-pc: 100px;

    /* --- font-family --- */
    --font-family-base-jp: "Noto Sans JP", sans-serif;
    --font-family-heading-jp: "Noto Sans JP", serif;
    --font-family-base-en: "Noto Sans", sans-serif;
    --font-family-heading-en: "Cinzel", serif;

    /* --- color/primitive --- */
    --blue-800: #01878E;
    --blue-500: #0ABAB5;
    --blue-15: rgba(153, 211, 195, 0.15);
    --blue-10: rgba(153, 211, 195, 0.1);
    --black:#000B0F;
    --black-70:rgba(0, 11, 15, 0.7);
    --gray-900: #202020;
    --gray-800: #767676;
    --gray-700: #5B5252;
    --gray-600: #ADADAD;
    --gray-400: #D9D9D9;
    --gray-300: #DDDDDD;
    --gray-200: #E0E0E0;
    --gray-100: #EBEBEB;
    --gray-4: rgba(91, 82, 82, 0.04);
    --white: #FFFFFF;
    --white-90: rgba(255, 255, 255, 0.9);
    --red-900: #A10000;
    --red-500: #F75E5E;
    
    /* --- color/semantic --- */
    --color-primary: var(--blue-500);
    --color-text: var(--gray-700);
    --color-btn: var(--blue-800);

    /* --- break point --- */
    --break-point-sp: 768px;
    --break-point-pc: 1024px;
}

body {
    font-size: var(--font-size-body-sp);
    font-weight: var(--font-weight-base);
    line-height: 1.8;
    font-family: var(--font-family-base-jp), var(--font-family-base-en);
    font-style: normal;
    color: var(--color-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.is-locked-menu,
body.is-locked-modal {
    overflow: hidden;
}

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

main {
  padding-top: 100px;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4%;
}

.section {
    margin-top: 50px;
}

.section__heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.section__heading-en {
    font-size: var(--font-size-heading-en-sp);
    font-weight: var(--font-weight-heading-en);
    line-height: var(--line-height-heading);
    font-family: var(--font-family-heading-en);
    color: var(--color-primary);
}

.section__heading-jp {
    font-size: var(--font-size-heading-jp-sp);
    font-weight: var(--font-weight-heading-jp);
    line-height: var(--line-height-heading);
    font-family: var(--font-family-heading-jp);
}

.button--primary {
    display: block;
    width: 300px;
    background-color: #0abab5;
    border: solid 1px var(--color-btn);
    border-radius: var(--border-radius-btn);
    font-size: var(--font-size-20);
    font-weight: var(--font-weight-btn);
    line-height: var(--line-height-btn-sp);
    color: var(--white);
    text-align: center;
    transition: background-color 0.4s ease ,color 0.4s ease;
}

.button--primary:hover {
    background-color: var(--white);
    color: var(--color-btn);
}

.contact__tel {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact__number {
  color: #f73838;
    font-size: var(--font-size-24);
    font-weight: var(--font-weight-bold);
    line-height: 1;
}

.contact__meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 15px;
    font-size: var(--font-size-14);
    font-weight: var(--font-weight-bold);
    line-height: 1;
    text-align: right;
}

.color-red {
  color: var(--red-500);
}

/* Common tablet 768px~ */
@media (min-width: 768px){
    body {
        font-size: var(--font-size-body-pc);
    }

    .section {
        margin-top: 60px;
    }

    .section__heading {
        gap: 20px;
    }

    .section__heading-en {
        font-size: var(--font-size-heading-en-pc);
    }

    .section__heading-jp {
        font-size: var(--font-size-heading-jp-pc);
    }

    .button--primary {
        width: 350px;
        font-size: var(--font-size-24);
        line-height: var(--line-height-btn-pc);
    }
}

/* Common pc 1240px~ */
@media (min-width: 1240px){
    .container{
        padding: 0 calc(100px + 4%) 0 4%;
    }    
}

/* === Header & Navigation === */
.header {
    height: 100px;
    border-bottom: solid 1px var(--gray-300);
    position: fixed;
    width: 100%;
    z-index: 10;
    background: #fff;
}

.header__title-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    height: 88px;
}

.header__brand {
    font-size: 11px;
    font-weight: var(--font-weight-bold);
    line-height: 1.6;
    font-family: var(--font-family-heading-jp);
}

.header__logo {
    width: 118px;
}
/* --- PC global navigation --- */
.header__global-nav {
    display: none;
}

/* --- SP bottom navigation --- */
.bottom-nav {
    position: fixed;
    bottom: 0;
    z-index: var(--z-overlay);
    display: flex;
    width: 100%;
    height: 73px;
}

.bottom-nav__list {
    flex: 0 0 calc(100% - 77px);
    display: flex;
    height: 100%;
    background-color: var(--color-primary);
}

.bottom-nav__item {
    flex: 1;
    margin: 14px 0 10px;
}

.bottom-nav__item + .bottom-nav__item {
    border-left: solid 1px #FFFFFF;
}

.bottom-nav__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 100%;
    transition: transform 0.4s ease;
}

.bottom-nav__link:hover {
    transform: scale(1.08);
}

.bottom-nav__icon {
    width: auto;
    height: 24px;
}

.bottom-nav__caption {
    font-size: var(--font-size-12);
    font-weight: var(--font-weight-bold);
    line-height: 1.6;
    color: var(--white);
}

.bottom-nav__button {
    width: 77px;
    height: 100%;
    padding-top: 6px;
    border: solid 1px var(--gray-100);
    border-right: none;
    background-color: var(--white);
}

/* --- Hamburger button --- */
.hamburger-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80px;
    background-color: var(--white);
    transition: color 0.4s ease, background-color 0.4s ease;
}

.hamburger-button__bars {
    position: relative;
    width: 52px;
    height: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-button__bar {
    width: 52px;
    height: 1px;
    background-color: var(--gray-700);
}

.hamburger-button__caption {
    margin-top: 6px;
    font-size: var(--font-size-12);
    font-weight: var(--font-weight-bold);
    line-height: 1.6;
}

.hamburger-button__caption::before {
    content: "MENU";
}

.hamburger-button:hover {
    background: var(--color-btn);
}

.hamburger-button:hover .hamburger-button__bar {
    background: var(--white);
}

.hamburger-button:hover .hamburger-button__caption {
    color: var(--white);
}

/* active状態でhamburger-buttonをCLOSEにする */
.hamburger-button.is-active {
    position: relative;
    background-color: var(--white);
}

.hamburger-button.is-active .hamburger-button__caption::before {
    content: "CLOSE";
}

.hamburger-button.is-active .hamburger-button__bar {
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: var(--gray-700);
}

.hamburger-button.is-active .hamburger-button__bar:nth-child(1) {
    transform: translate(-50%, -50%) rotate(30deg);
}

.hamburger-button.is-active .hamburger-button__bar:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-30deg);
}

.hamburger-button.is-active .hamburger-button__bar + .hamburger-button__bar {
    margin-top: 0;
}

.hamburger-button.is-active .hamburger-button__caption {
    position: relative;
}

.hamburger-button.is-active:hover {
    background: var(--color-btn);
}

.hamburger-button.is-active:hover .hamburger-button__bar {
    background: var(--white);
}

.hamburger-button.is-active:hover .hamburger-button__caption {
    color: var(--white);
}

/* --- PC side navigation --- */
.hamburger-button--fixed {
    display: none;
}

.side-nav {
    display: none;
}

/* --- Hamburger Menu --- */
.hamburger__content {
    position: fixed;
    inset: 0;
    z-index: var(--z-menu);
    overflow: hidden;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 4% 150px;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.hamburger__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 15px 0;
}

.hamburger__brand {
    font-size: var(--font-size-12);
    font-weight: var(--font-weight-bold);
    line-height: 1.6;
    font-family: var(--font-family-heading-jp);
}

.hamburger__logo {
    width: 118px;
}

.hamburger-nav {
    width: 100%;
    max-height: 100vh;
    -webkit-overflow-scrolling: touch;
}

.hamburger-nav__list {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.hamburger-nav__item {
    width: 100%;
    padding: 18px 0 14px;
    border-bottom: solid 1px var(--gray-400);
}

.hamburger-nav__tab {
    display: block;
    width: 100%;
    font-size: var(--font-size-20);
    font-weight: var(--font-weight-bold);
    font-family: var(--font-family-heading-jp);
    line-height: 1.5;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: color 0.4s ease;
}

.hamburger-nav__tab:hover {
    color: var(--color-btn);
}

.hamburger-nav__link {
    display: block;
    width: 100%;
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    font-family: var(--font-family-heading-jp);
    line-height: 1.5;
    letter-spacing: 0.05em;
    transition: color 0.4s ease;
}

.hamburger-nav__link span {
  font-size: 14px;
  color: var(--color-primary);
  margin-left: 10px;
}

.hamburger-nav__link:hover {
    color: var(--color-btn);
}

.hamburger-nav__child-link {
    display: block;
    width: 100%;
    margin: 10px 0 0 20px;
    font-size: var(--font-size-15);
    font-weight: var(--font-weight-bold);
    font-family: var(--font-family-heading-jp);
    line-height: 1.5;
    letter-spacing: 0.05em;
    transition: color 0.4s ease;
}

.hamburger-nav__child-link:hover {
    color: var(--color-btn);
}

.hamburger-nav__child-link::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 1px;
    margin: 0 5px 5px 0;
    background-color: var(--gray-700);
}

.hamburger-nav__sub-list {
    display: flex;
    gap: 40px;
    margin-top: var(--spacing-xs);
}

.hamburger-nav__sub-item--pc {
    display: none;
}

.hamburger-nav__sub-link {
    display: block;
    width: 100%;
    font-size: var(--font-size-16);
    font-weight: var(--font-weight-bold);
    font-family: var(--font-family-heading-jp);
    line-height: 1.5;
    letter-spacing: 0.05em;
    transition: color 0.4s ease;
}

.hamburger-nav__sub-link:hover {
    color: var(--color-btn);
}

/* Hamburger Menu が開いた状態 */
.hamburger__content.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Header & Navigation pc 1024px~ */
@media (min-width: 1024px){
    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 calc(100px + 4%) 0 4%;
    }

    .header__title-link {
        align-items: start;
        height: 110px;
    }

    .header__logo {
        width: 135px;
    }
    /* --- PC global navigation --- */
    .header__global-nav {
        display: flex;
        gap: 25px;
    }

    .global-nav__list {
        display: flex;
        align-items: center;
    }

    .global-nav__tab {
        display: block;
        height: 110px;
        font-size: var(--font-size-15);
        font-weight: var(--font-weight-bold);
        line-height: 110px;
        cursor: pointer;
        transition: color 0.4s ease;
    }

    .global-nav__tab:hover {
        color: var(--color-btn);
    }

    .global-nav__link {
        display: block;
        font-size: var(--font-size-15);
        font-weight: var(--font-weight-bold);
        transition: color 0.4s ease;
        text-align: center;
        border-left: solid 1px var(--gray-200);
        padding: 0 13px;
    }
    .global-nav__link span {
      display: block;
      font-size: 12px;
      color: var(--color-primary);
    }

    .global-nav__link:hover {
        color: var(--color-btn);
    }

    .global-nav__item--has-child {
        position: relative;
    }

    .global-nav__child {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: var(--z-default);
        width: 230px;
        padding: 10px;
        background-color: var(--white);
        opacity: 0;
        transform: translateY(10px);
        pointer-events: none;
        transition: opacity 0.4s ease, transform 0.4s ease;
        background-color: #f2f2f2;
    }

    .global-nav__child-item + .global-nav__child-item {
        border-top: solid 1px var(--gray-200);
    }

    .global-nav__child-link {
        display: block;
        height: 60px;
        width: 100%;
        margin: 0 auto;
        font-size: var(--font-size-15);
        font-weight: var(--font-weight-bold);
        line-height: 60px;
        transition: color 0.4s ease;
    }

    .global-nav__child-link:hover {
        color: var(--color-btn);
    }

    .contact--primary {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* 表示 */
    .global-nav__item--has-child:hover .global-nav__child {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
}

/* Common 1240px~ */
@media (min-width: 1240px){    
    /* --- SP bottom navigation --- */
    .bottom-nav {
        display: none;
    }

    /* --- PC side navigation --- */
    .side-nav {
        position: fixed;
        top: 100px;
        right: 0;
        z-index: var(--z-fixed);
        display: flex;
        flex-direction: column;
        width: 100px;
        height: 100%;
        background-color: var(--white);
        border-left: solid 1px var(--gray-200);
    }

    .side-nav__link {
        display: flex;
        justify-content: center;
        border-bottom: solid 1px var(--gray-200);
        padding: 30px 0;
    }

    .side-nav__label {
        font-size: var(--font-size-18);
        font-weight: var(--font-weight-bold);
        -webkit-writing-mode: vertical-rl; /* Safari用 */
        writing-mode: vertical-rl;
        letter-spacing: 0.8em;
    }

    .side-nav__button--line {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 30px 0;
        border-bottom: solid 1px var(--gray-200);
    }

    .side-nav__icon {
        width: 40px;
        height: 40px;
    }

    .side-nav__caption {
        font-size: var(--font-size-10);
        font-weight: var(--font-weight-bold);
        line-height: 3.7;
    }

    .side-nav__button,
    .side-nav__link {
        transition: color 0.4s ease, background-color 0.4s ease;
    }

    .side-nav__button:hover,
    .side-nav__link:hover {
        background: var(--color-btn);
    }

    .side-nav__button:hover .side-nav__caption,
    .side-nav__link:hover .side-nav__label {
        color: var(--white);
    }

    /* --- Hamburger button --- */
    .hamburger-button {
        height: 100px;
        border-bottom: solid 1px var(--gray-200);
    }
    
    .hamburger-button--fixed {
        position: fixed;
        top: 0;
        right: 0;
        z-index: var(--z-hamburger);
        display: flex;
        width: 100px;
        border-left: solid 1px var(--gray-200);
    }

    .hamburger-button--fixed.is-active {
        position: fixed;
        border: none;
    }

    /* --- Hamburger Menu --- */
    .hamburger__content {
        padding: 160px 20% 0 11%;
    }

    .hamburger__title {
        display: none;
    }

    .hamburger-nav__list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 40px 0;
        width: 100%;
    }

    .hamburger-nav__item {
        border-bottom: none;
    }

    .hamburger-nav__link {
        font-size: var(--font-size-22);
        text-align: center;
    }
    .hamburger-nav__link span {
      display: block;
      font-size: 13px;
      color: var(--color-primary);
      margin-left: 0;
    }

    .hamburger-nav__child-link {
        font-size: var(--font-size-18);
    }

    .hamburger-nav__child-link::before {
        margin: 0 5px 5px 15px;
    }

    .hamburger-nav__sub-list {
        margin-top: 0;
    }

    .hamburger-nav__sub-item--pc {
        display: block;
        padding: 18px 0 14px;
    }

    .hamburger-nav__sub-item--sp {
        display: none;
    }

    .hamburger-nav__sub-link {
        font-size: var(--font-size-16);
        font-weight: var(--font-weight-bold);
        font-family: var(--font-family-heading-jp);
        line-height: 1.5;
        letter-spacing: 0.05em;
    }

    /* Hamburger Menu が開いた状態 */
    .hamburger__content.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

/* === Footer === */
.footer {
    padding-bottom: var(--spacing-lg);
    background-color: var(--black);
    color: var(--white);
}

.footer__title {
    height: 130px;
}

.footer__title-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    height: 100%;
}

.footer__brand {
    font-size: var(--font-size-12);
    font-weight: var(--font-weight-bold);
    line-height: 1.6;
    font-family: var(--font-family-heading-jp);
}

.footer__logo {
    width: 118px;
}

.footer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) 4%;
}

.contact__tel--footer .contact__icon path {
    fill: var(--white);
}

.site-map {
    width: 100%;
    margin-top: var(--spacing-sm);
}

.site-map__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(149px, 1fr));
    gap: var(--spacing-xs);
}

.site-map__tab {
    display: block;
    padding-bottom: 10px;
    border-bottom: solid 1px var(--white);
    font-size: var(--font-size-14);
    font-weight: var(--font-weight-bold);
    line-height: 1;
}

.site-map__link {
    display: block;
    padding-bottom: 10px;
    border-bottom: solid 1px var(--white);
    font-size: var(--font-size-14);
    font-weight: var(--font-weight-bold);
    line-height: 1;
}

.site-map__child-link {
    font-size: var(--font-size-13);
    font-weight: var(--font-weight-bold);
}

.site-map__child-link::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 1px;
    margin: 0 5px 5px 0;
    background-color: var(--white);
}

.site-map__sub-list {
    display: flex;
    gap: 40px;
    margin-top: var(--spacing-sm);
}

.site-map__sub-link {
    font-size: var(--font-size-12);
    font-weight: var(--font-weight-bold);
}

.footer__bottom {
    padding: var(--spacing-xs) 0 0;
    border-top: solid 1px var(--white);
}

.footer__bottom p {
  font-size: 13px;
  margin-bottom: 20px;
}

.copy {
  display: flex;
  flex-direction: column;
}

@media (min-width: 767px){
  .copy {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__bottom-link {
    font-size: var(--font-size-12);
    font-weight: var(--font-weight-bold);
}

.footer__copyright {
    font-size: 13px;
    font-weight: var(--font-weight-bold);
}

/* Footer pc 1400px~ */
@media (min-width: 1400px){
    .footer {
        position: relative;
        margin-top: var(--spacing-section-pc);
        padding: 0 calc(100px + 4%) var(--spacing-xl) 4%;
    }

    .container--footer {
        padding: 0 4%;
    }

    .footer__title {
        height: 160px;
    }

    .footer__content {
        display: flex;
        flex-direction: row-reverse;
        align-items: start;
        justify-content: space-between;
        gap: var(--spacing-xs);
        padding: var(--spacing-xs) 20px var(--spacing-sm);
        border-top: solid 1px var(--white);
    }

    .contact--footer {
        margin-top: var(--spacing-sm);
    }

    .site-map {
        max-width: 830px;
        margin-top: var(--spacing-sm);
    }

    .site-map__list {
        grid-template-columns: repeat(auto-fit, minmax(149px, 1fr));
        gap: var(--spacing-xs);
    }

    .site-map__tab {
        border-bottom: 0;
    }

    .site-map__link {
        border-bottom: 0;
    }

    .footer__bottom {
        padding: var(--spacing-xs) 20px 0;
    }
    .copy {
      padding: 0 20px;
    }
}

/* 下層ページ共通 */
/* === Subpage Header === */
.subpage-header__title {
    display: block;
    width: 100%;
    padding: 50px 20px;
    color: #fff;
    background-color: var(--color-primary);
    font-size: var(--font-size-heading-jp-sp);
    font-weight: var(--font-weight-heading-jp);
    font-family: var(--font-family-heading-jp);
    line-height: 1.6;
    text-align: center;
}

.breadcrumbs {
  font-size: 14px;
    margin: 0 4%;
}

/*.breadcrumbs__list {
    display: flex;
    flex-direction: row;
}*/

.breadcrumbs__item {
  display: inline-block;
}

.breadcrumbs__link {
    border-bottom: solid 1px var(--gray-700);
    transition: color 0.4s ease, border 0.4s ease;
}

.breadcrumbs__link:hover {
    border-bottom: solid 1px var(--color-btn);
    color: var(--color-btn);
}

.breadcrumbs__item:not(:first-child)::before {
    content: "/";
    margin: 0 5px;
}

/* Subpage Header pc 1024px~ */
@media (min-width: 1024px){
    .subpage-header__title {
        padding: 115px 100px 115px 0;
        font-size: var(--font-size-heading-jp-pc);
    }
}

/* ===    Scroll Animation === */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.is-show {
    opacity: 1;
    transform: translateY(0);
}

.dli-caret-circle-fill-right {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  position: relative;
  width: 0.8em;
  height: 0.8em;
  border: 0.075em solid currentColor;
  background: currentColor;
  border-radius: 50%;
  box-sizing: content-box;
}

.dli-caret-circle-fill-right::before {
  content: '';
  color: #fff;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.18em 0.31177em;
  border-left-color: currentColor;
  border-right: 0;
  transform: translateX(15%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.sitemap {
    margin-top: 4rem;
}

.sitemap > ul {
   display: flex;
   gap: 60px;
   flex-wrap: wrap;
}

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

@media (max-width: 767px){
    .sitemap > ul {
        flex-direction: column;
        gap: 20px;
    }
    .sitemap > ul > li {
        border-bottom: 1px solid #d7d7d7;
    }
    
}

.business-calendar-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 40px 20px 0;
}

.business-calendar h3 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 18px;
}

.business-calendar table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.business-calendar th,
.business-calendar td {
  border-top: 1px solid #6f92b5;
  padding: 8px;
  font-size: 14px;
}

.business-calendar th {
    color: #fff;
    background-color: var(--color-primary);
    text-align: center;
}

.business-calendar th:first-child,
.business-calendar .is-sunday {
  /*color: #f73838;*/
}

.business-calendar th:last-child,
.business-calendar .is-saturday {
  /*color: #3366cc;*/
}

.business-calendar td.is-closed {
}

.business-calendar td.is-closed span {
  display: inline-block;
  color: #fff;
  background: #cf1919;
  border-radius: 50%;
  width: 23px;
  height: 23px;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 768px) {
  .business-calendar-wrap {
    grid-template-columns: 1fr;
  }
}

.business-cal {
    margin-top: 60px;
    border-top: solid 1px var(--gray-200);
    border-bottom: solid 1px var(--gray-200);
}

.business-cal .wrap {
  max-width: 800px;
  margin: 0 auto 0;
}

.note{
  margin-top: 20px;
  font-size: 14px;
  color: #cf1919;
  margin-bottom: 20px;
}

.note .event00 {
  background: #f5dede;
}