* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    line-height: 1.6;
    color: #333;
}

body::before {
    content: "";
    display: block;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: -1;
    width: 100%;
    height: 100vh;
    background-image: url("img/kitsune-LP.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.container {
    max-width: 600px;
    margin: 0 auto;
}

@media screen and (max-width: 600px) {
    .container {
        padding: 0;
    }
}

.header {
    max-width: 600px;
    background-color: #003180;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 100;
    position: sticky;
    top: 0;
}

.header-inner {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    width: 100%;
}

@media screen and (max-width: 600px) {
    .header .container {
        padding: 0 15px;
    }
}

.logo {
    font-weight: bold;
    font-size: 1.2rem;
    color: #fff;
}

.nav-button {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
}

/* フルスクリーンナビゲーションオーバーレイ */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 600px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #003180;
    z-index: 1000;
    flex-direction: column;
}

.nav-overlay.open {
    display: flex;
}

.nav-overlay-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    height: 50px;
    background-color: #003180;
    border-bottom: 2px solid #003180;
}

.nav-overlay-header .logo {
    color: #fff;
}

.nav-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
    padding: 0 10px;
}

.nav-menu {
    flex: 1;
    background-color: #fff;
    margin: 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 30px 0;
    text-align: center;
}

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

.nav-menu a {
    display: block;
    padding: 18px 40px;
    color: #003180;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

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

.content {
    max-width: 600px;
    margin: 0 auto;
}

.section {
    /* margin-bottom: 20px; */
}

.section img {
    width: 100%;
    height: auto;
    display: block;
}

.footer {
    /* position: fixed;
    bottom: 0;
    left: 0; */
    width: 100%;
    background-color: #003180;
    color: #fff;
    padding: 15px 0;
    padding-bottom: 210px;
    z-index: 100;
}

.footer-inner {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.footer .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
}

@media screen and (max-width: 600px) {
    .footer .container {
        padding: 0;
    }
}

.footer-nav {
    display: flex;
    list-style: none;
}

.footer-nav li {
    margin-right: 15px;
}

.footer-nav li:last-child {
    margin-right: 0;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
}

.copyright {
    font-size: 0.8rem;
}

/* CTAボタンのスタイル */
.cta-container {
    position: fixed;
    bottom: 0px;
    max-width: 600px;
    width: 100%;
    background: linear-gradient(to right, #f97316, #facc15);
    padding-top: 5px;
    padding-bottom: 5px;
}

.banner {
    width: 85%;
    margin: auto;
}

.banner img {
    width: 100%;
}

.note {
    text-align: center;
    font-size: 12px;
}

.updown {
    animation-name: updown1;
    /* アニメーション名の指定 */
    animation-delay: 0s;
    /* アニメーションの開始時間指定 */
    animation-duration: 2s;
    /* アニメーション動作時間の指定 */
    animation-timing-function: ease-in-out;
    /* アニメーションの動き指定（徐々に早く）*/
    animation-iteration-count: infinite;
}

@keyframes updown1 {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.voice-text {
    width: 185px;
    margin: auto;
    padding-top: 15px;
    padding-bottom: 10px;
}

.voice-text img {
    width: 100%;
}


.voice-section {
    background-color: #fff;
    display: flex;
    gap: 20px;
    max-width: 600px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    box-shadow: 0 3px 10px 0 rgba(#000, 0.1);
    -webkit-overflow-scrolling: touch;
    scroll-padding: 1rem;
    padding: 1rem;
    border-radius: 5px;
}

/* セクション4: 3つの強み */
.advantage-section {
    background-color: #fff;
    display: flex;
    gap: 20px;
    max-width: 600px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    box-shadow: 0 3px 10px 0 rgba(#000, 0.1);
    -webkit-overflow-scrolling: touch;
    scroll-padding: 1rem;
    padding: 1rem;
    border-radius: 5px;
}

/* セクション5: 取り扱い商品 */
.items-section {
    display: flex;
    gap: 20px;
    max-width: 600px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    box-shadow: 0 3px 10px 0 rgba(#000, 0.1);
    -webkit-overflow-scrolling: touch;
    scroll-padding: 1rem;
    padding: 1rem;
    border-radius: 5px;
}

/* セクション6: デザイン作例集 */
.design-section {
    display: flex;
    gap: 10px;
    max-width: 600px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    box-shadow: 0 3px 10px 0 rgba(#000, 0.1);
    -webkit-overflow-scrolling: touch;
    scroll-padding: 1rem;
    padding: 1rem;
    border-radius: 5px;
}

/* セクション7: 制作実績 */
.works-section {
    display: flex;
    gap: 20px;
    max-width: 600px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    box-shadow: 0 3px 10px 0 rgba(#000, 0.1);
    -webkit-overflow-scrolling: touch;
    scroll-padding: 1rem;
    padding: 1rem;
    border-radius: 5px;
}

.section__item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 415px;
    scroll-snap-align: center;
    font-size: 1.5rem;
}

.items-section .section__item {
    flex: 0 0 230px;
}

/* 横スクロールセクション共通のラッパー */
.scroll-wrapper {
    position: relative;
    overflow: hidden;
}

/* 右端フェードグラデーション */
.scroll-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.9));
    pointer-events: none;
    z-index: 2;
}

/* 青背景セクション用のグラデーション */
.scroll-wrapper.dark::after {
    background: linear-gradient(to right, transparent, rgba(0, 49, 128, 0.9));
}

/* スワイプヒントアニメーション */
@keyframes swipeHint {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-20px);
    }

    50% {
        transform: translateX(0);
    }

    75% {
        transform: translateX(-10px);
    }

    100% {
        transform: translateX(0);
    }
}

.scroll-hint {
    animation: swipeHint 1.5s ease-in-out;
    animation-delay: 0.5s;
    animation-fill-mode: both;
}

/* スクロールインジケーター矢印 */
.scroll-indicator {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    color: #003180;
    font-size: 24px;
    animation: bounceRight 1.5s ease-in-out infinite;
    opacity: 0.7;
}

.scroll-wrapper.dark .scroll-indicator {
    color: #fff;
}

@keyframes bounceRight {

    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(-50%) translateX(5px);
    }
}

/* FAQセクション - 開閉式アコーディオン */
.faq-section {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: #003180;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    position: relative;
}

.faq-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background-color: #fff;
    color: #003180;
    border-radius: 50%;
    font-weight: bold;
    font-size: 16px;
    margin-right: 15px;
    flex-shrink: 0;
}

