/* ===========================================
   基本設定とリセット
   =========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Noto Sans JP;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    background: linear-gradient(135deg, #a7c5ff 0%, #f9d1e8 100%);
    position: relative;
}

/* ===========================================
   メインコンテンツとレイアウト
   =========================================== */
.main-content {
    position: relative;
    z-index: 1;
}

#concept,
#menu,
#campaign,
#points,
#access,
#qa {
    max-width: 650px;
    margin: 0 auto;
    margin-top: -1px;
}

/* ===========================================
   背景ビデオ
   =========================================== */
.background-video-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

/* ===========================================
   泡エフェクト
   =========================================== */
.bubble-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    overflow: visible;
}

.bubble {
    position: absolute;
    opacity: 0.8;
    animation: float linear infinite;
}

.bubble img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    5% {
        opacity: 0.7;
    }
    85% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100vh) translateX(var(--x-shift));
        opacity: 0;
    }
}

/* ===========================================
   ヒーローセクション
   =========================================== */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* 中央ロゴ */
.center-logo {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.salon-text {
    color: white;
    font-size: 48px;
    letter-spacing: 5px;
    margin-bottom: 10px;
    font-weight: 300;
}

.nanala-text {
    color: white;
    font-size: 120px;
    font-weight: 200;
    letter-spacing: 5px;
    line-height: 0.9;
}

/* アニメーションロゴ */
.animated-logo {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 98;
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-container {
    margin: 0;
    padding: 0;
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#nanala_logo {
    width: 100%;
    max-width: 400px;
    height: auto;
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.animated-logo.scrolled {
    position: fixed;
    top: var(--logo-top-position, 10%);
    left: 10%;
    transform: translateX(0);
   }

.animated-logo.scrolled #nanala_logo {
    width: 38%;
}

/* ===========================================
   左側メニュー
   =========================================== */
.left-menu {
    position: fixed;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    transition: all 0.5s ease;
}

.left-menu.with-logo {
    top: 25%;
}

.left-menu ul {
    list-style: none;
    margin-left: -27px;
}

.left-menu li {
    margin-bottom: 35px;
}

.left-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 24px;
    transition: color 0.3s ease;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.left-menu a:hover,
.left-menu a.active {
    color: #2BA6FF;
}

.left-menu a:hover .en,
.left-menu a:hover .ja {
    color: #2BA6FF;
}

/* ===========================================
   右側予約エリア
   =========================================== */
.right-reservation {
    position: fixed;
    right: 10%;
    top: 30%;
    text-align: right;
    z-index: 100;
    transition: opacity 0.5s ease;
}

.reservation-title {
    color: white;
    font-size: 28px;
    margin-bottom: 20px;
    font-style: italic;
    font-family: Agbalumo;
}

.reservation-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.line-btn {
    background-color: #2ba6ff;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 18px;
    cursor: pointer;
    width: 240px;
    transition: opacity 0.3s;
}

.line-btn:hover,
.beauty-btn:hover {
    opacity: 0.8;
}

.beauty-btn span {
    color: #d33682;
    font-weight: bold;
}

/* ===========================================
   SNSシェアエリア
   =========================================== */
.sns-share {
    position: fixed;
    right: 10%;
    top: 55%;
    text-align: right;
    z-index: 100;
    transition: opacity 0.5s ease;
    margin-top: -14px;
    margin-right: 18px;
}

.sns-title {
    color: white;
    font-size: 28px;
    margin-bottom: 20px;
    font-style: italic;
    font-family: Agbalumo;
}

.instagram-icon {
    color: #2BA6FF;
    font-size: 36px;
    transition: opacity 0.3s;
}

.instagram-icon:hover {
    opacity: 0.8;
}

/* ===========================================
   スクロールダウン表示
   =========================================== */
.scroll-down {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    z-index: 2;
}

.scroll-text {
    font-size: 18px;
    margin-bottom: 15px;
    font-style: italic;
}

.scroll-icon {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ===========================================
   コンテンツセクション共通スタイル
   =========================================== */
.content-section {
    padding: 80px 10%;
    text-align: center;
    position: relative;
}

.section-title {
    color: white;
    font-size: 36px;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: white;
}

/* 背景テキスト */
.background-text {
    position: absolute;
    top: -17px;
    right: 0;
    font-size: 95px;
    font-weight: 300;
    color: rgba(135, 206, 250, 0.2);
    font-family: serif;
    z-index: 1;
    letter-spacing: -8px;
    margin-right: 7px;
    margin-top: -16px;
}

.background-textwhite {
    position: absolute;
    top: -32px;
    right: 6px;
    font-size: 97px;
    font-weight: 300;
    font-family: serif;
    z-index: 1;
    letter-spacing: -8px;
    color: rgba(255, 255, 255, 0.2);
}

/* ===========================================
   コンセプトセクション
   =========================================== */
#concept {
    background: #F7FCFF;
    padding-bottom: 46px;
}

.concept-content {
    position: relative;
    max-width: 1200px;
    padding: 0 20px;
    z-index: 2;
    margin-top: 29px;
}

.concept-title {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.concept-title .en {
    display: block;
    font-size: 35px;
    color: #4DA9FF;
    font-family: 'Agbalumo', cursive;
    margin-top: 88px;
    margin-left: 25px;
    font-weight: 500;
}

.concept-title .jp {
    font-size: 16px;
    color: #4DA9FF;
    font-family: 'Agbalumo', cursive;
    margin-left: 14px;
    margin-top: 99px;
    font-weight: 500;
}

.concept-message {
    max-width: 800px;
    font-family: "Yu Gothic", YuGothic, sans-serif;
    margin-top: 19px;
    margin-bottom: -150px;
}

.english-message {
    font-size: 22px;
    color: #FFD88D;
    font-family: Noto Sans JP;
    margin-bottom: 20px;
    line-height: 2.4;
    margin-left: 52px;
}

.japanese-message {
    font-size: 18px;
    color: #FFD88D;
    font-family: Noto Sans JP;
    margin-bottom: 30px;
    line-height: 1.6;
    margin-left: 52px;
}

.description {
    font-size: 18px;
    color: #00579e;
    font-family: Noto Sans JP;
    font-weight: normal;
    line-height: 3;
    margin-left: 50px;
    margin-right: 50px;
}

.concept-text {
    color: white;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 18px;
    text-align: center;
}

.item-title {
    font-family: 'Noto Sans JP';
    font-size: 22px;
    color: #007EE8;
    text-align: center;
}

.item-description {
    text-align: center;
    color: #00579E;
    font-size: 18px;
    font-family: 'Noto Sans JP';
    margin-top: 14px;
}

.view-more {
    display: inline-block;
    padding: 15px 60px;
    background-color: #FFFFFF;
    color: #ffd88d;
    text-decoration: none;
    border-radius: 30px;
    font-family: 'Agbalumo', cursive;
    font-size: 24px;
    box-shadow: 0 6px 10px rgba(84, 138, 218, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 27px;
}

.view-more-div {
    text-align: center;
}

/* ===========================================
   メニューセクション
   =========================================== */
#menu {
    background-image: url("./images/footer_back.png");
    background-size: cover;
}

.menu-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.menu-item {
    padding: 20px;
    transition: transform 0.3s;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-title .en{
    color: #4DA9FF;
    font-size: 35px;
    margin-bottom: 10px;
    font-weight: 500;
    margin-left: 25px;
    font-family: 'Agbalumo', sans-serif;
}
h2.menu-title > span.jp{
    padding-bottom: 19px;
    margin-left: 12px;
    font-size: 16px;
    color: #4DA9FF;

}

.menu-price {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.menu-description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* ===========================================
   キャンペーンセクション
   =========================================== */
#campaign {
    background-color: #F7FCFF;
}

.campaign-card {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.campaign-title {
    color: #d33682;
    font-size: 28px;
    margin-bottom: 15px;
}

.campaign-period {
    color: #666;
    font-size: 18px;
    margin-bottom: 20px;
}

.campaign-description {
    color: #333;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ===========================================
   3ポイントセクション
   =========================================== */
#points {
    background-image: url("./images/3point_backgroundcolor.png");
    background-size: cover;
}

.points-section {
    position: relative;
    padding: 40px 0;
    overflow: hidden;
}

.points-content {
    text-align: center;
    margin-bottom: 40px;
}

.points-title {
    margin-bottom: 15px;
}

.points-title .en {
    font-size: 36px;
    color: #54b4ff;
    display: block;
    font-weight: bold;
}

.points-title .jp {
    font-size: 16px;
    color: #2BA6FF;
    margin-left: 11px;
    font-family: "Yu Gothic", YuGothic, sans-serif;
    font-weight: 600;
}

.points-subtitle {
    font-size: 24px;
    color: #007ee8;
    margin-bottom: 72px;
    margin-top: 52px;
    font-family: Noto Sans JP;
    font-weight: 500;
}

.points-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.point-card {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 30px;
    width: 30%;
    min-width: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.point-card:hover {
    transform: translateY(-5px);
}

.point-number {
    font-size: 36px;
    color: #d33682;
    margin-bottom: 15px;
}

.point-title {
    color: #333;
    font-size: 22px;
    margin-bottom: 15px;
}

.point-description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* アコーディオン */
.accordion-section {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.accordion {
    width: 90%;
    margin: 20px auto;
    background-image: url("./images/SVG/3points_back.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease-out;
    position: relative;
}

.accordion.active {
    padding: 0px 40px 0px 40px;
    background-size: cover;
}

.accordion-header {
    padding: 63px 66px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    opacity: 0;
    transition: max-height 0.5s ease-out, padding 0.3s ease, opacity 0.3s ease;
}

.accordion.active .accordion-content {
    max-height: 500px;
    padding: 0% 19% 18%;
    opacity: 1;
}

.accordion-content p {
    margin: 10px 0;
    line-height: 1.6;
    font-family: Noto Sans JP;
}

.arrow-icon {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    transition: transform 0.3s ease;
}

.arrow-open, .arrow-close {
    width: 30px;
    height: auto;
    transition: opacity 0.3s ease;
    margin-bottom: 14px;
}

.arrow-close {
    display: none;
}

.accordion.active .arrow-open {
    display: none;
}

.accordion.active .arrow-close {
    display: block;
}

.point-image-new {
    width: 70%;
    transition: transform 0.3s ease;
    margin: 0 auto;
    display: block;
}

.accordion.active .point-image-new {
    transform: scale(1.05);
}

/* ===========================================
   アクセスセクション
   =========================================== */
.access-section {
    position: relative;
    padding: 46px 35px;
    background: linear-gradient(to bottom, #FFFFFF, #F0F8FF);
    overflow: hidden;
}

.access-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

.access-title {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.access-title .en {
    display: block;
    font-size: 35px;
    color: #4DA9FF;
    font-family: 'Agbalumo', cursive;
    margin-bottom: 5px;
    font-weight: 500;
}

.access-title .jp {
    display: block;
    font-size: 16px;
    color: #4DA9FF;
    font-family: "Yu Gothic", YuGothic, sans-serif;
    margin-top: 11px;
    font-weight: 600;
}

.map-container {
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 10px rgba(84, 138, 218, 0.2);
}

.access-info {
    max-width: 800px;
    margin: 0 auto;
    font-family: "Yu Gothic", YuGothic, sans-serif;
}

.station-access {
    margin-bottom: 30px;
}

.station-text {
    font-size: 20px;
    color: #4DA9FF;
    margin-bottom: 10px;
    font-weight: bold;
    font-family: "Yu Gothic", YuGothic, sans-serif;
}

.salon-description {
    margin-bottom: 40px;
    line-height: 1.8;
    color: #00579E;
    font-size: 16px;
    font-family: "Yu Gothic", YuGothic, sans-serif;
    font-weight: 600;
}

.shop-info {
    margin-top: 40px;
}

.shop-info h3 {
    color: #4DA9FF;
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 30px;
    font-family: "Yu Gothic", YuGothic, sans-serif;
    font-weight: 600;
}

.shop-info p,
.shop-info p a {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 16px;
    font-family: "Yu Gothic", YuGothic, sans-serif;
    font-weight: 600;
    color: #00579E;
}

.business-hours dl {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.business-hours dt {
    width: 100vw;
    margin-bottom: 10px;
    font-size: 16px;
    font-family: "Yu Gothic", YuGothic, sans-serif;
    color: #00579e;
    font-weight: 600;
}

.business-hours dd {
    margin-bottom: 10px;
    font-family: "Yu Gothic", YuGothic, sans-serif;
    font-weight: 600;
}

.tel {
    font-size: 24px;
    font-weight: bold;
    color: #4DA9FF;
}

.margin-10 {
    margin-left: 12px;
}
/* 地図コンテナの修正 */
.map-container {
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 10px rgba(84, 138, 218, 0.2);
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9のアスペクト比 */
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0;
}

/* ===========================================
   Q&Aセクション
   =========================================== */


.qa-section {
    position: relative;
    padding: 46px 35px;
    overflow: hidden;
}

.qaback {
    max-width: 650px;
    margin: 0 auto;
    background-image: url("./images/SVG/qaback141.svg");
    background-repeat: repeat-y;
    background-size: cover;
}

.qa-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

.qa-title {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.qa-title .en {
    display: block;
    font-size: 35px;
    color: #4DA9FF;
    font-family: 'Agbalumo', cursive;
    margin-bottom: 5px;
    font-weight: 500;
}

.qa-title .jp {
    display: block;
    font-size: 16px;
    color: #4DA9FF;
    font-family: "Yu Gothic", YuGothic, sans-serif;
}

.qa-list {
    max-width: 800px;
    margin: 0 auto;
    font-family: "Yu Gothic", YuGothic, sans-serif;
}

.qa-item {
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 0px;
}

.question {
    display: flex;
    align-items: flex-start;
    margin-bottom: -8px;
}

.q-mark {
    font-size: 24px;
    color: #4DA9FF;
    font-weight: bold;
    margin-right: 15px;
    min-width: 30px;
    font-family: "Yu Gothic", YuGothic, sans-serif;
    margin-bottom: 20px;
}

.q-text {
    color: #4DA9FF;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.6;
    font-family: "Yu Gothic", YuGothic, sans-serif;
}

.answer {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #00579E;
}

.a-mark {
    font-size: 24px;
    color: #00579E;
    font-weight: bold;
    margin-right: 15px;
    min-width: 30px;
    font-family: "Yu Gothic", YuGothic, sans-serif;
}

.a-text {
    color: #00579E;
    font-size: 16px;
    line-height: 1.8;
}

.a-text p {
    margin-bottom: 15px;
}

.a-text p:last-child {
    margin-bottom: 0;
    font-family: "Yu Gothic", YuGothic, sans-serif;
}

.answer-margin-bottom-15 {
    margin-bottom: 15px;
}

.qa-additional {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.qa-additional.show {
    opacity: 1;
    transform: translateY(0);
}

.read-more-container {
    text-align: center;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    background: none;
    border: none;
    color: #4DA9FF;
    font-size: 24px;
    cursor: pointer;
    padding: 10px 20px;
    transition: opacity 0.3s ease;
}

.read-more-btn:hover {
    opacity: 0.7;
}

.plus-icon {
    font-size: 24px;
    margin-right: 10px;
}

.read-more-btn.active .plus-icon {
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.read-more-text {
    font-family: Noto Sans JP;
}

/* ===========================================
   ギャラリー
   =========================================== */


#garary1 > img {
    max-width: 510px;
    margin: 0 auto;
    margin-left: 70px;
    width: 100%;
}

/* ===========================================
   動画コンテナ
   =========================================== */
.video-container {
    max-width: 1200px;
    margin: -154px auto;
    padding: 0 25px;
    box-sizing: border-box;
    margin-bottom: 149px;
}

.video-container video {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

/* ===========================================
   フッター
   =========================================== */
.site-footer {
    background: url(./images/footer_back.png);
    background-size: cover;
    background-position: left;
    padding: 40px 20px;
    position: relative;
    max-width: 650px;
    margin: 0 auto;
    margin-top: -4px;
}

.vertical-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vertical-menu li {
    margin-bottom: 15px;
}

.vertical-menu a {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.vertical-menu a .en {
    font-family: 'Agbalumo', cursive;
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    color: #1E56A0;
    font-style: italic;
    letter-spacing: 1px;
    min-width: 100px;
}

.vertical-menu a .ja {
    font-family: "Yu Gothic", YuGothic, sans-serif;
    font-size: 12px;
    color: #1E56A0;
    font-style: normal;
    font-weight: bold;
}

.vertical-menu a .ja::before {
    content: 'ー';
    margin-right: 4px;
}

.vertical-menu a:hover {
    opacity: 0.7;
}

.footer-logo {
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-nav a:hover {
    opacity: 0.8;
}

.copyright {
    color: white;
    font-size: 14px;
}

/* ===========================================
   ナビゲーションメニュー
   =========================================== */
body > nav > ul > li:nth-child(1) > a,
body > nav > ul > li:nth-child(2) > a,
body > nav > ul > li:nth-child(3) > a,
body > nav > ul > li:nth-child(4) > a {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 23px;
}

/* ===========================================
   FontAwesome アイコン
   =========================================== */
.fa-instagram:before {
    content: "\f16d";
}

.fa-brands, .fab {
    font-family: "Font Awesome 6 Brands";
    font-weight: 400;
}

.fa, .fa-brands, .fa-duotone, .fa-light, .fa-regular, .fa-solid, .fa-thin, .fab, .fad, .fal, .far, .fas, .fat {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display, inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
}

/* ===========================================
   プリロード画像
   =========================================== */
.preload-images {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    z-index: -1;
}

/* ===========================================
   アニメーション効果
   =========================================== */
.fade-in-droplet {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: opacity 1s ease, transform 1s ease;
    will-change: opacity, transform;
}

.fade-in-droplet.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.fade-in-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    will-change: opacity, transform;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* 遅延効果 */
.delay-1, .fade-delay-1 { transition-delay: 0.1s; }
.delay-2, .fade-delay-2 { transition-delay: 0.2s; }
.delay-3, .fade-delay-3 { transition-delay: 0.3s; }
.delay-4, .fade-delay-4 { transition-delay: 0.4s; }
.delay-5, .fade-delay-5 { transition-delay: 0.5s; }

/* ===========================================
   ユーティリティクラス
   =========================================== */
.text-color-007EE8 {
    color: #007EE8;
}

.text-color-00579e {
    color: #00579E;
}

.margin-top-39 {
    margin-top: 39px;
    font-size: 16px;
    font-weight: 500;
    font-family: Noto Sans JP;
}

.margin-top-35 {
    font-size: 20px;
}

.margin-top--10 {
    margin-top: -10px;
}

.margin-top--20 {
    margin-top: -20px;
}

/* ===========================================
   個別のスタイル調整
   =========================================== */
#post-5 > div {
    background: #F5F5F5;
    margin-top: -16px;
}

#post-5 > div > figure > img {
    width: 100%;
}

#photpfacial {
    margin-top: -16px;
}

#photpfacial > div:nth-child(2) > p.has-link-color.has-text-color.has-medium-font-size.wp-elements-4cae4296e1142e707589f8ebe96bb413 {
    font-size: 20px;
}

#datumo > div.wp-block-group > div > h2,
#datumo > div.wp-block-group > div > p.text-color-0078e6.margin-top-12.has-link-color.has-text-color.has-medium-font-size.wp-elements-f6418b47155e3498c34053a7ae48d719.magin-bottom-0,
#datumo > div.wp-block-group > div > p.has-link-color.margin-top-12.has-text-color.has-medium-font-size.wp-elements-d9f3e5b293c2c6bc572b491ea407e122.magin-bottom-0 {
    font-size: 20px;
    font-family: Noto Sans JP;
    margin-top: 33px;
}

#datumo > p {
    font-size: 20px;
    margin-top: 41px;
}

#oil-treatment > div.wp-block-group > div > p.text-color-0078e6.margin-top--10.has-text-color.has-link-color.has-medium-font-size.wp-elements-33745246dede8792fb24432b913f2e30.magin-bottom-0,
#oil-treatment > div.wp-block-group > div > h2,
#oil-treatment > div.wp-block-group > div > p.text-color-0078e6.margin-top--20.has-link-color.has-text-color.has-medium-font-size.wp-elements-f6418b47155e3498c34053a7ae48d719.magin-bottom-0,
#oil-treatment > div.wp-block-group > div > p.has-link-color.margin-top--20.has-text-color.has-medium-font-size.wp-elements-d9f3e5b293c2c6bc572b491ea407e122.magin-bottom-0 {
    font-size: 20px;
}

#oil-treatment > div.padding-change > p.has-link-color.has-text-color.has-medium-font-size.wp-elements-23f85aec208f854f4590f55976776434 {
    font-size: 20px;
    margin-top: 37px;
}

/* 特定の位置調整 */
#points > div.points-content > h2 > span {
    margin-right: 43%;
    margin-top: 53px;
    font-weight: 500;
    font-family: Agbalumo;
}


#qa > div.qa-content > h2 {
    margin-top: 12px;
}

#qa > div.qa-content > div.read-more-container > button > span.read-more-text {
    font-family: Noto Sans JP;
}

#concept > div.concept-content > div > img {
    position: relative;
    left: 0px;
    top: 23px;
}

#access > img:nth-child(3) {
    width: 100%;
}

#access > img:nth-child(4) {
    position: relative;
    left: 0px;
    top: 23px;
    width: 60px;
}

#access > img:nth-child(5) {
    position: relative;
    right: -412px;
    top: -523px;
    width: 60px;
}

#access > img:nth-child(6) {
    position: relative;
    right: -321px;
    top: -446px;
    width: 60px;
}

