@charset "UTF-8";

:root {
    --color-1: #d7341d;
    --color-2: #c5a059;
    --color-3: #4c444d;
}

/* ━━━━━━━━━━━━━━━━

 ■初期化

━━━━━━━━━━━━━━━━ */
body {
    font-family: "Noto Sans JP", sans-serif;
    min-width: auto !important;
}

/* ━━━━━━━━━━━━━━━━

 ■ユーティリティ

━━━━━━━━━━━━━━━━ */
/**
 * Display
 */
/*==================================
* media
==================================*/
@media screen and (min-width: 768px) {
    .u-hidden-pc {
        display: none !important;
    }
}

@media screen and (max-width: 767px) {
    .u-hidden-sp {
        display: none !important;
    }
}

/**
 * margin
 */
.u-mr-5 {
    margin-right: 5px !important;
}

.u-mr-10 {
    margin-right: 10px !important;
}

.u-ml-5 {
    margin-left: 5px !important;
}

.u-ml-10 {
    margin-left: 10px !important;
}

.u-mb-0 {
    margin-bottom: 0 !important;
}

.u-mb-5 {
    margin-bottom: 5px !important;
}

.u-mb-10 {
    margin-bottom: 10px !important;
}

.u-mb-15 {
    margin-bottom: 15px !important;
}

.u-mb-20 {
    margin-bottom: 20px !important;
}

.u-mb-30 {
    margin-bottom: 30px !important;
}

.u-mb-40 {
    margin-bottom: 40px !important;
}

.u-mb-50 {
    margin-bottom: 50px !important;
}

.u-mb-80 {
    margin-bottom: 80px !important;
}

/**
 * Padding
 */
.u-pt-0 {
    padding-top: 0 !important;
}

.u-pt-10 {
    padding-top: 10px !important;
}

.u-pt-50 {
    padding-top: 50px !important;
}

.u-pb-0 {
    padding-bottom: 0 !important;
}

.u-pd-0 {
    padding: 0 !important;
}

/**
 * Text
 */
/*==================================
* color
==================================*/
.u-fc-light {
    color: #ced4da !important;
}

.u-fc-dark {
    color: #343a40 !important;
}

.u-fc-blue {
    color: #345887 !important;
}

.u-fc-red {
    color: #dc3545 !important;
}

.u-fc-red-dark {
    color: #ad002d !important;
}

.u-fc-green {
    color: #03967a !important;
}

.u-fc-orange {
    color: #FF8C00 !important;
}

.u-fc-white {
    color: #fff !important;
}

.u-fc-yellow {
    color: #ffc107 !important;
}

/*==================================
* font-size
==================================*/
.u-fs-h1 {
    font-size: 2rem !important;
}

.u-fs-h2 {
    font-size: 1.5rem !important;
}

.u-fs-h3 {
    font-size: 1.1rem !important;
}

@media screen and (min-width: 768px) {
    .u-fs-h1 {
        font-size: 2.5rem !important;
    }

    .u-fs-h2 {
        font-size: 1.7rem !important;
    }

    .u-fs-h3 {
        font-size: 1.2rem !important;
    }
}

/*==================================
* font-weight
==================================*/
.u-fw-bold {
    font-weight: bold !important;
}

/*==================================
* align
==================================*/
.u-text-top {
    vertical-align: top !important;
}

.u-text-center {
    text-align: center !important;
}

.u-text-right {
    text-align: right !important;
}

.u-text-left {
    text-align: left !important;
}

.u-text-middle {
    vertical-align: middle !important;
}

.u-text-bottom {
    vertical-align: bottom !important;
}

@media screen and (min-width: 768px) {
    .u-text-pc-center {
        text-align: center;
    }
}

@media screen and (max-width: 767px) {
    .u-text-sp-center {
        text-align: center;
    }
}

@media screen and (max-width: 767px) {
    .u-text-sp-left {
        text-align: left !important;
    }
}

/*==================================
* マーカー
==================================*/
.u-text-marker {
    background: linear-gradient(transparent 70%, #FFF799 70%);
}

.u-text-marker--orange {
    background: linear-gradient(transparent 75%, #ffbf7f 75%);
}

/* ━━━━━━━━━━━━━━━━

 ■コンポーネント

━━━━━━━━━━━━━━━━ */
/**
 * Block
 */
/*==================================
* コンテナ
==================================*/
.c-block {
    margin: 0 auto;
    padding: 30px 0;
}

@media screen and (min-width: 768px) {
    .c-block {
        max-width: 1140px;
    }
}

/**
 * Button
 */
/*==================================
* Button
==================================*/
.c-button-container {
    padding-top: 30px;
    text-align: center;
}

/*
　標準ボタン
================================*/
.c-button {
    position: relative;
    display: block;
    width: 95%;
    margin: 0 auto;
    padding: 12px 5px;
    text-align: center;
    border-radius: 30px;
    border: 2px solid #d7341d;
    background-color: #FFF;
    box-sizing: border-box;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
    overflow: hidden;
    z-index: 1;
}

.c-button,
.c-button:link,
.c-button:visited {
    text-decoration: none;
    color: #d7341d;
    font-weight: bold;
}

.c-button::after {
    background: #d7341d;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1;
}

.c-button:hover {
    color: #FFF;
}

.c-button:hover::after {
    transform: scale(1, 1);
}

@media screen and (min-width: 768px) {
    .c-button {
        width: 43%;
        padding: 15px 10px;
        font-size: 17px;
    }
}

/*
　プライマリボタン
================================*/
.c-button--primary {
    display: block;
    width: 95%;
    padding: 20px 10px;
    margin: 0 auto;
    background-color: #d7341d;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
}

.c-button--primary,
.c-button--primary:link,
.c-button--primary:visited {
    text-decoration: none;
    color: #FFF;
}

.c-button--primary:hover {
    opacity: 0.8;
}

@media screen and (min-width: 768px) {
    .c-button--primary {
        width: 35%;
        font-size: 17px;
    }
}

/*
　セカンダリボタン
================================*/
.c-button--secondary {
    display: block;
    width: 95%;
    margin: 0 auto;
    padding: 20px 10px;
    background-color: #c5a059;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
}

.c-button--secondary,
.c-button--secondary:link,
.c-button--secondary:visited {
    text-decoration: none;
    color: #FFF;
}

.c-button--secondary:hover {
    background-color: #4c444d;
}

@media screen and (min-width: 768px) {
    .c-button--secondary {
        width: 35%;
        font-size: 17px;
    }
}

/*
　アウトラインボタン
================================*/
.c-button-outline {
    display: block;
    width: 95%;
    margin: 0 auto;
    padding: 15px 10px;
    text-align: center;
    font-weight: bold;
    border: 1.5px solid #111;
    box-sizing: border-box;
}

.c-button-outline,
.c-button-outline:link,
.c-button-outline:visited {
    text-decoration: none;
    color: #111;
}

.c-button-outline:hover {
    border-color: transparent;
    color: #FFF;
    background-color: #d7341d;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-button-outline {
        width: 43%;
        font-size: 18px;
    }
}

/*
　システム標準-H2
================================*/
h2.tit {
    width: 90%;
    text-align: center;
    color: #000;
    font-size: 1.4rem;
    font-weight: bold;
    margin: 15px auto 30px auto;
    padding: 0;
    background-color: transparent !important;
}

/* PC */
@media screen and (min-width: 768px) {
    h2.tit {
        margin-top: 0;
        width: 100%;
        font-size: 2rem;
    }
}

/*
　システム標準-H3
================================*/
h3.tit {
    position: relative;
    border-bottom: 4px solid #ccc;
    margin: 0 0 20px 0;
    padding: 15px 10px 15px 0;
    font-size: 1.1rem;
    background: transparent;
    text-shadow: none;
    border-top: none;
}

h3.tit:after {
    position: absolute;
    bottom: -4px;
    left: 0;
    z-index: 2;
    content: "";
    width: 20%;
    height: 4px;
    background-color: #d7341d;
}

/* PC */
@media screen and (min-width: 768px) {
    h3.tit {
        max-width: 1140px;
        margin: 0 auto 40px auto;
        padding: 0 0 10px 0;
        font-size: 1.3rem;
    }
}

/*
　シンプル-01・中央寄せ
================================*/
.c-title-01 {
    width: 90%;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    color: #333;
    font-family: "Noto Serif JP", serif;
    margin: 0 auto 30px auto;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-title-01 {
        width: 100%;
        font-size: 2.5rem;
    }
}

/*
　シンプル-02・テキストカラー
================================*/
.c-title-02,
.c-title-02--color-2 {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.3;
    text-align: center;
    color: #d7341d;
    margin-bottom: 30px;
}

.c-title-02--color-2 {
    color: #c5a059;
}

/* PC */
@media screen and (min-width: 768px) {

    .c-title-02,
    .c-title-02--color-2 {
        font-size: clamp(40px, 4.649122807vw, 53px);
        margin-bottom: 50px;
    }
}

/*
　ルビ付き-01
================================*/
.c-title-ruby-01 {
    margin: 0 auto 20px auto;
    text-align: center;
}

.c-title-ruby-01 h2 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.c-title-ruby-01 span {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-title-ruby-01 span:before,
.c-title-ruby-01 span:after {
    content: "";
    width: 2em;
    border-top: 1px solid;
}

.c-title-ruby-01 span:before {
    margin-right: 0.7em;
}

.c-title-ruby-01 span:after {
    margin-left: 0.7em;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-title-ruby-01 {
        margin: 0 auto 50px auto;
    }

    .c-title-ruby-01 h2 {
        font-size: 2.5rem;
        margin-bottom: 7px;
    }

    .c-title-ruby-01 span {
        font-size: 1.2rem;
    }
}

/*
　ルビ付き-02
================================*/
.c-title-ruby-02 {
    position: relative;
    font-size: 1.7rem;
    font-weight: 500;
    border-bottom: 1px solid #333;
    margin-bottom: 30px;
    padding: 30px 0 10px 0;
}

.c-title-ruby-02 span {
    position: relative;
    line-height: 1.5;
    z-index: 2;
}

.c-title-ruby-02::before {
    content: attr(data-en);
    position: absolute;
    top: 20px;
    left: 10px;
    color: rgba(15, 10, 50, 0.1);
    font-size: 2rem;
    font-weight: bold;
    font-family: "Arial", sans-serif;
    z-index: 1;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-title-ruby-02 {
        font-size: 3rem;
        margin-bottom: 50px;
    }

    .c-title-ruby-02::before {
        top: 0;
        left: 20px;
        font-size: 4.3rem;
    }
}

/*
　ルビ付き-03
================================*/
.c-title-ruby-03 {
    width: 90%;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.4;
    font-family: "Noto Serif JP", serif;
    color: #d7341d;
    margin: 0 auto 30px auto;
}

.c-title-ruby-03 span {
    display: block;
    font-size: 16px;
    font-weight: 400;
    font-family: "Noto Serif JP", serif;
    color: #333;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-title-ruby-03 {
        width: 100%;
        font-size: 2.3rem;
        line-height: 1.5;
        margin: 0 auto 45px auto;
    }
}

/*
　ルビ付き-04
================================*/
.c-title-ruby-04 {
    width: 90%;
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    line-height: 1.4;
    margin: 0 auto 30px auto;
}

.c-title-ruby-04::first-letter {
    color: #d7341d;
}

.c-title-ruby-04 span {
    display: block;
    font-size: 16px;
    font-weight: normal;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-title-ruby-04 {
        width: 100%;
        font-size: 2.8rem;
        line-height: 1.4;
        margin: 0 auto 45px auto;
    }

    .c-title-ruby-04 span {
        font-size: 18px;
    }
}

/*
　ルビ付き-05
================================*/
.c-title-ruby-05 {
    margin-bottom: 20px;
}

.c-title-ruby-05 span {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.2;
}

.c-title-ruby-05 h2 {
    display: flex;
    align-items: center;
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 10px;
}

.c-title-ruby-05 h2:before {
    content: "";
    width: 1.5em;
    border-top: 1px solid;
    margin-right: 0.5em;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-title-ruby-05 {
        margin-bottom: 50px;
    }

    .c-title-ruby-05 span {
        font-size: 40px;
    }

    .c-title-ruby-05 h2 {
        font-size: 18px;
        margin-bottom: 7px;
    }
}

/*
　ルビ付き-06
================================*/
.c-title-ruby-06 {
    width: 90%;
    margin: 0 auto 30px auto;
    text-align: center;
    line-height: 1.4;
}

.c-title-ruby-06 h2 {
    font-size: 26px;
    font-weight: bold;
    color: #333;
}

.c-title-ruby-06 span::first-letter {
    color: #d7341d;
}

.c-title-ruby-06 span {
    display: block;
    font-size: 16px;
    font-weight: 900;
    color: #333;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-title-ruby-06 {
        width: 100%;
        margin: 0 auto 45px auto;
    }

    .c-title-ruby-06 h2 {
        font-size: 34px;
    }

    .c-title-ruby-06 span {
        font-size: 20px;
    }
}

/*
　下線付き-01
================================*/
.c-title-border-01 {
    position: relative;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.4;
    width: 90%;
    margin: 0 auto 50px auto;
}

.c-title-border-01::after {
    content: "";
    display: block;
    position: absolute;
    width: 45px;
    left: calc(50% - 30px);
    bottom: -15px;
    border: 2px solid #d7341d;
    border-radius: 50px;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-title-border-01 {
        width: 100%;
        font-size: 2.3rem;
        line-height: 1.4;
        margin: 0 auto 70px auto;
    }
}

/*
　番号付き-01
================================*/
.c-title-count-01 {
    position: relative;
    height: 100px;
    margin-right: 100px;
    padding: 20px 0 10px 15px;
    color: #fff;
    background: #d7341d;
    box-sizing: border-box;
    margin-bottom: 50px;
    font-weight: 900;
    font-size: 22px;
}

.c-title-count-01:after {
    position: absolute;
    top: 0;
    right: -60px;
    width: 0;
    height: 0;
    content: "";
    border-width: 100px 60px 0 0;
    border-style: solid;
    border-color: #d7341d transparent transparent transparent;
}

.c-title-count-01 span {
    font-size: 50px;
    position: absolute;
    bottom: 0;
    right: -100px;
    display: block;
    padding-left: 16px;
    color: #d7341d;
    font-family: "Arial", "Noto Sans Japanese", sans-serif;
    font-weight: 700;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-title-count-01 {
        margin-right: 120px;
        margin-bottom: 60px;
        padding: 20px 0 10px 20px;
        font-size: 40px;
        font-size: clamp(33px, 3vw, 40px);
    }

    .c-title-count-01 span {
        font-size: 63px;
        top: 0;
        right: -120px;
        padding-top: 10px;
    }
}

/*
　番号付き-02
================================*/
.c-title-count-02 {
    display: flex;
    align-items: flex-start;
    line-height: 1;
    border-top: 3px solid #000;
    border-bottom: 3px solid #000;
    padding: 10px 0;
}

.c-title-count-02 p {
    font-size: clamp(35px, 9vw, 100px);
    font-weight: bold;
    color: #d7341d;
    font-family: "Arial", sans-serif;
}

.c-title-count-02 h2 {
    margin-left: 3%;
    line-height: 1.4;
    font-size: clamp(20px, 6vw, 41px);
    font-weight: 900;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-title-count-02 {
        align-items: center;
        padding: 0;
    }

    .c-title-count-02 p {
        margin-top: -2.4%;
        margin-bottom: -2.7%;
        font-size: clamp(130px, 17vw, 205px);
    }

    .c-title-count-02 h2 {
        margin-left: 40px;
        font-size: clamp(30px, 3.5vw, 45px);
    }
}

/*
　付箋風-01
================================*/
.c-title-label-01 {
    font-size: 1.2rem;
    font-weight: bold;
    background-color: #f8f8f8;
    border-left: 15px solid #d7341d;
    margin: 0 0 15px 0;
    padding: 15px 10px;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-title-label-01 {
        font-size: 2rem;
        padding: 11px 10px 11px 20px;
        letter-spacing: 0.04em;
    }
}

/*
　背景カラー-01
================================*/
.c-title-bg-01,
.c-title-bg-01--color-2,
.c-title-bg-01--sm,
.c-title-bg-01--color-2--sm {
    margin-bottom: 30px;
    padding: 15px;
    background: #d7341d;
    font-family: "Noto Serif JP", serif;
}

.c-title-bg-01 h2,
.c-title-bg-01--color-2 h2,
.c-title-bg-01--sm h2,
.c-title-bg-01--color-2--sm h2,
.c-title-bg-01 h3,
.c-title-bg-01--color-2 h3,
.c-title-bg-01--sm h3,
.c-title-bg-01--color-2--sm h3 {
    font-size: clamp(26px, 4.1666666667vw, 32px);
    color: #fff;
    font-weight: 900;
    line-height: 1.3;
}

.c-title-bg-01--color-2,
.c-title-bg-01--color-2--sm {
    background: #c5a059;
}

.c-title-bg-01--sm,
.c-title-bg-01--color-2--sm {
    padding: 10px;
}

.c-title-bg-01--sm h2,
.c-title-bg-01--color-2--sm h2,
.c-title-bg-01--sm h3,
.c-title-bg-01--color-2--sm h3 {
    font-size: clamp(20px, 3.2552083333vw, 25px);
    font-family: "Noto Sans JP", sans-serif;
}

/* PC */
@media screen and (min-width: 768px) {

    .c-title-bg-01,
    .c-title-bg-01--color-2,
    .c-title-bg-01--sm,
    .c-title-bg-01--color-2--sm {
        margin-bottom: 50px;
        padding: 23px 0;
        text-align: center;
    }

    .c-title-bg-01 h2,
    .c-title-bg-01--color-2 h2,
    .c-title-bg-01--sm h2,
    .c-title-bg-01--color-2--sm h2,
    .c-title-bg-01 h3,
    .c-title-bg-01--color-2 h3,
    .c-title-bg-01--sm h3,
    .c-title-bg-01--color-2--sm h3 {
        font-size: clamp(32px, 5.2083333333vw, 40px);
        letter-spacing: 0.05em;
        line-height: 1.5;
    }

    .c-title-bg-01--sm,
    .c-title-bg-01--color-2--sm {
        padding: 15px;
    }

    .c-title-bg-01--sm h2,
    .c-title-bg-01--color-2--sm h2,
    .c-title-bg-01--sm h3,
    .c-title-bg-01--color-2--sm h3 {
        font-size: clamp(25px, 3.90625vw, 30px);
    }
}

/*
　誘導型-01
================================*/
.c-title-induction-01 {
    width: 100%;
    padding-bottom: 35px;
    box-sizing: content-box;
    clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%, 0 0);
    background-color: #d7341d;
}

.c-title-induction-01__inner {
    display: flex;
    align-items: center;
    align-content: flex-start;
    justify-content: center;
    width: 90%;
    margin: 0 auto;
    padding: 4% 0 2% 0;
}

.c-title-induction-01__inner h2 {
    text-align: center;
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    line-height: 1.4;
}

.c-title-induction-01 span {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-title-induction-01__inner {
        max-width: 1140px;
        padding: 25px 0 20px 0;
    }

    .c-title-induction-01__inner h2 {
        line-height: 1.3;
        font-size: clamp(36px, 2vw, 40px);
    }

    .c-title-induction-01__inner span {
        font-size: clamp(42px, 5vw, 53px);
    }
}

/*
　ルビ付き-08
================================*/
.c-title-ruby-08 {
    width: 95%;
    margin: 0 auto 20px auto;
    box-sizing: border-box;
}

.c-title-ruby-08 h2 {
    font-size: 25px;
    font-weight: 900;
    line-height: 1.2;
}

.c-title-ruby-08 span {
    display: flex;
    align-items: center;
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 10px;
}