.faq-icon-a {
    background-color: #f97316;
    color: #fff;
}

.faq-q-text {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    flex: 1;
    line-height: 1.4;
}

.faq-toggle {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle {
    transform: rotate(-90deg);
    color: #003180;
}

/* 開いた時のスタイル */
.faq-item.open {
    background-color: #fff;
    border: 2px solid #003180;
}

.faq-item.open .faq-q-text {
    color: #003180;
}

.faq-item.open .faq-icon {
    background-color: #003180;
    color: #fff;
}

.faq-answer {
    display: none;
    padding: 0 20px 15px 20px;
}

.faq-answer-inner {
    display: flex;
    align-items: flex-start;
}

.faq-item.open .faq-icon-a {
    display: none;
}

.faq-a-text {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
    padding-top: 5px;
}

.faq-item.open .faq-a-text {
    color: #003180;
}

.area01 {}

.qa-title {
    font-size: 22px;
    text-align: center;
    padding-top: 45px;
    padding-bottom: 15px;
}

.inner {
    max-width: 600px;
    padding-bottom: 35px;
}

.qa_box {
    width: 90%;
    margin: auto;
    padding-bottom: 25px;
}

.qa_box .qa_q {
    background-color: #FFF;
    border: 2px solid #D66728;
    border-radius: 10px;
    padding: 20px 25px;
    position: relative;
    cursor: pointer;
    color: #D66728;
}

.toggle_icon {
    position: absolute;
    top: 50%;
    right: 2rem;
    width: 20px;
    height: 20px;
    margin-top: -15px;
}

.toggle_icon:before {
    position: absolute;
    content: "◀︎";
    margin: auto;
    box-sizing: border-box;
    vertical-align: middle;
}

.qa_q.open .toggle_icon:before {
    position: absolute;
    content: "▼";
    margin: auto;
    box-sizing: border-box;
    vertical-align: middle;
}

.qa_box .qa_a {
    display: none;
    padding: 25px 30px;
    border-left: 2px solid #D66728;
    border-right: 2px solid #D66728;
    border-bottom: 2px solid #D66728;
    border-radius: 10px;
    box-sizing: border-box;
    background: #fff;
}

.q_txt {
    display: block;
    padding-left: 15px;
    position: relative;
    line-height: 1.5;
    font-size: 20px;
}

/* .q_txt::before {
    position: absolute;
    left: 0;
    content: "Q．";
    color: #D66728;
    font-size: 20px;
    font-weight: bold;
} */

.a_txt {
    display: block;
    position: relative;
    line-height: 1.5;
    color: #D66728;
    font-size: 18px;
}

/* .a_txt::before {
    position: absolute;
    left: 0;
    content: "A．";
    color: #de0000;
    font-size: 20px;
    font-weight: bold;
} */

@media screen and (max-width: 750px) {
    .inner {
        width: auto;
    }

    .toggle_icon {
        right: 0.8rem;
    }

    .toggle_icon:before {
        width: 15px;
    }

    .toggle_icon:after {
        height: 15px;
        right: 7px;
    }

    .q_txt {
        padding-left: 5px;
        font-size: 14px;
    }

    .a_txt {
        font-size: 14px;
    }

    .section__item {
        display: flex;
        justify-content: center;
        align-items: center;
        flex: 0 0 300px;
        scroll-snap-align: center;
        font-size: 1.5rem;
    }

    .footer {
        padding-bottom: 160px;
    }

}

@media screen and (max-width: 480px) {
    .toggle_icon {
        right: 0.4rem;
    }
}

.shop-title {
    font-size: 22px;
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
}

.shop-map {
    width: 95%;
    margin: auto;
    padding-bottom: 15px;
}

.shop-info {
    width: 95%;
    margin: auto;
    padding-bottom: 15px;
    font-size: 18px;
}