@charset "utf-8";

/* 生前整理・遺品整理ページ----------------------------- */

/* このページではキービジュアル(sz-hero)を独自に組むため、
   共通header.phpのデフォルトfvタイトル部分のみ非表示にする
   （footer-ctaの固定ボタンは非表示にしない） */
.page-template-page-seizenseiri-php .fv {
    display: none !important;
}
.page-template-page-seizenseiri-php .fv .main-width:first-child {
    display: none;
}
:root{
    --main-color-gray: #5a5a5a;
}
p {
    font-weight: 500;
}
.sp-only-flex {
    display: none !important;
}
.pc-only-flex {
    display: flex !important;
}
@media (max-width: 768px) {
    .sp-only-flex {
        display: flex !important;
    }
    .pc-only-flex {
        display: none !important;
    }
    .page-template-page-seizenseiri-php .fv .main-width:first-child {
        display: flex;
        align-items: center;
    }
    .page-template-page-seizenseiri .fv {
        padding-top: 0;
    }
    .page-template-page-seizenseiri-php .fv .main-width img {
        max-width: 60px;
    }
    .page-template-page-seizenseiri-php .fv .main-width {
        padding: 20px 0 10px;
    }
}
/* 共通見出し----------------------------- */
.sz-section-title {
    position: relative;
    font-family: "Noto Serif JP", serif;
    font-size: 1.9rem;
    padding-left: 22px;
}
.sz-section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0em;
    bottom: 0em;
    width: 6px;
    background-color: var(--main-color-blue);
}
.sz-section-title--center {
    text-align: center;
    padding-left: 0;
    margin-bottom: 40px;
}
.sz-section-title--center::before {
    display: none;
}
.sz-sub-title {
    font-family: "Noto Serif JP", serif;
    font-size: 1.3rem;
    color: var(--main-color-blue);
    margin-bottom: 15px;
}
.sz-section-margin-left {
    margin-left: 50px;
}
@media (max-width: 768px) {
    .sz-section-title {
        font-size: 1.3rem;
        padding-left: 14px;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    .sz-section-title--center {
        padding-left: 0;
    }
    .sz-sub-title {
        font-size: 1.1rem;
    }
    .sz-section-margin-left {
        margin: 0;
    }
}

/* キービジュアル----------------------------- */
.sz-hero {
    position: relative;
}
.sz-hero-img {
    position: absolute;
    width: 100%;
    height: 100%;
}
.sz-hero-img::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(90deg, var(--main-bg-color) 0%, rgba(252, 245, 234, 0) 25%); */
}
.sz-hero-img picture,
.sz-hero-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sz-hero-inner {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}
.sz-hero-text {
    font-family: "Noto Serif JP", serif;
    max-width: 680px;
    text-align: center;
}
.sz-hero-title {
    font-size: 3rem;
    color: var(--main-color-blue);
    margin-bottom: 20px;
}
.sz-hero-sub {
    font-size: 2.3rem;
    color: var(--main-color-blue);
    line-height: 1.8;
    text-align: center;
    font-weight: 600;
}
@media (max-width: 768px) {
    .sz-hero-img {
        position: static;
        width: 100%;
    }
    .sz-hero-img::after {
        display: none;
    }
    .sz-hero-inner {
        padding: 30px 0;
        text-align: center;
    }
    .sz-hero-text {
        max-width: 100%;
    }
    .sz-hero-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    .sz-hero-sub {
        font-size: 1.2rem;
        font-weight: 700;
    }
    .sz-hero-inner {
        position: absolute;
        top: 0;
        right: 0;
        transform: translate(-20px, 0px);
        z-index: 2;
    }
}