.c-title-ruby-08 span:before {
    content: "";
    width: 1.5em;
    border-top: 1px solid;
    margin-right: 0.5em;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-title-ruby-08 {
        width: 100%;
        margin-bottom: 50px;
        padding: 0 8px;
    }

    .c-title-ruby-08 h2 {
        font-size: 35px;
    }

    .c-title-ruby-08 span {
        font-size: 18px;
        margin-bottom: 7px;
    }
}

/*
　ルビ付き-09
================================*/
.c-title-ruby-09 {
    width: 90%;
    margin: 0 auto 30px auto;
    text-align: center;
    line-height: 1.4;
}

.c-title-ruby-09 h2 {
    font-size: 24px;
    font-weight: bold;
    color: #4c444d;
    font-family: "Noto Serif JP", serif;
}

.c-title-ruby-09 span::first-letter {
    color: #d7341d;
}

.c-title-ruby-09 span {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #4c444d;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-title-ruby-09 {
        width: 100%;
        margin: 0 auto 45px auto;
    }

    .c-title-ruby-09 h2 {
        font-size: clamp(25px, 2.8070175439vw, 32px);
    }

    .c-title-ruby-09 span {
        font-size: 20px;
    }
}

/*
　お知らせ-01
================================*/
.c-news-list-01__title h2 {
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    font-family: "Noto Serif JP", serif;
}

.c-news-list-01__list {
    padding: 0 10px;
}

.c-news-list-01__list li {
    position: relative;
    padding: 10px 0;
    border-bottom: solid 1px #dddddd;
}

.c-news-list-01__list li:first-child {
    border-top: solid 1px #dddddd;
}

.c-news-list-01__list li::after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 6px);
    right: 2px;
    width: 10px;
    height: 10px;
    border-top: solid 2px #333;
    border-right: solid 2px #333;
    transform: rotate(45deg);
}

.c-news-list-01__list a {
    display: block;
    color: #333;
    text-decoration: none;
}

.c-news-list-01__list__data {
    margin-bottom: 5px;
    font-size: 14px;
}

.c-news-list-01__list__text {
    width: 90%;
}

.c-news-list-01__button__pc {
    display: none;
}

.c-news-list-01__button__sp {
    padding: 30px 0 0 0;
    text-align: center;
}

.c-news-list-01__button__sp a {
    position: relative;
    display: block;
    width: 90%;
    padding: 20px 10px;
    margin: 0 auto;
    color: #ffffff;
    background-color: #d7341d;
    text-decoration: none;
    text-align: center;
}

.c-news-list-01__button__sp a,
.c-news-list-01__button__sp a:link,
.c-news-list-01__button__sp a:visited {
    text-decoration: none;
    color: #FFF;
}

.c-news-list-01__button__sp .fa {
    margin-left: 20px;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-news-list-01 {
        max-width: 1140px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .c-news-list-01__title {
        width: 30%;
    }

    .c-news-list-01__title h2 {
        margin-bottom: 20px;
        font-size: 1.7rem;
    }

    .c-news-list-01__list {
        width: 70%;
    }

    .c-news-list-01__list li {
        padding: 15px 10px;
        border-bottom: solid 1px #000;
    }

    .c-news-list-01__list li::after {
        display: none;
    }

    .c-news-list-01__list li:first-child {
        border-top: none;
    }

    .c-news-list-01__list li:last-child {
        border-bottom: none;
    }

    .c-news-list-01__list li a {
        display: flex;
        box-sizing: border-box;
    }

    .c-news-list-01__list li a:hover {
        color: #d7341d;
        text-decoration: underline;
    }

    .c-news-list-01__list__data {
        width: 25%;
        font-size: 16px;
    }

    .c-news-list-01__list__text {
        width: 75%;
    }

    .c-news-list-01__button__pc {
        display: block;
    }

    .c-news-list-01__button__pc a {
        position: relative;
        display: block;
        width: 130px;
        margin: 0 auto;
        padding: 10px;
        color: #ffffff;
        background-color: #d7341d;
        text-decoration: none;
        text-align: center;
    }

    .c-news-list-01__button__pc a,
    .c-news-list-01__button__pc a:link,
    .c-news-list-01__button__pc a:visited {
        text-decoration: none;
        color: #FFF;
    }

    .c-news-list-01__button__pc a:hover {
        background-color: #c5a059;
    }

    .c-news-list-01__button__pc .fa {
        margin-left: 10px;
    }

    .c-news-list-01__button__sp {
        display: none;
    }
}

/*
　メニュー-16
================================*/
.c-menu-16__title {
    margin-bottom: 40px;
    font-size: clamp(18px, 2.34375vw, 23px);
    font-weight: bold;
    font-family: "Noto Serif JP", serif;
    text-align: center;
    color: #333;
    line-height: 1.4;
}

.c-menu-16__title span {
    display: inline-block;
    margin-bottom: 10px;
    font-size: clamp(23px, 2.9947916667vw, 30px);
}

.c-menu-16__title em {
    display: inline-block;
    font-style: normal;
    font-weight: 900;
    color: #d7341d;
}

.c-menu-16 {
    position: relative;
    background-image: url(../img/menu-16__bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.c-menu-16::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 50%;
    width: 100%;
    background: #c5a059;
    opacity: 0.5;
}

.c-menu-16::after {
    content: "";
    position: absolute;
    height: 50%;
    width: 100%;
    top: unset;
    bottom: 0;
    right: 0;
    background: #d7341d;
    opacity: 0.25;
}

.c-menu-16__inner {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 2;
}

.c-menu-16__block {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 30px 0;
}

.c-menu-16 h3 {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    text-align: center;
    color: #fff;
}

.c-menu-16__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    height: auto;
    margin: 0 auto;
    padding: 35px 10px;
    background: rgba(255, 255, 255, 0.9);
}

.c-menu-16__text h4 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    text-align: center;
    line-height: 1.6;
}

.c-menu-16__block:nth-child(1) .c-menu-16__text h4 {
    color: #c5a059;
}

.c-menu-16__block:nth-child(2) .c-menu-16__text h4 {
    color: #d7341d;
}

.c-menu-16__text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
    color: #333;
}

.c-menu-16__button a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    width: 200px;
    height: 45px;
    border-radius: 50px;
    background-color: #c5a059;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    line-height: 1;
}

.c-menu-16__block:nth-child(2) .c-menu-16__button a {
    background-color: #d7341d;
}

.c-menu-16__button a span {
    position: relative;
    line-height: 1;
}

.c-menu-16__button a span::after {
    position: absolute;
    right: -30px;
    top: 2px;
    content: "\f054";
    margin-left: 8px;
    font-size: 12px;
    font-family: FontAwesome;
}

.c-menu-16__button a:hover {
    opacity: 0.8;
}

@media screen and (min-width: 768px) {
    .c-menu-16__title {
        margin-bottom: 40px;
        font-size: clamp(18px, 1.5789473684vw, 25px);
    }

    .c-menu-16__title span {
        font-size: clamp(30px, 3.5087719298vw, 40px);
    }

    .c-menu-16__title em {
        font-weight: bold;
    }

    .c-menu-16__inner {
        flex-direction: row;
    }

    .c-menu-16::before {
        height: 100%;
        width: 50%;
    }

    .c-menu-16::after {
        height: 100%;
        width: 50%;
    }

    .c-menu-16 h3 {
        font-size: clamp(25px, 2.5vw, 30px);
    }
}

@media screen and (min-width: 1200px) {
    .c-menu-16 {
        padding: 50px 0;
    }

    .c-menu-16__block {
        gap: 20px;
    }

    .c-menu-16__block:nth-child(1) {
        flex-direction: row;
        transform: translateY(-15px);
    }

    .c-menu-16__block:nth-child(2) {
        flex-direction: row-reverse;
        transform: translateY(15px);
    }

    .c-menu-16 h3 {
        font-size: clamp(30px, 3.5714285714vw, 50px);
        writing-mode: vertical-rl;
        letter-spacing: 4px;
        margin-bottom: 0;
    }

    .c-menu-16__text h4 {
        font-size: clamp(20px, 1.7857142857vw, 25px);
    }

    .c-menu-16__text p {
        font-size: 18px;
    }

    .c-menu-16__button a {
        font-size: 16px;
        width: 220px;
        height: 55px;
    }
}

/*
　特徴（２カラム）-06
================================*/
.c-feature-col2-06 {
    width: 95%;
    margin: 0 auto;
}

.c-feature-col2-06 ul {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.c-feature-col2-06__image {
    border: 1px solid #f0f0f0;
    background-color: #FFF;
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 7px;
    box-sizing: border-box;
    filter: drop-shadow(2px 2px 2px rgba(160, 160, 160, 0.7));
    font-size: 0;
}

.c-feature-col2-06__image img {
    width: 100%;
    max-height: 230px;
    aspect-ratio: 3/2;
    -o-object-fit: cover;
    object-fit: cover;
}

.c-feature-col2-06 h3 {
    margin-bottom: 10px;
    font-size: clamp(25px, 3.2552083333vw, 28px);
    font-weight: bold;
    color: #d7341d;
    text-align: center;
    font-family: "Noto Serif JP", serif;
    letter-spacing: 0.05rem;
}

.c-feature-col2-06 p {
    line-height: 1.6;
}

.c-feature-col2-06__button {
    position: relative;
    display: block;
    padding: 15px 10px;
    margin: 0 auto;
    margin-top: 20px;
    width: 95%;
    max-width: 300px;
    color: #ffffff;
    background-color: #d7341d;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    box-sizing: border-box;
    font-family: "Noto Serif JP", serif;
    filter: drop-shadow(2px 2px 2px rgba(160, 160, 160, 0.7));
}

.c-feature-col2-06__button::after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 6px);
    right: 20px;
    width: 10px;
    height: 10px;
    border-top: solid 3px #ffffff;
    border-right: solid 3px #ffffff;
    transform: rotate(45deg);
}

.c-feature-col2-06__button,
.c-feature-col2-06__button:link,
.c-feature-col2-06__button:visited {
    text-decoration: none;
    color: #FFF;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-feature-col2-06 {
        width: 100%;
    }

    .c-feature-col2-06 ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;
        gap: 80px 0;
    }

    .c-feature-col2-06 li {
        width: 46.5%;
    }

    .c-feature-col2-06 h3 {
        font-size: clamp(22px, 2.3684210526vw, 27px);
    }

    .c-feature-col2-06__button {
        padding: 10px;
    }

    .c-feature-col2-06__button::after {
        top: calc(50% - 5px);
        right: 20px;
        width: 8px;
        height: 8px;
    }

    .c-feature-col2-06__button:hover {
        background-color: #4c444d;
    }
}

/*
　物件情報-03
================================*/
.c-estate-list-col3-03,
.c-estate-list-col3-03--gray {
    width: 95%;
    margin: 0 auto;
}

.c-estate-list-col3-03 li,
.c-estate-list-col3-03--gray li {
    margin-bottom: 30px;
}

/* テキスト部分の背景：白色 */
.c-estate-list-col3-03 li {
    background-color: #fff;
}

/* テキスト部分の背景：灰色 */
.c-estate-list-col3-03--gray li {
    background-color: #f5f5f5;
}

.c-estate-list-col3-03 a,
.c-estate-list-col3-03--gray a {
    display: block;
    height: 100%;
    text-decoration: none;
    color: #333;
}

.c-estate-list-col3-03__image {
    position: relative;
}

.c-estate-list-col3-03__image img:last-of-type {
    display: block;
    width: 100%;
    aspect-ratio: 3/2;
    -o-object-fit: cover;
    object-fit: cover;
}

.c-estate-list-col3-03__type {
    position: absolute;
    display: inline-block;
    bottom: 0;
    left: 0;
    padding: 10px 15px;
    font-weight: bold;
    color: #ffffff;
    background-color: rgba(14, 38, 70, 0.8);
}

.c-estate-list-col3-03__textarea {
    padding: 20px;
}

.c-estate-list-col3-03__name {
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: bold;
}

.c-estate-list-col3-03__access {
    margin-bottom: 10px;
}

.c-estate-list-col3-03__access i {
    margin-right: 5px;
}

.c-estate-list-col3-03__price {
    margin-bottom: 10px;
    text-align: right;
    font-size: 26px;
    font-weight: bold;
    color: #a60309;
}

.c-estate-list-col3-03__price span {
    font-size: 18px;
}

.c-estate-list-col3-03__catchcopy {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

/* PC */
@media screen and (min-width: 768px) {

    .c-estate-list-col3-03,
    .c-estate-list-col3-03--gray {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        width: 100%;
    }

    .c-estate-list-col3-03::after,
    .c-estate-list-col3-03--gray::after {
        display: block;
        content: "";
        width: 30%;
    }

    .c-estate-list-col3-03 li,
    .c-estate-list-col3-03--gray li {
        width: 30%;
        margin-bottom: 50px;
    }

    .c-estate-list-col3-03 a:hover,
    .c-estate-list-col3-03--gray a:hover {
        opacity: 0.8;
    }

    .c-estate-list-col3__price {
        font-size: 28px;
    }

    .c-estate-list-col3-03__access,
    .c-estate-list-col3-03__catchcopy {
        font-size: 16px;
    }
}

/*
　ブログリスト-02
================================*/
.c-blog-list-02 {
    margin-bottom: 40px;
}

.c-blog-list-02 li {
    max-width: 400px;
    margin: 0 auto 50px auto;
}

.c-blog-list-02 li:last-child {
    border-bottom: none;
}

.l-section--gray .c-blog-list-02 li,
.l-section--blue .c-blog-list-02 li,
.l-section--yellow .c-blog-list-02 li {
    background-color: #fff;
}

.c-blog-list-02 li a {
    display: block;
    text-decoration: none;
}

.c-blog-list-02__image img {
    display: block;
    width: 100%;
    max-width: 400px;
    height: 200px;
    -o-object-fit: cover;
    object-fit: cover;
    margin: 0 auto;
}

.c-blog-list-02__content {
    padding-top: 10px;
    padding-bottom: 10px;
}

.l-section--gray .c-blog-list-02__content,
.l-section--blue .c-blog-list-02__content,
.l-section--yellow .c-blog-list-02__content {
    padding-left: 8px;
    padding-right: 8px;
}

.c-blog-list-02__content__inner {
    padding-bottom: 10px;
}

.c-blog-list-02__content__date {
    color: #666;
}

.c-blog-list-02__content__title {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: bold;
    color: #d7341d;
    font-weight: bold;
}

.c-blog-list-02__content__text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    color: #333;
}

.c-blog-list-02__tag span {
    display: inline-block;
    margin-bottom: 5px;
    padding: 5px 10px;
    font-size: 14px;
    color: #fff !important;
    background-color: #4c444d;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-blog-list-02 {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        max-width: 1140px;
        margin: 0 auto;
    }

    .c-blog-list-02::after {
        content: "";
        display: block;
        width: 31%;
    }

    .c-blog-list-02 li {
        width: 31%;
        margin: 0 0 50px 0;
        border-bottom: none;
    }

    .c-blog-list-02 a:hover {
        opacity: 0.7;
    }
}

/*
　お客様の声（アンケート）-01
================================*/
.c-survey-list-01 li,
.c-survey-list-01--gray li {
    margin-bottom: 30px;
}

.c-survey-list-01 li {
    background-color: #FFF;
}

.c-survey-list-01--gray li {
    background-color: #f8f8f8;
}

.c-survey-list-01 li a,
.c-survey-list-01--gray li a {
    display: block;
    margin: 0 auto;
    text-decoration: none;
}

.c-survey-list-01__image {
    width: 90%;
    margin: 0 auto 15px auto;
}

.c-survey-list-01__image img {
    width: 100%;
    height: 225px;
    margin-top: 20px;
    -o-object-fit: cover;
    object-fit: cover;
}

.c-survey-list-01__name {
    width: 90%;
    margin: 0 auto 10px auto;
    font-size: 17px;
    color: #000;
    font-weight: bold;
}

.c-survey-list-01__tag {
    display: flex;
    align-items: center;
    width: 90%;
    margin: 0 auto 15px auto;
    font-size: 16px;
    color: #333;
}

.c-survey-list-01__tag--area,
.c-survey-list-01__tag--type {
    margin-right: 10px;
    padding: 3px 5px;
}

.c-survey-list-01__tag--area {
    background-color: #ede5cb;
}

.c-survey-list-01__tag--type {
    background-color: #EEEEEE;
}

.c-survey-list-01__detail {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 20px;
    font-size: 16px;
    line-height: 1.3;
    color: #333;
    overflow: hidden;
}

.c-survey-list-01__detail p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

