@charset "UTF-8";

/* base
=============================== */

*,
*:before,
*:after {
    box-sizing: border-box;
}


/* html, body
=============================== */

html {
    font-size: 62.5%/* 10px */
    ;
}

html,
body {
    height: 100%;
}

body {
    background-color: #fffbed;
    color: #000000;
    font-size: 1.6em;
    font-family: "NotoSansCJKjp-Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    word-break: break-all;
    line-break: normal;
    /* 標準の禁則 */
    word-wrap: break-word;
    /* 長い単語は改行 */
    overflow-wrap: break-word;
    /* 長い単語は改行 */
}

body,
.faqWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
}


/* Link
=============================== */

a,
a:visited,
a:active,
a:hover {
    color: #3c4169;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


/* header
=============================== */

.faqHeader {
    background-color: #3c4169;
    color: #fff;
    text-align: center;
    /*height: 70px;*/
    padding: 6px 0 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.faqHeader-title {
    font-size: 1.8rem;
}

.faqHeader-title__sub {
    font-size: 1.4rem;
}


/* contents
=============================== */

.faqContents {
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}


/* page内link
=============================== */

.faq-link {
    margin-top: 30px;
    border-top: 1px solid #d5d5d5;
}

.faq-link li {
    border-bottom: 1px solid #d5d5d5;
    font-weight: 700;
}

.faq-link li a:before {
    display: inline-block;
    text-align: center;
    background-color: #3c4169;
    width: 16px;
    height: 16px;
    line-height: 16px;
    border-radius: 8px;
    color: #fff;
    font-family: "Font Awesome 5 Free";
    content: '\f107';
    font-weight: 900;
    font-size: 10px;
    margin-right: 7px;
}


/* for windows firefox */

@-moz-document url-prefix() {
    .faq-link li a:before {
        padding-top: 1px;
    }
}

.faq-link li a {
    display: block;
    padding: 20px 15px;
}


/* faqSection
=============================== */

.faqSection {
    margin-top: 30px;
}

.faqSection-title {
    text-align: center;
    background-color: #f0dfbb;
    border-bottom: 2px solid #d3b07a;
    padding: 15px;
    font-weight: 700;
}

.faq-radio,
.faq-checkbox {
    margin: 0 3px 0 4px;
    vertical-align: baseline;
}


/* accordion
=============================== */

.faq-accordion-container li {
    border-bottom: 1px solid #d5d5d5;
}

.faq-accordion-title {
    position: relative;
    margin: 0;
    color: #3c4169;
    padding: 20px 55px 20px 15px;
    cursor: pointer;
}

.faq-accordion-title:hover,
.faq-accordion-title:active,
.faq-accordion-title.open {
    background-color: #fff7db;
}

.faq-accordion-title:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 15px;
    height: 3px;
    /*縦線に*/
    transform: rotate(90deg);
    background: #3c4169;
    transition: all .3s ease-in-out;
}

.faq-accordion-title::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    /*横線*/
    width: 15px;
    height: 3px;
    background: #3c4169;
    transition: all .2s ease-in-out;
}

.faq-accordion-title.open::before {
    transform: rotate(180deg);
}

.faq-accordion-title.open::after {
    opacity: 0;
}

.faq-accordion-title-inner {
    text-indent: -1.5em;
    padding-left: 1.5em;
    font-weight: 700;
}

.faq-accordion-title-en {
    font-family: 'Rubik', sans-serif;
    font-size: 1.8rem;
    margin-right: 0.6em;
    font-weight: normal;
}

.faq-accordion-content {
    padding: 20px 15px 20px 15px;
    background-color: #fff;
}

.faq-accordion-content-inner {
    text-indent: -1.5em;
    padding-left: 1.5em;
    font-size: 1.5rem;
}


/* pagetop
=============================== */

.faqPagetop {
    text-align: center;
    margin: 100px auto 20px;
    width: 50px;
}

a.faqPagetop-link {
    background-color: #3c4169;
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 25px;
    display: block;
    font-size: 24px;
}

a.faqPagetop-link i {
    /*padding: 13px 0;*/
}


/* footer
=============================== */

.sp-only {
    display: none;
}

@media screen and (max-width:640px) {
    .sp-only {
        display: block;
    }
}

.faqFooter {
    margin-top: auto;
    /* footer下に固定  */
    text-align: center;
}

.faqCopyright {
    font-size: 1rem;
    padding: 20px 0;
}