@charset "UTF-8";

/* 共通部分 */
html {
    font-size: 100%;
}

body {
    font-family: "Zen Kaku Gothic New", sans-serif;
    color: #231815;

}

a {
    text-decoration: none;
}

/* a:hover {
    color: #FF63C4;
    display: block;
} */

img {
    max-width: 100%;
}

/* 上に戻るボタン */
html {
    scroll-behavior: smooth;
}

.pagetop {
    height: 100px;
    width: 100px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 2;
}


/* コンテンツ幅 */
.wrap {
    width: 67%;
    margin: 0 auto;
    max-width: 960px;
}

/* ヘッダーーーーーーーーーーーーーー */
.head-flex {
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-flex {

    display: flex;
    list-style-type: none;
    gap: 10px;
}



/* FAQ---------------------------- */
main {
    background-color: #E22A00;
    padding-bottom: 6rem;
    padding-top: 2rem;

}

.faq-titlebox {
    background-image: url(img/mv_1.webp);
}

.faq-title {
    background-color: rgba(255, 255, 255, 0.7);

    text-align: center;


}

.faq-title img {
    width: 294px;
    height: 130px;
    margin: 6rem auto 6rem;

}

.faq1 {
    background-color: #fff;
    margin-top: 2rem;
}

.list-faq {
    list-style: none;
    padding-left: 1rem;

}

.img-gyoza1 {
    background-image: url(img/gyo_wh_sp_1@2x.webp);
    background-position: right bottom;
}

.img-gyoza2 {
    background-image: url(img/gyo_wh_sp_2@2x.webp);
    background-position: right bottom;
}

.img-gyoza3 {
    background-image: url(img/gyo_wh_sp_3@2x.webp);
    background-position: top 30px right 0px;
}

.div-title {
    background-color: #FF63C4;
    color: #fff;
    padding-left: 1rem;
}


h3 {
    font-size: 2rem;
}

.question {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.anser {
    padding-left: 2.5rem;
}

.anser-last {
    padding-bottom: 3rem;
}

.anser-last2 {
    padding-bottom: 3rem;
}

.q {
    color: #FF63C4;
    margin-right: 1rem;
    font-size: 2rem;
}



/* お問い合わせーーーーーーーーーーーーーーー */

.sec-message {
    background-color: #fff;
    padding-top: 100px;
    margin-top: -100px;
}

.message-title {
    background-color: #FF63C4;
    color: #fff;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 3rem;
}

/* 説明文 */
.mes-textbox {
    width: 90%;
    margin: 0 auto;
}



/* フォーム全体のスタイル */
form {
    background-color: white;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    margin: auto;
    text-align: left;
}

/* ラベルのスタイル */
label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #231815;
}

/* 入力欄のスタイル */
input,
textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* テキストエリアの高さを調整 */
textarea {
    resize: vertical;
    height: 120px;
}

/* 送信ボタンのスタイル */
button {
    background-color: #FF63C4;
    color: #fff;
    border: none;
    padding: 10px;
    width: 100%;
    margin-top: 10px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

/* ホバー時のボタンスタイル */
button:hover {
    background-color: #ef0796;
}

/* フッターーーーーーーーー */
.menu-footer {
    text-align: center;
    margin: 30px;
    color: #231815;
}

a {
    text-decoration: none;
    color: #231815;
    display: block;
}


/* PC版ーーーーーーーーーーーーーー */
@media (min-width:768px) {
    #header-menu {
        display: none;
    }
}


/* スマホ版ーーーーーーーーーーーーーーーーー */
@media (max-width:767px) {

    .wrap {
        width: 89%;
        margin: 0 auto;
    }

    /* 上に戻るボタン */

    .pagetop {
        height: 50px;
        width: 50px;
    }

    /* ヘッダーーーーーーーーーーー */
    header {
        position: sticky;
        top: 0;
        height: 100px;
        background-color: #fff;
    }

    .nav-flex {
        display: none;
    }

    .logo {
        width: 4.5rem;
    }

    /*ハンバーガー*/
    .hamburger {
        position: absolute;
        top: 30px;
        right: 30px;
        cursor: pointer;
        width: 32px;
        height: 24px;
        z-index: 10;
    }

    .hamburger span {
        /*3本の線を作る*/
        transition: all .3s;
        position: absolute;
        height: 2px;
        background-color: #E22A00;
        width: 100%;
        z-index: 10;
    }

    .hamburger span:nth-of-type(1) {
        /*上の線の位置*/
        top: 4px;
    }

    .hamburger span:nth-of-type(2) {
        /*真ん中の線の位置*/
        top: 12px;
    }

    .hamburger span:nth-of-type(3) {
        /*下の線の位置*/
        top: 20px;
    }

    .hamburger.open span:nth-of-type(1) {
        /*openのとき、上の線を右斜めにする*/
        top: 10px;
        transform: translateY(6px) rotate(-33deg);
    }

    .hamburger.open span:nth-of-type(2) {
        /*真ん中の線を消す*/
        opacity: 0;
    }

    .hamburger.open span:nth-of-type(3) {
        /*下の線を左斜めにする*/
        top: 22px;
        transform: translateY(-6px) rotate(33deg);
    }

    /*スマホ版ドロワーメニュー*/
    #header-menu {
        height: calc(100vh - 100px);
        width: 40vw;
        position: fixed;
        top: 100px;
        right: -40vw;
        background: rgba(255, 255, 255, 0.7);
        display: flex;
        justify-content: center;
        align-items: flex-start;
        transition: all 0.5s;
    }

    .ham-ul {
        list-style: none;
        margin-top: 5rem;
    }

    .ham-ul li {
        margin-top: 50px;

    }

    .ham-ul li a {
        color: #E22A00;
        font-weight: 600;
        font-size: 1.5rem;
    }

    .ham-ul li :hover {
        color: #FF63C4;
    }



    /*ドロワーメニューが開いた時*/
    #header-menu.open {
        right: 0;
    }


    /* FAQ */
    h3 {
        font-size: 2rem;
    }

    .anser {
        font-size: 0.8rem;
        padding-right: 0.8rem;
    }

    .question {
        font-size: 1rem;
        font-weight: 700;
    }

    .anser-last2 {
        padding-bottom: 0;
    }

    .q {
        font-size: 1.5rem;
    }

    .img-gyoza1 {
        background-size: 30%;
    }

    .img-gyoza2 {
        background-size: 60%;
    }

    .img-gyoza3 {
        background-size: 90%;
        background-position: top 54px right 0px;
    }


    /* お問い合わせ */
    .message-title {
        font-size: 2.5rem;
    }







    /* menu.css と同じ理由・同じ値（2026-08-14） */
    .faq-title img {
        margin: 2rem auto;
    }
}