/* PC */
@media screen and (min-width: 768px) {

    .c-survey-list-01,
    .c-survey-list-01--gray {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .c-survey-list-01 li,
    .c-survey-list-01--gray li {
        width: 31%;
    }

    .c-survey-list-01 a:hover,
    .c-survey-list-01--gray a:hover {
        opacity: 0.7;
    }

    .c-survey-list-01::after,
    .c-survey-list-01--gray::after {
        content: "";
        display: block;
        width: 31%;
    }
}

/*
　よくある質問（アコーディオン）-02
================================*/
.c-accordion-menu-02 {
    width: 100%;
    margin: 0 auto 30px auto;
}

.c-accordion-menu-02 li {
    display: block;
    background: #fff;
    box-shadow: 1px 1px 6px #dcdcdc;
    margin-bottom: 20px;
    overflow: hidden;
}

.c-accordion-menu-02__check {
    display: none;
}

.c-accordion-menu-02__check:checked+.c-accordion-menu-02__question+.c-accordion-menu-02__answer {
    padding: 15px 30px 15px 30px;
    height: auto;
    opacity: 1;
    visibility: visible;
}

.c-accordion-menu-02__check:checked+.c-accordion-menu-02__question::after {
    content: "－";
}

.c-accordion-menu-02__question {
    position: relative;
    display: block;
    padding: 15px 50px 15px 30px;
    font-size: 15px;
    font-weight: bold;
    background: #fff;
    color: #333;
}

.c-accordion-menu-02__question::before {
    position: absolute;
    display: block;
    top: 12px;
    left: 8px;
    box-sizing: border-box;
    content: "Q";
    color: #d7341d;
    font-size: 19px;
}

.c-accordion-menu-02__question::after {
    position: absolute;
    display: block;
    top: 50%;
    transform: translate(0, -50%);
    right: 0;
    padding: 15px;
    box-sizing: border-box;
    content: "＋";
    color: #d7341d;
}

.c-accordion-menu-02__answer {
    padding: 0 30px;
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

.c-accordion-menu-02__answer p {
    margin: 0 auto;
    line-height: 1.6;
    font-size: 15px;
    word-break: break-word;
    position: relative;
}

.c-accordion-menu-02__answer p::before {
    position: absolute;
    display: block;
    top: -4px;
    left: -19px;
    box-sizing: border-box;
    content: "A";
    color: #c5a059;
    font-weight: bold;
    font-size: 20px;
}

.c-accordion-menu-02__button {
    text-align: right;
}

@media screen and (min-width: 768px) {
    .c-accordion-menu-02__question {
        padding-right: 70px;
        padding-left: 40px;
        font-size: 18px;
        cursor: pointer;
    }

    .c-accordion-menu-02__question::before {
        left: 18px;
    }

    .c-accordion-menu-02__question::after {
        padding: 20px;
    }

    .c-accordion-menu-02__answer {
        padding: 0 30px 0 40px;
    }

    .c-accordion-menu-02__check:checked+.c-accordion-menu-02__question+.c-accordion-menu-02__answer {
        padding: 15px 70px 15px 40px;
    }

    .c-accordion-menu-02__answer p {
        font-size: 16px;
        line-height: 1.6;
    }
}

/*
　会社概要-06
================================*/
.c-company-06 {
    margin: 0 auto 10px auto;
}

.c-company-06__body {
    margin-bottom: 30px;
}

.c-company-06__body__detail {
    margin-bottom: 20px;
    font-family: "Noto Serif JP", serif;
}

.c-company-06__body__detail dl>div {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 13px 10px;
    font-weight: bold;
    border-bottom: dotted 1px #908a6a;
    box-sizing: border-box;
}

.c-company-06__body__detail dl>div:last-child {
    border-bottom: none;
}

.c-company-06__body__detail dt {
    width: 30%;
    text-align: center;
}

.c-company-06__body__detail dd {
    width: 65%;
}

.c-company-06__body__map {
    height: 250px;
}

.c-company-06__image {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.c-company-06__image img {
    display: block;
    width: 49%;
    height: auto;
    aspect-ratio: 3/2;
    -o-object-fit: cover;
    object-fit: cover;
    margin-bottom: 7px;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-company-06 {
        margin: 0 auto 30px auto;
        padding: 0 8px;
    }

    .c-company-06__body {
        display: flex;
        justify-content: space-between;
        box-sizing: border-box;
        margin-bottom: 20px;
    }

    .c-company-06__body__detail {
        width: 55%;
        margin-right: 30px;
        margin-bottom: 0;
    }

    .c-company-06__body__detail dt {
        width: 20%;
        text-align: center;
    }

    .c-company-06__body__detail dd {
        width: 75%;
    }

    .c-company-06__body__map {
        width: 45%;
        height: 400px;
    }

    .c-company-06__image {
        display: flex;
        justify-content: flex-start;
        box-sizing: border-box;
    }

    .c-company-06__image img {
        width: 23%;
        margin: 0 11px 10px 11px;
    }
}

/*
　LINE-03
================================*/
.c-banner-line-03 {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 40px 10px 0;
    background: #fff;
    border: 3px solid #00b900;
}

.c-banner-line-03:hover {
    opacity: 0.7;
}

.c-banner-line-03__logo {
    width: 200px;
    max-width: 90%;
    margin: 0 auto;
}

.c-banner-line-03__logo img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
}

.c-banner-line-03__text {
    margin-top: 30px;
    line-height: 1.8;
    text-align: center;
}

.c-banner-line-03__text p {
    font-weight: 900;
    font-size: 14px;
}

.c-banner-line-03__text p:first-child {
    font-size: clamp(17px, 5.3125vw, 20px);
    color: #00b900;
}

.c-banner-line-03__btn {
    display: inline-block;
    margin-top: 20px;
    padding: 5px 30px;
    box-sizing: border-box;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background: #00b900;
}

.c-banner-line-03__btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.c-banner-line-03__img {
    width: 200px;
    max-width: 90%;
    margin: 30px auto 0;
}

.c-banner-line-03__img img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-banner-line-03 {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin: 0 auto;
        padding: 0;
    }

    .c-banner-line-03__logo {
        flex: 1;
        text-align: center;
        padding-left: clamp(10px, 3.6330608538vw, 15px);
    }

    .c-banner-line-03__logo img {
        width: 75%;
    }

    .c-banner-line-03__text {
        width: 50%;
        margin-top: 0;
        padding: clamp(20px, 1.8165304269vw, 30px) 0;
    }

    .c-banner-line-03__text p {
        font-size: clamp(11px, 0.9990917348vw, 20px);
    }

    .c-banner-line-03__text p:first-child {
        font-size: clamp(20px, 1.8165304269vw, 35px);
    }

    a.c-banner-line-03__btn {
        display: inline-block;
        margin-top: 15px;
        padding: 8px 70px;
        box-sizing: border-box;
        text-decoration: none;
        font-size: clamp(14px, 1.2715712988vw, 20px);
        font-weight: bold;
        color: #fff;
    }

    .c-banner-line-03__img {
        flex: 1;
        align-self: flex-end;
        margin: 0;
        padding-right: clamp(10px, 3.6330608538vw, 20px);
        text-align: center;
    }

    .c-banner-line-03__img img {
        width: 100%;
        min-width: 170px;
        vertical-align: bottom;
    }
}

/*
　ページタイトル-07
================================*/
.c-page-title-07 {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.c-page-title-07__image {
    position: relative;
    width: 85%;
    margin: 0 0 0 auto;
    font-size: 0;
}

.c-page-title-07__image::before {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    content: "";
    background-color: rgba(29, 30, 65, 0.35);
}

.c-page-title-07__image img {
    width: 100%;
    height: 165px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 60% 50%;
    object-position: 60% 50%;
}

.c-page-title-07__rabel {
    position: absolute;
    bottom: -15%;
    right: 2.2135416667vw;
    padding-right: 0.15em;
    font-size: clamp(63px, 8.203125vw, 100px);
    font-weight: bold;
    font-family: "Noto Serif JP", serif;
    font-style: italic;
    color: rgba(219, 219, 219, 0.46);
    line-height: 1;
}

.c-page-title-07__text {
    width: 90%;
    margin: 0 auto;
    z-index: 1;
}

.c-page-title-07__text__inner {
    margin-top: 30px;
}

.c-page-title-07__text__inner h2 {
    margin-bottom: 10px;
    font-size: clamp(30px, 3.90625vw, 33px);
    font-weight: 900;
    font-family: "Noto Serif JP", serif;
    color: #d7341d;
}

.c-page-title-07__text__inner p {
    line-height: 1.6;
    font-weight: 500;
    color: #333;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-page-title-07 {
        flex-direction: row-reverse;
        align-items: center;
        margin-bottom: 60px;
    }

    .c-page-title-07.c-page-title-07__souzoku {
        margin-bottom: 80px;
    }

    .c-page-title-07__image {
        width: 65%;
    }

    .c-page-title-07__image img {
        height: clamp(280px, 30.701754386vw, 400px);
        -o-object-position: top right;
        object-position: top right;
    }

    .c-page-title-07__rabel {
        right: 1.7543859649vw;
        font-size: clamp(110px, 9.649122807vw, 180px);
    }

    .c-page-title-07__text {
        position: relative;
        width: 35%;
        height: clamp(280px, 30.701754386vw, 400px);
    }

    .c-page-title-07__text__inner {
        position: absolute;
        top: 20%;
        left: 10%;
        min-width: 400px;
        margin: 0;
    }

    .c-page-title-07__text__inner h2 {
        margin-bottom: 20px;
        font-size: clamp(45px, 3.9473684211vw, 65px);
        line-height: 1.2;
        text-shadow: #fff 3px 3px 3px, #fff -3px -3px 3px, #fff -3px 3px 3px, #fff 3px -3px 3px, #fff 3px 0px 3px, #fff -3px 0px 3px, #fff 0px 3px 3px, #fff 0px -3px 3px;
    }

    .c-page-title-07__text__inner p {
        letter-spacing: 0.05em;
        font-size: clamp(16px, 1.4035087719vw, 19px);
        text-shadow: #fff 3px 3px 3px, #fff -3px -3px 3px, #fff -3px 3px 3px, #fff 3px -3px 3px, #fff 3px 0px 3px, #fff -3px 0px 3px, #fff 0px 3px 3px, #fff 0px -3px 3px;
    }
}

/* PC */
@media screen and (min-width: 1500px) {
    .c-page-title-07__text__inner {
        position: absolute;
        top: 53%;
        left: 55%;
        transform: translate(-50%, -50%);
        min-width: 450px;
    }
}

/*
　ポイント（３カラム）-02
================================*/
.c-point-col3-02__lists {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: center;
    gap: 20px;
}

.c-point-col3-02__list {
    width: 75%;
    margin: 0 auto;
    padding: 20px 0;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.2);
}

.c-point-col3-02__img {
    width: 30%;
    margin: 0 auto 15px;
}

.c-point-col3-02__img img {
    width: 100%;
    height: 100%;
    opacity: 0.85;
}

.c-point-col3-02__list h3 {
    font-size: clamp(19px, 2.4739583333vw, 23px);
    font-weight: bold;
    font-family: "Noto Serif JP", serif;
    color: #d7341d;
    line-height: 1.4;
}

.c-point-col3-02__list h3 span {
    font-size: clamp(18px, 2.34375vw, 25px);
}

/* PC */
@media screen and (min-width: 768px) {
    .c-point-col3-02__list {
        width: 31%;
        padding: 35px 0;
    }

    .c-point-col3-02__img {
        width: 30%;
        margin-bottom: 12px;
    }

    .c-point-col3-02__img img {
        opacity: 0.7;
    }

    .c-point-col3-02__list h3 {
        font-size: clamp(17px, 1.7543859649vw, 23px);
        line-height: 1.5;
    }

    .c-point-col3-02__list h3 span {
        font-size: clamp(20px, 1.7543859649vw, 25px);
        line-height: 1.5;
    }
}

/*
　特徴（交互）-06
================================*/
.c-feature-swap-06__wrapper {
    overflow-x: hidden;
}

.c-feature-swap-06 {
    display: block;
    width: 95%;
    margin: 30px auto 0 auto;
}

.c-feature-swap-06:nth-child(n+2) {
    margin-top: 80px;
}

.c-feature-swap-06__image {
    position: relative;
    margin: 0;
}

.c-feature-swap-06__image::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.1);
}

.c-feature-swap-06__image img {
    width: 100%;
    border-radius: 10px;
}

.c-feature-swap-06__text {
    position: relative;
    margin-top: 20px;
}

.c-feature-swap-06__text:before {
    content: attr(data-num);
    position: absolute;
    right: 0;
    top: 0;
    transform: translateY(0);
    font-family: "Roboto", "Arial", sans-serif;
    font-style: italic;
    color: #fbf9f4;
    font-size: 6rem;
    line-height: 1;
    z-index: -1;
}

.c-feature-swap-06__label {
    margin-bottom: 15px;
    font-family: "Roboto", "Arial", sans-serif;
    font-style: italic;
    color: #4c444d;
}

.c-feature-swap-06__en {
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
    color: #4c444d;
    font-family: "Arial", sans-serif;
    font-style: italic;
}

.c-feature-swap-06 h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d7341d;
    line-height: 1.4;
    font-family: "Noto Serif JP", serif;
}

.c-feature-swap-06 p {
    margin-top: 20px;
    line-height: 1.6;
    color: #333;
}

/* PC */
@media screen and (min-width: 769px) {
    .c-feature-swap-06 {
        display: flex;
        width: 100%;
        margin-top: 50px;
    }

    .c-feature-swap-06:nth-of-type(odd) {
        flex-direction: row-reverse;
    }

    .c-feature-swap-06:nth-child(n+2) {
        margin-top: 140px;
    }

    .c-feature-swap-06__image {
        position: relative;
        flex: 1;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: 60px;
        box-sizing: border-box;
    }

    .c-feature-swap-06:nth-of-type(odd) .c-feature-swap-06__image {
        margin-left: 60px;
        margin-right: calc(50% - 50vw);
    }

    .c-feature-swap-06__image img {
        max-width: 750px;
        display: block;
        margin-left: auto;
    }

    .c-feature-swap-06:nth-of-type(odd) .c-feature-swap-06__image img {
        margin-left: unset;
        margin-right: auto;
    }

    .c-feature-swap-06__text {
        width: 45%;
        margin-top: 0;
    }

    .c-feature-swap-06__text:before {
        transform: translateY(-50%);
        font-size: 15rem;
    }

    .c-feature-swap-06__label {
        margin-bottom: 25px;
        font-size: 1.3rem;
    }

    .c-feature-swap-06__en {
        margin-bottom: 30px;
        font-size: 2.1rem;
    }

    .c-feature-swap-06 h2 {
        font-size: 2.1rem;
    }

    .c-feature-swap-06 p {
        margin-top: 25px;
        font-size: 17px;
        line-height: 1.8;
    }
}

/*
　挨拶-01
================================*/
.c-greeting-01 {
    width: 95%;
    margin: 0 auto 15px;
}

.c-greeting-01__text h2 {
    font-size: clamp(23px, 2.9947916667vw, 30px);
    font-weight: bold;
    font-family: "Noto Serif JP", serif;
    text-align: center;
    color: #d7341d;
    line-height: 1.4;
}

.c-greeting-01__text p {
    margin-top: 20px;
    line-height: 1.7;
}

.c-greeting-01__img {
    width: 100%;
    margin-top: 20px;
}

.c-greeting-01__img img {
    width: 100%;
    aspect-ratio: 3/2;
    -o-object-fit: cover;
    object-fit: cover;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-greeting-01 {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-direction: row-reverse;
        width: 100%;
        gap: 50px;
    }

    .c-greeting-01__text {
        width: 62%;
    }

    .c-greeting-01__text h2 {
        font-size: clamp(30px, 3.0701754386vw, 35px);
        text-align: left;
        line-height: 1.3;
    }

    .c-greeting-01__text p {
        font-size: clamp(16px, 1.5789473684vw, 18px);
        line-height: 1.8;
    }

    .c-greeting-01__img {
        width: 38%;
        margin-top: 0;
    }

    .c-greeting-01__img img {
        min-height: 300px;
    }
}

/*
　会社概要-02
================================*/
.c-company-02__detail {
    width: 95%;
    max-width: 1140px;
    margin: 0 auto;
}

.c-company-02__detail__list {
    display: flex;
    align-items: flex-start;
    padding: 10px 0;
}

.c-company-02__detail__list:nth-child(even) {
    background: #FFF;
}

.c-company-02__detail__list dt {
    width: 25%;
    padding-left: 2%;
    box-sizing: border-box;
}

.c-company-02__detail__list dd {
    width: 75%;
    padding-right: 2%;
    box-sizing: border-box;
}

.c-company-02__detail__list dt,
.c-company-02__detail__list dd {
    font-size: 14px;
}

.c-company-02__detail__feature {
    display: flex;
    flex-wrap: wrap;
}

.c-company-02__detail__feature li {
    margin: 0 5px 5px 0;
    padding: 2px 5px;
    font-size: 14px;
    background-color: #d7341d;
    border-radius: 3px;
    color: #FFF;
}

.c-company-02__detail__data-type {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.c-company-02__detail__data-type--buy span,
.c-company-02__detail__data-type--rent span {
    margin-right: 5px;
    padding: 2px 5px;
    font-size: 14px;
    background-color: #cc0000;
    border-radius: 3px;
    color: #FFF;
}

.c-company-02__detail__data-type--rent span {
    background-color: #0066cc;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-company-02__detail__list {
        padding: 20px 0;
    }

    .c-company-02__detail__list dt {
        width: 19%;
    }

    .c-company-02__detail__list dd {
        width: 81%;
    }

    .c-company-02__detail__list dt,
    .c-company-02__detail__list dd {
        font-size: 16px;
    }

    .c-company-02__detail__feature li {
        margin: 0 7px 5px 0;
        padding: 2px 10px 4px 10px;
        font-size: 16px;
    }

    .c-company-02__detail__data-type--buy span,
    .c-company-02__detail__data-type--rent span {
        margin-right: 7px;
        padding: 2px 10px 4px 10px;
        font-size: 16px;
    }
}

/*
　ルビ付き-02
================================*/
.c-title-ruby-02 {
    position: relative;
    font-size: 1.6rem;
    font-weight: 500;
    border-bottom: 1px solid #333;
    margin-bottom: 30px;
    padding: 30px 0 10px 0;
}

.c-title-ruby-02 span {
    position: relative;
    line-height: 1.5;
    z-index: 2;
}

.c-title-ruby-02::before {
    content: attr(data-en);
    position: absolute;
    top: 20px;
    left: 10px;
    color: rgba(15, 10, 50, 0.1);
    font-size: 2rem;
    font-weight: bold;
    font-family: "Arial", sans-serif;
    z-index: 1;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-title-ruby-02 {
        font-size: 2rem;
        margin-bottom: 50px;
    }

    .c-title-ruby-02::before {
        top: 0;
        left: 20px;
        font-size: 4.3rem;
    }
}

/*
　流れ-10
================================*/
.c-flow-10 {
    overflow-x: hidden;
    padding: 0 5%;
    max-width: 1300px;
    margin: 0 auto 20px;
}

.c-flow-10__note {
    margin-bottom: 10px;
    font-size: 14px;
    color: #aaa;
    visibility: hidden;
}

.c-flow-10__note.is-scrollable {
    visibility: visible;
}

.c-flow-10__number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -40px;
    line-height: 1;
    font-size: 20px;
    font-weight: 500;
    color: #d7341d;
}

.c-flow-10__number span {
    display: block;
    text-align: center;
    font-weight: 500;
    font-size: 2em;
}

.c-flow-10__wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
    padding-top: 50px;
}

.c-flow-10__wrapper::-webkit-scrollbar {
    visibility: hidden;
}

.c-flow-10__item {
    scroll-snap-align: start;
    width: 240px;
    flex-shrink: 0;
    position: relative;
    background: #f2f2f2;
    box-shadow: 5px 5px 5px 0 rgba(48, 38, 36, 0.1);
    height: auto;
    padding: 3.2rem 1.5rem 1.7rem 1.5rem;
    box-sizing: border-box;
}

.c-flow-10__item:not(:last-of-type):after {
    position: absolute;
    right: -1.2rem;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent transparent transparent #d7341d;
    border-width: 0.8rem 0 0.8rem 1.2rem;
}

.c-flow-10__image {
    max-width: 100px;
    margin: 0 auto;
    width: 100%;
}

.c-flow-10__image img {
    opacity: 0.7;
}

.c-flow-10__text {
    padding: 20px 0;
    text-align: center;
}

.c-flow-10.c-flow-10__sell .c-flow-10__text {
    padding: 20px 0 0;
    text-align: left;
}

.c-flow-10__text h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 46px;
    font-size: 20px;
    text-align: center;
    color: #d7341d;
    font-weight: 900;
    font-family: "Noto Serif JP", serif;
    margin-bottom: 10px;
}

.c-flow-10.c-flow-10__sell .c-flow-10__text h3 {
    min-height: auto;
}

/* PC（768px以上）でスクロールバーを表示 */
@media screen and (max-width: 767px) {
    .c-flow-10__wrapper {
        scrollbar-width: none;
    }

    .c-flow-10__wrapper::-webkit-scrollbar {
        display: none;
    }
}

@media screen and (min-width: 768px) {
    .c-flow-10__text h3 {
        min-height: 60px;
    }

    .c-flow-10__wrapper {
        scrollbar-width: auto;
    }

    .c-flow-10__wrapper::-webkit-scrollbar {
        display: block;
        height: 5px;
    }

    .c-flow-10__wrapper::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    .c-flow-10__wrapper::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 4px;
        cursor: pointer;
    }

    .c-flow-10__wrapper::-webkit-scrollbar-thumb:hover {
        background: #aaa;
    }
}

/*
　下線付き-02
================================*/
.c-title-border-02 {
    position: relative;
    margin: 10px auto 30px auto;
    padding: 5px 8px;
    text-align: center;
    line-height: 1.4;
    font-family: "Noto Serif JP", serif;
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.c-title-border-02::after {
    content: "";
    position: absolute;
    left: calc(50% - 23px);
    bottom: 0;
    display: block;
    width: 46px;
    border: 1px solid #d7341d;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-title-border-02 {
        max-width: 1140px;
        margin: 0 auto 50px;
        padding: 5px 8px 7px 8px;
        font-size: clamp(28px, 3.6458333333vw, 32px);
    }
}

/*
　プロフィール-01
================================*/
.c-profile-01 {
    background: #fff;
    border: 2px solid #d7341d;
    box-sizing: border-box;
}

.c-profile-01__title {
    padding: 15px 50px;
    background: #d7341d;
}

.c-profile-01__title h2 {
    font-size: clamp(25px, 5vw, 28px);
    font-weight: 900;
    color: #fff;
}

.c-profile-01__img {
    text-align: center;
    padding: 10px;
}

.c-profile-01__img img {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 10px;
}

.c-profile-01__img-text {
    font-size: 1em;
    margin-bottom: 20px;
    line-height: 1.6;
}

.c-profile-01__img-text span {
    font-size: 0.8em;
}

.c-profile-01__text table {
    width: 100%;
    table-layout: fixed;
    word-break: break-all;
}

.c-profile-01__text th {
    display: block;
    font-weight: 700;
    color: #555;
    text-align: left;
    background-color: #f0f0f0;
    padding: 5px 10px;
    border-top: 1px solid #888;
    border-bottom: 1px solid #888;
}

