@charset "UTF-8";


/* ━━━━━━━━━━━━━━━━

 ■初期化

━━━━━━━━━━━━━━━━ */
body {
    font-family: "Noto Sans Japanese", 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-pb-50 {
    padding-bottom: 50px !important;
}

.u-pd-0 {
    padding: 0 !important;
}

/**
 * Text
 */
/*==================================
* color
==================================*/
.u-fc-dark {
    color: #343a40 !important;
}

.u-fc-red {
    color: #dc3545 !important;
}

.u-fc-orange {
    color: #FF8C00 !important;
}

/*==================================
* font-weight
==================================*/
.u-fw-bold {
    font-weight: bold !important;
}

/*==================================
* align
==================================*/
.u-text-center {
    text-align: center !important;
}

.u-text-right {
    text-align: right !important;
}

.u-text-left {
    text-align: left !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: left;
    }
}

@media screen and (max-width: 767px) {
    .u-text-sp-left {
        text-align: left !important;
    }
}

/*==================================
* マーカー
==================================*/
.u-text-marker {
    background: linear-gradient(transparent 70%, #FFF799 70%);
}

/* ━━━━━━━━━━━━━━━━

 ■コンポーネント

━━━━━━━━━━━━━━━━ */
/**
 * 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: 30px 0 0 0;
    text-align: center;
}

/*
　標準ボタン
================================*/
.c-button {
    width: 90%;
    display: block;
    margin: 0 auto;
    padding: 12px 5px;
    text-align: center;
    border-radius: 30px;
    border: 2px solid #1568c1;
    background-color: #FFF;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.c-button,
.c-button:link,
.c-button:visited {
    text-decoration: none;
    color: #1568c1;
    font-weight: bold;
}

.c-button::after {
    background: #1568c1;
    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: 40%;
        padding: 15px 10px;
        font-size: 17px;
    }
}

/*
　プライマリボタン
================================*/
.c-button--primary {
    position: relative;
    display: block;
    width: 90%;
    padding: 20px 10px;
    margin: 0 auto;
    background-color: #6b7a8f;
    text-decoration: none;
    text-align: center;
}

.c-button--primary::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-button--primary,
.c-button--primary:link,
.c-button--primary:visited {
    text-decoration: none;
    color: #ffffff;
}

@media screen and (min-width: 768px) {
    .c-button--primary {
        width: 380px;
        font-size: 17px;
    }

    .c-button--primary:hover {
        color: #ffffff;
        background-color: #f7882f;
    }
}

/*
　アウトラインボタン
================================*/
.c-button-outline {
    width: 90%;
    padding: 15px 10px;
    display: block;
    text-align: center;
    font-weight: bold;
    border: 1.5px solid #111;
    margin: 0 auto;
}

.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: #1568c1;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-button-outline {
        width: 40%;
        font-size: 20px;
    }
}

/*
　システム標準-H2
================================*/
h2.tit {
    width: 95%;
    margin: 30px auto 20px auto;
    padding: 8px 10px 10px 0px;
    font-size: 24px;
    font-weight: 700;
    color: #1568c1;
    background-color: #ffffff !important;
}

/* PC */
@media screen and (min-width: 768px) {
    h2.tit {
        width: 100%;
        max-width: 1140px;
        margin: 50px auto;
        padding: 0;
        font-size: 32px;
        border-bottom: 2px dotted #333;
    }
}

/*
　システム標準-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: #1568c1;
}

/* 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: 900;
    text-align: center;
    color: #000;
    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: #1568c1;
    margin-bottom: 30px;
}

.c-title-02--color-2 {
    color: #f7882f;
}

/* PC */
@media screen and (min-width:768px) {
    .c-title-02,
    .c-title-02--color-2 {
        font-size: 53px;
        margin-bottom: 50px;
    }
}

/*
　ルビ付き-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: #1568c1;
    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;
    }
}

/*
　背景カラー-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: #1568c1;
}

.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(27px, 32/768*100vw, 32px);
    color: #fff;
    font-weight: 900;
    line-height: 1.5;
}

.c-title-bg-01--color-2,
.c-title-bg-01--color-2--sm {
    background: #f7882f;
}

.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, 25/768*100vw, 25px);
}

/* 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: 30px 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, 50/768*100vw, 50px);
        letter-spacing: 0.05em;
    }

    .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, 30/768*100vw, 30px);
    }
}

/*
　特徴（３カラム）-02
================================*/
.c-feature-col3-02 {
    width: 100%;
}

.c-feature-col3-02 li {
    margin-bottom: 80px;
}

.c-feature-col3-02 li:last-child {
    margin-bottom: 20px;
}

.c-feature-col3-02__image {
    margin-bottom: 20px;
}

.c-feature-col3-02__image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
    -o-object-fit: cover;
    object-fit: cover;
}

.c-feature-col3-02__text {
    display: block;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

.c-feature-col3-02 h3 {
    margin: 0 0 15px 0;
    padding: 0;
    font-size: 22px;
    text-align: center;
    font-weight: bold;
    font-family: "Noto Serif JP", serif;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-feature-col3-02 {
        max-width: 1140px;
        margin: 0 auto;
    }

    .c-feature-col3-02 ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        box-sizing: border-box;
    }

    .c-feature-col3-02 ul::after {
        content: "";
        display: block;
        width: 30%;
    }

    .c-feature-col3-02 li {
        width: 30%;
        margin-bottom: 50px;
    }

    .c-feature-col3-02 h3 {
        text-align: center;
        font-size: 28px;
    }
}

/*
　特徴（１カラム）-02
================================*/
.c-feature-col1-02__unit {
    margin-bottom: 50px;
    padding: 25px 20px 30px 20px;
    background-color: #fff;
}

.c-feature-col1-02__title {
    margin-bottom: 15px;
    font-size: clamp(25px, 3.2552083333vw, 30px);
}

.c-feature-col1-02__title::first-letter {
    font-size: clamp(30px, 3.90625vw, 35px);
    color: #1568c1;
}

.c-feature-col1-02__image {
    margin-bottom: 20px;
}

.c-feature-col1-02__image img {
    display: block;
    width: 100%;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-feature-col1-02__unit {
        margin-bottom: 80px;
        padding: 50px 50px 60px 50px;
    }

    .c-feature-col1-02__unit:last-child {
        margin-bottom: 0;
    }

    .c-feature-col1-02__title {
        margin-bottom: 20px;
        font-size: clamp(25px, 2.1929824561vw, 35px);
        font-weight: bold;
    }

    .c-feature-col1-02__title::first-letter {
        font-size: clamp(30px, 2.6315789474vw, 40px);
    }

    .c-feature-col1-02__inner {
        display: flex;
        justify-content: space-between;
    }

    .c-feature-col1-02__image {
        width: 47%;
        margin-bottom: 0;
    }

    .c-feature-col1-02__text {
        width: 50%;
        font-size: 18px;
    }

    .c-feature-col1-02__unit:nth-child(even) .c-feature-col1-02__image {
        order: 2;
    }

    .c-feature-col1-02__unit:nth-child(even) .c-feature-col1-02__text {
        order: 1;
    }
}