/* お悩みポイント----------------------------- */
.sz-pain {
    background-color: #f5f5f5;
}
.sz-pain-inner {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 50px 0;
}
.sz-pain-img {
    flex: 1;
    overflow: hidden;
}
.sz-pain-text {
    flex: 1;
}
.sz-pain-text p {
    color: var(--main-color-gray);
    font-size: 1rem;
}
.sz-pain-title {
    font-family: "Noto Serif JP", serif;
    font-size: 1.9rem;
    line-height: 1.7;
    color: var(--main-color-blue);
    margin-bottom: 20px;
    margin-left: -18px;
}
@media (max-width: 768px) {
    .sz-pain-inner {
        flex-direction: column;
        gap: 20px;
        padding: 30px 0 30px;
    }
    .sz-pain-title {
        font-size: 1.1rem;
        text-align: center;
        margin-left: 0px;
        margin-bottom: 10px;
    }
}

/* ミッションステートメント----------------------------- */
.sz-mission {
    background-color: #FEFBF7;
}
.sz-mission .main-width {
    padding: 50px 0 20px;
}
.sz-mission-title {
    font-family: "Noto Serif JP", serif;
    font-size: 1.9rem;
    color: var(--main-color-blue);
    text-align: center;
    margin-bottom: 25px;
}
.sz-mission-text {
    text-align: center;
    margin-bottom: 40px;
    color: var(--main-color-gray);
    font-size: 1rem;
}
.sz-mission-text span {
    color: var(--main-color-blue);
    font-weight: 600;
}
.sz-mission-row {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}
.sz-mission-photo {
    flex: 1;
    overflow: hidden;
}
.sz-mission-text-side {
    position: relative;
    flex: 1;
}
.sz-mission-text-side p {
    color: var(--main-color-gray);
    font-size: 1rem;
}
.sz-mission-illust {
    position: absolute;
    width: 120px;
    right: 0;
    bottom: -100px;
}
@media (max-width: 1368px) {
    .sz-mission-illust {
        width: 90px;
        bottom: -70px;
    }
}
@media (max-width: 1368px) {
    .sz-mission-illust {
        width: 70px;
        bottom: -60px;
    }
}
@media (max-width: 768px) {
    .sz-mission-title {
        margin-bottom: 30px;
    }
    .sz-mission .main-width {
        padding: 30px 0;
    }
    .sz-mission-title {
        font-size: 1.1rem;
        line-height: 2;
    }
    .sz-mission-text {
        text-align: left;
        margin-bottom: 20px;
    }
    .sz-mission-row {
        flex-direction: column;
        gap: 20px;
    }
    .sz-mission-illust {
        width: 60px;
        bottom: -15px;
    }
}

/* CTAバナー----------------------------- */
.sz-cta-banner {
    background-color: #fdffce;
}
.sz-cta-banner-inner {
    padding: 20px 0;
    text-align: center;
}
.sz-cta-banner-title {
    font-family: "Noto Serif JP", serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--main-color-blue);
    text-align: center;
}
.sz-cta-slash {
    display: inline-block;
    color: var(--main-color-blue);
    margin: 0 30px;
    font-weight: 900;
}
.sz-cta-banner-btns,
.sz-final-cta .sz-cta-banner-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.sz-cta-banner-btns li a {
    display: inline-block;
    transition: opacity 0.3s ease-in-out;
}
.sz-cta-banner-btns li a:hover {
    opacity: 0.8;
}
@media (max-width: 768px) {
    .sz-cta-banner-title {
        font-size: 1.2rem;
    }
    .sz-cta-banner-btns {
        margin-top: 10px;
        gap: 10px;
    }
    .sz-cta-banner-btns li a {
        max-width: 260px;
    }
    .sz-cta-slash {
        margin: 0;
    }
    .sz-cta-slash-left {
        margin-right: 20px;
    }
    .sz-cta-slash-right {
        margin-left: 20px;
    }
}

