@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Noto+Serif+JP&display=swap');
:root {
    --bg_gray-yellow: #F7F7EE;
}
html{
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;/*Chrome,Safari*/
    -ms-text-size-adjust: 100%;/*EgdeMobile*/
    -moz-text-size-adjust: 100%;/*firefox*/
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body{
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: calc(var(--vh) * 100);
    padding-bottom: calc(env(safe-area-inset-bottom) + 62px);
    font-size:1.4rem;
    font-family: "Noto Sans JP",sans-serif;
    margin:0;
    padding:0;
    letter-spacing: 0.03em;
    color: #282828;
}
.mod-mb0 { margin-bottom: 0 !important; }
.mod-mb10 { margin-bottom: 10px !important; }
.mod-mb5 { margin-bottom: 5px !important; }
.mod-mt20 { margin-top: 20px !important; }
.mod-pb20 { padding-bottom: 20px !important; }
a { color: 282828; }
a:hover { opacity: 0.8; }
a.under_line { text-decoration: underline; }
button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}
img {
    width: 100%;
    object-fit: contain;
}
.f-red {
    color: var(--red);
}
.f-gold {
    color: #A78B4E;
}
.f-weight-500 {
    font-weight: 500;
}
.f-weight-600 {
    font-weight: 600;
}
.mod-f8 {
    font-size: 0.8rem !important;
}
.mod-f12 {
    font-size: 1.2rem !important;
}
.mod-f16 {
    font-size: 1.6rem !important;
}
.text-center {
    text-align: center;
}
/*--input,select*/
.button {
    width: 260px;
    height: 50px;
    margin: 0 auto;
}
.wrapper {
    width: 100%;
    max-width: 512px;
    margin: 0 auto;
}
.wrapper .wrapper-inner {
    width: 100%;
    max-width: calc(100% - 64px);
    margin: 0 auto;
    padding: 4% 0;
}
.wrapper .wrapper-inner.no-padding {
    padding: 0;
}
.wrapper .wrapper-inner h1 {
    text-align: center;
    font-size: 2.4rem;
    line-height: 1.6;
    position: relative;
    margin-top: 60px;
}
.wrapper .wrapper-inner h2 {
    width: 100%;
    margin: 30px auto;
    text-align: center;
    font-size: 2.0rem;
    font-weight: 600;
}
.wrapper .wrapper-inner h2 p {
    text-align: left;
}
.wrapper .wrapper-inner .qa-label.title h2 {
    margin: 0 auto;
}
.wrapper .wrapper-inner .qa-label.title h2 p {
    margin-left: 0;
}
/*内容*/
.wrapper-inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}
.wrapper-inner.section01 {
    position: relative;
    padding-bottom: 10px;
}
/*QA*/
.qa_list {
    width: 100%;
    margin: 40px auto 0;
    text-align: left;
}
.qa_list.qa {
    width: 100%;
}
.qa_list.qa.link a:hover,
.qa_list.qa.link a:active {
    opacity: 0.8;
}
.qa-check{
    display: none;
}
.qa-label{
    color: #2c2c2c;
    display: block;
    margin-bottom: 1px;
    padding: 15px 40px 15px 5px;
    border-bottom: 1px solid #5E5E5E;
    position: relative;
}
.qa-label p {
    line-height: 1.6;
    margin-left: 15px;
}
.qa-label.qa p {
    margin-left: 0;
    font-size: 1.4rem;
}
.qa-label::before {
    content: "";
    display: inline-block;
    background: url("../img/bistro/qa/q.svg") no-repeat;
    background-size:contain;
    width: 13px;
    height: 21px;
    position: absolute;
    left: 0;
    top: 20px;
}
.qa-label.title::before {
    background: none;
}
.qa-label.qa::before {
    background: none;
}
.qa-content .question p {
    margin-left: 0;
    font-size: 1.4rem;
    font-weight: 600;
}
p.qestion_text::before {
    content: "";
    display: inline-block;
    background: url("../img/foodable/icon_q_qa.svg") no-repeat;
    background-size:contain;
    width: 17px;
    height: 24px;
    vertical-align: middle;
}
.qa-content .question p.anser_text {
    font-size: 1.2rem;
    line-height: normal;
    font-weight: 400;
    margin-left: 24px;
    padding: 20px 0;
    background: var(--bg_gray-yellow);
}
.qa-label::after {
    content: "";
    display: inline-block;
    background: url("../img/bistro/qa/arrow.svg") no-repeat;
    background-size:contain;
    width: 15px;
    height: 8px;
    position: absolute;
    right: 5px;
    top: 23px;
}
.qa-label.title::after {
    top: 32px;
}
.qa-content{
    height: 0;
    opacity: 0;
    /* padding: 0 10px; */
    /* transition: .5s; */
    visibility: hidden;
}
.qa-check:checked + .qa-label + .qa-content{
    display: initial;
    min-height: 40px;
    opacity: 1;
    /* padding: 10px; */
    visibility: visible;
}
.qa-check:checked + .qa-label + .qa-content.no-bg-color .qa-content.last {
    margin-bottom: 40px;
}
.qa-check:checked + .qa-label + .qa-content.no-bg-color .qa-content.last p {
    margin-bottom: 40px;
}
.qa-check:checked + .qa-label {
    border-bottom: none;
}
.qa-check:checked + .qa-label.title::after {
    background: none;
}
.qa-content.qa .question {
    padding: 15px 0;
}
.qa-content.qa .question:last-child {
    border-bottom: 1px solid #5E5E5E;
    position: relative;
    top: 15px;
    margin-bottom: 10px;
}
.qa-content p {
    width: calc(100% - 40px);
    font-size: 1.2rem;
    line-height: 1.5;
    padding: 15px 20px;
    background: var(--bg_gray-yellow);
}
.qa-content.no-bg-color .qa_list {
    margin-top: 0;
}
.qa-content.no-bg-color .qa-label p {
    background: transparent;
    font-size: 1.4rem;
    padding: 0;
    font-weight: 500;
}
a {
    color: #A78B4E;
    border-bottom: 1px solid #A78B4E;
}
a:hover,
a:active {
    color: #A78B4E;
    opacity: 0.8;
}
.wrapper-inner .contact {
    width: 100%;
    margin: 60px auto 40px;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .wrapper .wrapper-inner {
        max-width: calc(100% - 32px);
    }
    .wrapper-inner {
        margin-top: 20px;
    }
    .wrapper .wrapper-inner h1 {
        margin-top: 0;
    }
    .wrapper .wrapper-inner.no-padding h1 {
        margin-top: 60px;
    }
}
@media screen and (max-width: 560px) {
}