.c-profile-01__text td {
    display: block;
    padding: 5px 10px;
    margin-bottom: 20px;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-profile-01 {
        width: 100%;
    }

    .c-profile-01__title h2 {
        font-size: clamp(29px, 3vw, 35px);
    }

    .c-profile-01__info {
        display: flex;
        align-items: flex-start;
        padding: 20px 50px 0;
    }

    .c-profile-01__img {
        width: 36%;
        margin-top: 15px;
        padding: 0;
        text-align: center;
    }

    .c-profile-01__img img {
        width: 100%;
        height: 100%;
        -o-object-fit: contain;
        object-fit: contain;
    }

    .c-profile-01__img-text {
        margin-bottom: 80px;
    }

    .c-profile-01__text {
        width: 88%;
        padding-left: 6%;
        box-sizing: border-box;
    }

    .c-profile-01__text tr {
        border-bottom: 1px solid #dcdcdc;
    }

    .c-profile-01__text tr:last-child {
        border-bottom: none;
    }

    .c-profile-01__text th {
        display: inline-block;
        vertical-align: top;
        width: 17%;
        padding: 16px 0;
        border: none;
        background-color: transparent;
    }

    .c-profile-01__text td {
        display: inline-block;
        vertical-align: text-bottom;
        width: 83%;
        box-sizing: border-box;
        padding: 16px 0 16px 5px;
        margin-bottom: 0;
    }
}

/*
　よくある質問-01
================================*/
.c-ques-list-01 {
    width: 90%;
    margin: 0 auto 30px auto;
}

.c-ques-list-01 dt,
.c-ques-list-01 dd {
    line-height: 1.7;
}

.c-ques-list-01 dt {
    margin-bottom: 10px;
}

.c-ques-list-01 dd {
    margin-bottom: 50px;
}

.c-ques-list-01 dt p,
.c-ques-list-01 dd p {
    display: inline-block;
    width: calc(100% - 60px);
    margin-left: 10px;
    padding: 8px;
    font-size: 16px;
    background-color: #FFFFFF;
    border: solid 1px #CCCCCC;
    border-radius: 5px;
    box-sizing: border-box;
}

.c-ques-list-01 dt:before,
.c-ques-list-01 dd:before {
    display: inline-block;
    content: "Q";
    width: 35px;
    height: 35px;
    vertical-align: top;
    text-align: center;
    font-size: 24px;
    font-family: "Arial", sans-serif;
    font-weight: 500;
    color: #FFF;
    line-height: 35px;
    border-radius: 50%;
    background-color: #d7341d;
}

.c-ques-list-01 dd:before {
    content: "A";
    background-color: #CCC;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-ques-list-01 {
        width: 100%;
    }

    .c-ques-list-01 dt:before,
    .c-ques-list-01 dd:before {
        width: 45px;
        height: 45px;
        font-size: 27px;
        line-height: 45px;
    }
}

/*
　コンタクト-11
================================*/
.c-contact-11 {
    width: 100%;
    padding: 30px 0;
    background-color: #f0dcb4;
}

.c-contact-11__inner {
    padding: 0 10px;
    text-align: center;
}

.c-contact-11 h2 {
    font-size: clamp(30px, 5.2083333333vw, 40px);
    margin-bottom: 25px;
    font-weight: bold;
}

.c-contact-11 p {
    font-weight: bold;
}

.c-contact-11__read {
    text-align: left;
}

.c-contact-11__button-wrapper {
    margin-top: 30px;
}

.c-contact-11__button--block {
    margin-bottom: 40px;
}

.c-contact-11__button--block a {
    text-decoration: none;
}

.c-contact-11__button--tel a,
.c-contact-11__button--line a {
    display: block;
    margin-bottom: 15px;
    color: #fff;
    border-radius: 100px;
}

.c-contact-11__button--tel a {
    padding: 15px 0 10px 0;
    font-size: clamp(37px, 6.1197916667vw, 47px);
    font-family: "Arial", sans-serif;
    font-weight: bold;
    background-color: #0b6ab5;
    box-shadow: 0 4px 0 0 #0b429d;
}

.c-contact-11__button--line a {
    padding: 20px 0;
    font-size: clamp(30px, 5.2083333333vw, 40px);
    background-color: #00b900;
    box-shadow: 0 4px 0 0 #048904;
}

.c-contact-11__button--tel a i {
    margin-right: 10px;
}

.c-contact-11__button--line img {
    position: relative;
    width: clamp(32px, 5.0890585242vw, 40px);
    height: auto;
    top: -6px;
    margin-right: 10px;
}

.c-contact-11__button--line a span {
    font-weight: bold;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-contact-11 {
        padding: 60px 0;
    }

    .c-contact-11__inner {
        max-width: 1140px;
        margin: 0 auto;
        padding: 0;
    }

    .c-contact-11 h2 {
        font-size: 40px;
    }

    .c-contact-11 p {
        font-size: 20px;
    }

    .c-contact-11__read {
        text-align: center;
    }

    .c-contact-11__button-wrapper {
        display: flex;
        justify-content: space-between;
    }

    .c-contact-11__button--block {
        width: 48%;
    }

    .c-contact-11__button--block p {
        font-size: 17px;
    }

    .c-contact-11__button--tel a,
    .c-contact-11__button--line a {
        line-height: 1;
        margin-bottom: 20px;
        padding: 30px 0;
    }

    .c-contact-11__button--tel a {
        font-size: clamp(37px, 3.7719298246vw, 43px);
    }

    .c-contact-11__button--line a {
        font-size: clamp(30px, 2.8947368421vw, 33px);
        padding: 35px 0;
    }

    .c-contact-11__button--line img {
        width: clamp(30px, 2.8947368421vw, 33px);
        top: 5px;
    }

    .c-contact-11__button--tel a:hover,
    .c-contact-11__button--line a:hover {
        opacity: 0.7;
    }
}

/*
　ページタイトル
================================*/
.c-page-title-01 {
    position: relative;
    width: 100%;
    height: 150px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    margin: 0 auto 30px auto;
}

.c-page-title-01__buy {
    background-image: url(../img/page-title__buy.jpg);
}

.c-page-title-01__rent {
    background-image: url(../img/page-title__rent.jpg);
}

.c-page-title-01__souzoku {
    background-image: url(../img/page-title__souzoku.jpg);
}

.c-page-title-01::before {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    content: "";
    background-color: rgba(29, 39, 49, 0.6);
}

.c-page-title-01 h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #FFF;
    line-height: 1.4;
    font-size: 27px;
    font-weight: bold;
    text-shadow: 2px 2px 3px #000;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-page-title-01 {
        height: 300px;
        margin: 0 auto 80px auto;
    }

    .c-page-title-01 h2 {
        font-size: 60px;
    }
}

/*
　お悩み-04
================================*/
.c-trouble-04__title {
    margin-bottom: 40px;
    text-align: center;
    font-size: 20px;
    font-weight: 900;
}

.c-trouble-04__list {
    display: flex;
    flex-wrap: wrap;
}

.c-trouble-04__list li {
    margin-bottom: 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    align-content: flex-start;
    width: 100%;
}

.c-trouble-04 img {
    width: 15%;
}

.c-trouble-04 p {
    font-size: 15px;
    font-weight: bold;
}

.c-trouble-04 p span {
    background: linear-gradient(transparent 60%, #FFF799 60%);
}

.c-trouble-04__comment {
    position: relative;
    display: inline-block;
    margin-left: 5px;
    padding: 10px 15px;
    text-align: left;
    background: #FFF;
    border-radius: 50px;
    box-sizing: border-box;
}

.c-trouble-04__comment:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -23px;
    margin-top: -15px;
    border: 15px solid transparent;
    border-right: 20px solid #FFF;
    z-index: 0;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-trouble-04__title {
        font-size: 35px;
        margin-bottom: 50px;
    }

    .c-trouble-04 img {
        width: 13%;
    }

    .c-trouble-04__comment {
        font-size: 27px;
    }

    .c-trouble-04__list li {
        margin-bottom: 25px;
        width: 50%;
    }

    .c-trouble-04 p {
        font-size: 20px;
    }

    .c-trouble-04__comment {
        padding: 10px 15px;
    }
}

/* iPhone5 */
@media screen and (max-width: 320px) {
    .c-trouble-04 p {
        font-size: 11px;
    }

    .c-trouble-04 img {
        width: 10%;
    }
}

.c-trouble-04__text {
    line-height: 1.7;
}

/*
　2columnレイアウト
=================================*/
.c-column-2 {
    margin-bottom: 50px;
}

.c-column-2--text-center {
    text-align: center !important;
}

.c-column__col {
    margin-bottom: 15px;
}

.c-column__col h3 {
    margin-bottom: 5px;
    font-size: 18px;
}

.c-column__col img {
    max-width: 100%;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-column-2 {
        display: flex;
        justify-content: space-between;
    }

    .c-column__col {
        width: 48%;
    }
}

/*
　コンタクト-01
================================*/
.c-contact-01 {
    display: block;
    padding: 30px 0;
    background: #727a84;
}

/* mail */
.c-contact-01__mail {
    width: 95%;
    margin: 0 auto;
    border-bottom: 1px solid #FFF;
}

.c-contact-01__mail a {
    display: block;
    max-width: 380px;
    width: 90%;
    margin: 0 auto 30px auto;
    padding: 20px 0;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    color: #fff;
    border: solid 1px #fff;
}

.c-contact-01__mail a:hover {
    background-color: #FFF;
    color: #727a84;
}

.c-contact-01__mail a i {
    margin-right: 5px;
}

/* tel */
.c-contact-01__tel {
    padding-top: 20px;
    text-align: center;
    color: #fff;
}

.c-contact-01__tel__announce {
    font-size: 18px;
}

.c-contact-01__tel__no {
    text-decoration: none !important;
    font-size: 40px;
    font-weight: bold;
    color: #fff !important;
    font-family: "Arial", "Century Gothic", "Noto Sans JP", sans-serif;
}

.c-contact-01__tel__no i {
    margin-right: 5px;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-contact-01 {
        display: flex;
        align-items: center;
        padding: 20px 0;
    }

    /* mail */
    .c-contact-01__mail {
        width: 50%;
        padding: 25px 0;
        border-right: 1px solid #FFF;
        border-bottom: none;
    }

    .c-contact-01__mail a {
        width: 70%;
        margin: 0 auto;
    }

    /* tel */
    .c-contact-01__tel {
        width: 50%;
        padding-top: 0;
    }

    .c-contact-01__tel__announce {
        font-size: 20px;
    }
}

/*
　フォーム-02
================================*/
.c-form-02 {
    position: relative;
    left: 0;
    top: -120px;
    width: 90%;
    height: auto;
    margin: 0 auto;
    background: #1e50a2;
    box-sizing: border-box;
    padding: 40px 30px;
    margin-bottom: -80px;
    border-radius: 10px;
}

.c-form-02__badge {
    background: #d7341d;
    width: 80px;
    height: auto;
    border-radius: 50%;
    position: absolute;
    width: 80px;
    right: 16px;
    top: -25px;
}

.c-form-02__badge-text {
    text-align: center;
    font-size: 14px;
    line-height: 1;
    padding: 12px 0;
    font-weight: 500;
    color: #fff;
}

.c-form-02__badge-text span {
    font-size: 28px;
}

.c-form-02-title {
    font-size: 24px;
    color: #fff;
    font-weight: 900;
}

.c-form-02__areabox,
.c-form-02__personbox {
    margin-top: 20px;
}

.c-form-02__areabox-label {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    margin-right: 30px;
    margin-bottom: 10px;
}

.c-form-02__areabox-city {
    display: inline-block;
    font-size: 22px;
    font-weight: bold;
    color: #ffc107;
    margin-bottom: 10px;
}

.c-form-02__areabox-cityblock {
    box-sizing: border-box;
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    background: #fff;
    font-size: 18px;
    text-align: left;
    padding: 5px;
    border: none;
    margin-bottom: 20px;
    cursor: pointer;
    background-color: #edf1f8;
}

.c-form-02__areabox-cityblock:invalid {
    color: #969696;
}

.c-form-02__areabox-cityblock option {
    color: #000;
}

.c-form-02__areabox-address,
.c-form-02__areabox-housenum {
    box-sizing: border-box;
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    background: #fff;
    font-size: 18px;
    text-align: left;
    margin-right: 20px;
    margin-bottom: 20px;
    padding: 5px;
    border: none;
    background-color: #edf1f8;
}

.c-form-02__areabox-nextbtn {
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    background: #c1272d;
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    margin-right: 20px;
    padding: 0;
    border: none;
    cursor: pointer;
}

.c-form-02__areabox-nextbtn:hover {
    background: #f70;
}

.c-form-02__areabox-nextbtn.__disabled:hover {
    background: #a7a7a7;
}

.c-form-02__areabox-nextbtn.__disabled {
    background: #c9c9c9;
    color: rgb(103, 103, 103);
}

.c-form-02__personbox,
.c-form-02__personbox-line {
    width: 100%;
    height: auto;
}

.c-form-02__personbox.__boxoff {
    display: none;
}

.c-form-02__person-label {
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    max-width: 90%;
    margin-right: 20px;
    margin-bottom: 10px;
}

.c-form-02__personbox-required {
    color: #ffd124;
}

.c-form-02__personbox-name,
.c-form-02__personbox-mail,
.c-form-02__personbox-tel {
    display: inline-block;
    box-sizing: border-box;
    width: 100%;
    height: 50px;
    line-height: 50px;
    background: #fff;
    font-size: 18px;
    font-weight: bold;
    text-align: left;
    margin-right: 20px;
    margin-bottom: 20px;
    padding: 0 10px;
    border: none;
}

.c-form-02__areabox-submitbtn {
    display: block;
    width: 100%;
    background: #c1272d;
    font-size: 25px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    margin: 30px auto 15px auto;
    padding: 15px;
    border: none;
}

.c-form-02__areabox-submitbtn:hover {
    background: #f70;
}

/* PC */
@media screen and (min-width: 1200px) {
    .c-form-02 {
        top: -140px;
        max-width: 1140px;
        padding: 30px 80px;
    }

    .c-form-02__badge {
        width: 100px;
        right: 15px;
        top: -70px;
    }

    .c-form-02__badge-text {
        padding: 16px 0;
        line-height: 1.2;
    }

    .c-form-02-title {
        font-size: 40px;
        text-align: center;
    }

    .c-form-02__areabox,
    .c-form-02__personbox {
        margin-top: 10px;
    }

    .c-form-02__areabox-label {
        display: inline-block;
        width: 16%;
        font-size: 27px;
        margin-right: 0;
    }

    .c-form-02__areabox-city {
        width: 16%;
        font-size: 27px;
    }

    .c-form-02__areabox-cityblock {
        display: inline-block;
        width: 15%;
        height: 50px;
        line-height: 50px;
        font-size: 18px;
        text-align: center;
        margin-right: 10px;
        margin-bottom: 20px;
    }

    .c-form-02__areabox-address,
    .c-form-02__areabox-housenum {
        display: inline-block;
        width: 20%;
        height: 50px;
        line-height: 50px;
        font-size: 18px;
        text-align: center;
        margin-right: 10px;
        margin-bottom: 20px;
        padding: 0;
        border: none;
    }

    .c-form-02__areabox-nextbtn {
        display: inline-block;
        width: 22%;
        margin-top: 20px;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .c-form-02__person-label {
        display: inline-block;
        font-size: 18px;
        font-weight: bold;
        color: #fff;
        width: 350px;
        height: 40px;
        margin-right: 20px;
        margin-bottom: 0;
    }

    .c-form-02__personbox-name,
    .c-form-02__personbox-mail,
    .c-form-02__personbox-tel {
        height: 50px;
        line-height: 50px;
        margin-right: 20px;
        margin-bottom: 20px;
        padding: 0 10px;
        border: none;
    }

    .c-form-02__areabox-submitbtn {
        width: 35%;
        font-size: 25px;
    }
}

/*
　流れ-09
================================*/
.c-flow-09 {
    width: 95%;
    margin: 0 auto;
}

.c-flow-09__title {
    margin-bottom: 15px;
    text-align: center;
}

.c-flow-09__title span {
    position: relative;
    display: inline-block;
    align-items: center;
    font-size: clamp(23px, 2.9947916667vw, 30px);
    font-weight: bold;
    color: #d7341d;
}

.c-flow-09__title span::before,
.c-flow-09__title span::after {
    position: absolute;
    content: "";
    width: 3px;
    height: 35px;
    top: 3px;
    background: #d7341d;
}

.c-flow-09__title span::before {
    left: -20px;
    transform: rotate(-40deg);
}

.c-flow-09__title span::after {
    right: -20px;
    transform: rotate(40deg);
}

.c-flow-09__title h2 {
    margin-top: 10px;
    font-size: clamp(33px, 4.296875vw, 40px);
    font-weight: 900;
    color: #c5a059;
}

.c-flow-09__list {
    padding-top: 25px;
}

.c-flow-09__list ul {
    width: 90%;
    margin: 0 auto 30px;
}

.c-flow-09__list ul li {
    position: relative;
    width: 100%;
    border: solid 1px #ccc;
    background-color: #FFF;
}

.c-flow-09__list ul li:not(:first-child) {
    margin-top: 40px;
}

.c-flow-09__list-cover {
    position: absolute;
    top: -14px;
    left: -20px;
    padding-top: 8px;
    width: clamp(60px, 7.8125vw, 70px);
    height: clamp(60px, 7.8125vw, 70px);
    text-align: center;
    color: #fff;
    font-weight: bold;
    background-color: #d7341d;
    border-radius: 50%;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1;
    box-sizing: border-box;
}

.c-flow-09__list-cover span {
    font-size: 15px;
}

.c-flow-09__list-cover span.c-flow-09__list-number {
    font-size: clamp(30px, 3.90625vw, 45px);
}

.c-flow-09__list ul li h3 {
    display: flex;
    justify-content: center;
    padding: 15px;
    font-size: clamp(23px, 2.9947916667vw, 33px);
    font-weight: 900;
    color: #4c444d;
    border-bottom: solid 1px #ccc;
}

.c-flow-09__list__text {
    padding: 20px;
}

.c-flow-09__list__triangle--pc {
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
    transform: translateY(-50%);
    right: -17%;
    border-style: solid;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 30px solid #d7341d;
    border-right: 0;
    display: none;
}

.c-flow-09__list__triangle--sp {
    position: absolute;
    width: 0;
    height: 0;
    left: 50%;
    transform: translateX(-50%);
    bottom: -30px;
    border-style: solid;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    border-top: 20px solid #d7341d;
    border-bottom: 0;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-flow-09 {
        max-width: 1250px;
    }

    .c-flow-09__title {
        margin-bottom: 20px;
    }

    .c-flow-09__title span {
        font-size: clamp(25px, 2.1929824561vw, 35px);
    }

    .c-flow-09__title span::before,
    .c-flow-09__title span::after {
        height: 45px;
        top: 7px;
    }

    .c-flow-09__title span::before {
        left: -30px;
    }

    .c-flow-09__title span::after {
        right: -30px;
    }

    .c-flow-09__title h2 {
        margin-top: 0;
        font-size: clamp(35px, 3.0701754386vw, 50px);
    }

    .c-flow-09__list {
        margin: 0 20px;
    }

    .c-flow-09__list ul {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        width: 100%;
        margin-bottom: 40px;
    }

    .c-flow-09__list ul li {
        width: 29%;
        margin-top: 0;
    }

    .c-flow-09__list ul li:not(:first-child) {
        margin-top: 0;
    }

    .c-flow-09__list ul li:nth-child(n+4) {
        margin-top: 68px;
    }

    .p-sell-satei-flow ul::after {
        display: block;
        content: "";
        width: 29%;
    }

    .c-flow-09__list ul li h3 {
        padding: 15px;
        font-size: clamp(20px, 1.7543859649vw, 30px);
    }

    .c-flow-09__list-cover {
        top: -15px;
        left: -18px;
        padding-top: 8px;
        width: clamp(60px, 5.2631578947vw, 70px);
        height: clamp(60px, 5.2631578947vw, 70px);
    }

    .c-flow-09__list-cover span {
        font-size: clamp(16px, 1.4035087719vw, 17px);
    }

    .c-flow-09__list-cover span.c-flow-09__list-number {
        font-size: clamp(25px, 2.1929824561vw, 40px);
    }

    .c-flow-09__list__text p {
        font-size: clamp(16px, 1.4035087719vw, 18px);
        line-height: 1.5;
    }

    .c-flow-09__list__triangle--pc {
        display: block;
    }

    .c-flow-09__list__triangle--sp {
        display: none;
    }

    .c-flow-09__under-text {
        font-size: 18px;
        text-align: center;
    }
}

/*
　お悩み-06
================================*/
.c-trouble-06-title {
    width: 90%;
    font-size: 1.4rem;
    font-weight: 900;
    text-align: center;
    color: #000;
    margin: 0 auto 40px auto;
}

.c-trouble-06 {
    margin-bottom: 30px;
}

.c-trouble-06 li {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 15px 20px 15px 10px;
    background-color: #F5F5F5;
    box-sizing: border-box;
}

.c-trouble-06 li:not(:first-child) {
    margin-top: 20px;
}

.c-trouble-06__image {
    margin-right: 15px;
    width: clamp(60px, 10.15625vw, 78px);
    height: auto;
    font-size: 0;
}

.c-trouble-06__image img {
    width: 100%;
}

.c-trouble-06 p {
    font-size: clamp(17px, 2.6041666667vw, 20px);
    font-weight: bold;
    line-height: 1.4;
}

.c-trouble-06 p span {
    font-size: clamp(23px, 3.6458333333vw, 28px);
    color: #d7341d;
    font-weight: 900;
}

.c-trouble-06__lower-text {
    width: 95%;
    margin: 0 auto 30px auto;
    font-size: clamp(17px, 2.2135416667vw, 20px);
    font-weight: bold;
    color: #333;
    line-height: 1.6;
}

@media screen and (min-width: 768px) {
    .c-trouble-06-title {
        width: 100%;
        font-size: 2.5rem;
    }

    .c-trouble-06 {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-bottom: 50px;
    }

    .c-trouble-06 li {
        width: 48.5%;
        padding: 16px 20px 16px 20px;
    }

    .c-trouble-06 li:not(:first-child) {
        margin-top: 0;
    }

    .c-trouble-06 li:nth-child(n+3) {
        margin-top: 20px;
    }

    .c-trouble-06__image {
        margin-right: 25px;
        width: clamp(60px, 6.8421052632vw, 78px);
    }

    .c-trouble-06 p {
        font-size: clamp(19px, 1.9298245614vw, 22px);
    }

    .c-trouble-06 p span {
        font-size: clamp(25px, 2.8070175439vw, 32px);
    }

    .c-trouble-06__lower-text {
        margin-bottom: 40px;
        text-align: center;
    }
}

@media screen and (min-width: 1000px) {
    .c-trouble-06 li {
        padding: 16px 20px 16px 50px;
    }
}

/*
　紹介-01
================================*/
.c-introduction-01 {
    width: 90%;
    margin: 0 auto;
}

.c-introduction-01__image img {
    display: block;
    width: clamp(160px, 20.8333333333vw, 230px);
    height: clamp(160px, 20.8333333333vw, 230px);
    margin: 0 auto 10px auto;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}

.c-introduction-01__image p {
    font-size: 15px;
    font-weight: bold;
    color: #222;
    text-align: center;
    line-height: 1.3;
}

.c-introduction-01__image p:last-child {
    font-size: 18px;
}

.c-introduction-01__text__inner {
    position: relative;
    display: inline-block;
    margin-top: 30px;
    padding: 15px 15px;
    border: 2px solid #333;
    border-radius: 15px;
    background-color: #FFF;
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #222;
}

.c-introduction-01__text__inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    border-style: solid;
    border-width: 0 10px 20px 10px;
    border-color: transparent transparent #333;
    translate: -50% -100%;
}