/* 生前整理・遺品整理とは----------------------------- */
.sz-about .main-width {
    padding: 40px 0px 60px;
}
.sz-about.decoration {
    padding-bottom: 0;
}
.sz-about .sz-section-title-outer {
    background: #EDF8FF;
    padding: 15px 20px 15px 30px;
    margin-bottom: 60px;
}
.sz-about .sz-sub-title {
    font-size: 1.5rem;
    padding-bottom: 25px;
    border-bottom: 1.5px solid #171C614D;
    margin-bottom: 40px;
}
.sz-about-block {
    display: flex;
    align-items: flex-start;
    gap: 35px;
    margin-bottom: 40px;
}
.sz-about-block:last-child {
    margin-bottom: 0;
}
.sz-about-text {
    flex: 1;
}
.sz-about-text p {
    color: var(--main-color-gray);
    font-size: 1rem;
}
.sz-about-img {
    flex: 1;
    overflow: hidden;
}
@media (max-width: 768px) {
    .sz-about .sz-section-title-outer {
        padding: 15px 0px 15px 10px;
        margin-bottom: 20px;
    }
    .sz-section-title::before {
        width: 4px;
    }
    .sz-about .sz-section-title {
        margin-bottom: 0;
    }
    .sz-about .sz-sub-title {
        font-size: 1.1rem;
        border-bottom: none;
        padding: 0;
        margin: 0;
    }
    .sz-about .main-width {
        padding: 30px 0;
    }
    .sz-about-block,
    .sz-about-block--reverse {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }
}

/* 費用相場----------------------------- */
.sz-cost {
    background-color: #FEFBF7;
}
.sz-cost .main-width {
    padding: 60px 0 50px;
}
.sz-cost .sz-section-title-outer {
    background: #EDF8FF;
    padding: 15px 20px 15px 30px;
    margin-bottom: 30px;
}
.sz-cost .sz-sub-title {
    font-size: 1.5rem;
    padding-bottom: 25px;
    border-bottom: 1.5px solid #b3b3b3;
    margin-bottom: 40px;
}
.sz-cost-lead {
    margin-bottom: 30px;
    color: var(--main-color-gray);
    font-size: 1rem;
}
.sz-cost-lead span {
    color: var(--main-color-blue);
    font-weight: 600;
}
.sz-table-wrap {
    overflow-x: auto;
    margin-bottom: 15px;
}
.sz-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    min-width: 600px;
}
/* border */
.sz-table thead,
.sz-table tbody tr:not(:last-child) {
    border-bottom: 1px solid #C5DCEB;
}
.sz-table thead tr th:nth-child(2),
.sz-table thead tr th:nth-child(3),
.sz-table tbody tr td:nth-child(2),
.sz-table tbody tr td:nth-child(3) {
    border-right: 1px solid #C5DCEB;
}
/*  */
.sz-table th,
.sz-table td {
    padding: 20px;
    text-align: center;
    font-size: 1.2rem;
}
.sz-table th {
    background-color: #fff;
    color: var(--main-color-blue);
    font-weight: 600;
}
.sz-table th.sz-table-highlight-cyan,
.sz-table td.sz-table-highlight-cyan {
    background-color: #EDF8FF;
    font-weight: 800;
}
.sz-table th.sz-table-highlight-blue {
    background-color: var(--main-color-blue);
    color: #fff;
}
.sz-table-note {
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 40px;
}
.sz-formula-title {
    position: relative;
    font-family: "Noto Serif JP", serif;
    font-size: 1.5rem;
    padding-bottom: 10px;
    font-weight: 700;
    border-bottom: 2px solid #171C614D;
}
.sz-formula {
    width: 53%;
}
.sz-formula picture {
    margin: 25px 0;
    display: block;
}
.sz-formula picture img {
    display: block;
}
.sz-formula .sz-table-note {
    margin-bottom: 0;
}
.t-width {
    width: 20%;
}
@media (max-width: 768px) {
    .sz-table th,
    .sz-table td {
        padding: 20px 0;
        font-size: 1.2rem;
    }
    .sz-cost .main-width {
        padding: 30px 0 50px;
    }
    .sz-cost .sz-section-title-outer {
        padding: 15px 0px 15px 10px;
        margin-bottom: 20px;
    }
    .sz-cost .sz-section-title {
        margin-bottom: 0;
    }
    .sz-cost-lead {
        margin-bottom: 50px;
    }
    .t-width {
        width: 25%;
    }
    .sz-table-note {
        margin-bottom: 30px;
    }
    .sz-formula-title {
        padding-bottom: 5px;
        font-size: 1.1rem;
    }
    .sz-formula {
        width: 100%;
    }
    .sz-formula picture {
        width: 90%;
        margin: 25px auto;
    }
}