/*
　スタッフ紹介-02
================================*/
.c-staff-list-02 li {
    margin-bottom: 50px;
}

.c-staff-list-02 li:last-child {
    margin-bottom: 20px;
}

.c-staff-list-02__post {
    margin-bottom: 5px;
    font-size: 16px;
    color: #333;
}

.c-staff-list-02__name {
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: bold;
    color: #333;
}

.c-staff-list-02__title {
    margin-bottom: 15px;
    padding-bottom: 5px;
    font-weight: bold;
    color: #333;
    border-bottom: solid 1px #cccccc;
}

.c-staff-list-02__content dl {
    margin-bottom: 20px;
}

.c-staff-list-02__content dl dt,
.c-staff-list-02__content dl dd {
    margin: 0 0 5px 0;
    box-sizing: border-box;
}

.c-staff-list-02__content dl dt {
    display: inline-block;
    font-weight: bold;
    color: #333;
}

.c-staff-list-02__content dl dd {
    display: inline-block;
}

.c-staff-list-02__image {
    text-align: center;
}

.c-staff-list-02__image a {
    display: block;
    overflow: hidden;
}

.c-staff-list-02__image a img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    -o-object-fit: cover;
    object-fit: cover;
    transition: 1s all;
}

.c-staff-list-02__image a img:hover {
    opacity: 1;
    transform: scale(1.2, 1.2);
}

/* PC */
@media screen and (min-width: 768px) {
    .c-staff-list-02 li {
        display: flex;
        justify-content: space-between;
    }

    .c-staff-list-02__content {
        width: calc(100% - 365px);
        margin-right: 30px;
    }

    .c-staff-list-02__post {
        font-size: 18px;
    }

    .c-staff-list-02__name {
        font-size: 28px;
    }

    .c-staff-list-02__image {
        max-width: 365px;
    }
}

/*
　お客様の声（簡易版）-02
================================*/
.c-survey-list-02 {
    width: 95%;
    margin: 0 auto;
}

.c-survey-list-02 li {
    margin-bottom: 50px;
    border: solid 1px #9c9c9c;
    background: #fff;
}

.c-survey-list-02 li a {
    display: block;
    height: 100%;
    padding: 20px;
    text-decoration: none;
    box-sizing: border-box;
}

.c-survey-list-02__image {
    margin-bottom: 20px;
}

.c-survey-list-02__image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
    -o-object-fit: cover;
    object-fit: cover;
}

.c-survey-list-02__name {
    margin: 0 auto 10px auto;
    color: #333;
    font-weight: bold;
}

.c-survey-list-02__tag {
    display: flex;
    align-items: center;
    margin: 0 auto 15px auto;
}

.c-survey-list-02__tag--area,
.c-survey-list-02__tag--type {
    margin-right: 10px;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
}

.c-survey-list-02__tag--area {
    background: #1568c1;
}

.c-survey-list-02__tag--type {
    background: #f7882f;
}

.c-survey-list-02__detail {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin: 0 auto;
    line-height: 1.3;
    color: #333;
    overflow: hidden;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-survey-list-02 {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        width: 100%;
    }

    .c-survey-list-02::after {
        content: "";
        display: block;
        width: 31%;
    }

    .c-survey-list-02 li {
        width: 31%;
    }

    .c-survey-list-02 a:hover {
        opacity: 0.7;
    }
}

/*
　物件情報-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;
    }
}

/*
　お知らせ-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: #1568c1;
    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: #1568c1;
        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: #1568c1;
        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: #f7882f;
    }

    .c-news-list-01__button__pc .fa {
        margin-left: 10px;
    }

    .c-news-list-01__button__sp {
        display: none;
    }
}

/*
　会社概要-01
================================*/
.c-company-01__content {
    margin: 0 auto 30px auto;
}

.c-company-01__content dl>div {
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    margin-top: 0;
    margin-bottom: 0;
}

.c-company-01__content dt {
    width: 25%;
    padding: 13px 5px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    border-top: solid 1px #908a6a;
}

.c-company-01__content dl>div:last-child dt {
    border-bottom: solid 1px #908a6a;
}

.c-company-01__content dd {
    width: 73%;
    margin-left: 0;
    padding: 13px 5px 13px 20px;
    font-size: 16px;
    font-weight: bold;
    border-top: solid 1px #c5c5c5;
}

.c-company-01__content dl>div:last-child dd {
    border-bottom: solid 1px #c5c5c5;
}

.c-company-01__image {
    margin-bottom: 20px;
    text-align: center;
}

.c-company-01__image img {
    width: 100%;
    max-width: 400px;
    height: 250px;
    -o-object-fit: cover;
    object-fit: cover;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-company-01 {
        display: flex;
        justify-content: space-between;
        max-width: 1140px;
        margin: 70px auto 30px auto;
    }

    .c-company-01__content {
        width: calc(100% - 450px);
        margin-bottom: 0;
        margin-right: 50px;
    }

    .c-company-01__content dt {
        width: 22%;
        font-size: 16px;
    }

    .c-company-01__content dd {
        width: 70%;
        font-size: 16px;
    }

    .c-company-01__image {
        margin-bottom: 0;
    }

    .c-company-01__image img {
        width: 400px;
        height: 300px;
    }
}

/*
　会社概要-02
================================*/
.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: #1568c1;
    border-radius: 3px;
    color: #FFF;
}

/* 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;
    }
}

/*
　ページタイトル-10
================================*/
.c-page-title-10 {
    position: relative;
    width: 100%;
    height: 180px;
    border-bottom: 1px solid #333;
}

.c-page-title-10__inner {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.c-page-title-10__inner p {
    margin-bottom: 5px;
    font-size: clamp(35px, 4.5572916667vw, 45px);
    font-weight: bold;
    font-family: "Noto Serif JP", serif;
    color: #333;
}

.c-page-title-10__inner h1 {
    font-size: clamp(18px, 2.34375vw, 27px);
    font-weight: normal;
    color: #333;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-page-title-10 {
        height: clamp(180px, 17.5438596491vw, 200px);
    }

    .c-page-title-10__inner p {
        margin-bottom: 0;
        font-size: clamp(45px, 3.9473684211vw, 55px);
    }

    .c-page-title-10__inner h1 {
        font-size: clamp(20px, 1.7543859649vw, 23px);
    }
}

/*
　概要-05
================================*/
.c-about-05 {
    position: relative;
}

.c-about-05__inner {
    display: flex;
    flex-direction: column-reverse;
}

.c-about-05__image {
    margin-bottom: 10px;
}

.c-about-05__image img {
    width: 100%;
    height: 235px;
    -o-object-fit: cover;
    object-fit: cover;
}

.c-about-05__text {
    width: 90%;
    margin: 0 auto;
}

.c-about-05__text h2 {
    font-size: 55px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #444;
    font-family: "Century Gothic", "Arial", sans-serif;
    line-height: 1;
}

.c-about-05__text h2 span {
    margin-right: 10px;
    color: #fff;
    -webkit-text-stroke: 2px #444;
}

