@charset "UTF-8";

/* Noto Sans JP */
@font-face {
    font-family: 'Noto Sans JP';
    src: url('../fonts/Noto_Sans_JP/NotoSansJP-Regular.otf') format('opentype'),
        url('../fonts/Noto_Sans_JP/NotoSansJP-Thin.otf') format('opentype'),
        url('../fonts/Noto_Sans_JP/NotoSansJP-Bold.otf') format('opentype');
    font-display: swap;
}

/* -----------------------
リセット
----------------------- */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

html,
body,
h1,
h2,
p,
ul,
li,
dl,
dt,
dd {
    margin: 0;
    padding: 0;
    line-height: 1.0;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    border: none;
    vertical-align: bottom;
    max-width: 100%;
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;
}

/* -----------------------
レイアウト
----------------------- */

html, body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    color: #333;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.webp body {
    background-image: url('../img/background.webp');
}

.no-webp body {
    background-image: url('../img/background.jpg');
}

main {
    width: 700px;
    margin-inline: auto;
}

/* -----------------------
CTA
----------------------- */
.cta1 {
    width: 700px;
    height: 848px;
    background-size: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.webp .cta1 {
    background-image: url('../img/cta/background_1.webp');
}

.no-webp .cta1 {
    background-image: url('../img/cta/background_1.jpg');
}

.cta2 {
    width: 700px;
    height: 1000px;
    background-size: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.webp .cta2 {
    background-image: url('../img/cta/background_2.webp');
}

.no-webp .cta2 {
    background-image: url('../img/cta/background_2.jpg');
}

.cta-box {
    width: 620px;
    height: 856px;
    margin-bottom: 50px;
}

.webp .cta-box {
    background-image: url('../img/cta/shakotan-uni.webp');
    background-repeat: no-repeat;
}

.no-webp .cta-box {
    background-image: url('../img/cta/shakotan-uni.jpg');
    background-repeat: no-repeat;
}

.cta-button {
    margin-top: 590px;
    text-align: center;
}

.cta-text {
    width: 560px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
}

.cta-text p {
    color: #ffffff;
    font-weight: normal;
    font-size: 1.0625rem;
    line-height: 1.1;
    margin-top: 13px;
}

/* -----------------------
お客様の声
----------------------- */
.customer-voice {
    background-image: url('../img/customer-voice/background.jpg');
    background-size: 100%;
}

.webp .customer-voice {
    background-image: url('../img/customer-voice/background.webp');
}

.no-webp .customer-voice {
    background-image: url('../img/customer-voice/background.jpg');
}

.customer-voice-card {
    width: 580px;
    background-color: #ffffff;
    margin-left: 30px;
    margin-right: 30px;
    margin-bottom: 50px;
    padding: 20px;
}

.customer-voice-card-list {
    padding-top: 65px;
    padding-bottom: 130px;
}

.customer-voice-card:last-child {
    margin-bottom: 0px;
}

.customer-voice-card:nth-child(odd) {
    margin-left: auto;
}

.customer-voice-card_head {
    border: #333;
    margin-bottom: 20px;
    padding-bottom: 9px;
    border-bottom: solid 1px #707070;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.customer-voice-card_head_name {
    font-size: 2.125rem;
}

.customer-voice-card_head_date {
    font-size: 1.25rem;
    margin-right: 15px;
}

div.customer-voice-card_text {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 2;
}

.customer-voice-card_text em {
    font-style: normal;
    color: #BA0000;
}

/* -----------------------
Q&A
----------------------- */
.qa {
    width: 100%;
    background-color: #ffffff;
    padding-top: 100px;
    padding-bottom: 100px;
}

.qa h2.qa-title {
    margin-bottom: 4.375rem;
}

.qa h2.qa-title img {
    display: block;
    margin: 0 auto;
}

.qa-content {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
}

.qa-content dt,
.qa-content dd {
    position: relative;
    padding-left: 4rem;
}

.qa-content dt::before,
.qa-content dd::before {
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.qa-content dt {
    font-size: 1.375rem;
    margin-bottom: 1rem;
}

.qa-content dd {
    font-size: 1.25rem;
    line-height: 1.6rem;
}

.qa-content dd:not(:last-child) {
    margin-bottom: 3.4375rem;
}

.qa-content dt::before {
    margin-top: -0.3125rem;
    content: url('../img/qa/q.svg');
}

.qa-content dd::before {
    margin-top: -0.3125rem;
    content: url('../img/qa/a.svg');
}

/* -----------------------
footer
----------------------- */
footer {
    padding: 2rem;
    font-size: 15px;
    background: #E8EBF2;
}

footer a {
    margin-top: 1rem;
}

footer a:hover {
    color: #000;
}

footer ul {
    padding: 0;
    margin: 0;
}


footer .flex {
    display: flex;
}

footer hr {
    height: 1px;
    border: 0;
    border-bottom: solid 1px #707070;
}

.footer_navi {
    display: flex;
    gap: 30px 20px;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.footer_logo {
    display: inline-block;
    margin-bottom: 1rem;
}
