/* ---------------------------------------------
    header
--------------------------------------------- */
.header {
    left: 0;
    overflow: visible; /* ロゴのはみ出しを許可 */
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
}

.header__inner {
    align-items: center;
    display: flex;
    gap: clamp(12px, 1.5vw, 24px);
    height: 80px;
    justify-content: space-between;
    margin: 0 auto;
    margin-top: 16px;
    padding: 0 clamp(16px, 2.5vw, 36px);
}

.header__logo {
    align-self: flex-start;
    flex-shrink: 0;
}

.header__logo img {
    height: auto;
    width: clamp(140px, 14vw, 180px);
}

.header__main {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.header__nav {
    /* flex: 1; */
}

.header__navList {
    align-items: center;
    display: flex;
    gap: clamp(12px, 2vw, 32px);
    justify-content: space-around;
    list-style: none;
}

.header__navList a {
    color: var(--color-black);
    font-size: calc(var(--font-size-sm) * 1px);
    font-weight: var(--font-weight-medium);
    line-height: 24px;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.header__navList a:hover {
    color: var(--color-blue);
}

.header__cta {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    gap: 6px;
}

.header__tel {
    width: max-content;
}

.header__tel a {
    align-items: flex-end;
    justify-content: end;
    border-bottom: 2px solid transparent;
    color: var(--color-black);
    display: flex;
    gap: 8px;
}

.header__tel a:hover {
    border-bottom-color: var(--color-black);
}

.header__telIcon {
    color: var(--color-blue);
    width: 14px;
    height: 24px;
    flex-shrink: 0;
}

.header__telNumber {
    font-size: 20px;
    font-weight: 500;
}

.header__buttons {
    display: flex;
    gap: 10px;
}

.header__buttonLine,
.header__buttonWeb {
    align-items: center;
    border-radius: 100vw;
    color: var(--color-white);
    display: flex;
    font-size: 15px;
    font-weight: 500;
    gap: 6px;
    line-height: 150%;
    padding: 8px clamp(10px, 1.2vw, 18px);
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.header__buttonLine:hover,
.header__buttonWeb:hover {
    opacity: 0.85;
}

.header__buttonLine {
    background: var(--color-green);
}

.header__buttonWeb {
    background: var(--color-orange);
}

.header__buttonLine span,
.header__buttonWeb span {
    font-size: 13px;
}

.header__buttonLine img,
.header__buttonWeb img {
    flex-shrink: 0;
    height: auto;
    width: 20px;
}

.header__hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: none;
    flex-direction: column;
    gap: 6px;
    height: 40px;
    justify-content: center;
    padding: 8px;
    width: 40px;
}

.header__hamburger span {
    background: var(--color-black);
    border-radius: 2px;
    display: block;
    height: 2px;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
    width: 24px;
}

.header__hamburger.is-open span:nth-of-type(1) {
    transform: translateY(8px) rotate(45deg);
}

.header__hamburger.is-open span:nth-of-type(2) {
    opacity: 0;
}

.header__hamburger.is-open span:nth-of-type(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.header__drawer {
    background: var(--color-orange-100);
    inset: 0;
    display: flex;
    flex-direction: column;
    opacity: 0;
    overflow-y: auto;
    padding: 60px clamp(20px, 8vw, 44px);
    pointer-events: none;
    position: fixed;
    transform: translateX(100%);
    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
    z-index: 1000;
}

.header__drawer.is-open {
    opacity: 0.95;
    pointer-events: auto;
    transform: translateX(0);
}

.header__drawerClose {
    background: none;
    border: none;
    cursor: pointer;
    height: 22px;
    line-height: 1;
    padding: 0;
    position: absolute;
    right: 20px;
    top: 26px;
    width: 30px;
}

.header__drawerList {
    list-style: none;
}

.header__drawerList a {
    color: var(--color-black);
    display: block;
    font-size: 18px;
    font-weight: 500;
    line-height: 380%;
    text-decoration: none;

    &:hover {
        color: var(--color-blue);
        text-decoration: underline;
    }
}

.header__drawerBottom {
    margin: 36px auto 0;
}

.header__drawer .receptionHours {
    background: var(--color-white);
    box-sizing: border-box;
    margin: 0;
    max-width: 330px;
    width: 100%;
}

.header__drawerCta {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.header__buttonLine--drawer,
.header__buttonWeb--drawer {
    flex: 1;
    font-size: 16px;
    justify-content: center;
    padding: 14px 0;
}

.header__buttonLine--drawer span,
.header__buttonWeb--drawer span {
    font-size: 14px;
}

.header__overlay {
    background: rgb(0, 0, 0, 0.3);
    height: 100%;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    transition: opacity 0.35s ease;
    width: 100%;
    z-index: 99;
}

.header__overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

@media screen and (width <= 1024px) {
    .header__inner {
        gap: 16px;
        height: auto;
        margin-top: 10px;
        padding: 0 0 0 8px;
    }

    .header__navList {
        gap: 16px;
    }

    .header__navList a {
        font-size: 13px;
    }

    .header__tel a {
        font-size: 15px;
    }

    .header__buttonLine,
    .header__buttonWeb {
        font-size: 13px;
        padding: 7px 14px;
    }

    .header {
        height: 75px;
        padding: 0;
    }

    .header__main,
    .header__cta {
        display: none;
    }

    .header__hamburger {
        align-items: center;
        background: var(--color-orange-100);
        border-radius: 105px 0 0 105px;
        display: flex;
        height: 54px;
        justify-content: center;
        padding: 0;
        overflow: visible;
        width: 80px;
    }

    .header__hamburger.is-open {
        background: transparent;
    }
}

@media screen and (width <= 960px) {
    .header__logo img {
        height: auto;
        width: 120px;
    }
}

/* 
@media screen and (width <= 767px) {
    body {
        padding-top: 60px;
    }

    .header__inner {
        height: 60px;
        margin-top: 0;
        padding: 0 16px;
    }

    .header__logo {
        align-self: center;
    }

    .header__logo img {
        width: 100px;
    }
} */


/* ------------------------------------------------------
 footer 
------------------------------------------------------ */
.footer {
    background: var(--color-blue-500);
    margin-top: 200px;
    padding: 0 0 60px;
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    left: 0;
    top: -299px;
    width: 100%;
    height: 300px;
    background: url(../images/top/footer_wave.svg) no-repeat center top;
    background-size: 100% 100%;
    pointer-events: none;
}

.footer__inner {
    margin: 0 auto;
    max-width: 1140px;
    width: 100%;
}

.footerMain {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.footerConcept__word {
    color: #fff;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.5;
}

.footerConcept__button {
    margin-top: 56px;
}

.footerAccessItem {
    align-items: center;
    border-top: 1px dashed var(--color-white);
    color: var(--color-white);
    column-gap: 64px;
    display: flex;
    font-family: var(--font-noto-sans);
    font-size: 16px;
    line-height: 1.5;
    padding: 24px 0 24px 10px;
    width: 470px;
}

.footerAccessItem:last-child {
    border-bottom: 1px dashed var(--color-white);
}

.footerAccessItem__body a {
    color: var(--color-white);
}

.footerBanner {
    column-gap: 32px;
    display: flex;
    margin-top: 72px;
}

.footerBanner img {
    height: auto;
    max-width: 280px;
    width: 100%;
}

.footerBottom {
    margin-top: 40px;
}

.footerBottom__link {
    font-size: 12px;
    letter-spacing: 10%;
}

.footerBottom__link a {
    color: var(--color-white);
}

.footerBottom__copyright {
    color: var(--color-white);
    font-size: 10px;
    letter-spacing: 10%;
    margin-top: 16px;
}

@media screen and (max-width: 1140px) {
    .footer {
        margin-top: 150px;
    }
    
    .footer::before {
        height: 200px;
        top: -199px;
        width: 100%;
    }
    
    .footer__inner {
        max-width: 100%;
        padding: 0 30px;
        width: auto;
    }
    
    .footerMain {
        display: grid;
        grid-template-columns: 100%;
    }
    
    .footerConcept__word {
        font-size: 32px;
        text-align: center;
    }
    
    .footerConcept__button {
        display: flex;
        margin-top: 48px;
        justify-content: center;
    }

    .footerAccess {
        margin: 48px auto 0;
    }
    
    .footerBanner {
        column-gap: 24px;
        margin-top: 64px;
    }
    
    .footerBottom {
        margin-top: 40px;
    }
    
    .footerBottom__link {
        font-size: 14px;
        text-align: center;
    }
    
    .footerBottom__copyright {
        font-size: 13px;
        text-align: center;
    }
}

@media screen and (max-width: 767px) {
    .footer {
        margin-top: 80px;
        padding: 0 0 32px;
    }
    
    .footer::before {
        top: -89px;
        height: 90px;
        z-index: -1;
    }
    
    .footer__inner {
        padding: 32px 20px 0;
        width:  auto;
    }
    
    .footerMain {
        display: grid;
        grid-template-columns: 100%;
    }
    
    .footerConcept__word {
        font-size: 24px;
        text-align: center;
    }
    
    .footerConcept__button {
        display: flex;
        margin-top: 48px;
        justify-content: center;
    }

    .footerAccess {
        margin-top: 40px;
    }
    
    .footerAccessItem {
        column-gap: 0;
        display: grid;
        font-size: 14px;
        grid-template-columns: 90px auto;
        padding: 10px 6px;
        width: auto;
    }
    
    .footerBanner {
        display: grid;
        margin-top: 48px;
        grid-template-columns: 100%;
        justify-items: center;
        row-gap: 16px;
    }
    
    .footerBanner img {
        max-width: 240px;
    }
    
    .footerBottom {
        margin-top: 40px;
    }
    
    .footerBottom__link {
        font-size: 12px;
        text-align: center;
    }
    
    .footerBottom__copyright {
        font-size: 12px;
        margin-top: 24px;
        text-align: center;
    }
}



/* ------------------------------------------------------
 Blog 
------------------------------------------------------ */
.blog {
	background: #fff;
    padding: 64px 0 48px;
}

.blog__list {
    column-gap: 48px;
    display: grid;
    margin-top: 64px;
    grid-template-columns: 1fr 1fr 1fr;
}

.blogCard {
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    position: relative;
}

.blogCard:hover {
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.18);
    transform: translateY(-4px);
}

.blogCard__thumbnail {
    position: relative;
}

.blogCard__slug {
    background: var(--color-blue);
    color: #fff;
    display: inline-block;
    font-size: 12px;
    left: 0;
    padding: 8px 10px;
    position: absolute;
    top: 0;
    z-index: 10; 
}

.blogCard__body {
    padding: 16px 20px;
}

.blogCard__date {
    color: var(--color-blue);
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1.6;
}

.blogCard__title {
    color: var(--color-black);
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1.8; 
    margin-top: 8px;
}

.blog__more {
    display: flex;
    margin-top: 64px;
    justify-content: center;
}

@media screen and (max-width: 1140px) {
    .blog {
        padding: 96px 0 48px;
    }
    
    .blog__list {
        grid-template-columns: 100%;
        row-gap: 48px;
    }
}

@media screen and (max-width: 767px) {
    .blog {
        padding: 48px 0 32px;
    }
    
    .blog__list {
        margin-top: 32px;
        grid-template-columns: 100%;
        row-gap: 24px;
    }

    .blogCard__slug {
        font-size: 12px;
        padding: 6px 15px;
    }
    
    .blogCard__body {
        padding: 12px 16px;
    }
    
    .blogCard__date {
        font-size: 13px;
    }
    
    .blogCard__title {
        font-size: 13px;
        margin-top: 4px;
    }
    
    .blog__more {
        margin-top: 48px;
    }
}


/* ------------------------------------------------------
    telModal
------------------------------------------------------ */
.telModal {
    display: none;
}

.telModal.is-open {
    display: block;
}

.telModal__overlay {
    background: rgb(0, 0, 0, 0.5);
    inset: 0;
    position: fixed;
    z-index: 1000;
}

.telModal__inner {
    display: flex;
    flex-direction: column;
    left: 50%;
    position: fixed;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 48px);
    z-index: 1001;
    max-width: 340px;
}

.telModal__body {
    background: var(--color-white);
    border-radius: 12px;
    padding: 32px 24px 42px;
    max-width: 340px;
}

.telModal__close {
    appearance: none;
    background: var(--color-black);
    border: none;
    border-radius: 50%;
    color: var(--color-white);
    cursor: pointer;
    font-size: 18px;
    height: 36px;
    line-height: 1;
    position: absolute;
    right: -16px;
    top: -20px;
    width: 36px;
}

.telModal__title {
    margin-top: 12px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
}

.telModal__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

.telModal__item {
    border-radius: 16px;
    display: block;
    padding: 0 20px 8px;
    text-align: center;
    text-decoration: none;
}

.telModal__item:nth-child(1) {
    background: var(--color-blue-700);
}

.telModal__item:nth-child(2) {
    background: var(--color-blue-300);
}

.telModal__storeName {
    color: var(--color-white);
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 0.05%;
    font-weight: 400;
}

.telModal__badge {
    background: var(--color-white);
    border-radius: 999px;
    box-sizing: border-box;
    color: var(--color-black);
    display: inline-block;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0.05%;
    padding: 2px 12px;
    width: 100%;
}

.telModal__tel {
    align-items: center;
    color: var(--color-white);
    display: flex;
    font-size: 22px;
    font-weight: 700;
    gap: 8px;
    justify-content: center;
    margin-top: 8px;
}

.telModal__tel img {
    filter: brightness(0) invert(1);
    height: 22px;
    width: 16px;
}

.telModal__closeBtn {
    appearance: none;
    background: var(--color-black);
    border: none;
    border-radius: 8px;
    color: var(--color-white);
    cursor: pointer;
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    margin-top: 20px;
    padding: 16px;
    width: 100%;
}

/* ---------------------------------------------
    receptionHours
--------------------------------------------- */
.receptionHours {
    background-color: rgb(255, 255, 255, 0.85);
    border-radius: 8px;
    color: var(--color-blue);
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 320px;
    margin: 20px;
    padding: 16px 20px;
    font-size: 12px;
    font-weight: 400;
    line-height: 24.5px;
    letter-spacing: 20%;
}

.receptionHours__grid {
    align-items: center;
    border-bottom: 1px solid var(--color-blue);
    display: grid;
    grid-template-columns: 100px repeat(8, 1fr);
    padding: 6px 0;
}

.receptionHours__grid:first-of-type {
    padding-top: 0;
}

.receptionHours__grid:last-of-type {
    border-bottom: none;
}

.receptionHours__label {
    align-items: center;
    display: flex;
    font-size: 12px;
    font-weight: 500;
    gap: 4px;
}

.receptionHours__icon {
    flex-shrink: 0;
}

.receptionHours__head span {
    /* font-size: 12px;
    font-weight: 400;
    line-height: 24.5px;
    letter-spacing: 20%; */
    padding-top: 0;
    text-align: center;
}

.receptionHours__time {
    /* font-size: 12px;
    font-weight: 400;
    line-height: 24.5px;
    letter-spacing: 20%; */
    white-space: nowrap;
}

.receptionHours__mark {
    text-align: center;
}

.receptionHours__mark--closed {
    /* font-size: 14px;
    font-weight: 500; */
}

.receptionHours__note {
    font-size: 10px;
    line-height: 150%;
    margin-top: 6px;
    letter-spacing: 20%;
}

.receptionHours__note span {
    display: block;
    margin-top: 4px;
}

@media screen and (width <= 767px) {
    .receptionHours__grid {
        grid-template-columns: 68px repeat(8, 1fr);
        padding: 8px 0;
        line-height: 20px;
        letter-spacing: 10%;
    }

    .receptionHours__label {
        font-size: 10px;
        gap: 6px;
    }

    .receptionHours__head span {
        font-size: 10px;
    }

    .receptionHours__icon {
        flex-shrink: 0;
        width: 12px;
        height: 12px;
    }

    .receptionHours__time {
        font-size: 10px;
    }

    .receptionHours__mark {
        font-size: 10px;
    }

    .receptionHours__note {
        font-size: 10px;
    }
}