.c-about-05__text h3 {
    font-size: 25px;
    margin-bottom: 15px;
    font-weight: bold;
    font-family: "Noto Serif JP", serif;
}

.c-about-05__text p {
    line-height: 1.8;
    font-weight: 500;
    margin-bottom: 15px;
}

.c-about-05__button {
    width: 100%;
    display: block;
    margin: 0 auto;
    padding: 12px 5px;
    box-sizing: border-box;
    text-align: center;
    border: 2px solid #1568c1;
    background-color: #FFF;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.c-about-05__button,
.c-about-05__button:link,
.c-about-05__button:visited {
    text-decoration: none;
    color: #1568c1;
    font-weight: bold;
}

.c-about-05__button::after {
    background: #1568c1;
    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-about-05__button:hover {
    color: #FFF;
}

.c-about-05__button:hover::after {
    transform: scale(1, 1);
}

/* PC */
@media screen and (min-width: 768px) {
    .c-about-05 {
        max-width: 1300px;
        margin: 0 auto;
    }

    .c-about-05__inner {
        flex-direction: row;
    }

    .c-about-05__image {
        position: relative;
        width: 40%;
        height: 500px;
        flex: 1;
        margin-left: calc(50% - 50vw);
    }

    .c-about-05__image img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
    }

    .c-about-05__text {
        position: relative;
        width: 60%;
        padding-left: 60px;
        box-sizing: border-box;
    }

    .c-about-05__text h2 {
        position: absolute;
        top: -50px;
        left: -50px;
        font-size: 110px;
        font-size: clamp(95px, 4.3vw, 110px);
    }

    .c-about-05__text h3 {
        font-size: 35px;
        margin-bottom: 30px;
        padding-top: 75px;
    }

    .c-about-05__text p {
        margin-bottom: 30px;
        font-size: clamp(16px, 1.4035087719vw, 17px);
    }

    .c-about-05__button {
        width: 50%;
        margin: 0;
        padding: 15px 10px;
        font-size: 17px;
    }
}

/*
　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;
    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, 17/320*100vw, 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;
    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, 40/1101*100vw, 15px);
    }

    .c-banner-line-03__logo img {
        width: 75%;
    }

    .c-banner-line-03__text {
        width: 50%;
        margin-top: 0;
        padding: clamp(20px, 20/1101*100vw, 30px) 0;
    }

    .c-banner-line-03__text p {
        font-size: clamp(11px, 11/1101*100vw, 20px);
    }

    .c-banner-line-03__text p:first-child {
        font-size: clamp(20px, 20/1101*100vw, 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, 14/1101*100vw, 20px);
        font-weight: bold;
        color: #fff;
    }

    .c-banner-line-03__img {
        flex: 1;
        align-self: flex-end;
        margin: 0;
        padding-right: clamp(10px, 40/1101*100vw, 20px);
        text-align: center;
    }

    .c-banner-line-03__img img {
        width: 100%;
        min-width: 170px;
        vertical-align: bottom;
    }
}

/*
　ページタイトル
================================*/
.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__sell {
    background-image: url(../img/page-title__sell.jpg);
}

.c-page-title-01__management {
    background-image: url(../img/page-title__management.jpg);
}

.c-page-title-01__akiya {
    background-image: url(../img/page-title__akiya.jpg);
}

.c-page-title-01__souzoku {
    background-image: url(../img/page-title__souzoku.jpg);
}

.c-page-title-01__ninbai {
    background-image: url(../img/page-title__ninbai.jpg);
}

.c-page-title-01__line {
    background-image: url(../img/page-title__line.jpg);
}

.c-page-title-01__request {
    background-image: url(../img/page-title__request.jpg);
}

.c-page-title-01__buy-flow {
    background-image: url(../img/page-title__buy-flow.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 h1 {
    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 h1 {
        font-size: 60px;
    }
}

/*
　吹き出し
================================*/
.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;
}


/*
　コンタクト-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 Japanese", 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;
    }
}


/*
　コンタクト-10
================================*/
.c-contact-10 {
    background: #1568c1;
    width: 100%;
    padding: 50px 0;
}

.c-contact-10__intro {
    position: relative;
    color: #fff;
    width: 80%;
    max-width: 500px;
    margin: 0 auto 50px auto;
}

.c-contact-10__text {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.c-contact-10__text h3 {
    font-weight: bold;
}

.c-contact-10__telno {
    font-size: 40px;
    font-weight: bold;
    font-family: "Arial", sans-serif;
    margin-bottom: 10px;
}

.c-contact-10__telno a {
    color: #fff;
    text-decoration: none;
}

.c-contact-10__telno i {
    font-size: 30px;
    margin-right: 10px;
}

.c-contact-10__open {
    font-weight: bold;
    line-height: 1.5;
}

/* ボタン */
.c-contact-10__button {
    width: 80%;
    max-width: 500px;
    margin: 0 auto 30px auto;
}

.c-contact-10__button a {
    font-size: 20px;
    position: relative;
    padding: 35px 15px 15px 15px;
    border-radius: 10px;
    box-sizing: border-box;
    display: block;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
}

.c-contact-10__button a span {
    position: absolute;
    font-size: 16px;
    color: #000;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 80%;
    padding: 5px 0;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 1px 3px -1px rgba(0,0,0,0.5);
}

.c-contact-10__button-satei {
    margin-bottom: 50px;
}

.c-contact-10__button a i {
    font-size: 25px;
    margin: -5px 10px 0 0;
    vertical-align: middle;
}

.c-contact-10__button a:hover {
    opacity: 0.7;
}

.c-contact-10__button-satei a {
    background: #d62828;
    color: #fff;
}

.c-contact-10__button-inquiry a {
    background: #f7882f;
    color: #fff;
}

.c-contact-10__button-satei a span {
    border: solid 2px #d62828;
}

.c-contact-10__button-inquiry a span {
    border: solid 2px #f7882f;
}

/* PC */
@media screen and (min-width:960px) {
    .c-contact-10__intro {
        width: 100%;
        max-width: 1140px;
        margin: 0 auto;
        margin-bottom: 40px;        
    }
    
    .c-contact-10__block {
        width: 100%;
        align-items: center;
        margin-bottom: 0;
        box-sizing: border-box;
    }
    
    .c-contact-10__text {
        font-size: 23px;
        margin: 0;
    }
    
    .c-contact-10__text h3 {
        font-weight: bold;
        text-align: left;
    }
    
    .c-contact-10__tel {
        width: 100%;
        margin: 0 auto 30px auto;
        display: flex;
        align-items: center;
    }
    
    .c-contact-10__telno {
        font-size: 80px;
        margin-bottom: 0;
    }

    .c-contact-10__telno i {
        font-size: 65px;
    }

    .c-contact-10__open {
        font-size: 18px;
        margin-left: 20px;
    }
    
    /* ボタン */
    .c-contact-10__button {
        display: flex;
        justify-content: space-between;
        width: 100%;
        max-width: 1140px;
        margin: 0 auto;
    }
    
    .c-contact-10__button-satei,
    .c-contact-10__button-inquiry {
        width: 48%;
    }

    .c-contact-10__button-satei {
        margin-bottom: 0;
    }

    .c-contact-10__button a {
        padding: 40px 40px 30px 40px;
        font-size: 32px;
    }

    .c-contact-10__button a i {
        font-size: 37px;
        margin: -7px 10px 0 0;
    }

    .c-contact-10__button a span {
        font-size: 21px;
        top: -25px;
        border-width: 3px;
        border-radius: 25px;
    }
}

/* iPhone5 */
@media screen and (max-width:320px) {   
    .c-contact-10__text {
        padding-left: 10px;
    }
    
    /* tel */
    .c-contact-10__telno {
        font-size: 30px;
    }
}

/*
　チェックボックス付きリスト
=================================*/
.c-checkbox-list-01 {
    margin: 10px;
}

.c-checkbox-list-01 li {
    position: relative;
    padding-left: 30px;
    line-height: 1.5;
    margin-bottom: 20px;
    font-size: 17px;
}

.c-checkbox-list-01 li:before {
    position: absolute;
    top: 3px;
    margin-left: -30px;
    margin-right: 10px;
    content: url(../img/icon__check.png);
}

@media screen and (min-width:768px) {
    .c-checkbox-list-01 {
        margin: 0;
    }

    .c-checkbox-list-01 li:before {
        top: 0;
    }
}

/*
　2columnレイアウト
=================================*/
.c-column-2 {
    margin-bottom: 50px;
}

.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-title-balloon-01 {
    text-align: center;
}

.c-title-balloon-01__inner p {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    padding: 12px 45px;
    text-align: center;
    font-size: clamp(16px, 16/320*100vw, 28px);
    font-weight: bold;
    color: #fff;
    background: #f7882f;
    border-radius: 30px;
}

.c-title-balloon-01__inner p::before {
    position: absolute;
    content: "";
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-top: 20px solid #f7882f;
}

.c-title-balloon-01 h2 {
    font-size: clamp(26px, 26/320*100vw, 35px);
    font-weight: 900;
}

.c-title-balloon-01 h2 span {
    color: #1568c1;
}

.c-title-balloon-01 h2 em {
    display: inline-block;
    font-size: clamp(38px, 38/320*100vw, 48px);
    font-weight: 900;
    font-style: unset;
}

/* PC */
@media screen and (min-width:768px) {
    .c-title-balloon-01__inner p {
        margin-bottom: 20px;
        font-size: clamp(18px, 18/1140*100vw, 28px);
    }

    .c-title-balloon-01 h2 {
        font-size: clamp(30px, 30/1140*100vw, 50px);
    }

    .c-title-balloon-01 h2 em {
        font-size: clamp(40px, 40/1140*100vw, 60px);
    }
}


/*
　流れ
================================*/
.c-flow-04 {
    margin: 0 auto 40px auto;
}

.c-flow-04.c-flow-04__inner {
    margin-top: 25px;
}

.c-flow-04__step {
    position: relative;
    width: 270px;
    background: #1568c1;
    padding: 10px 10px 0 10px;
    text-align: center;
    color: #FFF;
    box-sizing: border-box;
    margin: 0 auto;
}

.c-flow-04__step p, 
.c-flow-04__step h3 {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 2px;
}

.c-flow-04__step:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    bottom: -25px;
    left: 0;
    border-style: solid;
    border-color: #1568c1 transparent transparent transparent;
    border-width: 25px 135px 0 135px;
    z-index: 1;
}

.c-flow-04__text {
    padding: 40px 10px;
}

/* PC */
@media screen and (min-width:768px) {
    .c-flow-04 {
        margin-bottom: 80px;
    }

    .c-flow-04__block {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 20px 0;
        margin-bottom: 30px;
    }

    .c-flow-04__step {
        margin: 0;
    }

    .c-flow-04__text {
        width: calc(100% - 330px);
        padding: 0 0 0 60px;
        font-size: 16px;
    }
}


/*
　よくある質問①
================================*/
.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: #1568c1; 
}

.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;
    }
}