#access > img:nth-child(7) {
    position: relative;
    right: 138px;
    top: -41px;
    width: 60px;
}

#concept > div.concept-message > img.small-baburu.fade-in-droplet.delay-1.visible {
    position: relative;
    right: -457px;
    top: -329px;
}

#concept > div.concept-message > img.small-baburu.fade-in-droplet.delay-2.visible {
    position: relative;
    right: -326px;
    top: -411px;
}

#concept > div.concept-message > img.small-baburu.fade-in-droplet.delay-4.visible {
    position: relative;
    right: -262px;
    top: -47px;
}

#concept > div.concept-message > img.small-baburu.fade-in-droplet.delay-5.visible {
    position: relative;
    right: -156px;
    top: -252px;
}

#datumo > div.background-text.line-height-249 {
    margin-top: 18px;
}

#oil-treatment > div:nth-child(4) > img {
    max-width: 110%;
    margin-left: -25px;
    margin-top: -55px;
}

#oil-treatment > div.wp-block-group > div > div:nth-child(3) > figure > img {
    max-width: 111%;
    margin-left: -29px;
    margin-top: 12px;
}

#oil-treatment > div.wp-block-group > div > div:nth-child(9) > figure > img {
    max-width: 110%;
    margin-left: -23px;
    margin-top: 1px;
}