.c-introduction-01__text__inner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    border-style: solid;
    border-width: 0 7.8px 15.5px 7.8px;
    border-color: transparent transparent #FFF;
    translate: -50% -100%;
}

.c-introduction-01__text h2 {
    margin-bottom: 10px;
    font-size: clamp(20px, 3.125vw, 24px);
    text-align: center;
    font-weight: bold;
    color: #d7341d;
    line-height: 1.3;
}

.c-introduction-01__text p {
    line-height: 1.5;
}

@media screen and (min-width: 768px) {
    .c-introduction-01 {
        width: 95%;
        max-width: 1140px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .c-introduction-01__image img {
        margin-bottom: 0;
        width: clamp(160px, 15.7894736842vw, 250px);
        height: clamp(160px, 15.7894736842vw, 250px);
    }

    .c-introduction-01__text {
        margin-left: 30px;
    }

    .c-introduction-01__text__inner {
        margin-top: 0;
        margin-left: 15px;
        padding: 25px 45px;
    }

    .c-introduction-01__text__inner::before {
        top: 25%;
        left: 0;
        border-width: 11.5px 20px 11.5px 0;
        border-color: transparent #333 transparent transparent;
        translate: -100% -50%;
    }

    .c-introduction-01__text__inner::after {
        top: 25%;
        left: 0;
        border-width: 9.2px 16px 9.2px 0;
        border-color: transparent #FFF transparent transparent;
        translate: -100% -50%;
    }

    .c-introduction-01__text h2 {
        font-size: 23px;
        text-align: left;
    }

    .c-introduction-01__text p {
        font-size: 20px;
        line-height: 1.7;
    }
}

/*
特徴（3カラム）-08
================================*/
.c-feature-col3-08 {
    width: 90%;
    margin: 0 auto;
}

.c-feature-col3-08 li {
    border: 1px solid #000;
    background: #fff;
    margin-bottom: 30px;
    padding: 15px;
    box-sizing: border-box;
}

.c-feature-col3-08__image {
    margin-bottom: 15px;
}

.c-feature-col3-08__image img {
    width: 100%;
    aspect-ratio: 3/2;
    -o-object-fit: cover;
    object-fit: cover;
}

.c-feature-col3-08 h3 {
    color: #d7341d;
    font-size: clamp(20px, 2.6041666667vw, 22px);
    font-weight: bold;
    margin-bottom: 12px;
    line-height: 1.3;
}

.c-feature-col3-08 p {
    margin-bottom: 8px;
    line-height: 1.3;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-feature-col3-08 {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        width: 100%;
        max-width: 1250px;
    }

    .c-feature-col3-08 li {
        width: 32%;
        margin-bottom: 0;
        padding: 20px;
    }

    .c-feature-col3-08 h3 {
        font-size: clamp(19px, 1.9298245614vw, 22px);
        margin-bottom: 15px;
    }
}

/*
　ルビ付き-07
================================*/
.c-title-ruby-07 {
    position: relative;
    text-align: center;
    font-family: "Noto Serif JP", serif;
    font-weight: bold;
    margin-bottom: 30px;
    padding: 30px 0 20px 0;
}

.c-title-ruby-07 span {
    position: relative;
    line-height: 1.4;
    font-size: clamp(23px, 2.9947916667vw, 35px);
    z-index: 2;
}

.c-title-ruby-07::before {
    content: attr(data-en);
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(241, 141, 95, 0.6);
    opacity: 0.2;
    font-size: 3rem;
    font-size: clamp(47px, 6.1197916667vw, 60px);
    font-weight: normal;
    font-style: italic;
    z-index: 1;
}

.c-title-ruby-07::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 1px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-title-ruby-07 {
        margin-bottom: 60px;
    }

    .c-title-ruby-07 span {
        font-size: clamp(25px, 2.1929824561vw, 35px);
    }

    .c-title-ruby-07::before {
        top: -40px;
        font-size: clamp(65px, 5.701754386vw, 85px);
        letter-spacing: -3px;
    }
}

/*
 特徴（１カラム）-05
=================================*/
.feature-col1-05 {
    padding: 2em 0;
}

.feature-col1-05__inner {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
}

.feature-col1-05__title {
    width: 90%;
    text-align: center;
    line-height: 1.4;
    margin: 0px auto 30px;
}

.feature-col1-05__title h2 {
    font-size: clamp(24px, 3.90625vw, 30px);
    color: rgb(51, 51, 51);
    line-height: 1.5;
    font-weight: bold;
    font-family: "Noto Serif JP", serif;
}

.feature-col1-05__content {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    width: 95%;
    margin: 0 auto;
    background-color: #fff;
    padding-bottom: 2em;
}

.feature-col1-05__image {
    text-align: center;
}

.feature-col1-05__image img {
    width: 100%;
    max-width: 400px;
}

.feature-col1-05__text {
    box-sizing: border-box;
    background-color: #fff;
    padding: 0 1em 1em;
}

.feature-col1-05__text h3 {
    font-size: clamp(19px, 2.8645833333vw, 22px);
    color: #d7341d;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: bold;
}

.feature-col1-05__text p {
    line-height: 1.7;
}

.feature-col1-05__lower-text {
    font-size: clamp(17px, 2.2135416667vw, 22px);
    font-weight: bold;
    color: #333;
    line-height: 1.6;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .feature-col1-05 {
        padding: 4em 0 5em;
    }

    .feature-col1-05__content {
        flex-direction: row;
        width: 100%;
        padding-bottom: 0;
    }

    .feature-col1-05__title h2 {
        font-size: clamp(30px, 3.3333333333vw, 38px);
    }

    .feature-col1-05__image {
        display: flex;
        align-items: center;
        flex: 1;
    }

    .feature-col1-05__text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex-basis: 64%;
        padding: 2em;
    }

    .feature-col1-05__text h3 {
        font-size: clamp(19px, 2.1929824561vw, 25px);
    }

    .feature-col1-05__text p {
        font-size: 17px;
    }

    .feature-col1-05__lower-text {
        margin-top: 30px;
    }
}

/*
　ポイント（リスト）-04
================================*/
.c-point-list-04 {
    width: 90%;
    margin: 0 auto;
}

.c-point-list-04__unit {
    margin-bottom: 15px;
}

.c-point-list-04__unit:last-child {
    margin-bottom: 0;
}

.c-point-list-04__unit h3 {
    position: relative;
    padding: 30px 0 10px 0;
    line-height: 1.4;
    font-size: clamp(24px, 3.125vw, 30px);
    font-family: "Noto Serif JP", serif;
    font-weight: bold;
    color: #d7341d;
    z-index: 2;
}

.c-point-list-04__unit h3::after {
    content: attr(data-en);
    position: absolute;
    top: 15%;
    left: 2%;
    font-size: 37px;
    font-weight: normal;
    font-style: italic;
    line-height: 1;
    color: #999;
    opacity: 0.2;
    z-index: 1;
}

.c-point-list-04__unit p {
    line-height: 1.75;
}

.c-point-list-04__flex__image {
    margin-top: 20px;
}

.c-point-list-04__flex__image img {
    width: 100%;
    box-shadow: 2px 2px 5px #999;
}

.c-point-list-04__triangle {
    width: 0;
    height: 0;
    margin: 40px auto 30px;
    border-style: solid;
    border-right: 40px solid transparent;
    border-left: 40px solid transparent;
    border-top: 40px solid #696969;
    border-bottom: 0;
}

.c-point-list-04__catch {
    padding: 10px;
    background-color: #d7341d;
}

.c-point-list-04__catch p {
    font-size: clamp(20px, 2.6041666667vw, 25px);
    font-weight: bold;
    color: #fff;
    text-align: center;
    line-height: 1.4;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-point-list-04 {
        max-width: 980px;
        width: 100%;
    }

    .c-point-list-04__unit h3 {
        font-size: clamp(27px, 4.8177083333vw, 37px);
    }

    .c-point-list-04__unit h3::after {
        top: 5%;
        left: 2%;
        letter-spacing: -3px;
        font-size: clamp(45px, 7.8125vw, 60px);
    }

    .c-point-list-04__unit p {
        font-size: 17px;
    }

    .c-point-list-04__flex-wrapper {
        display: flex;
        justify-content: space-between;
    }

    .c-point-list-04__flex__text {
        width: 60%;
    }

    .c-point-list-04__flex__image {
        width: 35%;
    }

    .c-point-list-04__catch {
        padding: 15px 20px;
        box-sizing: border-box;
    }

    .c-point-list-04__catch p {
        font-size: clamp(25px, 2.8070175439vw, 32px);
    }
}

/*
  プロフィール-02
================================*/
.c-profile-02 {
    width: 95%;
    margin: 0 auto;
    border: 4px solid #d7341d;
    background-color: #fefbf5;
    box-sizing: border-box;
}

.c-profile-02 h3 {
    width: 250px;
    padding: 10px;
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    background-color: #d7341d;
    text-align: center;
    box-sizing: border-box;
}

.c-profile-02__inner {
    padding: 30px 20px 40px 20px;
}

.c-profile-02__image {
    margin-bottom: 30px;
}

.c-profile-02__image img {
    display: block;
    width: 65%;
    margin: 0 auto;
}

.c-profile-02__text table {
    width: 100%;
    table-layout: fixed;
    word-break: break-all;
}

.c-profile-02__text th {
    display: block;
    padding: 2px 0;
    font-weight: 700;
    color: #555;
    text-align: left;
}

.c-profile-02__text th::before {
    content: "●";
    margin-right: 3px;
    color: #d7341d;
}

.c-profile-02__text td {
    display: block;
    margin-bottom: 10px;
    padding: 2px 0 10px;
    border-bottom: 1px dotted #888;
}

.c-profile-02__message {
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: 700;
    color: #555;
}

.c-profile-02__message::before {
    content: "●";
    margin-right: 3px;
    color: #d7341d;
}

.c-profile-02__text p {
    line-height: 1.8;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-profile-02 {
        max-width: 1200px;
    }

    .c-profile-02 h3 {
        width: 360px;
        padding: 10px 50px;
        font-size: clamp(20px, 1.7543859649vw, 25px);
    }

    .c-profile-02__inner {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 40px 50px;
    }

    .c-profile-02__image {
        width: 27%;
        margin-bottom: 0;
    }

    .c-profile-02__image img {
        width: 100%;
    }

    .c-profile-02__text {
        width: 68%;
    }

    .c-profile-02__text tr {
        border-bottom: 1px dotted #888;
    }

    .c-profile-02__text th {
        display: inline-block;
        width: 17%;
        padding: 16px 0;
        font-size: clamp(16px, 1.4035087719vw, 17px);
        vertical-align: top;
    }

    .c-profile-02__text td {
        display: inline-block;
        width: 83%;
        margin-bottom: 0;
        padding: 16px 0 16px 5px;
        font-size: clamp(16px, 1.4035087719vw, 17px);
        border-bottom: none;
        vertical-align: text-bottom;
        box-sizing: border-box;
    }

    .c-profile-02__message {
        margin-top: 20px;
        font-size: clamp(16px, 1.4035087719vw, 17px);
    }

    .c-profile-02__text p {
        font-size: clamp(16px, 1.4035087719vw, 17px);
    }
}

/*
　フォーム-01
================================*/
.c-form-01 {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    margin: 0 auto;
    background: #1e50a2;
    box-sizing: border-box;
    padding: 40px 20px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.c-form-01__badge {
    background: #d7341d;
    width: 80px;
    height: auto;
    border-radius: 50%;
    position: absolute;
    width: 80px;
    right: 16px;
    top: -40px;
}

.c-form-01__badge-text {
    text-align: center;
    font-size: 14px;
    line-height: 1;
    padding: 12px 0;
    font-weight: 500;
    color: #fff;
}

.c-form-01__badge-text span {
    font-size: 28px;
}

.c-form-01__title {
    font-size: 24px;
    color: #fff;
    font-weight: 500;
    text-align: center;
}

.c-form-01__areabox, .c-form-01__personbox {
    margin-top: 20px;
}

.c-form-01__areabox-label {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    margin-right: 30px;
    margin-bottom: 10px;
}

.c-form-01__areabox-text {
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: 25px;
    color: #fff;
    font-weight: 500;
    color: #ffd124;
}

.c-form-01__areabox-cityblock {
    box-sizing: border-box;
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    background: #fff;
    font-size: 18px;
    text-align: left;
    padding: 5px;
    border: none;
    margin-bottom: 20px;
    cursor: pointer;
    background-color: #edf1f8;
}

.c-form-01__areabox-cityblock:invalid {
    color: #969696;
}

.c-form-01__areabox-cityblock option {
    color: #000;
}

.c-form-01__areabox-housenum {
    box-sizing: border-box;
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    background: #fff;
    font-size: 18px;
    text-align: left;
    padding: 5px;
    border: none;
    background-color: #edf1f8;
}

.c-form-01__personbox, .c-form-01__personbox-line {
    width: 100%;
    height: auto;
}

.c-form-01__person-label {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    max-width: 90%;
    margin-right: 20px;
    margin-bottom: 10px;
}

.c-form-01__personbox-required {
    color: #ffd124;
}

.c-form-01__personbox-name, .c-form-01__personbox-tel, .c-form-01__personbox-mail {
    display: inline-block;
    box-sizing: border-box;
    width: 100%;
    height: 50px;
    line-height: 50px;
    background: #fff;
    font-size: 18px;
    text-align: left;
    margin-bottom: 20px;
    padding: 0 10px;
    border: none;
}

.c-form-01__personbox-mail {
    margin-bottom: 30px;
}

.c-form-01__areabox-submitbtn {
    display: block;
    width: 100%;
    background: #c1272d;
    font-size: 25px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    margin: 30px auto 15px auto;
    padding: 15px;
    border: none;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-form-01 {
        padding: 40px 80px;
    }

    .c-form-01__badge {
        width: 100px;
        right: 15px;
        top: -45px;
    }

    .c-form-01__badge-text {
        padding: 16px 0;
        line-height: 1.2;
    }

    .c-form-01__title {
        font-size: 40px;
        margin-bottom: 30px;
    }

    .c-form-01__areabox, .c-form-01__personbox {
        margin-top: 10px;
    }

    .c-form-01__areabox-label {
        display: inline-block;
        width: 23%;
        font-size: 27px;
        margin-right: 0;
    }

    .c-form-01__areabox-text {
        display: inline-block;
        width: 18%;
        height: 40px;
        padding: 0;
        font-size: 27px;
        font-weight: bold;
        text-align: left;
        margin-right: 20px;
        margin-bottom: 20px;
    }

    .c-form-01__areabox-cityblock {
        display: inline-block;
        width: 20%;
        height: 50px;
        line-height: 50px;
        font-size: 18px;
        text-align: center;
        margin-right: 10px;
        margin-bottom: 20px;
    }

    .c-form-01__areabox-housenum {
        display: inline-block;
        width: 20%;
        height: 50px;
        line-height: 50px;
        font-size: 18px;
        text-align: center;
        margin-right: 50px;
        margin-bottom: 20px;
        padding: 0;
        border: none;
    }

    .c-form-01__person-label {
        display: inline-block;
        font-size: 18px;
        font-weight: bold;
        color: #fff;
        width: 350px;
        height: 40px;
        margin-right: 20px;
        margin-bottom: 0;
    }

    .c-form-01__personbox-name, .c-form-01__personbox-tel, .c-form-01__personbox-mail {
        height: 50px;
        line-height: 50px;
        margin-right: 20px;
        margin-bottom: 20px;
        padding: 0 10px;
        border: none;
    }

    .c-form-01__personbox-mail {
        margin-bottom: 30px;
    }

    .c-form-01__areabox-submitbtn {
        width: 35%;
        font-size: 25px;
    }
}

/*
　コンタクト-17
================================*/
.c-contact-17 {
    width: 90%;
    margin: 0 auto;
}

.c-contact-17__title {
    margin-bottom: 30px;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    color: #000;
}

.c-contact-17__inner {
    margin-bottom: 30px;
    text-align: center;
}

.c-contact-17__button {
    margin-bottom: 30px;
}

.c-contact-17__button-balloon {
    display: block;
    position: relative;
    z-index: 2;
    padding: 8px 20px 9px;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto -13px;
    color: #333;
    background-color: #fff;
    border: 3px solid #d7341d;
    border-radius: 30px;
    line-height: 1;
    font-weight: 700;
}

.c-contact-17__button-balloon span {
    color: #d7341d;
    font-size: 1.1rem;
}

.c-contact-17__button__tel .c-contact-17__button-balloon {
    border: 3px solid #c5a059;
}

.c-contact-17__button__tel .c-contact-17__button-balloon span {
    color: #c5a059;
}

.c-contact-17__button__line .c-contact-17__button-balloon {
    border: 3px solid #00b900;
}

.c-contact-17__button__line .c-contact-17__button-balloon span {
    color: #00b900;
}

.c-contact-17__button-balloon::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%);
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 7px 0;
    border-color: #fff transparent transparent transparent;
}