/*
　ポイント（３カラム）-01
================================*/
.c-point-col3-01__card__lead {
    width: 95%;
    margin: 0 auto 40px auto;
    font-size: clamp(17px, 6vw, 22px);
    font-weight: 500;
}

.c-point-col3-01__card__title {
    background: #fff;
    padding: 10px 0;
    border-radius: 15px 15px 0 0;
    text-align: center;
    border: solid 3px #1568c1;
}

.c-point-col3-01__card__title h3 {
    font-size: clamp(20px, 6vw, 25px);
    font-weight: 900;
    color: #1568c1; 
}

.c-point-col3-01__card__text {
    position: relative;
    padding: 0 5px;
    height: 70px;
    border-radius: 0 0 15px 15px;
    background: #1568c1; 
}

.c-point-col3-01__card li:not(:first-child) {
    margin-top: 20px;
}

.c-point-col3-01__card__text p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    line-height: 1.2;
    text-align: center;
    font-size: clamp(16px, 5vw, 21px);
    font-weight: 900;
    color: #fff;
}

.c-point-col3-01__card__text p span {
    font-size: 30px;
}

/* PC */
@media screen and (min-width:768px) {
    .c-point-col3-01__card__lead {
        text-align: center;
    }
    
    .c-point-col3-01__card {
        display: flex;
        justify-content: space-between;
        margin-top: 15px;
    }

    .c-point-col3-01__card li {
        width: 32%;
    }

    .c-point-col3-01__card li:not(:first-child) {
        margin-top: 0;
    }

    .c-point-col3-01__card__title {
        padding: 15px 0;
    }

    .c-point-col3-01__card__title h3 {
        font-size: clamp(25px, 3vw, 35px);
    }

    .c-point-col3-01__card__text {
        height: 83px;
        padding: 5px 10px;
    }

    .c-point-col3-01__card__text p {
        font-size: clamp(21px, 2vw, 27px);
    }

    .c-point-col3-01__card__text p span {
        font-size: 35px;
    }
}

/*
　ブログリスト-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;
    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: #1568c1;
    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: #f7882f;
}

/* 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;
    }
}

/*
　よくある質問（アコーディオン）-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;
}

.c-accordion-menu-02__question::before {
    position: absolute;
    display: block;
    top: 12px;
    left: 8px;
    box-sizing: border-box;
    content: "Q";
    color: #1568c1;
    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: #1568c1;
}

.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: #f7882f;
    font-weight: bold;
    font-size: 20px;
}

.c-accordion-menu-02__button {
    text-align: right;
}

@media screen and (min-width: 768px) {
    .c-accordion-menu-02 {
        margin-bottom: 50px;
    }

    .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;
    }
}


/* ━━━━━━━━━━━━━━━━

 ■レイアウト

━━━━━━━━━━━━━━━━ */
/*=================================

* ヘッダー-07

=================================*/
html {
    scroll-padding-top: 62px;
}

