@charset "UTF-8";
@import url("variables.css");
/* ==================================================================================================================================

  *タイトル

================================================================================================================================== */
h2.wp-block-heading, h3.wp-block-heading, h4.wp-block-heading, h5.wp-block-heading, h6.wp-block-heading {
    position: relative;
    z-index: 1;
    margin: 50px 0 0 0;
}
h2.wp-block-heading+h3.wp-block-heading,
h3.wp-block-heading+h4.wp-block-heading,
h4.wp-block-heading+h5.wp-block-heading,
h5.wp-block-heading+h6.wp-block-heading {
    margin-top: 0;
}
h2.wp-block-heading {
    margin-bottom: 40px;
    padding: 64px 0 0;
    font-family: "zen-maru-gothic", sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 1.4;
    letter-spacing: 0.12em;
    text-align: center;
    color: #423229;
    background: url(../images/under/tit_deco.png) no-repeat center top/100px auto;
}
h2.wp-block-heading:not(:first-child) {
    margin-top: 80px !important;
}
h3.wp-block-heading {
    margin-bottom: 25px;
    padding: 0 8px 13px;
    font-family: "zen-maru-gothic", sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.5;
    letter-spacing: 0.08em;
    color: #423229;
    background: url(../images/under/mtit_deco.png) repeat-x left bottom/auto 6px;
}
h4.wp-block-heading {
    margin-bottom: 15px;
    font-family: "zen-maru-gothic", sans-serif;
    font-weight: 500;
    font-size: 125%;
    list-style: 1.6;
    color: var(--sub-color);
}
h5.wp-block-heading {
    margin-bottom: 10px;
    color: var(--main-color);
    font-weight: bold;
    font-size: 120%;
}
h6.wp-block-heading {
    font-size: 110%;
}