/* 不用品回収業者との違い----------------------------- */
.sz-difference {
    background-color: #fff;
}
.sz-difference.decoration {
    padding-bottom: 0;
}
.sz-difference .main-width {
    padding: 60px 0 60px;
}
.sz-difference .sz-section-title-outer {
    background: #EDF8FF;
    padding: 15px 20px 15px 30px;
    margin-bottom: 30px;
}
.sz-difference .sz-difference-lead {
    margin-bottom: 30px;
    color: var(--main-color-gray);
    font-size: 1rem;
}
.sz-difference-inner {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}
.sz-difference-img {
    flex: 1;
    overflow: hidden;
}
.sz-difference-text {
    flex: 1;
    color: var(--main-color-gray);
    font-size: 1rem;
}
@media (max-width: 768px) {
    .sz-difference .main-width {
        padding: 40px 0 40px;
    }
    .sz-difference .sz-section-title-outer {
        padding: 15px 0px 15px 10px;
        margin-bottom: 20px;
    }
    .sz-difference .sz-section-title {
        margin-bottom: 0;
        font-size: 1.1rem;
    }
    .sz-difference-inner {
        flex-direction: column;
        gap: 20px;
    }
    .sz-difference .sz-difference-lead {
        margin-bottom: 20px;
    }
}