header {
    position: relative;
    width: 100%;
    height: 62px;
    margin: 0;
}

.l-header-07 {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    width: 100%;
    height: 62px;
    padding: 8px 20px 8px 10px;
    background-color: #ffffff;
    z-index: 99;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}

.l-header-07__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ロゴ */
.l-header-07__logo {
    max-width: 240px;
}

.l-header-07__logo a {
    display: block;
    font-size: 0;
}

.l-header-07__logo a img {
    width: 100%;
    max-height: 45px;
}

/* ナビゲーション */
.l-header-07__nav {
    display: none;
}

/* 問合せ */
.l-header-07__inquiry {
    display: none;
}

/* ハンバーガーメニュー */
.l-header-07__menu__button {
    display: block;
}

.l-header-07__menu__button a {
    display: block;
    text-align: center;
    text-decoration: none;
    color: #1f2a34;
}

.l-header-07__menu__button i {
    font-size: 35px;
}

.l-header-07__sp-menu {
    width: 100%;
    height: 100%;
    background: #fefefe;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    padding: 72px 20px 65px 20px;
    transform: translateY(min(-100%, -1000px));
    transition: transform 0.5s;
}

.l-header-07__sp-menu.__open {
    transform: translateY(0);
    transition: transform 0.5s;
}

.l-header-07__sp-menu ul li {
    width: 100%;
    height: auto;
    border-top: 1px solid #919191;
}

.l-header-07__sp-menu ul li:hover {
    background: #747474;
}

.l-header-07__sp-menu ul li:last-child {
    border-bottom: 1px solid #919191;
}

.l-header-07__sp-menu ul li a {
    margin-left: 1em;
    text-decoration: none;
    font-size: 1em;
    line-height: 3em;
    color: #1568c1;
    display: block;
    width: 100%;
    height: 3em;
}

.l-header-07__sp-menu ul li a:hover {
    color: #fff;
}

.l-header-07__sp-menu ul li a {
    margin-left: 1em;
    text-decoration: none;
    font-size: 1em;
    line-height: 3em;
    color: #1568c1;
    display: block;
    width: 100%;
    height: 3em;
}

.l-header-07__sp-menu ul li a:hover {
    color: #fff;
}

.l-header-07__sp-menu--tel a {
    margin-top: 30px;
    line-height: 1;
    text-decoration: none;
    font-family: "Arial", "Noto Sans Japanese", sans-serif;
    font-size: 32px;
    font-weight: bold;
    color: #1568c1;
}

.l-header-07__sp-menu--tel p {
    text-align: center;
}

.l-header-07__sp-menu--inquiry {
    display: flex;
    justify-content: center;
    margin: 20px auto 0 auto;
}

.l-header-07__sp-menu--inquiry__mail {
    width: 80%;
}

.l-header-07__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: #1568c1;
    box-sizing: border-box;
}

.l-header-07__sp-menu--inquiry__mail a:hover {
    background: #767171;
}

.l-header-07__sp-menu--tel a {
    display: block;
    text-align: center;
}

@media print {
    .l-header-07__sp-menu {
        display: none;
    }
}

.p-page-title {
    padding: 10px 8px;
    font-size: 13px;
}

/* PC */
@media screen and (min-width: 950px) {
    .l-header-07 {
        display: block;
        padding: 0;
    }

    .l-header-07__inner {
        height: 62px;
    }

    /* ロゴ */
    .l-header-07__logo {
        max-width: clamp(220px, 21.0526315789vw, 330px);
        margin: 0 auto 0 20px;
    }

    /* ナビゲーション */
    .l-header-07__nav {
        display: block;
    }

    .l-header-07__nav ul {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .l-header-07__nav li {
        padding: 10px 15px;
    }

    .l-header-07__nav li:last-child {
        padding-right: clamp(45px, 5.701754386vw, 65px);
    }

    .l-header-07__nav a {
        position: relative;
        display: inline-block;
        text-align: center;
        text-decoration: none;
        font-size: clamp(15px, 1.3157894737vw, 16px);
        font-weight: 500;
        color: #333;
    }

    .l-header-07__nav a span {
        display: block;
        font-size: 12px;
    }

    .l-header-07__nav a:hover {
        opacity: 0.5;
    }

    /* 問合せ */
    .l-header-07__inquiry {
        position: relative;
        display: flex;
        height: 62px;
        align-items: center;
        background-color: #1568c1;
    }

    .l-header-07__inquiry a {
        display: block;
        padding: 14px 20px 14px 5px;
        text-decoration: none;
        text-align: center;
        font-weight: 500;
        color: #FFF;
    }

    .l-header-07__inquiry a::before {
        position: absolute;
        content: "";
        top: 0;
        left: -55px;
        width: 0;
        height: 0;
        border-left: 55px solid transparent;
        border-bottom: 62px solid #1568c1;
    }

    .l-header-07__inquiry a span {
        display: block;
        font-size: 12px;
    }

    .l-header-07__inquiry:hover {
        opacity: 0.8;
    }

    .l-header-07__menu__button {
        display: none;
    }

    .l-header-07__sp-menu {
        display: none;
    }

    .p-page-title {
        max-width: 1140px;
        margin: 0 auto;
        padding: 10px 0;
        font-size: 14px;
    }
}

/*=================================

* メインビジュアル

=================================*/
.l-main-visual {
    height: 300px;
    background-repeat: no-repeat;
    background-position: 60% 50%;
    background-size: cover;
    background-image: url(../img/main-visual__image.jpg);
}

.l-main-visual__inner {
    position: relative;
    height: 300px;
}

.l-main-visual__inner h1 {
    position: absolute;
    bottom: 15px;
    left: 15px;
    line-height: 1.3;
    font-family: "Noto Serif JP", serif;
    font-size: clamp(22px, 2.8645833333vw, 35px);
    font-weight: 900;
    color: #666;
    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__inner h1 span {
    font-size: clamp(26px, 3.6458333333vw, 45px);
    color: #1568c1;
}

/* PC */
@media screen and (min-width: 768px) {
    .l-main-visual {
        height: 70vh;
        margin-bottom: 60px;
        background-position: 50% 50%;
    }

    .l-main-visual__inner {
        height: 70vh;
    }

    .l-main-visual__inner h1 {
        top: 20%;
        left: 7%;
        bottom: unset;
        font-size: clamp(35px, 3.0701754386vw, 45px);
    }

    .l-main-visual__inner h1 span {
        font-size: clamp(55px, 4.8245614035vw, 70px);
    }
}

/**
 * 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--yellow {
    background: #fbf9ee;
}

.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;
    }
}

/*=========================================

* フッター-01

==========================================*/
.l-footer-01 {
    margin: 0;
    padding: 0;
    text-align: left;
    background-color: #F5F5F5;
    border-top: none;
    overflow: hidden;
}

.l-footer-01__contact {
    position: relative;
    margin: 0 auto;
    height: 600px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    background-image: url(../img/footer__bg--01.jpg);
}

.l-footer-01__contact::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(33, 33, 33, 0.4);
}

.l-footer-01__contact__inner {
    width: 90%;
    margin: 0 auto;
    padding: 30px 30px 40px 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.75);
    box-sizing: border-box;
}