.c-contact-17__button a {
    position: relative;
    display: block;
    padding: 25px 20px 20px 20px;
    border-radius: 60px;
    text-decoration: none;
    color: #fff;
    font-size: clamp(20px, 3.2552083333vw, 25px);
    text-align: center;
    background: #d7341d;
    box-shadow: 0 2px 6px rgba(125, 55, 4, 0.26);
    line-height: 1.4;
    font-weight: 700;
    transition: 0.3s ease-in-out;
}

.c-contact-17__button a:hover {
    background: #4c444d;
}

.c-contact-17__button__tel a {
    background: #c5a059;
    font-size: clamp(27px, 4.1666666667vw, 32px);
    font-family: "Arial", "Century Gothic", sans-serif;
    letter-spacing: 0.05em;
    line-height: 1.1;
}

.c-contact-17__button__line a {
    background: #00b900;
    font-size: clamp(20px, 3.2552083333vw, 25px);
    letter-spacing: 0.1em;
    line-height: 1.1;
}

.c-contact-17__button a::before {
    content: "";
    position: absolute;
    top: 52%;
    left: 5.5%;
    transform: translateY(-50%);
    display: block;
    width: 30px;
    height: 30px;
    background: url(../img/contact-17__satei.svg) no-repeat center/contain;
}

.c-contact-17__button__tel a::before {
    background: url(../img/contact-17__tel.svg) no-repeat center/contain !important;
}

.c-contact-17__button__line a::before {
    background: url(../img/contact-17__line.svg) no-repeat center/contain !important;
}

.c-contact-17__button a::after {
    content: "";
    position: absolute;
    top: 52%;
    right: 6%;
    transform: translateY(-50%);
    display: block;
    width: 10px;
    height: 15px;
    background: url(../img/contact-17__arrow.svg) no-repeat center/contain;
    width: 10px;
    height: 15px;
}

.c-contact-17__time {
    text-align: center;
    font-weight: 500;
}

/* スマホ */
@media screen and (max-width: 400px) {
    .c-contact-17__button a::before {
        left: 4%;
    }
}

/* PC */
@media screen and (min-width: 1000px) {
    .c-contact-17 {
        width: 95%;
        max-width: 1250px;
    }

    .c-contact-17__title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .c-contact-17__inner {
        display: flex;
        justify-content: space-between;
    }

    .c-contact-17__button {
        margin-bottom: 0;
        width: 32%;
    }

    .c-contact-17__button-balloon {
        letter-spacing: 0.05em;
    }

    .c-contact-17__button a {
        padding: 28px 10px 26px 30px;
        font-size: clamp(20px, 1.76vw, 24px);
        line-height: 40px;
    }

    .c-contact-17__button__tel a {
        font-size: clamp(30px, 2.8vw, 35px);
    }

    .c-contact-17__button a::before {
        top: 50%;
        width: clamp(22px, 2.8vw, 35px);
        height: clamp(22px, 2.8vw, 35px);
    }

    .c-contact-17__button:first-child a:before {
        left: 8.5%;
    }

    .c-contact-17__button:nth-child(2) a:before {
        left: 7.5%;
    }

    .c-contact-17__button:nth-child(3) a:before {
        left: 7.5%;
    }

    .c-contact-17__button a::after {
        width: 16px;
        height: 20px;
        right: 3%;
    }

    .c-contact-17__time {
        font-size: 18px;
    }
}

/* ━━━━━━━━━━━━━━━━

 ■レイアウト

━━━━━━━━━━━━━━━━ */
/*=========================================

* ヘッダー-03

==========================================*/
html {
    scroll-padding-top: 100px;
}

.l-header-03 {
    position: relative;
    width: 100%;
    height: 80px;
    margin: 0;
}

.l-header-03__wrapper {
    position: fixed;
    width: 100%;
    height: 80px;
    top: 0;
    background-color: #fff;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
    z-index: 1010;
}

.l-header-03__title {
    padding: 3px 5px;
    font-size: 0.8em;
    color: #fff;
    background-color: #d7341d;
}

.l-header-03__title h1 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.l-header-03__inquiry {
    display: none;
}

.l-header-03__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 10px;
}

.l-header-03__logo a {
    display: block;
    font-size: 0;
}

.l-header-03__logo img {
    width: 175px;
}

.l-header-03__nav {
    display: none;
}

.l-header-03__nav a:hover {
    background-color: #fbfaf3;
}

.l-header-03__menu__button i {
    font-size: 35px;
}

.l-header-03__menu__button a {
    display: block;
    text-align: center;
    text-decoration: none;
    color: #1f2a34;
}

.l-header-03__sp-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 120px 20px 65px 20px;
    transform: translateY(min(-100%, -1000px));
    transition: transform 0.5s;
    overflow-y: auto;
    background: #fefefe;
    box-sizing: border-box;
    z-index: 1000;
}

.l-header-03__sp-menu.__open {
    transform: translateY(0);
    transition: transform 0.5s;
}

.l-header-03__sp-menu ul li {
    width: 100%;
    height: auto;
    border-top: 1px solid #919191;
}

.l-header-03__sp-menu ul li:hover {
    background: #747474;
}

.l-header-03__sp-menu ul li:last-child {
    border-bottom: 1px solid #919191;
}

.l-header-03__sp-menu ul li a {
    display: block;
    width: 100%;
    margin-left: 1em;
    line-height: 2.7em;
    text-decoration: none;
    font-size: 1em;
    color: #0b3c5d;
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
}

.l-header-03__sp-menu ul li a:hover {
    color: #fff;
}

.l-header-03__sp-menu--tel a {
    margin-top: 30px;
    line-height: 1;
    text-decoration: none;
    font-family: "Arial", "Noto Sans JP", sans-serif;
    font-size: 32px;
    font-weight: bold;
    color: #d7341d;
}

.l-header-03__sp-menu--tel p {
    text-align: center;
}

.l-header-03__sp-menu--inquiry {
    display: flex;
    justify-content: center;
    margin: 20px auto 0 auto;
}

.l-header-03__sp-menu--inquiry__mail {
    width: 60%;
}

.l-header-03__sp-menu--inquiry__mail a {
    display: block;
    padding: 20px;
    text-decoration: none;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #FFF;
    background-color: #d7341d;
    box-sizing: border-box;
}

.l-header-03__sp-menu--inquiry__mail a:hover {
    background: #c5a059;
}

.l-header-03__sp-menu--tel a {
    display: block;
    text-align: center;
}

@media print {
    .l-header-03__sp-menu {
        display: none;
    }
}

/* PC */
@media screen and (min-width: 1100px) {
    html {
        scroll-padding-top: 120px;
    }

    .l-header-03 {
        height: 120px;
        margin: 0;
    }

    .l-header-03__wrapper {
        justify-content: flex-end;
        height: 120px;
        padding: 0;
        background-color: rgba(255, 255, 255, 0.9);
    }

    .l-header-03__title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 0 0 20px;
        height: 40px;
        font-size: 16px;
        box-sizing: border-box;
    }

    .l-header-03__title h1 {
        width: calc(100% - 480px);
    }

    .l-header-03__inquiry {
        display: flex;
        align-items: center;
    }

    .l-header-03__inquiry--tel {
        display: block;
        margin-right: 20px;
    }

    .l-header-03__inquiry--tel a {
        line-height: 1;
        text-decoration: none;
        font-family: "Century Gothic", "Arial", sans-serif;
        font-size: 28px;
        color: #FFF;
    }

    .l-header-03__inquiry--mail {
        background-color: #4c444d;
    }

    .l-header-03__inquiry--mail a {
        display: block;
        height: 40px;
        padding: 12px 20px;
        line-height: 1;
        text-decoration: none;
        text-align: center;
        color: #FFF;
        font-size: 16px;
        font-weight: 500;
        font-family: "Noto Serif JP", serif;
        box-sizing: border-box;
    }

    .l-header-03__inquiry--mail:hover {
        background-color: #c5a059;
    }

    .l-header-03__inner {
        height: 80px;
        padding: 0 0 0 20px;
    }

    .l-header-03__logo {
        position: static;
        margin: 0 auto 0 0;
    }

    .l-header-03__logo a {
        width: clamp(220px, 19.298245614vw, 240px);
        max-width: 100%;
    }

    .l-header-03__logo img {
        width: 100%;
    }

    .l-header-03__nav {
        display: block;
    }

    .l-header-03__nav ul {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .l-header-03__nav li {
        border-left: 1px solid #CCC;
    }

    .l-header-03__nav a {
        position: relative;
        display: inline-block;
        padding: 0 30px;
        line-height: 80px;
        text-align: center;
        text-decoration: none;
        font-size: 17px;
        font-weight: 500;
        font-family: "Noto Serif JP", serif;
        color: #000;
    }

    .l-header-03__menu__button {
        display: none;
    }
}

@media screen and (min-width: 1100px) and (max-width: 1300px) {
    .l-header-03__nav a {
        padding: 0 20px;
        font-size: 16px;
    }
}

/*=========================================

* ヘッダー-05

==========================================*/
.l-header-05 {
    position: relative;
    width: 100%;
    height: 55px;
    margin: 0;
}

.l-header-05__wrapper {
    position: fixed;
    display: flex;
    top: 0;
    width: 100%;
    height: 55px;
    padding: 5px 10px;
    align-items: center;
    box-sizing: border-box;
    background-color: rgba(250, 250, 250, 0.9);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
    z-index: 1010;
}

.l-header-05__logo {
    max-width: 165px;
}

.l-header-05__logo a {
    display: block;
}

.l-header-05__logo img {
    display: block;
    width: 100%;
}

.l-header-05__nav {
    display: none;
}

.l-header-05__inquiry {
    display: none;
}

.l-header-05__menu__button {
    position: absolute;
    display: block;
    top: 50%;
    transform: translate(0, -50%);
    right: 15px;
}

.l-header-05__menu__button a {
    display: block;
    text-align: center;
    color: #1f2a34;
    text-decoration: none;
}

.l-header-05__menu__button i {
    font-size: 35px;
}

.l-header-05__sp-menu {
    position: fixed;
    top: 0;
    left: 0;
    transform: translateY(min(-100%, -1000px));
    width: 100%;
    height: 100%;
    padding: 72px 20px 65px 20px;
    overflow-y: auto;
    background: #fefefe;
    transition: transform 0.5s;
    box-sizing: border-box;
    z-index: 1000;
}

.l-header-05__sp-menu ul li {
    width: 100%;
    height: auto;
    border-top: 1px solid #919191;
}

.l-header-05__sp-menu ul li:last-child {
    border-bottom: 1px solid #919191;
}

.l-header-05__sp-menu ul li:hover {
    background: #747474;
}

.l-header-05__sp-menu ul li a {
    display: block;
    width: 100%;
    height: 3em;
    margin-left: 1em;
    font-size: 1em;
    color: #0b3c5d;
    line-height: 3em;
    text-decoration: none;
}

.l-header-05__sp-menu ul li a:hover {
    color: #fff;
}

.l-header-05__sp-menu--tel a,
.l-header-05__sp-menu--mail a {
    display: block;
    text-align: center;
}

.l-header-05__sp-menu--mail a:hover {
    background: #c5a059;
}

.l-header-05__sp-menu--tel a {
    margin-top: 50px;
    font-size: 32px;
    font-weight: bold;
    font-family: "Arial", "Noto Sans Japanese", sans-serif;
    color: #d7341d;
    line-height: 1;
    text-decoration: none;
}

.l-header-05__sp-menu--tel p {
    text-align: center;
    font-size: 16px;
    color: #5f5f5f;
}

.l-header-05__sp-menu--mail a {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 450px;
    margin: 30px auto;
    padding: 20px;
    font-size: 25px;
    font-weight: bold;
    color: #FFF;
    text-decoration: none;
    background-color: #d7341d;
    border-radius: 5px;
    box-sizing: border-box;
}

.l-header-05__sp-menu--mail a span {
    display: block;
    margin: 0 auto 5px auto;
    padding: 3px 10px;
    font-size: 16px;
    color: #d7341d;
    background-color: #fff;
    border-radius: 30px;
}

.l-header-05__sp-menu.__open {
    transform: translateY(0);
    transition: transform 0.5s;
}

@media print {
    .l-header-05__sp-menu {
        display: none;
    }
}

.p-page-title {
    padding: 10px 8px;
    font-size: 13px;
}

/* PC */
@media screen and (min-width: 1060px) {
    .l-header-05 {
        height: 85px;
    }

    .l-header-05__wrapper {
        display: block;
        height: 85px;
        padding: 0;
    }

    .l-header-05__inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 100%;
        margin: auto;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .l-header-05__logo {
        max-width: clamp(220px, 19.2vw, 240px);
        margin: 0 auto 0 0;
    }

    .l-header-05__nav {
        display: block;
    }

    .l-header-05__nav ul {
        display: flex;
        align-items: center;
    }

    .l-header-05__nav li {
        padding: 10px 15px;
    }

    .l-header-05__nav li a {
        position: relative;
        display: inline-block;
        color: #000;
        font-size: 18px;
        text-decoration: none;
    }

    .l-header-05__nav li a::after {
        content: "";
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 100%;
        height: 1px;
        transform: scale(0, 1);
        transform-origin: left top;
        transition: transform 0.3s;
        background: #333;
    }

    .l-header-05__nav li a:hover::after {
        transform: scale(1, 1);
    }

    .l-header-05__inquiry {
        display: flex;
        margin-left: 20px;
        align-items: center;
        background-color: #d7341d;
        border-radius: 3px;
    }

    .l-header-05__inquiry a {
        display: block;
        padding: 10px 15px;
        text-align: center;
        font-size: 20px;
        font-weight: bold;
        color: #FFF;
        text-decoration: none;
        line-height: 1.3;
    }

    .l-header-05__inquiry a span {
        display: block;
        margin-bottom: 2px;
        padding: 0 5px;
        font-size: 14px;
        font-weight: bold;
        color: #d7341d;
        background-color: #fff;
        border-radius: 30px;
    }

    .l-header-05__inquiry:hover {
        background-color: #c5a059;
    }

    .l-header-05__inquiry:hover span {
        color: #c5a059;
    }

    .l-header-05__menu__button {
        display: none;
    }

    .l-header-05__inquiry i {
        font-size: 23px;
    }

    .p-page-title {
        max-width: 1140px;
        margin: 0 auto;
        padding: 10px 0;
        font-size: 14px;
    }
}

/*=========================================

* メインビジュアル-27

==========================================*/
.l-main-visual-27 {
    width: 100%;
    height: 70vh;
    margin: 0 auto;
    background-image: url(../img/main-visual-27.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 60%;
    position: relative;
}

.l-main-visual-27::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.l-main-visual-27__inner {
    width: 100%;
    height: 100%;
}

.l-main-visual-27__content {
    position: absolute;
    right: 50%;
    top: 25%;
    transform: translate(50%, -50%);
    width: 90%;
    height: auto;
    margin: 0 auto;
    padding: 2em 0;
    text-align: center;
    z-index: 10;
}

.l-main-visual-27__title h2,
.l-main-visual-27__title p {
    font-size: clamp(25px, 3.2552083333vw, 35px);
    font-weight: bold;
    font-family: "Noto Serif JP", serif;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.9);
    line-height: 1.4;
    color: #fff;
}

.l-main-visual-27__title p span {
    font-size: 1.6em;
    font-weight: bold;
    color: #d7341d;
    text-shadow: #fff 2px 2px 2px, #fff -2px -2px 2px, #fff -2px 2px 2px, #fff 2px -2px 2px, #fff 2px 0px 2px, #fff -2px 0px 2px, #fff 0px 2px 2px, #fff 0px -2px 2px;
}

.l-main-visual-27__title h2 em {
    display: inline-block;
    font-size: 1.3em;
    font-style: normal;
    font-weight: bold;
}

/* PC */
@media screen and (min-width: 768px) {
    .l-main-visual-27 {
        height: 85vh;
    }

    .l-main-visual-27__inner {
        width: 90%;
        max-width: 1400px;
        height: 100%;
        margin: 0 auto;
        position: relative;
    }

    .l-main-visual-27__content {
        top: 30%;
    }

    .l-main-visual-27__title h2,
    .l-main-visual-27__title p {
        font-size: clamp(30px, 3.9473684211vw, 45px);
    }

    .l-main-visual-27__title p span {
        font-size: clamp(60px, 7.0175438596vw, 80px);
    }

    .l-main-visual-27__title h2 em {
        font-size: clamp(45px, 5.2631578947vw, 60px);
    }
}