#oil-treatment > div.padding-change > div.wp-block-image.aligncenter.size-full.is-resized.shadow-img.is-style-default > figure > img {
    max-width: 114%;
    margin-top: 21px;
    margin-left: -34px;
}

#collapsethree > div > div.section > div > div > ul {
    bottom: 2px;
}

#photpfacial > div:nth-child(2) > div.section > div > div > ul {
    bottom: -15px;
}

#collapsefive > div > div > div > div > ul {
    bottom: 42px;
}

#whitening > div.section > div > div > ul {
    bottom: -11px;
}

.menu-content{
    padding-top: 61px;
    padding-bottom: 52px;
}
.pc-none{
    display: none;
}
#hotpeppar-img{
    width: 101%;
    height: 44px;
}

/* ===========================================
   レスポンシブデザイン
   =========================================== */

/* タブレット */
@media (max-width: 1024px) {
    .left-menu {
        left: 5%;
    }

    .right-reservation, .sns-share {
        right: -3%;
    }

    .nanala-text {
        font-size: 100px;
    }

    .video-container {
        padding: 0 25px;
    }
}

/* スマートフォン（768px以下） */
@media (max-width: 768px) {
    /* 基本レイアウト */
    .center-logo {
        top: 25%;
    }

    .animated-logo {
        top: 35%;
    }

    .animated-logo.scrolled {
        width: 200px;
        left: 5%;
        top: 5%;
        margin-top: 20px;
    }

    .animated-logo.scrolled #nanala_logo {
        width: 100%;
    }

    /* メニュー調整 */
    .left-menu {
        position: fixed;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        width: auto;
        text-align: left;
        z-index: 100;
    }

    .left-menu ul {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 20px;
        margin-left: 0;
    }

    .left-menu li {
        margin-bottom: 0;
    }

    .left-menu a {
        writing-mode: vertical-rl;
        text-orientation: mixed;
        font-size: 16px;
        display: block;
        text-align: center;
        line-height: 1.4;
        padding: 10px 8px;
        height: auto;
        min-height: 80px;
        width: 25px;
    }

    .left-menu a .en {
        writing-mode: vertical-rl;
        text-orientation: mixed;
        font-size: 16px;
        display: block;
    }

    .left-menu a .ja {
        display: none;
    }

    /* 予約ボタンエリア */
    .right-reservation {
        position: fixed;
        width: 100%;
        right: -70px;
        bottom: 0px;
        text-align: right;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 15px;
        height: 55px;
        margin-top: 463px;
    }

    .reservation-title {
        display: none;
    }

    .reservation-buttons {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0px;
        margin-bottom: 0;
        height: 55px !important;
        margin-top: -126px;
    }

    .line-btn {
        /* テキストを非表示にして、背景画像を表示 */
        font-size: 0 !important;
        text-indent: -9999px !important;
        overflow: hidden !important;

        /* 背景画像を設定 */
        background-image: url('./images/LINE.png') !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        background-color: transparent !important;

        /* サイズ調整 */
        width: 160px !important;
        height: 55px !important;
        border: none !important;
        border-radius: 0px !important;
        padding: 0 !important;
        color: transparent !important;
    }

    .line-btn i {
        display: none !important;
    }

    .reservation-buttons .line-btn {
        height: 55px !important;
        width: 160px !important;
    }

    .reservation-buttons .hotpepper-btn {
        height: 55px !important;
    }

    .reservation-buttons .hotpepper-btn img {
        height: 55px !important;
        width: 160px !important;
    }

    .reservation-buttons .hotpepper-btn picture {
        height: 55px !important;
    }

    .reservation-buttons a {
        height: 55px !important;
    }

    /* SNS非表示 */
    .sns-title {
        display: none;
    }
    .sns-share{
        top: 70%;
    }
    .instagram-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        background: #1DA1F2;
        border-radius: 50%;
        text-decoration: none;
        transition: transform 0.3s ease;
        box-shadow: 0 4px 15px rgba(43, 166, 255, 0.3);
    }

    .instagram-icon .fab.fa-instagram {
        color: white !important;
        font-size: 30px;
    }

    /* フォントサイズ調整 */
    .salon-text {
        font-size: 32px;
    }

    .nanala-text {
        font-size: 60px;
    }

    .section-title {
        font-size: 28px;
    }

    .content-section {
        padding: 40px 20px;
    }

    /* 背景テキスト調整 */
    .background-text {
        font-size: 67px;
        margin-top: -2px;
    }

    #menu > div.background-textwhite {
        font-size: 67px;
        margin-top: 10px;
    }

    #points > div.background-text {
        font-size: 67px;
        margin-top: -8px;
    }

    #access > div.background-text {
        font-size: 67px;
        margin-top: -8px;
    }

    #qa > div.background-text {
        font-size: 67px;
        margin-top: -8px;
    }

    /* アコーディオン調整 */
    .accordion {
        width: 95%;
        background-size: cover;
    }

    .accordion-header {
        padding: 30px 20px 45px;
    }

    .arrow-icon {
        bottom: 10px;
    }

    .arrow-open, .arrow-close {
        width: 25px;
    }

    .point-image-new {
        width: 60%;
    }

    .accordion-content {
        padding: 0 20px;
    }

    .accordion.active .accordion-content {
        padding: 0% 19% 33%;
    }

    /* Q&A調整 */
    .qa-item {
        padding: 20px;
    }

    .q-mark,
    .a-mark {
        font-size: 20px;
        min-width: 25px;
    }

    .q-text {
        font-size: 16px;
    }

    .a-text {
        font-size: 14px;
    }

    /* 個別調整 */
    #concept > div.concept-message > img.small-baburu.fade-in-droplet.delay-1.visible {
        right: -227px;
        top: -464px;
    }

    #concept > div.concept-message > img.small-baburu.fade-in-droplet.delay-2.visible {
        right: -81px;
        top: -524px;
    }

    #concept > div.concept-message > img.small-baburu.fade-in-droplet.delay-4.visible {
        top: -28px;
        left: 10px;
    }

    #concept > div.concept-message > img.small-baburu.fade-in-droplet.delay-5.visible {
        right: -218px;
        top: -308px;
    }

    #concept > div.concept-content > div > img {
        left: -69px;
        top: 40px;
    }

    .instagram-viewmore {
        margin-left: 0px;
    }

    #concept > div.concept-content > div > a {
        width: 107%;
    }

    #garary1 > img {
        margin-left: 18px;
        max-width: 353px;
    }

    #access > img:nth-child(4) {
        left: -13px;
        top: 37px;
    }

    #access > img:nth-child(7) {
        right: 151px;
        top: -21px;
    }

    #access > img:nth-child(5) {
        left: 201px;
        top: -382px;
    }

    #access > img:nth-child(6) {
        right: -95px;
        top: -302px;
    }

    #oil-treatment > div:nth-child(4) > img {
        max-width: 111%;
        margin-left: -18px;
    }

    #oil-treatment > div.wp-block-group > div > div:nth-child(3) > figure > img {
        max-width: 114%;
        margin-left: -21px;
    }

    #oil-treatment > div.wp-block-group > div > div:nth-child(9) > figure > img {
        max-width: 111%;
        margin-left: -5%;
    }

    #oil-treatment > div.padding-change > div.wp-block-image.aligncenter.size-full.is-resized.shadow-img.is-style-default > figure > img {
        max-width: 131%;
    }


    /* 背景テキスト個別調整 */
    #datumo > div.background-text.line-height-249 {
        top: -60px;
        right: 7px;
        font-size: 61px;
    }

    #datumo > div:nth-child(1) {
        font-size: 61px;
        top: -14px;
    }

    #photpfacial > div:nth-child(1) > div.background-text.magin-top-51 {
        top: -17px;
        font-size: 61px;
    }

    #photpfacial > div:nth-child(1) > div:nth-child(1) {
        top: 8px;
        font-size: 61px;
    }

    #oil-treatment > div.background-text.magin-top-51 {
        top: 14px;
        font-size: 61px;
    }

    #oil-treatment > div:nth-child(1) {
        top: 38px;
        font-size: 61px;
    }

    #whitening > div.background-text {
        top: 12px;
        font-size: 61px;
    }

    .video-container {
        padding: 0 15px;
    }
    .scroll-down{
        display: none;
    }
}

