
* {
    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: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 100;
    padding: 10px 0;
}

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

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

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

.logo {
    font-weight: bold;
    font-size: 1.5rem;
}

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

.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: #D66728;
    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;
}

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

.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;
        height: 400px;
        scroll-snap-align: center;
        font-size: 1.5rem;
    }

}

@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;
}