.l-footer-01__contact__inner h2 {
    margin-bottom: 30px;
    text-align: center;
    font-family: "Noto Serif JP", serif;
    font-size: 32px;
    font-weight: 900;
    color: #333;
}

.l-footer-01__contact__inner h2 span {
    display: block;
    font-family: "Noto Sans Japanese", sans-serif;
    font-size: 13px;
    font-weight: normal;
}

.l-footer-01__contact__tel {
    margin-bottom: 30px;
    text-align: center;
    font-size: 13px;
}

.l-footer-01__contact__tel a {
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
    font-family: "Noto Serif JP", serif;
    font-size: 25px;
    font-weight: bold;
    color: #000;
}

.l-footer-01__contact__mail {
    margin-bottom: 40px;
}

.l-footer-01__contact__mail a {
    display: block;
    width: 90%;
    max-width: 330px;
    margin: 0 auto;
    padding: 20px 0;
    text-decoration: none;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    border: solid 1px #333;
}

.l-footer-01__contact__address p {
    text-align: center;
    font-size: 14px;
    margin-bottom: 20px;
}

.l-footer-01__contact__sns {
    display: flex;
    justify-content: center;
}

.l-footer-01__contact__sns a:hover {
    opacity: 0.6;
}

.l-footer-01__contact__sns a:not(:first-child) {
    margin-left: 15px;
}

.l-footer-01__contact__sns a img {
    width: 40px;
}

.l-footer-01__company {
    width: 90%;
    margin: 0 auto;
    padding: 20px 0;
}

.l-footer-01__company__logo {
    margin-bottom: 15px;
    padding-bottom: 15px;
    text-align: center;
}

.l-footer-01__company__logo img {
    width: 65%;
    max-width: 400px;
    margin-bottom: 15px;
}

.l-footer-01__company__nav ul {
    display: flex;
    flex-wrap: wrap;
}

.l-footer-01__company__nav li {
    width: 50%;
}

.l-footer-01__company__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: #1568c1 !important;
    color: #FFF !important;
    font-size: 14px !important;
}

/* PC */
@media screen and (min-width: 768px) {
    .l-footer-01__contact {
        height: 650px;
    }

    .l-footer-01__contact__inner {
        max-width: 1140px;
        padding: 30px;
    }

    .l-footer-01__contact__inner h2 {
        font-size: 55px;
    }

    .l-footer-01__contact__inner h2 span {
        font-size: 15px;
    }

    .l-footer-01__contact__block {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 90%;
        margin: 0 auto 30px auto;
        box-sizing: border-box;
    }

    .l-footer-01__contact__tel {
        width: 50%;
        margin-bottom: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .l-footer-01__contact__tel a {
        font-size: 40px;
    }

    .l-footer-01__contact__tel p {
        font-size: 15px;
    }

    .l-footer-01__contact__mail {
        width: 50%;
        margin-bottom: 0;
    }

    .l-footer-01__contact__mail a {
        padding: 25px;
        font-size: 20px;
    }

    .l-footer-01__contact__mail a:hover {
        background-color: #1568c1;
        border: 1px solid #1568c1;
        color: #FFF;
    }

    .l-footer-01__contact__address p {
        font-size: 16px;
    }

    .l-footer-01__contact__sns a img {
        width: 45px;
    }

    .l-footer-01__company {
        max-width: 1140px;
        padding: 35px 0;
        display: flex;
        justify-content: space-between;
    }

    .l-footer-01__company__logo {
        width: 25%;
        margin-bottom: 0;
        padding-bottom: 0;
        text-align: left;
    }

    .l-footer-01__company__logo img {
        width: 90%;
        max-width: 260px;
        margin-bottom: 0;
    }

    .l-footer-01__company__nav {
        width: 60%;
    }

    .l-footer-01__company__nav li {
        width: auto;
        margin-right: 20px;
    }

    .l-footer-01__company__nav li a {
        font-size: 15px;
        padding: 5px;
    }

    .l-footer-01__company__nav li a:hover {
        color: #337ab7;
    }

    .l-footer-01__company__nav li a::before {
        content: ">";
        margin-right: 3px;
    }

    .copyright {
        padding: 30px 0 !important;
    }
}

/* SP */
@media screen and (max-width: 767px) {
    .btn__page_top {
        display: none !important;
    }
}

/* ━━━━━━━━━━━━━━━━

 ■プロジェクト

━━━━━━━━━━━━━━━━ */
/*=================================

* トップ

=================================*/
/*
　選ばれる理由
=================================*/
.p-reason__block {
    margin-bottom: 60px;
}

.p-reason__block:last-child {
    margin-bottom: 0;
}

.p-reason__block--reverse {
    margin-bottom: 60px;
}

.p-reason__image {
    max-width: 100%;
}

.p-reason__image img {
    width: 100%;
    height: 250px;
    -o-object-fit: cover;
    object-fit: cover;
}

.p-reason__panel {
    position: relative;
    box-sizing: border-box;
    width: 90%;
    margin: -80px auto 0 auto;
    padding: 10px 20px 20px 20px;
    background-color: #ffffff;
    box-shadow: 0 7px 20px 0 rgba(0, 0, 0, 0.2);
    z-index: 40;
}

.p-reason__strong {
    font-size: 45px;
    font-weight: 900;
    color: #1568c1;
    margin-bottom: 10px;
    font-family: "Century Gothic", sans-serif;
}

.p-reason__title {
    margin-bottom: 15px;
    line-height: 1.2;
    font-family: "Noto Serif JP", serif;
    font-size: 24px;
    font-weight: 700;
}

.p-reason__text {
    font-size: 16px;
    line-height: 1.5;
}

/* PC */
@media screen and (min-width: 768px) {

    .p-reason__block,
    .p-reason__block--reverse {
        max-width: 1140px;
        margin: 0 auto;
    }

    .p-reason__block,
    .p-reason__block--reverse {
        position: relative;
        height: 500px;
        margin-bottom: 100px;
    }

    .p-reason__image {
        position: absolute;
        top: 0;
        width: 80%;
    }

    .p-reason__image img {
        height: 500px;
        -o-object-position: right;
        object-position: right;
        -o-object-fit: contain;
        object-fit: contain;
    }

    .p-reason__panel {
        position: absolute;
        top: 50%;
        transform: translate(0, -50%);
        width: 55%;
        margin: 0;
        padding: 20px 50px 50px 50px;
    }

    .p-reason__strong {
        font-size: 73px;
        margin-bottom: 0;
    }

    .p-reason__title {
        font-size: 34px;
    }

    .p-reason__text {
        line-height: 1.8;
    }

    .p-reason__block .p-reason__image {
        right: 0;
    }

    .p-reason__block .p-reason__panel {
        left: 0;
    }

    .p-reason__block--reverse .p-reason__image {
        left: 0;
    }

    .p-reason__block--reverse .p-reason__image img {
        -o-object-position: left;
        object-position: left;
    }

    .p-reason__block--reverse .p-reason__panel {
        right: 0;
    }
}

/*=================================

* 会社案内

=================================*/
/*
　紹介文
================================*/
.p-company__introduction {
    position: relative;
    background: url(../img/company__introduction__bg.jpg) no-repeat center center/cover;
}

.p-company__introduction::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(248, 247, 247, 0.85);
}

