.information p,
.information a,
.information ul,
.information li,
.information span,
.information h1,
.information h2,
.information h3,
.information h4,
.information h5 {
    letter-spacing: 0.05em;
    color: var(--color-text-entry);
    font-family: var(--font-notosan);
}

.information p,
.information span {
    font-weight: 400;
}

.information h2 {
    font-family: var(--font-shippori);
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 24px;
}

.information_container {
    padding: 0 80px;
    max-width: 1440px;
    box-sizing: border-box;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 120px minmax(0, 840px);
    justify-content: space-between;
    column-gap: 40px;
}

#information_list {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 24px;
    height: max-content;
}

#information_list li {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.7;
    cursor: pointer;
    color: rgba(76, 72, 58, 0.5);
    transition: color 0.3s ease;
}

#information_list li.active {
    color: var(--color-text-entry);
}

.information_content {
    max-width: 100%;
    width: 100%;
}

.information_content iframe {
    width: 100%;
    max-width: 100%;
}

.information_content:not(:first-child) {
    margin-top: 176px;
}

.information_content img {
    display: block;
    width: 100%;
}

.business_hours_content:first-child {
    border-top: 1px solid #CCC6B0;
}

.business_hours_content {
    border-bottom: 1px solid #CCC6B0;
    padding: 40px 0;
    display: grid;
    grid-template-columns: 270px 1fr;
    column-gap: 70px;
}

.business_hours_content h4 a {
    font-size: 16px;
    font-weight: 600;
}
.business_hours_content h4 {
    font-size: 16px;
    font-weight: 600;
}

.business_hours_info span {
    font-size: 16px;
    font-weight: 400;
    display: block;
}

.business_hours_info span.business_hours_info_flex {
    display: flex;
}

.business_hours_info span.business_hours_info_flex span:nth-child(1) {
    white-space: nowrap;
}

.business_hours_info span a {
    font-size: 16px;
    font-weight: 400;
}

.address {
    line-height: 1.625;
    margin-top: 12px;
    margin-bottom: 32px;
}

.subway_access h4 {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.625;
    letter-spacing: 0.1em;
}

.subway_access p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.875;
    margin-top: 4px;
}

.information_content_sub h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 12px;
}

.information_content_sub p {
    line-height: 1.875;
}

.information_content_sub:not(:nth-child(2)) {
    margin-top: 120px;
}

.product_buy_service {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 32px;
    row-gap: 24px;
    margin-top: 32px;
    align-items: end;
}

.product_buy_service h5 {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 8px;
}

span.wrapping_text {
    display: block;
    font-size: 14px;
    line-height: 1.857;
    margin-top: 16px;
}

.payment_methods {
    margin-top: 48px;
}

.payment_methods h4 {
    line-height: 1.67;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
}

.payment_methods:last-child p {
    font-size: 14px;
}

.delivery h4 {
    line-height: 1.67;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 6px;
}

.delivery:not(:nth-child(2)) {
    margin-top: 24px;
}

.point_card img {
    max-width: 300px;
    width: 100%;
    margin-top: 8px;
}

.point_card p {
    font-size: 14px;
    line-height: 1.857;
    margin-top: 16px;
}

.point_card a {
    display: inline-block;
    line-height: 1.1;
    border-bottom: 1px solid var(--color-text-entry);
    margin-top: 24px;
    font-weight: 400;
}

a.delivery_link {
    display: inline-block;
    line-height: 1.1;
    border-bottom: 1px solid var(--color-text-entry);
    margin-top: 12px;
    font-weight: 400;
}

@media (max-width: 1099px) {
    .information_container {
        padding: 0 40px;
    }
}

@media (max-width: 767.98px) {
    .information_container {
        padding: 0 22px;
        grid-template-columns: 1fr;
    }

    #information_list {
        display: none;
    }

    .business_hours_content {
        padding: 28px 0;
        display: block;
    }

    .business_hours_content h4 {
        margin-bottom: 16px;
    }

    .information_content:not(:first-child) {
        margin-top: 112px;
    }

    .information h2 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .information_content_sub h3 {
        font-size: 20px;
    }

    .product_buy_service {
        margin-top: 24px;
        grid-template-columns: 1fr;
        row-gap: 16px;
    }

    .payment_methods {
        margin-top: 32px;
    }

    .point_card img {
        max-width: 100%;
    }
}