.stylist h2,
.information h2,
.reservation h2 {
    display: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* concept Section */

.concept {
    margin-top: 64px;
}

.photo_wrap {
    width: 50%;
    margin: 0 auto;
}

.concept .salon_photo {
    width: 100%;
    height: 100%;
    background: url('../images/salon_photo.png') 0% 0% no-repeat padding-box;
    border-radius: 15px;
}
.photo_message {
    position: relative;
    transform: rotate(90deg);
    top: -160px;
    right: -50%;
    font-size: 12px;
    text-align: left;
}

.concept_comment {
    background: url('../images/br.png')  20px 20px no-repeat padding-box;
    width: 45%;
    background-size: 100% 100%;
    margin-left: 30%;
}

.concept_comment h2 {
    text-align: left;
    font: normal 18px/26px Zen Kaku Gothic New;
    letter-spacing: 0px;
    color: #000;
    width: 100%;
    padding-bottom: 30px;
}

.concept_comment p {
    font-size: 14px;
    line-height: 26px;
    color: #000;
    width: 38em;
    padding-bottom: 30px;
}

/* stylist Section */
/* 2025-07-26 背景修正 */
.stylist {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    max-width: 960px;
    opacity: 1;
    margin: 0 auto;
    padding: 60px 20px;
    background: url('../images/br.png') center center no-repeat;
    background-size: cover;
    background-attachment: scroll;
    position: relative;
}

.stylist-wrap {
    display: flex;
}

.stylist-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stylist-card:nth-child(even) {
    margin-left: 20px;
}

.stylist-photo {
    width: 300px;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.stylist-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 18px;
}

.stylist-names {
    display: flex;
    justify-content: space-between;
    width: 300px;
}

.stylist-names en {
    color: #000;
    font-size: 16px;
}

.stylist-names ja {
    color: #000;
    font-size: 14px;
}

.comment {
    width: 300px;
    margin-left: 60px;
    margin-top: 280px;
    font-size: 14px;
    color: #000;
    line-height: 1.8;
}

/* salon_menu Section */
.salon_menu {
    padding: 40px 0;
    max-width: 960px;
    margin: 0 auto;
}

.salon_menu h2 {
    font-size: 36px;
    font-weight: normal;
    margin-bottom: 40px;
    color: #000;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: .5px solid #707070;
    font-size: 16px;
}

.menu-column {
    padding-right: 40px;
}

.menu-column:last-child {
    padding-right: 0;
    padding-left: 40px;
}

/* information Section */
.information {
    max-width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.information h2 {
    font-size: 36px;
    font-weight: 400;
    line-height: 52px;
    text-align: center;
    margin-bottom: 60px;
    color: #000;
}

.map-placeholder {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.info-section {
    padding: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: .5px solid #707070;
    font-size: 16px;
}

.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-label {
    width: 80px;
    flex-shrink: 0;
    margin-right: 20px;
}

.info-value {
    flex: 1;
}

.postal-code {
    font-size: 14px;
    margin-bottom: 5px;
}

.phone {
    color: #0066cc;
    text-decoration: none;
}

.phone:hover {
    text-decoration: underline;
}

/* reservation Section */
.reservation {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.reservation-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.reservation-content {
    padding: 0 40px;
}

.reservation-title {
    font-size: 36px;
    font-weight: normal;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.reservation-text {
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.reservation-btn {
    display: inline-block;
    background: #fff;
    color: #FFA811;
    padding: 10px 40px;
    border: 2px solid #FFA811;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.reservation-btn:hover {
    background: #FFA811;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 165, 0, 0.3);
}

.reservation-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.reservation-image img {
    width: 100%;
    object-fit: cover;
    display: block;
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #000;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media (width <= 767px) {
    .stylist h2,
    .information h2,
    .reservation h2 {
        font-size: 36px;
        font-weight: 400;
        line-height: 52px;
        text-align: center;
        margin-bottom: 60px;
        color: #000;
    }
}

/* Fade in animation */
.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.concept.loaded {
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Focus indicators */
a.focused,
button.focused {
	color: #FFA811;
}

/* Active navigation state */
.nav-menu li a.hover {
    color: #FFA811;
    font-weight: 700;
}

@media (max-width: 767px) {
    .container {
        padding: 20px 15px;
    }

    .nav {
        display: none;
    }

    .stylist h2,
    .information h2,
    .reservation h2 {
        display: block;
        font-size: 28px;
        line-height: 40px;
        margin-bottom: 30px;
    }
    
    .concept,
    .stylist,
    .salon_menu,
    .information,
    .reservation {
        padding: 0 0 30px;
        margin-bottom: 60px;
    }

    /* Concept Section */

    .concept {
        margin-top: 30px;
    }

    .photo_wrap {
        width: 80%;
    }

    .concept_comment {
        width: 80%;
        margin-left: 10%;
        margin-top: 20px;
        background-size: 100% 100%;
    }

    .concept_comment h2 {
        font-size: 16px;
        line-height: 22px;
        padding-bottom: 20px;
    }

    .concept_comment p {
        font-size: 12px;
        line-height: 20px;
        width: auto;
        padding-bottom: 20px;
    }

    .photo_message {
        position: relative;
        transform: rotate(90deg);
        top: -90px;
        right: -50%;
        font-size: 12px;
        text-align: left;
    }

    /* Stylist Section */
    .stylist {
        gap: 30px;
        background: none;
        display: block;
    }
    
    .stylist-wrap {
        padding: 40px 20px;
        background: url('../images/br.png') center 90px no-repeat padding-box;
        background-size: 260px 300px;
        display: block;
    }

    .stylist-card {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        margin-bottom: 20px;
        justify-content: flex-start;
    }

    .stylist-photo {
        width: 150px;
        height: auto;
        margin: 0 10px;
    }

    .stylist-card:nth-of-type(2n) {
        text-align: right;
        align-items: flex-end;
        flex-direction: row-reverse;
        margin-left: 15px;
    }


    .stylist-names {
        margin: 0;
        display: block;
    }

    .stylist-names span {
        display: block;
    }

    .comment {
        width: 100%;
        padding: 0;
        text-align: center;
        font-size: 12px;
        margin: 0;
    }

    /* Salon Menu Section */
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .menu-column {
        padding-right: 0;
    }

    .menu-column:last-child {
        padding-left: 0;
    }

    .menu-item {
        padding: 15px 5px;
        font-size: 16px;
    }

    /* Information Section */
    .information {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px;
    }

    .info-section {
        padding: 20px;
    }

    .info-item {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 15px;
        padding-bottom: 15px;
        font-size: 14px;
    }

    .info-label {
        width: auto;
        margin-right: 0;
        margin-bottom: 5px;
        font-weight: bold;
    }

    .map {
        max-width: 100%;
        width: 600px;
    }

    /* Reservation Section */
    .reservation-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .reservation-content {
        padding: 0 20px;
        text-align: center;
    }

    .reservation-title {
        font-size: 28px;
        line-height: 40px;
        margin-bottom: 20px;
    }

    .reservation-text {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .reservation-btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    /* mobile */
    .mobile-menu-toggle {
        display: flex;
    }
}