.p-company__introduction__inner {
    position: relative;
    width: 85%;
    margin: 0 auto;
}

.p-company__introduction__inner h2 {
    margin-bottom: 15px;
    font-size: clamp(22px, 2.8645833333vw, 26px);
    font-weight: bold;
    color: #333;
}

.p-company__introduction__inner p {
    line-height: 1.8;
    letter-spacing: 0.05em;
}

/* PC */
@media screen and (min-width: 768px) {
    .p-company__introduction__inner {
        max-width: 960px;
    }

    .p-company__introduction__inner h2 {
        margin-bottom: 30px;
        font-size: clamp(23px, 2.0175438596vw, 30px);
        text-align: center;
    }

    .p-company__introduction__inner p {
        font-size: clamp(16px, 1.4035087719vw, 18px);
    }
}

/*
　共通タイトル
================================*/
.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-title::after {
    content: "";
    display: block;
    position: absolute;
    left: calc(50% - 12px);
    bottom: -20px;
    width: 24px;
    border: 2px solid #1568c1;
    border-radius: 50px;
}

/* PC */
@media screen and (min-width: 768px) {
    .p-company-title {
        width: 100%;
        margin: 0 auto 70px auto;
        font-size: clamp(23px, 2.0175438596vw, 30px);
    }

    .p-company-title::after {
        left: calc(50% - 17px);
        width: 34px;
    }
}

/*
　当社の特徴
================================*/
.p-company__feature {
    padding-top: 15px;
}

.p-company__feature__block {
    width: 90%;
    margin: 0 auto;
}

.p-company__feature__block li {
    position: relative;
    width: 100%;
    border: solid 1px #ccc;
}

.p-company__feature__block li:not(:first-child) {
    margin-top: 30px;
}

.p-company__feature__list-cover {
    position: absolute;
    top: -14px;
    left: 12px;
    width: 80px;
    padding: 8px 0;
    text-align: center;
    color: #fff;
    font-weight: bold;
    background-color: #1568c1;
}

.p-company__feature__block-no {
    font-size: 1.7rem;
}

.p-company__feature__block li h3 {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    padding: 10px 12px 10px 105px;
    min-height: 80px;
    font-size: clamp(20px, 2.6041666667vw, 25px);
    font-weight: 900;
    border-bottom: solid 1px #ccc;
    box-sizing: border-box;
    color: #222;
    line-height: 1.3;
}

.p-company__feature__list-text {
    padding: 20px;
}

.p-company__feature__list-text p {
    line-height: 1.6;
}

/* PC */
@media screen and (min-width: 768px) {
    .p-company__feature__block {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        width: 100%;
    }

    .p-company__feature__block li {
        width: 31%;
        margin-top: 0;
    }

    .p-company__feature__block li:not(:first-child) {
        margin-top: 0;
    }

    .p-company__feature__block li:nth-child(n+4) {
        margin-top: 68px;
    }

    .p-company__feature ul::after {
        display: block;
        content: "";
        width: 31%;
    }

    .p-company__feature__list-cover {
        padding: 18px 0;
    }

    .p-company__feature__block li h3 {
        min-height: 100px;
        padding: 12px 12px 12px 110px;
    }
}

/*
　代表あいさつ　挨拶-07
================================*/
.c-greeting-07 {
    padding: 0 10px;
}

.c-greeting-07__img {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 30px;
    max-width: 400px;
}

.c-greeting-07__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.c-greeting-07__label {
    position: relative;
    margin-bottom: 20px;
}

.c-greeting-07__label:before {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 100%;
    height: 1px;
    background-color: #6b7a8f;
}

.c-greeting-07__label span {
    position: relative;
    padding-right: 1em;
    font-size: 18px;
    letter-spacing: 0.07em;
    color: #6b7a8f;
    background-color: #fff;
    line-height: 1;
    font-family: "Roboto Condensed", "Arial", sans-serif;
}

.c-greeting-07__title h3 {
    font-size: clamp(26px, calc(31 / 900 * 100vw), 31px);
    font-weight: bold;
    color: #1568c1;
    line-height: 1.4;
    font-family: "Noto Serif JP", serif;
}

.c-greeting-07__text {
    margin-top: 30px;
    padding: 20px 20px 40px 20px;
    background-color: #eaf3f9;
    font-family: 'Noto Serif JP', serif;
}

.c-greeting-07__text__inner {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
}

.c-greeting-07__text p {
    font-size: 16px;
    line-height: 1.8;
}

.c-greeting-07__name {
    font-weight: bold;
    font-size: 16px;
    margin-top: 20px;
    text-align: right;
}

/* PC */
@media screen and (min-width: 900px) {
    .c-greeting-07 {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
    }

    .c-greeting-07__img {
        flex-basis: 40%;
        max-width: none;
        margin: 0;
        height: 460px;
    }

    .c-greeting-07__title {
        flex-basis: 57%;
        margin: 0;
    }

    .c-greeting-07__label {
        margin-bottom: 30px;
    }

    .c-greeting-07__label span {
        font-size: 20px;
    }

    .c-greeting-07__title h3 {
        font-size: clamp(28px, calc(33 / 1140 * 100vw), 37px);
        line-height: 1.6;
    }

    .c-greeting-07__text {
        margin-top: -60px;
        padding: 80px 20px 80px 20px;
    }

    .c-greeting-07__text p {
        font-size: 18px;
    }

    .c-greeting-07__name {
        font-size: 18px;
    }
}

/*
　スタッフ紹介バナー
================================*/
.p-company__banner-staff {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: url(../img/company__banner-staff.jpg) no-repeat center center/cover;
}

.p-company__banner-staff::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(12, 55, 94, 0.7);
}

.p-company__banner-staff__inner {
    position: relative;
    width: 90%;
    text-align: center;
}

.p-company__banner-staff__title {
    font-size: clamp(32px, 4.1666666667vw, 40px);
    font-weight: 900;
    color: #fff;
}