/* 選ばれる理由・サービス共通ナンバー----------------------------- */
.sz-num {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 75px;
    border-radius: 6px;
    background-color: var(--main-color-blue);
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-size: 2.1rem;
    font-weight: 400;
    letter-spacing: 5px;
}
.sz-service-card .sz-num {
    transform: none;
}
/* 選ばれる3つの理由----------------------------- */
.sz-reasons {
    background-color: #FEFBF7;
}
.sz-reasons .main-width {

}
.sz-reasons .sz-section-title-outer {
    background: #EDF8FF;
    padding: 15px 20px 15px 30px;
}
.sz-reason-list {
    display: flex;
    gap: 30px;
    margin-top: 60px;
}
.sz-reason-card {
    position: relative;
    flex: 1;
    background-color: #fff;
    border: 2px solid #171C6180;
    padding: 50px 20px 20px;
    text-align: center;
}
.sz-reason-card h3 {
    font-size: 1.5rem;
    color: var(--main-color-red);
    margin: 15px 0 20px;
    min-height: 3.2em;
    font-family: "Noto Serif JP", serif;
    line-height: 1.5;
    letter-spacing: 2px;
}
.sz-reason-card img {
    margin-bottom: 20px;
    object-fit: cover;
}
.sz-reason-card p {
    text-align: left;
    font-size: 1rem;
    color: var(--main-color-gray);
}
.sz-reasons .flow-decoration-shikaku,
.sz-reasons .flow-decoration-boushikaku{
    position: relative;
}
.sz-reasons .flow-decoration-shikaku::before,
.sz-reasons .flow-decoration-boushikaku::after{
    content: "";
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    aspect-ratio: 1/1;
}
.sz-reasons .flow-decoration-shikaku::before{
    top: calc(-1 * 20px / 2);
    right: calc(-1 * 20px / 2);
    width: 20px;
    height: 20px;
    background-image: url(https://kaitorumon.jp/wp-content/themes/kaitorumon/assets/images/decoration-3.webp);
}
.sz-reasons .flow-decoration-boushikaku::after{
    bottom: calc(-1 * 50px / 2);
    left: calc(-1 * 50px / 2);
    width: 50px;
    height: 50px;
    background-image: url(https://kaitorumon.jp/wp-content/themes/kaitorumon/assets/images/decoration-4.webp);
}
@media (max-width: 768px) {
    .sz-reasons {
        padding: 0;
    }
    .sz-reasons .main-width {
        padding: 30px 0 50px;
    }
    .sz-reason-list {
        flex-direction: column;
        gap: 20px;
    }
    .sz-reason-card {
        padding: 25px 10px;
    }
    .sz-reason-card h3 {
        min-height: unset;
        margin: 0;
        font-size: 1.1rem;
        text-align: left;
    }
    .sz-reason-list {
        margin-top: 35px;
    }
    .sz-reasons .sz-section-title-outer {
        padding: 15px 0px 15px 10px;
        margin-bottom: 0px;
    }
    .sz-reasons .sz-section-title {
        margin-bottom: 0;
        font-size: 1.1rem;
    }
    .sz-reason-card-inner {
        display: flex;
        gap: 15px;
        margin-bottom: 25px;
    }
    .sz-reasons .sz-num {
        position: unset;
        transform: none;
    }
    .sz-reasons .flow-decoration-boushikaku::after {
        bottom: calc(-1 * 30px / 2);
        left: calc(-1 * 30px / 2);
        width: 35px;
        height: 35px;
    }
    .sz-reasons .flow-decoration-shikaku::after {
        display: none;
    }
}

/* サービス内容----------------------------- */
.sz-services.decoration {
    padding: 0;
}
.sz-services .main-width {
    padding: 60px 0 100px;
}
.sz-services .sz-section-title-outer {
    background: #EDF8FF;
    padding: 15px 20px 15px 30px;
}
.sz-services .sz-services-lead {
    margin-top: 40px;
    color: var(--main-color-gray);
    font-size: 1rem;
}
.sz-service-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    margin: 50px 0 50px 40px;
}
.sz-services .sz-num {
    left: -25px;
}
.sz-service-card {
    position: relative;
    padding: 30px;
    border: 2px solid #171C6180;
}
.sz-service-card h3 {
    font-size: 1.9rem;
    color: var(--main-color-red);
    margin: 15px auto 15px;
    min-height: 3.2em;
    font-family: "Noto Serif JP", serif;
    line-height: 1.5;
    text-align: center;
    letter-spacing: 2px;
}
.sz-service-card img {
    width: 100%;
    margin-bottom: 15px;
    object-fit: cover;
}
.sz-service-card p {
    font-size: 1rem;
    color: var(--main-color-gray);
}
.sz-service-card--no-img h3 {
    margin-top: 20px;
}
.sz-service-list-box {
    background-color: #EDF8FF;
    border-radius: 10px;
    padding: 15px 30px;
    margin-top: 15px;
}
.sz-service-list-title {
    font-weight: 700;
    color: var(--main-color-blue) !important;
    margin-bottom: 0px;
    font-size: 1.1rem;
    margin-top: 20px;
}
.sz-service-list-box ul li {
    font-size: 1rem;
    color: var(--main-color-gray);
    padding: 5px 0;
}
.sz-services .sz-service-card .sz-service-note {
    font-size: 0.8rem;
    color: #555;
    margin-top: 10px;
    font-weight: 400;
}
.sz-area {
    margin-top: 20px;
}
.sz-area .sz-sub-title {
    position: relative;
    font-family: "Noto Serif JP", serif;
    font-size: 1.5rem;
    padding-bottom: 20px;
    font-weight: 700;
    border-bottom: 2px solid #171C614D;
    margin-bottom: 25px;
}
.sz-area p {
    font-size: 1rem;
    color: var(--main-color-gray);
}
@media (max-width: 768px) {
    .sz-service-list {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }
    .sz-services .main-width {
        padding: 50px 0 50px;
    }
    .sz-services .sz-section-title-outer {
        padding: 15px 0px 15px 10px;
        margin-bottom: 0px;
    }
    .sz-services .sz-section-title {
        margin-bottom: 0;
        font-size: 1.1rem;
    }
    .sz-services .sz-services-lead {
        margin-top: 25px;
    }
    .sz-service-list {
        margin: 50px 0;
    }
    .sz-service-list-box {
        padding: 20px 15px;
    }
    .sz-services .sz-num {
        left: 90px;
        width: 65px;
        height: 65px;
    }
    .sz-service-card {
        padding: 15px;
        background-color: #FEFBF7;
    }
    .sz-service-card h3 {
        font-size: 1.1rem;
        margin: 35px auto 10px;
        font-weight: 800;
    }
    .sz-service-card .sz-num {
        left: 50%;
        transform: translateX(-50%);
    }
    .sz-service-list {
        gap: 60px;
    }
    .sz-area .sz-sub-title {
        margin-bottom: 15px;
    }
    .sz-area .sz-sub-title {
        margin-bottom: 20px;
    }
}

/* ご利用の流れ----------------------------- */
.sz-flow {
    background-color: #FEFBF7;
}
.sz-flow.decoration {
    padding: 0;
}
.sz-flow .main-width {
}
.sz-flow .sz-section-title-outer {
    background: #EDF8FF;
    padding: 15px 20px 15px 30px;
    margin-bottom: 40px;
}
.sz-flow .sz-services-lead {
    margin-top: 40px;
    color: var(--main-color-gray);
    font-size: 1rem;
}
.sz-flow-card {
    position: relative;
    padding: 20px 40px;
    border: 2px solid #171C6180;
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    background: #fff;
}
.sz-flow .sz-num {
    position: relative;
    transform: none;
    top: unset;
    left: unset;
    letter-spacing: 3px;
}
.sz-flow .sz-num::before {
    content: "STEP";
    display: block;
    font-size: 0.8rem;
    height: auto;
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(-55%, 20%);
    letter-spacing: unset !important;
}
.sz-flow-text h3 {
    position: relative;
    font-family: "Noto Serif JP", serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.sz-flow-text p {
    font-size: 1rem;
    color: var(--main-color-gray);
}
.sz-flow .flow-decoration-shikaku,
.sz-flow .flow-decoration-boushikaku{
    position: relative;
}
.sz-flow .flow-decoration-shikaku::before,
.sz-flow .flow-decoration-boushikaku::after{
    content: "";
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    aspect-ratio: 1/1;
}
.sz-flow .flow-decoration-shikaku::before{
    top: calc(-1 * 20px / 2);
    right: calc(-1 * 20px / 2);
    width: 20px;
    height: 20px;
    background-image: url(https://kaitorumon.jp/wp-content/themes/kaitorumon/assets/images/decoration-3.webp);
}
.sz-flow .flow-decoration-boushikaku::after{
    bottom: calc(-1 * 50px / 2);
    left: calc(-1 * 50px / 2);
    width: 50px;
    height: 50px;
    background-image: url(https://kaitorumon.jp/wp-content/themes/kaitorumon/assets/images/decoration-4.webp);
}
@media (max-width: 768px) {
    .sz-flow .main-width {
        padding: 40px 0 60px;
    }
    .sz-flow .sz-section-title-outer {
        padding: 10px 0px 10px 10px;
        margin-bottom: 20px;
    }
    .sz-flow .sz-section-title {
        margin-bottom: 0;
        font-size: 1.1rem;
    }
    .sz-flow-list li {
        gap: 15px;
        padding-bottom: 25px;
    }
    .sz-flow-list li::before {
        top: 36px;
        left: 21px;
    }
    .sz-flow-num {
        width: 42px;
        height: 42px;
        font-size: 1.05rem;
    }
    .sz-flow-card {
        display: block;
        padding: 15px 20px;
        margin-bottom: 25px;
    }
    .sz-flow-ttl-sp {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 10px;
    }
    .sz-flow-ttl-sp h3 {
        font-family: "Noto Serif JP", serif;
        font-size: 1.1rem;
    }
    .sz-flow-text-sp {
        font-size: 1rem;
        color: var(--main-color-gray);
    }
    .sz-flow .sz-num {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    .sz-flow .sz-num::before {
        font-size: 0.5rem;
        transform: translate(-45%, 20%);
    }
    .sz-flow .flow-decoration-shikaku::before{
        display: none;
    }
    .sz-flow .flow-decoration-boushikaku::after {
        bottom: calc(-1 * 25px / 2);
        left: calc(-1 * 25px / 2);
        width: 25px;
        height: 25px;
    }
}
/* よくあるご質問 */
#faq {
    background-color: #fff;
}
#faq.decoration {
    padding: 0;
}
#faq .main-width {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 60px 0 20px;
}
#faq .sz-section-title-outer {
    background: #EDF8FF;
    padding: 15px 20px 15px 30px;
    max-width: var(--main-width);
    margin: 0 auto 25px;
    width: calc(100% - 10vw);
    box-sizing: border-box;
}
#faq .qna-container {
    gap: 25px;
}
#faq .q-container {
    padding: 20px 0 15px;
}
#faq .qna-wrapper {
    padding: 20px 0 40px;
}
#faq .qna-icon {
    border-radius: 99999px;
    font-size: 32px;
    width: 50px;
    height: 50px;
    line-height: 45px;
    color: #fff;
    padding: 0;
    text-align: center;
    color: #fff;
    flex-shrink: 0;
}
#faq .q-text {
    font-size: 1.5rem;
    color: var(--main-color-blue);
}
#faq .a-text {
    color: var(--main-color-gray);
    font-size: 1rem;
    line-height: 1.8 !important;
    font-weight: 600;
    padding-top: 15px;
}
#faq .qna-wrapper > div {
    max-width: var(--main-width);
    margin: 0 auto;
    width: calc(100% - 10vw);
}
@media (max-width: 768px) {
    #faq .sz-section-title-outer {
        padding: 10px 0px 10px 10px;
        margin-bottom: 0px;
    }
    #faq .sz-section-title {
        margin-bottom: 0;
        font-size: 1.1rem;
    }
    #faq .main-width {
        padding: 40px 0 20px;
    }
    #faq .qna-icon {
        font-size: 18px;
        width: 30px;
        height: 30px;
        line-height: 26px;
    }
    #faq .q-text {
        font-size: 1.1rem;
    }
    #faq .a-text {
        font-size: 1rem;
        padding-top: 0;
    }
    #faq .main-width .qna-wrapper-first {
        padding-top: 0px !important;
    }
    #faq .qna-container {
        gap: 10px;
    }
    #faq .a-container {
        padding: 20px 0 0;
    }
    #faq .qna-wrapper {
        padding: 10px 0 30px;
    }
}
/*  */
.sz-section-title-outer {
    border-radius: 5px;
}
.bg-c {
    background-color: #FEFBF7;
}
/* 最終CTA----------------------------- */
.sz-final-cta .sz-section-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.sz-final-cta .main-width {
    padding: 60px 0 50px;
}
.sz-faq {
    background-color: #f5f5f5;
}
.sz-final-cta-inner {
    text-align: center;
}
.sz-final-cta-inner p {
    margin-bottom: 25px;
    color: var(--main-color-gray);
    font-size: 1rem;
    text-align: center;
    font-weight: 600;
    line-height: 1.8;
}
@media (max-width: 768px) {
    .sz-final-cta .main-width {
        padding: 30px 0;
    }
    .sz-final-cta .sz-section-title {
        font-size: 1.15rem;
    }
    .sz-final-cta-inner p {
        margin-bottom: 15px;
    }
    .sz-cta-banner-btns, .sz-final-cta .sz-cta-banner-btns {
        gap: 10px;
    }
    .page-template-page-seizenseiri-php .sz-section-title-outer {
        padding: 10px 0 10px 10px !important;
    }
}