/*=========================================

* メインビジュアル-08

==========================================*/
.l-main-visual-08 {
    position: relative;
    background: url(../img/sell__main-visual.jpg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    width: 100%;
    height: 87vh;
}

.l-main-visual-08__inner {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.l-main-visual-08__lead {
    margin-bottom: 20px;
    padding: 10px;
    font-size: clamp(18px, 2.34375vw, 20px);
    font-weight: bold;
    color: #FFF;
    background-color: #d7341d;
    line-height: 1.3;
}

.l-main-visual-08__inner h1 {
    margin: 0 auto 20px auto;
    line-height: 1.5;
    font-size: clamp(25px, 3.90625vw, 30px);
    font-weight: 900;
    color: #000;
    text-shadow: #fff 3px 3px 3px, #fff -3px -3px 3px, #fff -3px 3px 3px, #fff 3px -3px 3px, #fff 3px 0px 3px, #fff -3px 0px 3px, #fff 0px 3px 3px, #fff 0px -3px 3px;
}

.l-main-visual-08__inner h1 em {
    font-size: clamp(30px, 5.2083333333vw, 40px);
    font-style: normal;
    font-weight: 900;
    color: #d7341d;
    line-height: 1.2;
}

.l-main-visual-08__inner h1 span {
    font-size: clamp(25px, 4.5572916667vw, 35px);
}

.l-main-visual-08__list-container {
    width: 85%;
    margin: 0 auto;
    max-width: 450px;
}

.l-main-visual-08__list {
    padding: 5px 4.5632333768vw;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 10px;
}

.l-main-visual-08__list li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    padding: 10px 4%;
    box-sizing: border-box;
}

.l-main-visual-08__list li:not(:last-child) {
    border-bottom: 1px dotted #000;
}

.l-main-visual-08__list li img {
    display: block;
    width: max(45px, 15%);
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
}

.l-main-visual-08__list__text {
    font-size: 18px;
    font-weight: 900;
    line-height: 1.3;
}

.l-main-visual-08__list__text .l-main-visual-08__list__text--red {
    color: #d7341d;
    line-height: 1;
}

.l-main-visual-08__list__text .l-main-visual-08__list__text--large {
    font-size: 25px;
}

/* PC */
@media screen and (min-width: 768px) {
    .l-main-visual-08 {
        background-position: center center;
        height: 700px;
    }

    .l-main-visual-08__inner {
        top: 8%;
    }

    .l-main-visual-08__lead {
        display: inline-block;
        padding: 13px 20px;
        min-width: 450px;
        font-size: clamp(20px, 1.6666666667vw, 25px);
        border-radius: 50px;
    }

    .l-main-visual-08__inner h1 {
        margin-bottom: 30px;
        line-height: 1.5;
        font-size: clamp(30px, 2.6666666667vw, 55px);
    }

    .l-main-visual-08__inner h1 em {
        display: inline-block;
        font-size: clamp(55px, 4.3333333333vw, 80px);
    }

    .l-main-visual-08__inner h1 span {
        font-size: clamp(40px, 3.6666666667vw, 70px);
    }

    .l-main-visual-08__list-container {
        max-width: 830px;
    }

    .l-main-visual-08__list {
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
    }

    .l-main-visual-08__list li {
        justify-content: center;
        padding: 12px 0;
    }

    .l-main-visual-08__list li:not(:last-child) {
        border-right: 1px dotted #000;
        border-bottom: none;
    }

    .l-main-visual-08__list li img {
        width: max(65px, 15%);
    }

    .l-main-visual-08__list__text {
        font-size: clamp(20px, 1.5625vw, 25px);
        line-height: 1.2;
    }

    .l-main-visual-08__list__text .l-main-visual-08__list__text--large {
        font-size: clamp(30px, 1.875vw, 40px);
    }
}

/*=========================================

* フッター-02

==========================================*/
.l-footer-02 {
    margin: 0;
    padding: 0;
    text-align: left;
    background-color: #F5F5F5;
    border-top: none;
    overflow: hidden;
}

.l-footer-02__inner {
    width: 90%;
    margin: 0 auto;
    padding: 50px 0;
}

.l-footer-02__logo {
    margin-bottom: 15px;
    padding-bottom: 15px;
    text-align: center;
}

.l-footer-02__logo img {
    width: 65%;
    max-width: 400px;
    margin-bottom: 15px;
}

.l-footer-02__nav ul {
    display: flex;
    flex-wrap: wrap;
}

.l-footer-02__nav li {
    width: 50%;
}

.l-footer-02__nav li a {
    display: block;
    padding: 15px 15px;
    text-decoration: none;
    color: #333;
}

.copyright {
    padding: 10px 0 30px 0 !important;
    text-align: center !important;
    background-color: #d7341d !important;
    color: #FFF !important;
    font-size: 14px !important;
}

/* PC */
@media screen and (min-width: 768px) {
    .l-footer-02__inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1140px;
        width: 100%;
    }

    .l-footer-02__logo {
        width: 25%;
        margin-bottom: 0;
        padding-bottom: 0;
        text-align: left;
    }

    .l-footer-02__logo img {
        width: 85%;
        margin-bottom: 0;
    }

    .l-footer-02__nav ul {
        flex-wrap: initial;
    }

    .l-footer-02__nav li {
        width: auto;
        margin-right: 20px;
    }

    .l-footer-02__nav li a {
        font-size: 15px;
        padding: 5px;
    }

    .l-footer-02__nav li a:hover {
        color: #337ab7;
    }

    .copyright {
        padding: 30px 0 !important;
    }
}

/* SP */
@media screen and (max-width: 767px) {
    .btn__page_top {
        display: none !important;
    }
}

/*
　フッター-10
================================*/
.l-footer-10 {
    padding-bottom: 10px;
    background: #fff;
}

.l-footer-10__inner {
    width: 90%;
    margin: 0 auto;
}

.l-footer-10__inner__info {
    margin-bottom: 20px;
}

.l-footer-10__inner__info__logo {
    max-width: 200px;
    margin-bottom: 30px;
}

.l-footer-10__inner__info__logo img {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
}

.l-footer-10__inner__info__address {
    margin-bottom: 15px;
}

.l-footer-10__inner__info p:nth-child(2) {
    margin-bottom: 25px;
}

.l-footer-10__contact__sns {
    display: flex;
}

.l-footer-10__contact__sns a:hover {
    opacity: 0.7;
}

.l-footer-10__contact__sns img {
    width: 35px;
}

.l-footer-10__contact__sns a:not(:first-child) {
    margin-left: 15px;
}

.l-footer-10__inner__nav__unit__list:has(> :nth-child(-n+5):last-child) {
    margin-bottom: 45px;
}

.l-footer-10__inner__nav__unit__list:has(> :nth-child(6)) {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.l-footer-10__inner__nav__unit__list:has(> :nth-child(6)) li {
    width: 100%;
}

.l-footer-10__inner__nav__unit__list li a {
    display: block;
    text-decoration: none;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    position: relative;
}

.l-footer-10__inner__nav__unit__list li a::after {
    font-family: "FontAwesome";
    font-style: normal;
    font-weight: normal;
    display: inline-block;
    content: "\f105";
    position: absolute;
    right: 0;
    color: #d7341d;
}

.l-footer-10__inner__nav__unit__list li a:hover {
    font-weight: bold;
    color: #d7341d;
}

.l-footer-10__bottom {
    width: 90%;
    margin: 0 auto;
}

.l-footer-10__bottom__list a {
    display: inline-block;
    text-decoration: underline;
    font-size: 11px;
    line-height: 1;
    color: #333;
}

.l-footer-10__bottom__list a:hover {
    color: #d7341d;
}

.copyright {
    background-color: #d7341d;
}

/* PC */
@media screen and (min-width: 768px) {
    .l-footer-10 {
        padding-bottom: 40px;
        border-top: none;
    }

    .l-footer-10__inner {
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
        max-width: 1140px;
        width: 100%;
    }

    .l-footer-10__inner__logo {
        width: 33%;
    }

    .l-footer-10__inner__info__logo {
        max-width: 230px;
    }

    .l-footer-10__contact__sns img {
        width: 30px;
    }

    .l-footer-10__contact__sns a:not(:first-child) {
        margin-left: 15px;
    }

    .l-footer-10__inner__nav {
        display: flex;
        justify-content: flex-end;
        width: 50%;
        flex-basis: 50%;
        gap: 30px;
    }

    .l-footer-10__inner__nav__unit {
        flex-basis: 50%;
    }

    .l-footer-10__inner__nav__unit__list {
        margin-bottom: 0;
    }

    .l-footer-10__inner__nav__unit__list:has(> :nth-child(6)) {
        display: block;
    }

    .l-footer-10__inner__nav__unit__list:has(> :nth-child(-n+5):last-child) {
        margin-bottom: 0;
    }

    .l-footer-10__inner__nav__unit__list li {
        margin-bottom: 10px;
    }

    .l-footer-10__inner__nav__unit__list li:last-child {
        margin-bottom: 0;
    }

    .l-footer-10__inner__nav__unit__list:has(> :nth-child(6)) li {
        width: 100%;
    }

    .l-footer-10__inner__nav__unit__list li a {
        font-size: 15px;
    }

    .l-footer-10__bottom {
        max-width: 1140px;
        width: 100%;
    }

    .l-footer-10__bottom__list {
        display: flex;
        justify-content: flex-end;
        gap: 20px;
        margin-top: 20px;
    }

    .l-footer-10__bottom__list a {
        font-size: 13px;
    }

    .btn__page_top {
        width: clamp(60px, 6.1403508772vw, 80px);
        bottom: 60px;
        right: 20px;
        padding: 0;
        text-align: center;
        background-color: transparent;
        border-radius: 0;
        border: none;
    }

    .btn__page_top img {
        width: 100%;
        height: auto;
    }
}

/* SP */
@media screen and (max-width: 767px) {
    .btn__page_top {
        display: none !important;
    }
}

/*
　CTA（お問い合わせ）
================================*/
.l-footer-10__contact {
    background-image: url(../img/footer__image.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 78% 40%;
    padding: 40px 0;
}

.l-footer-10__contact__inner {
    max-width: 1140px;
    margin: 0 auto;
    width: 90%;
}

.l-footer-10__contact__list {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    gap: 30px;
}

.l-footer-10__contact__item {
    position: relative;
}

.l-footer-10__contact__item::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    border-bottom: 1px solid #ddd;
    position: absolute;
    bottom: -15px;
}

.l-footer-10__contact__item:last-child::after {
    border-bottom: none;
}

.l-footer-10__contact__item h3 {
    color: #999;
    font-size: 14px;
    font-weight: 500;
}

.l-footer-10__contact__tel {
    display: inline-block;
    border-bottom: 3px solid #d7341d;
    margin: 10px 0;
}

.l-footer-10__contact__tel a {
    letter-spacing: 1px;
    line-height: 1.2 !important;
    font-size: 27px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    font-family: "Century Gothic", "Arial", sans-serif;
}

.l-footer-10__contact__meta {
    font-size: 14px;
    color: #999;
    margin-top: 5px;
}

.l-footer-10__contact__button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #d7341d;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.l-footer-10__contact__button:hover {
    opacity: 0.8;
}

.l-footer-10__contact__button a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.l-footer-10__contact__icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    font-size: 30px;
    color: #fff;
    background-color: #ccc;
    border-radius: 50%;
    position: relative;
}

.l-footer-10__contact__icon--line {
    background-color: #06C754;
}

.l-footer-10__contact__icon i {
    font-size: 20px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.l-footer-10__contact__icon img {
    width: 20px;
    height: 20px;
    -o-object-fit: contain;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.l-footer-10__contact__map {
    position: relative;
    margin-bottom: 30px;
}

.l-footer-10__contact__map__inner {
    font-size: 0;
}

.l-footer-10__contact__map iframe {
    width: 100%;
    height: 400px;
}

.l-footer-10__contact__map__info {
    position: absolute;
    z-index: 10;
    box-sizing: border-box;
    background-color: #fff;
    padding: 15px;
    top: 0;
    left: 0;
    max-width: 230px;
    width: 100%;
    border-top: 2px solid #d7341d;
}

.l-footer-10__contact__map__info h3 {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #d7341d;
}

.l-footer-10__contact__map__info p {
    font-size: 14px;
    color: #666;
}

.l-footer-10__contact__map__info a {
    display: block;
    margin-top: 10px;
}

.l-footer-10__contact__map__info__button span {
    display: inline-block;
    text-align: center;
    font-weight: bold;
    margin: 0 auto;
    text-decoration: none;
    color: #d7341d;
    position: relative;
    transition: 0.3s ease-in-out;
    cursor: pointer;
    font-size: 13px;
}

.l-footer-10__contact__map__info__button span::after {
    content: "";
    background: #d7341d;
    position: absolute;
    left: 0;
    bottom: -5px;
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.5s ease;
    height: 1px;
    width: 100%;
}

.l-footer-10__contact__map__info__button:hover span::after {
    transform: scaleX(0);
    transform-origin: right;
}

@media screen and (min-width: 500px) {
    .l-footer-10__contact__map {
        margin-bottom: 50px;
    }

    .l-footer-10__contact__map__info {
        max-width: 330px;
        padding: 20px;
    }
}

/* PC */
@media screen and (min-width: 900px) {
    .l-footer-10__contact {
        padding: 100px 0;
    }

    .l-footer-10__contact__list {
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
        padding: 50px 40px;
        gap: 30px;
    }

    /* 要素が2つのときだけgapとmax-widthを調整 */
    .l-footer-10__contact__list:has(> .l-footer-10__contact__item:nth-child(2):last-child) {
        gap: 60px;
        max-width: 540px;
    }

    .l-footer-10__contact__icon {
        width: 60px;
        height: 60px;
    }

    .l-footer-10__contact__icon i {
        font-size: 30px;
    }

    .l-footer-10__contact__icon img {
        width: 30px;
        height: 30px;
    }

    .l-footer-10__contact__item h3 {
        font-size: 18px;
    }

    .l-footer-10__contact__button a {
        font-size: 16px;
    }

    .l-footer-10__contact__tel a {
        font-size: 32px;
    }

    .l-footer-10__contact__item {
        flex: 1 1 0;
        max-width: 250px;
        min-width: 0;
    }

    .l-footer-10__contact__item::after {
        content: "";
        display: block;
        width: 1px;
        height: 100%;
        border-bottom: none;
        border-right: 1px solid #ddd;
        position: absolute;
        right: -30px;
        bottom: 0;
    }

    .l-footer-10__contact__item:last-child::after {
        border-right: none;
    }

    .l-footer-10__contact__map iframe {
        height: 300px;
    }
}

/**
 * Section
 */
/*==================================
* Section
==================================*/
.l-section {
    padding: 50px 0;
}

.l-section.l-section--gray {
    background: #F5F5F5;
}

.l-section.l-section--blue {
    background: #eaf3f9;
}

.l-section.l-section--red {
    background: #fefafa;
}

.l-section.l-section--yellow {
    background: #fbfaf3;
}

.l-section.l-section--beige {
    background: #f7f6eb;
}

.l-section.l-section--washi {
    background-image: url("../img/washi-texture.jpg");
    background-repeat: repeat;
}

.l-section.l-section--washi--01 {
    background-image: url("../img/texture.jpg");
    background-repeat: no-repeat;
    background-position: right top;
    -o-object-fit: cover;
    object-fit: cover;
}

.l-section.l-section--stripe {
    background: repeating-linear-gradient(#fcfcf9, #fcfcf9 20px, #fff 20px, #fff 41px);
}

.l-section__container {
    padding: 0 8px;
}

/* PC */
@media screen and (min-width: 768px) {
    .l-section {
        padding: 80px 0;
    }

    .l-section__container {
        max-width: 1140px;
        margin: 0 auto;
        padding: 0;
    }
}

/* ━━━━━━━━━━━━━━━━

 ■プロジェクト

━━━━━━━━━━━━━━━━ */
/*=================================

* トップ

=================================*/
/*
　ご挨拶
================================*/
.p-greeting {
    position: relative;
}

.p-greeting__wrapper {
    max-width: 1300px;
    margin: 0 auto;
}

.p-greeting::before {
    content: "GREETING";
    position: absolute;
    font-size: clamp(60px, 13.0208333333vw, 12vw);
    margin-left: min(0px, (768px - 90vw) / 2);
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.05);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    line-height: 1;
    letter-spacing: 0.05em;
    font-style: italic;
}

.p-greeting__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-top: 30px;
}

.p-greeting__text {
    flex: 1;
    width: 90%;
    margin: 0 auto;
}

.p-greeting__title {
    margin-bottom: 20px;
    font-size: clamp(33px, 4.5572916667vw, 35px);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #d7341d;
    line-height: 1.4;
}

.p-greeting__text p {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 20px;
}

.p-greeting__text strong {
    font-weight: bold;
}

.p-greeting__button a {
    display: block;
    border: 1px solid #d7341d;
    color: #d7341d;
    padding: 15px 0;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    transition: background 0.3s, color 0.3s;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.p-greeting__button a:hover {
    background: #d7341d;
    color: #fff;
}

.p-greeting__profile__image img {
    width: 100%;
    height: auto;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
}

.p-greeting__profile__data {
    width: 90%;
    margin: 20px auto 0;
}

.p-greeting__profile__title {
    font-size: 15px;
    font-weight: 700;
    padding-bottom: 12px;
    border-bottom: 1px solid #333;
    margin-bottom: 15px;
}

.p-greeting__profile dl div {
    display: flex;
    gap: 10px;
    margin-bottom: 5px;
    font-size: 16px;
    line-height: 1.6;
    align-items: flex-start;
}

.p-greeting__profile dl dt {
    flex-shrink: 0;
    white-space: nowrap;
}

@media screen and (min-width: 768px) {
    .p-greeting__wrapper {
        max-width: 1300px;
        margin: 0 auto;
    }

    .p-greeting::before {
        font-size: clamp(30px, 9.2307692308vw, 120px);
        margin-left: min(0px, (768px - 65vw) / 2);
    }

    .p-greeting__inner {
        flex-direction: row;
        gap: 60px;
        align-items: flex-start;
        padding-top: 0;
    }

    .p-greeting__text {
        padding-top: 70px;
    }

    .p-greeting__title {
        font-size: clamp(33px, 4.8177083333vw, 37px);
        margin-bottom: 30px;
        line-height: 1.3;
    }

    .p-greeting__text p {
        margin-bottom: 30px;
        font-size: clamp(16px, 1.3846153846vw, 18px);
    }

    .p-greeting__button a {
        margin: 0;
    }

    .p-greeting__profile {
        width: 42%;
        flex-shrink: 0;
    }

    .p-greeting__profile__image {
        overflow: hidden;
        max-height: 480px;
        margin-right: min(0px, (1300px - 100vw) / 2);
    }

    .p-greeting__profile__image img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .p-greeting__profile__data {
        width: 100%;
    }
}

@media screen and (min-width: 1500px) {
    .p-greeting::before {
        margin-left: min(-100px, (2000px - 70vw) / 2);
    }
}

/*=================================

* 会社案内

=================================*/
/*
　考え方
================================*/
.p-company__introduction {
    width: 95%;
    margin: 0 auto;
}

.p-company__introduction h2 {
    margin-bottom: 15px;
    font-size: clamp(25px, 3.2552083333vw, 30px);
    font-weight: bold;
    color: #d7341d;
    font-family: "Noto Serif JP", serif;
    line-height: 1.6;
}

.p-company__introduction p {
    line-height: 1.7;
    color: #333;
}

@media screen and (min-width: 768px) {
    .p-company__introduction h2 {
        margin-bottom: 30px;
        font-size: clamp(30px, 3.5087719298vw, 45px);
        text-align: center;
        line-height: 1.4;
    }

    .p-company__introduction p {
        font-size: clamp(16px, 1.6666666667vw, 19px);
        text-align: center;
    }
}

/*
　共通タイトル
================================*/
.p-company-title {
    position: relative;
    width: 90%;
    margin: 0 auto 50px auto;
    font-size: clamp(22px, 2.8645833333vw, 26px);
    font-weight: bold;
    text-align: center;
    color: #333;
}

/*
　会社名の由来
================================*/
.p-company__brand-story__section__title {
    text-align: center;
    margin-bottom: 30px;
}

.p-company__brand-story__section__title h2 {
    display: block;
    position: relative;
    font-size: clamp(28px, 3.6458333333vw, 35px);
    font-weight: bold;
    font-family: "Noto Serif JP", serif;
    color: #333;
    line-height: 1.8;
}

.p-company__brand-story__section__title span {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #666;
    margin-top: 10px;
}

.p-company__brand-story__section__title h2::after {
    content: "";
    position: absolute;
    left: calc(50% - 23px);
    bottom: -3px;
    display: block;
    width: 46px;
    border: 1px solid #d7341d;
}

/* PC */
@media screen and (min-width: 768px) {
    .p-company__brand-story__section__title h2 {
        font-size: clamp(30px, 3.5087719298vw, 40px);
    }

    .p-company__brand-story__section__title span {
        font-size: 18px;
    }
}

.p-company__brand-story__wrapper {
    background-color: #fafbf6;
}

.p-company__brand-story {
    padding: 20px 5px 0;
    position: relative;
    overflow: hidden;
}

.p-company__brand-story__inner {
    position: relative;
    min-height: 200px;
    padding-bottom: 20px;
}

.p-company__brand-story__text {
    position: relative;
    z-index: 1;
}

.p-company__brand-story__text h3 {
    margin-bottom: 25px;
    font-size: clamp(27px, 3.515625vw, 33px);
    font-weight: bold;
    font-family: "Noto Serif JP", serif;
    color: #d7341d;
    text-align: center;
    line-height: 1.4;
}

.p-company__brand-story__text p {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    text-align: center;
}

.p-company__brand-story__image {
    position: absolute;
    right: -15px;
    bottom: -30px;
    width: 100%;
    max-width: 340px;
    opacity: 0.2;
    pointer-events: none;
}

.p-company__brand-story__image img {
    width: 100%;
    height: auto;
}

/* PC */
@media screen and (min-width: 768px) {
    .p-company__brand-story {
        padding: 0 40px;
        overflow: visible;
    }

    .p-company__brand-story__inner {
        display: flex;
        flex-direction: row;
        min-height: auto;
        padding-bottom: 0;
    }

    .p-company__brand-story__text {
        flex: 1;
    }

    .p-company__brand-story__text h3 {
        font-size: clamp(33px, 3.5087719298vw, 40px);
        margin-bottom: 20px;
        text-align: left;
    }

    .p-company__brand-story__text p {
        font-size: clamp(17px, 1.6666666667vw, 19px);
        text-align: left;
        letter-spacing: 0.08rem;
    }

    .p-company__brand-story__image {
        max-width: 350px;
        flex-shrink: 0;
    }
}

/* PC */
@media screen and (min-width: 1140px) {
    .p-company__brand-story {
        padding: 0;
    }

    .p-company__brand-story__image {
        position: static;
        max-width: 400px;
        flex-shrink: 0;
        margin-top: -70px;
    }
}

/* 店舗写真
======================= */
.p-company__image__img {
    width: 100%;
}

.p-company__image__img:not(:first-child) {
    margin-top: 20px;
}

.p-company__image__img img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4/3;
    -o-object-fit: cover;
    object-fit: cover;
}

@media screen and (min-width: 768px) {
    .p-company__image {
        display: flex;
        justify-content: center;
    }

    .p-company__image__img {
        width: auto;
        margin: 0 10px;
        max-width: 30%;
        min-width: 23%;
    }

    .p-company__image__img:not(:first-child) {
        margin-top: unset;
    }
}

/*=================================

* 代表者プロフィール

=================================*/
/*
　メインビジュアル
================================*/
.p-profile__main-visual {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    min-height: 550px;
    background-size: cover;
    background-position: 80% 30%;
    background-repeat: no-repeat;
    background-image: url(../img/profile__main-visual.jpeg);
}

.p-profile__main-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(171, 214, 255, 0.1);
}