.p-company__banner-staff__text {
    margin-top: 20px;
    line-height: 1.6;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

a.p-company__banner-staff__button {
    display: block;
    max-width: 330px;
    margin: 30px auto 0;
    padding: 10px 10px;
    font-size: clamp(18px, 2.34375vw, 22px);
    font-weight: bold;
    text-decoration: none;
    color: #1568c1;
    background: #fedb39;
}

a.p-company__banner-staff__button:hover {
    opacity: 0.8;
}

/* PC */
@media screen and (min-width: 768px) {
    .p-company__banner-staff__inner {
        width: 100%;
    }

    .p-company__banner-staff__title {
        font-size: clamp(30px, 2.6315789474vw, 45px);
    }

    .p-company__banner-staff__text {
        font-size: clamp(16px, 1.4035087719vw, 18px);
    }

    a.p-company__banner-staff__button {
        font-size: clamp(17px, 1.4912280702vw, 22px);
    }
}

/* 店舗写真
======================= */
.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-company__history__list {
    display: flex;
    align-items: flex-start;
    padding: 10px 0;
}

.p-company__history__list:nth-child(even) {
    background: #FFF;
}

.p-company__history__list dt {
    width: 28%;
    padding-left: 2%;
}

.p-company__history__list dd {
    width: 81%;
    padding-right: 2%;
}

.p-company__history__list dt,
.p-company__history__list dd {
    font-size: 14px;
}

/* PC */
@media screen and (min-width: 768px) {
    .p-company__history__list {
        padding: 20px 0;
    }

    .p-company__history__list dt {
        width: 19%;
    }

    .p-company__history__list dt,
    .p-company__history__list dd {
        font-size: 16px;
    }
}

/*
　アクセス
================================*/
.p-company__access {
    padding-bottom: 0 !important;
    font-size: 0;
}

.p-company__access__lead {
    width: 90%;
    margin: 0 auto 30px auto;
    font-size: 16px;
}

/* PC */
@media screen and (min-width: 768px) {
    .p-company__access__lead {
        max-width: 1140px;
        margin: 0 auto 40px auto;
        text-align: center;
    }
}

/*=================================

* 空き家管理

=================================*/

/*
　セクション
=================================*/
.l-section.l-section--lightblue {
    background: #e6f5f5;
}

/*
　空家の問題点
=================================*/
.p-akiya__caption {
    margin-bottom: 50px;
    font-size: 23px;
    font-weight: 900;
    text-align: center; 
    line-height: 1.3;
}

.p-akiya__caption  strong {
    font-size: 35px;
}

.p-akiya__problem-list li {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: bold;
}

.p-akiya__problem-list li::before {
    content: "■";
    margin-right: 5px;
}

@media screen and (min-width:768px) {
    .p-akiya__caption  {
        margin-bottom: 80px;
        font-size: 35px;
    }

    .p-akiya__caption  strong {
        font-size: 55px;
    }

    .p-akiya__text {
        margin-bottom: 30px;
        font-size: 30px;
        text-align: center;
    }
    
    .p-akiya__problem-list li {
        font-size: 30px;
    }
}

/*
　空家の解決策
=================================*/
.p-akiya-kaiketsu h2 {
    font-size: 30px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
}

.p-akiya-kaiketsu h2 span {
    font-size: 35px;
    color: #FF8426;
}

.p-akiya-kaiketsu ul li {
    width: 100%;
    margin: 0 auto 50px auto;
}

.p-akiya-kaiketsu__image  {
    width: 30%;
    min-width: 180px;
    margin: 0 auto 20px auto;
}

.p-akiya-kaiketsu__image img {
    width: 100%;
    object-fit: cover;
}

.p-akiya-kaiketsu__text p {
    font-weight: 900;
    text-align: center;
    font-size: 30px;
    line-height: 1.3;
}

.p-akiya-kaiketsu__text p span {
    color: #FF8426;
}

@media screen and (min-width:768px) {
    .p-akiya-kaiketsu h2 {
        font-size: 40px;
    }

    .p-akiya-kaiketsu h2 span {
        font-size: 55px;
    }

    .p-akiya-kaiketsu ul {
        display: flex;
        justify-content: space-between;
    }

    .p-akiya-kaiketsu ul li {
        margin-bottom: 0;
    }

    .p-akiya-kaiketsu__text p {
        font-size: 35px;
    }
    
    .p-akiya-kaiketsu ul li:first-child .p-akiya-kaiketsu__text p {
        padding-top: 20px;
    }
}

/*
　家を貸し出すメリット
=================================*/
.c-checkbox-list-01.p-akiya__merit {
    margin-bottom: 50px;  
}

.p-akiya__merit__text {
    margin-bottom: 50px;
    text-align: center;
}

.p-akiya__merit__text p {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
}

.p-akiya__merit__text p span {
    margin-bottom: 30px;
    font-size: 25px;
    font-weight: 900;
    color: #FF7F00;
}

/* PC */
@media screen and (min-width:768px) {
    .c-checkbox-list-01.p-akiya__merit {
        display: flex;
        justify-content: center;
    }
    
    .c-checkbox-list-01.p-akiya__merit li {
        font-size: 22px;
        line-height: 1.7;
    }

    .p-akiya__merit__text {
        margin-bottom: 80px;
    }

    .p-akiya__merit__text p {
        text-align: center;
        font-size: 28px;
    }

    .p-akiya__merit__text p span {
        font-size: 40px;
        text-align: center;
    }
}

/*
　空き家サービスメニュー
=================================*/
.p-akiya-service {
    margin-bottom: 40px;
}

.p-akiya-service__table.tbl.w100p th,
.p-akiya-service__table.tbl.w100p td {
    font-size: 16px;
}

.p-akiya-service__text span {
    color: #ff0000;
}

/* PC */
@media screen and (min-width:768px) {
    .p-akiya-service {
        margin-bottom: 80px;
    }
}

/*=================================

* 不動産売却

=================================*/

/*
　タイトル（フォントサイズlg）
================================*/
.c-title--large {
    margin-bottom: 30px;
    font-size: 25px;
    font-weight: 900;
}

.c-title--large span {
    font-size: 33px;
}

/* PC */
@media screen and (min-width:768px) {
    .c-title--large  {
        font-size: 40px;
        text-align: center;
    }
    
    .c-title--large span {
        font-size: 55px;
    }
}

/*
　横3つ並び枠
=================================*/
.p-sell__promise {
    width: 90%;
    margin: 0 auto 40px auto;
}

.p-sell__promise li {
    width: 100%;
    margin-bottom: 15px;
    border: 2px solid #1568c1;
    box-sizing: border-box;
    padding: 15px;
    border-radius: 8px;
}

.p-sell__promise li h3 {
    font-size: 23px;
    margin-bottom: 10px;
    color: #1568c1;
    text-align: center;
    line-height: 1.2;
    font-weight: 900;
}

/* PC */
@media screen and (min-width:768px) {
    .p-sell__promise {
        margin: 0 auto 70px auto;
        width: 100%;
    }

    .p-sell__promise ul {
        display: flex;
        justify-content: space-between;
    }
    
    .p-sell__promise li {
        width: 32%;
        margin-right: 2%;
        margin-bottom: 0;
        padding: 20px;
    }
    
    .p-sell__promise li:last-child {
        margin-right: 0%;
    }
    
    .p-sell__promise:after {
        content: "";
        display: block;
        clear: both;
    }
    
    .p-sell__promise li h3 {
        font-size: 27px;
    }
}

/*
　こだわりリスト
=================================*/

/* PC */
@media screen and (min-width:768px) {
    .c-checkbox-list-01.p-sell__commitment {
        display: flex;
        justify-content: center;
    }
    
    .c-checkbox-list-01.p-sell__commitment li {
        font-size: 20px;
    }
}