/* 小さいスマートフォン（480px以下） */
@media (max-width: 480px) {
    .pc-none{
        display: block;
    }

    .left-menu {
        left: 10px;
    }

    .left-menu a {
        min-height: 70px;
        padding: 8px 6px;
        width: 22px;
    }

    .left-menu a .en {
        font-size: 14px;
    }

    .left-menu ul {
        gap: 18px;
    }

    .line-btn {
        background-image: url('./images/LINE.png') !important;
        width: 160px !important;
        height: 55px !important;
    }

    .reservation-buttons {
        height: 55px !important;
    }

    .reservation-buttons .line-btn {
        height: 55px !important;
        min-width: 160px !important;
    }

    .reservation-buttons .hotpepper-btn {
        height: 55px !important;
    }

    .reservation-buttons .hotpepper-btn img {
        height: 55px !important;
        width: 160px !important;
    }

    .reservation-buttons .hotpepper-btn picture {
        height: 55px !important;
    }

    .reservation-buttons a {
        height: 55px !important;
    }

    .salon-text {
        font-size: 28px;
    }

    .nanala-text {
        font-size: 50px;
    }

    .video-container {
        padding: 0 10px;
    }

    .animated-logo {
        width: 200px;
        margin-top: 14%;
    }

    .animated-logo.scrolled {
        width: 80px;
    }

    .scroll-down {
        display: none;
    }

    .tel-btn {
        background-image: url('./images/tel.png') !important;
        width: 100% !important;
        height: 55px !important;
        background-position: center;
        margin-bottom: -6px;
        position: fixed;
        z-index: 99999;
    }

    .english-message {
        font-size: 19px;
        margin-top: -27px;
        margin-left: 45px;
    }

    .japanese-message {
        font-size: 16px;
        margin-left: 45px;
    }

    .description {
        font-size: 17px;
        line-height: 29px;
        margin-left: 45px;
    }

    .item-description {
        font-size: 17px;
    }

    .concept-title .en {
        margin-top: 66px;
        margin-left: 22px;
    }

    .concept-title .jp {
        font-size: 11px;
        margin-left: 5px;
        margin-top: 75px;
        font-weight: 300;
    }

    .menu-title {
        margin-top: -24px;
    }

    h2.menu-title > span.jp {
        font-weight: 300;
        font-size: 13px;
    }

    .points-subtitle {
        font-size: 18px;
        color: #007ee8;
        margin-bottom: 39px;
        margin-top: 23px;
    }

    #points > div.points-content > h2 > span {
        margin-right: 24%;
        margin-top: 30px;
    }

    .points-title .jp {
        font-weight: 300;
        font-size: 13px;
    }
    .access-title .en{
        margin-top: 28px;
    }
    .access-title .jp{
        margin-top: 38px;
        font-weight: 300;
    }
    .business-hours dt{
        font-size: 12px;
    }
    .qa-title .en{
        margin-top: 11px;
    }
    .qa-title .jp{
        margin-top: 14px;
        font-weight: 300;
    }
    .question{
        margin-bottom: 16px;
    }
    .qa-list{
        margin-top: -41px;
    }
    /* スマートフォン専用の地図調整 */
    @media (max-width: 768px) {
        .map-container {
            padding-bottom: 75%; /* 4:3のアスペクト比に変更 */
            height: 300px; /* 固定高さも指定 */
            padding-bottom: 0; /* padding-bottomをリセット */
        }

        .map-container iframe {
            position: relative; /* absoluteからrelativeに変更 */
            width: 100%;
            height: 300px;
        }
    }

    @media (max-width: 480px) {
        .map-container {
            height: 250px;
        }

        .map-container iframe {
            height: 250px;
        }
    }


}