/* ==================================================================================================================================

  *ボタンコンテナ

================================================================================================================================== */
.button-wrapper {
    display: flex;
    flex-flow: wrap;
    gap: 13px 10px;
    width: 100%;
}
.button-wrapper.align-left {
    justify-content: flex-start;
}
.button-wrapper.align-center {
    justify-content: center;
}
.button-wrapper.align-right {
    justify-content: flex-end;
}
/* ==================================================================================================================================

  *ボタン

================================================================================================================================== */
.simple-button_link {
    position: relative;
    display: inline-block;
    min-width: 250px;
    padding: 10px 60px 11px 50px;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    border-radius: 300px;
    color: #ffffff;
    font-size: 105%;
    letter-spacing: 0.15em;
    text-align: center;
    vertical-align: bottom;
    transition: background 0.2s, color 0.2s;
}
.simple-button_link::after {
    content: "\f061";
    position: absolute;
    top: 50%;
    right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    padding: 0 0 1px 2px;
    background: #ffffff;
    border-radius: 50%;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--main-color);
    font-size: 10px;
    transform: translateY(-50%);
    transition: background 0.2s, color 0.2s;
}
.simple-button_link--coming {
    pointer-events: none;
    overflow: hidden;
}
.simple-button_link--coming::before {
    content: "準備中";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    color: white;
    font-size: 90%;
    transform: translate(-50%, -50%);
}
a.simple-button_link:hover {
    background: #ffffff;
    color: var(--main-color);
}
a.simple-button_link:hover::after {
    background: var(--main-color);
    color: #ffffff;
}
/* ==================================================================================================================================

  *リスト（ul）

================================================================================================================================== */
/* --------------------------------------------------
リストスタイル
-------------------------------------------------- */
.list>.wp-block {
    margin: 0 !important;
}
.list--none {
    padding: 0;
}
.list--bg {
    padding: 25px;
    background: var(--bg-color);
}
.list--border {
    padding: 25px;
    border: 1px solid var(--main-color);
}
@media screen and (max-width: 768px) {
    .list--bg {
        padding: 20px;
    }
    .list--border {
        padding: 20px;
    }
}
/* --------------------------------------------------
表示形式
-------------------------------------------------- */
.list-disp--vertical {
    display: flex;
    flex-flow: column;
    gap: 20px;
}
.list-disp--horizontal {
    display: flex;
    flex-flow: wrap;
    gap: 10px 20px;
}
@media screen and (max-width: 768px) {
    .list-disp--vertical {
        gap: 20px;
    }
    .list-disp--horizontal {
        gap: 10px 20px;
    }
}
/* --------------------------------------------------
リストタイプ
-------------------------------------------------- */
.list-type--circle li {
    position: relative;
    padding: 0 0 0 30px;
    list-style-type: none;
}
.list-type--circle li::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 10px;
    display: block;
    width: 5px;
    height: 5px;
    background-color: var(--main-color);
    border-radius: 50%;
}
.list-type--check li {
    position: relative;
    padding: 0 0 0 30px;
    list-style-type: none;
}
.list-type--check li::before {
    content: "\f14a";
    position: absolute;
    top: 0px;
    left: 7px;
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 900;
    color: var(--main-color);
    font-size: 100%;
}
.list-type--number {
    counter-reset: number;
    gap: 15px 20px;
    padding: 25px 30px;
}
.list-type--number li {
    position: relative;
    padding: 8px 0 8px 55px;
    list-style: none;
}
.list-type--number li::before {
    content: counter(number);
    counter-increment: number;
    box-sizing: border-box;
    position: absolute;
    top: 5px;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    padding: 0 0 0 2px;
    background: var(--main-color);
    border-radius: 50%;
    color: #ffffff;
}
@media screen and (max-width: 768px) {
    .list-type--circle li {
        padding: 0 0 0 25px;
    }
    .list-type--circle li::before {
        top: 12px;
        left: 10px;
        width: 5px;
        height: 5px;
    }
    .list-type--check li {
        padding: 0 0 0 30px;
    }
    .list-type--check li::before {
        top: 1px;
        left: 7px;
        font-size: 97%;
    }
}
/* ==================================================================================================================================

  *アコーディオン

================================================================================================================================== */
/* --------------------------------------------------
ベース設定
-------------------------------------------------- */
.accordion_item:not(:last-child) {
    margin: 0 auto 15px;
}
.accordion_inner {
    position: relative;
    z-index: 1;
}
.accordion_title {
    position: relative;
    z-index: 1;
    padding: 20px 50px 20px 30px;
    background: var(--bg-color);
    cursor: pointer;
    transition: background 0.3s, color 0.2s;
}
.accordion_title::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 25px;
    z-index: 2;
    width: 15px;
    height: 2px;
    background: var(--main-color);
    transform: rotate(90deg);
    transition: transform 0.3s, opacity 0.3s;
}
.accordion_title::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 25px;
    z-index: 2;
    width: 15px;
    height: 2px;
    background: var(--main-color);
}
.accordion_title.is-active::before {
    opacity: 1;
    transform: rotate(180deg);
}
.accordion_contents {
    display: none;
    margin: 10px 0 0;
    padding: 20px 30px;
    background: var(--bg-gray);
}
.accordion_contents .accordion_inner>*:not(:last-child) {
    margin: 0 auto 1em;
}
/* --------------------------------------------------
FAQ
-------------------------------------------------- */
.accordion--faq .accordion_inner {
    padding: 0 0 0 37px;
}
.accordion--faq .accordion_inner::before, .accordion--faq .accordion_inner::after {
    position: absolute;
    top: 47%;
    left: 0;
    font-size: 140%;
    line-height: 1;
    transform: translateY(-50%);
}
.accordion--faq .accordion_title>.accordion_inner::before {
    content: "Q.";
    color: var(--main-color);
}
.accordion--faq .accordion_contents>.accordion_inner::before {
    content: "A.";
    color: #c52b2b;
}