.p-profile__main-visual__inner {
    position: relative;
    width: 90%;
    max-width: 1400px;
    height: calc(100vh - 80px);
    min-height: 550px;
    margin: 0 auto;
}

.p-profile__main-visual__text {
    position: absolute;
    bottom: 5%;
    color: #fff;
}

.p-profile__main-visual__text h2 {
    margin-bottom: 20px;
    font-size: clamp(25px, 3.2552083333vw, 36px);
    font-weight: bold;
    font-family: "Noto Serif JP", serif;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.95), 0 0 8px rgba(0, 0, 0, 0.8), 0 0 16px rgba(0, 0, 0, 0.55);
    line-height: 1.4;
}

.p-profile__main-visual__text h3 {
    margin-bottom: 15px;
    font-size: clamp(20px, 2.6041666667vw, 24px);
    font-weight: 500;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.95), 0 0 8px rgba(0, 0, 0, 0.8), 0 0 16px rgba(0, 0, 0, 0.55);
}

.p-profile__main-visual__text p {
    font-size: 16px;
    line-height: 1.3;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.95), 0 0 8px rgba(0, 0, 0, 0.8), 0 0 16px rgba(0, 0, 0, 0.55);
}

@media screen and (min-width: 768px) {
    .p-profile__main-visual {
        min-height: clamp(500px, 52.6315789474vw, 600px);
        height: 70vh;
    }

    .p-profile__main-visual__inner {
        min-height: clamp(500px, 52.6315789474vw, 600px);
        height: 70vh;
    }

    .p-profile__main-visual__text {
        left: 0;
        bottom: 5%;
    }

    .p-profile__main-visual__text h2 {
        font-size: clamp(36px, 3.6111111111vw, 65px);
        text-shadow: 0 3px 4px rgba(0, 0, 0, 0.95), 0 0 10px rgba(0, 0, 0, 0.85), 0 0 22px rgba(0, 0, 0, 0.6);
        line-height: 1.3;
    }

    .p-profile__main-visual__text h3 {
        margin-bottom: 20px;
        font-size: clamp(24px, 1.9444444444vw, 35px);
        text-shadow: 0 3px 4px rgba(0, 0, 0, 0.95), 0 0 10px rgba(0, 0, 0, 0.85), 0 0 22px rgba(0, 0, 0, 0.6);
    }

    .p-profile__main-visual__text p {
        font-size: clamp(18px, 1.1111111111vw, 20px);
        line-height: 1.6;
        text-shadow: 0 3px 4px rgba(0, 0, 0, 0.95), 0 0 10px rgba(0, 0, 0, 0.85), 0 0 22px rgba(0, 0, 0, 0.6);
    }
}

/*
 大切にしていること
================================*/
.p-profile__message {
    width: 95%;
    margin: 0 auto;
    padding: 40px 15px;
    background-color: #ffffff;
    border-radius: 25px;
    box-shadow: 0 0 5px 3px rgba(118, 118, 118, 0.2);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.p-profile__message__header {
    margin-bottom: 30px;
    text-align: center;
}

.p-profile__message__title {
    font-size: clamp(25px, 3.90625vw, 30px);
    font-weight: bold;
    font-family: "Noto Serif JP", serif;
    line-height: 1.5;
    color: #d7341d;
}

.p-profile__message__text {
    min-height: 250px;
    overflow-wrap: break-word;
    font-size: 16px;
    text-align: justify;
    line-height: 1.6;
    letter-spacing: 0.04em;
}

.p-profile__message__text span {
    font-weight: 600;
}

.p-profile__message__text ul {
    margin: 25px 0;
    padding-left: 20px;
}

.p-profile__message__text ul li {
    list-style: none;
    display: list-item;
    position: relative;
}

.p-profile__message__text ul li::before {
    position: absolute;
    left: -1em;
    top: 0.8em;
    content: "";
    width: 0.3em;
    height: 0.3em;
    border-radius: 99%;
    background-color: #333;
}

/* PC */
@media screen and (min-width: 768px) {
    .p-profile__message {
        padding: 40px 50px;
        box-shadow: 0 0 15px 3px rgba(118, 118, 118, 0.2);
    }

    .p-profile__message__inner {
        max-width: 1140px;
        padding: 70px 60px;
    }

    .p-profile__message__title {
        font-size: clamp(30px, 3.5087719298vw, 40px);
    }

    .p-profile__message__header {
        margin-bottom: 40px;
    }

    .p-profile__message__text {
        font-size: clamp(16px, 1.5789473684vw, 18px);
        line-height: 1.8;
    }
}

/*
　ご相談の一例
=================================*/
.p-profile__case__container {
    margin-bottom: 20px;
}

.p-profile__case__head {
    overflow-x: scroll;
    white-space: wrap;
}

.p-profile__case__tab {
    display: flex;
    justify-content: space-between;
}

.p-profile__case__tab li {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 49%;
    box-sizing: border-box;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    color: #999;
    padding: 5px 4px 10px;
    line-height: 1.3;
}

.p-profile__case__tab li::before {
    position: absolute;
    display: block;
    content: "";
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #999;
}

.p-profile__case__tab li:hover {
    color: #d7341d;
}

.p-profile__case__tab li.current {
    color: #d7341d;
    background-color: #f5f5f5;
}

.p-profile__case__tab li.current::before {
    height: 4px;
    background: #d7341d;
}

.p-profile__case__content {
    padding: 30px 10px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.p-profile__case__content-name {
    font-size: clamp(17px, 2.6041666667vw, 20px);
    font-weight: bold;
    margin-bottom: 10px;
}

.p-profile__case__content-image {
    width: 50%;
    margin: 0 auto;
    max-width: 250px;
}

/* PC */
@media screen and (min-width: 768px) {
    .p-profile__case__container {
        margin-bottom: 30px;
    }

    .p-profile__case__head {
        overflow-x: visible;
        white-space: normal;
    }

    .p-profile__case__tab li {
        font-size: 18px;
        width: 50%;
        padding: 10px 5px;
    }

    .p-profile__case__content {
        flex-direction: row;
        padding: 50px 30px 30px;
        gap: 50px;
    }

    .p-profile__case__content-text {
        flex: 1;
    }

    .p-profile__case__content-name {
        font-size: clamp(18px, 1.9298245614vw, 22px);
        font-weight: bold;
    }

    .p-profile__case__content-image {
        flex-basis: 20%;
        width: 20%;
    }
}

/*
　相談している人
=================================*/
.p-profile__support__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2em;
    max-width: 1100px;
    margin: 0 auto;
}

.p-profile__support__card {
    background-color: #fff;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

.p-profile__support__title {
    font-size: clamp(21px, 3.2552083333vw, 25px);
    text-align: center;
    font-weight: 700;
    color: #d7341d;
    /* 明るめの緑系 */
    margin-bottom: 10px;
    line-height: 1.4;
}

.p-profile__support__image {
    margin-bottom: 20px;
    text-align: center;
}

.p-profile__support__image img {
    height: auto;
    max-width: 300px;
    width: 70%;
    margin: 0 auto;
}

.p-profile__support__text {
    max-width: 400px;
    margin: 0 auto;
}

/* PCサイズ（2列） */
@media screen and (min-width: 768px) {
    .p-profile__support__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .p-profile__support__card {
        text-align: left;
    }

    .p-profile__support__title {
        font-size: clamp(18px, 2.1929824561vw, 25px);
    }
}

/*
　相談している人 ボタン
=================================*/
.p-profile__button {
    position: relative;
    display: block;
    padding: 15px 10px;
    margin: 0 auto;
    margin-top: 20px;
    width: 95%;
    max-width: 300px;
    color: #ffffff;
    background-color: #d7341d;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    box-sizing: border-box;
    font-family: "Noto Serif JP", serif;
    filter: drop-shadow(2px 2px 2px rgba(160, 160, 160, 0.7));
}

.p-profile__button::after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 6px);
    right: 20px;
    width: 10px;
    height: 10px;
    border-top: solid 3px #ffffff;
    border-right: solid 3px #ffffff;
    transform: rotate(45deg);
}

.p-profile__button,
.p-profile__button:link,
.p-profile__button:visited {
    text-decoration: none;
    color: #FFF;
}

.p-profile__button__wrapper {
    margin-top: auto;
}

@media screen and (min-width: 768px) {
    .p-profile__button {
        padding: 10px;
    }

    .p-profile__button::after {
        top: calc(50% - 5px);
        right: 20px;
        width: 8px;
        height: 8px;
    }

    .p-profile__button:hover {
        background-color: #4c444d;
    }
}

/*
　経歴
================================*/
.p-profile__history {
    width: 90%;
    max-width: 880px;
    margin: 0 auto;
}

.p-profile__history__inner {
    position: relative;
    padding: 20px 0;
}

.p-profile__history__inner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 15px;
    background-color: #f5c6c0;
}

.p-profile__history__item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 0 0 30px 20px;
}

.p-profile__history__item:last-child {
    padding-bottom: 0;
}

/* ドット */
.p-profile__history__item::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d7341d;
    flex-shrink: 0;
}

/* 横の点線 */
.p-profile__history__item::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 14px;
    width: 25px;
    border-top: 2px dashed #d7341d;
}

.p-profile__history__year {
    flex-shrink: 0;
    width: 94px;
    padding-left: 20px;
}

.p-profile__history__year span {
    font-size: 21px;
    font-weight: 500;
    color: #d7341d;
    line-height: 1.2;
}

.p-profile__history__year span em {
    font-style: normal;
    font-size: 18px;
}

.p-profile__history__content {
    flex: 1;
}

.p-profile__history__content h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
    margin-bottom: 8px;
    font-family: "Noto Serif JP", serif;
}

.p-profile__history__content p {
    color: #555;
    line-height: 1.5;
}

/* PC */
@media screen and (min-width: 768px) {
    .p-profile__history__inner::before {
        left: 0;
        width: 20px;
    }

    .p-profile__history__item {
        gap: 24px;
        padding: 0 0 50px 60px;
    }

    .p-profile__history__item::before {
        left: 3px;
        top: 17px;
        width: 12px;
        height: 12px;
    }

    .p-profile__history__item::after {
        left: 10px;
        top: 22px;
        width: 74px;
    }

    .p-profile__history__year {
        width: 120px;
        padding-left: 30px;
    }

    .p-profile__history__year span {
        font-size: 33px;
    }

    .p-profile__history__year span em {
        font-size: 22px;
        display: inline-block;
    }

    .p-profile__history__content h3 {
        font-size: clamp(23px, 2.3684210526vw, 27px);
        margin-bottom: 12px;
    }

    .p-profile__history__content p {
        font-size: clamp(16px, 1.5789473684vw, 18px);
    }
}

/*=================================

* 相続相談

=================================*/
.p-souzoku__action {
    box-sizing: border-box;
    margin: 10px;
}

.p-souzoku__action-list {
    margin-bottom: 30px;
    text-align: center;
}

.p-souzoku__action-list li {
    margin: 10px 0;
    padding: 10px;
    line-height: 1.5;
    background-color: #c5a059;
    color: #FFF;
}

.p-souzoku__actionpoint-list {
    padding: 10px;
    border: 2px solid #c5a059;
    border-radius: 4px;
    background-color: #FFF;
}

.p-souzoku__actionpoint-list li {
    margin: 7px 0;
}

.p-souzoku__actionpoint-list li::before {
    margin-right: 3px;
    padding: 10px 5px;
    content: "□";
}

.p-souzoku__service-list li {
    font-size: 17px;
    margin-bottom: 10px;
}

.p-souzoku__service-list li::before {
    content: "◆";
    margin-right: 5px;
}

.p-souzoku__service {
    font-size: 1.1rem !important;
}

/* PC */
@media screen and (min-width: 768px) {
    .p-souzoku__action-list {
        display: flex;
        justify-content: space-between;
    }

    .p-souzoku__action-list li {
        width: 32%;
        padding: 10px 25px;
        box-sizing: border-box;
    }

    .p-souzoku__actionpoint-list {
        display: flex;
        flex-wrap: wrap;
        align-content: space-between;
    }

    .p-souzoku__actionpoint-list li {
        margin-right: 15px;
    }

    .p-souzoku__actionpoint-list li::before {
        margin-right: 0;
    }

    .p-souzoku__service-list li {
        font-size: 18px;
    }

    .p-souzoku__service {
        font-size: 1.2rem !important;
    }
}

/*=================================

* 売却LP

=================================*/
/*
  売却サポート
================================*/
.p-sell__support {
    width: 90%;
    margin: 0 auto;
}

.p-sell__support h3 {
    margin-bottom: 15px;
    font-size: clamp(17px, 2.2135416667vw, 25px);
    font-weight: bold;
    color: #333;
    line-height: 1.6;
}

.p-sell__support h3 strong {
    color: #d7341d;
    font-size: clamp(22px, 2.34375vw, 28px);
}

.p-sell__support p {
    font-size: clamp(17px, 2.2135416667vw, 25px);
    font-weight: bold;
    color: #333;
}

.p-sell__support ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.p-sell__support li {
    width: 47%;
    padding: 10px 10px;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    background-color: #c5a059;
    border-radius: 30px;
    text-align: center;
    box-sizing: border-box;
}

@media screen and (min-width: 768px) {
    .p-sell__support {
        max-width: 1000px;
    }

    .p-sell__support h3 {
        margin-bottom: 35px;
        text-align: center;
    }

    .p-sell__support li {
        width: 23.5%;
        font-size: clamp(20px, 1.7543859649vw, 25px);
    }

    .p-sell__support p {
        margin-top: 35px;
        text-align: center;
    }
}

/*
  両側取引と片側取引
================================*/
.p-sell__comparison__read {
    margin-bottom: 20px;
    font-size: clamp(16px, 2.34375vw, 18px);
    font-weight: 500;
    text-align: center;
}

.p-sell__comparison {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 90%;
    margin: 0 auto 40px auto;
}

.p-sell__comparison__onestop h3,
.p-sell__comparison__open h3 {
    padding: 10px 10px;
    font-size: clamp(18px, 2.34375vw, 20px);
    font-weight: bold;
    color: #FFF;
    text-align: center;
    background-color: #4c444d;
    border-radius: 10px 10px 0 0;
}

.p-sell__comparison__open h3 {
    background-color: #c5a059;
}

.p-sell__comparison__onestop p,
.p-sell__comparison__open p {
    padding: 15px;
    font-size: clamp(16px, 2.0833333333vw, 17px);
    color: #333;
    background-color: #f2f2f2;
    border-radius: 0 0 10px 10px;
    line-height: 1.4;
}

.p-sell__comparison__open p {
    background-color: #fbfaf3;
}

.p-sell__comparison__image {
    width: 90%;
    max-width: 750px;
    margin: 0 auto 40px auto;
}

.p-sell__comparison__image img,
.p-sell__comparison__open__image img {
    width: 100%;
    box-shadow: 2px 2px 5px #999;
}

.p-sell__comparison__open-title {
    margin-bottom: 20px;
    font-size: clamp(19px, 2.4739583333vw, 25px);
    font-weight: bold;
    text-align: center;
    color: #333;
}

.p-sell__comparison__open__image {
    width: 90%;
    max-width: 900px;
    margin: 0 auto 30px auto;
}

.p-sell__comparison__under-text {
    width: 90%;
    margin: 0 auto;
    font-size: clamp(16px, 2.0833333333vw, 18px);
    font-weight: 500;
    color: #333;
    line-height: 1.6;
}

@media screen and (min-width: 768px) {
    .p-sell__comparison__read {
        margin-bottom: 50px;
        font-size: clamp(18px, 2.0175438596vw, 22px);
    }

    .p-sell__comparison {
        flex-direction: row;
        gap: 100px;
        width: 100%;
        margin-bottom: 70px;
    }

    .p-sell__comparison__onestop h3,
    .p-sell__comparison__open h3 {
        padding: 10px 10px;
        font-size: clamp(20px, 2.0175438596vw, 23px);
    }

    .p-sell__comparison__onestop p,
    .p-sell__comparison__open p {
        padding: 20px 25px;
        font-size: clamp(16px, 1.4035087719vw, 17px);
        letter-spacing: 0.03rem;
        line-height: 1.6;
    }

    .p-sell__comparison__image {
        margin-bottom: 60px;
    }

    .p-sell__comparison__open-title {
        font-size: clamp(18px, 1.5789473684vw, 25px);
    }

    .p-sell__comparison__under-text {
        font-size: clamp(16px, 1.5789473684vw, 18px);
        text-align: center;
    }
}

/*
  売却スタイル
================================*/
.p-sell__style__sub-read {
    text-align: center;
}

.p-sell__style__card {
    width: 90%;
    margin: 30px auto 0 auto;
}

.p-sell__style__card ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 80%;
    margin: 0 auto;
}

.p-sell__style__card li {
    padding: 20px 10px;
    text-align: center;
    background-color: #FFF;
    border-radius: 10px;
}

.p-sell__style__card img {
    display: block;
    width: 30%;
    max-width: 60px;
    margin: 0 auto 10px;
}

.p-sell__style__card p {
    font-size: clamp(17px, 2.2135416667vw, 20px);
    font-weight: 500;
}

@media screen and (min-width: 768px) {
    .p-sell__style__sub-read {
        margin-bottom: 50px;
        font-size: clamp(16px, 1.5789473684vw, 18px);
    }

    .p-sell__style__card {
        width: 100%;
        max-width: 980px;
    }

    .p-sell__style__card ul {
        flex-direction: row;
        gap: 30px;
        width: 100%;
    }

    .p-sell__style__card li {
        width: 29%;
    }

    .p-sell__style__card img {
        max-width: 70px;
        margin-bottom: 15px;
    }
}

/*
  エンディング
================================*/
.p-sell__ending {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

.p-sell__ending p {
    font-size: clamp(17px, 2.2135416667vw, 20px);
    font-weight: bold;
    letter-spacing: 0.03rem;
    color: #333;
    line-height: 1.7;
}

@media screen and (min-width: 768px) {
    .p-sell__ending p {
        font-size: clamp(18px, 1.7543859649vw, 20px);
        letter-spacing: 0.05rem;
        text-align: center;
    }
}