@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 #03b7ab;
    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: #03b7ab;
    font-weight: bold;
}

.c-button::after {
    background: #03b7ab;
    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: 100%;
    padding: 20px 10px;
    margin: 0 auto;
    background-color: #03b7ab;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
}

.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: #FFF;
}

@media screen and (min-width: 768px) {
    .c-button--primary {
        width: 380px;
        font-size: 17px;
    }

    .c-button--primary:hover {
        color: #ffffff;
        opacity: 0.8;
    }
}

/*
　アウトラインボタン
================================*/
.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: #03b7ab;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-button-outline {
        width: 40%;
        font-size: 20px;
    }
}

/*
　システム標準-H2
================================*/
h2.tit {
    width: 90%;
    text-align: center;
    color: #000;
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0 auto 30px auto;
    padding: 0;
    background-color: transparent !important;
}

/* PC */
@media screen and (min-width: 768px) {
    h2.tit {
        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: #03b7ab;
}

/* 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-border-01 {
    position: relative;
    width: 90%;
    margin: 0 auto 50px auto;
    font-size: clamp(25px, 3.2552083333vw, 30px);
    font-weight: bold;
    text-align: center;
    line-height: 1.4;
    color: #222;
}

.c-title-border-01::after {
    content: "";
    display: block;
    position: absolute;
    width: 46px;
    left: calc(50% - 23px);
    bottom: -15px;
    border: 2px solid #03b7ab;
    border-radius: 50px;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-title-border-01 {
        width: 100%;
        margin: 0 auto 70px auto;
        font-size: clamp(25px, 2.1929824561vw, 30px);
    }
}

/*
　スタッフ紹介-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: 5/4;
    -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-estate-list-col3-02,
.c-estate-list-col3-02--gray {
    width: 95%;
    margin: 0 auto;
}

.c-estate-list-col3-02 li,
.c-estate-list-col3-02--gray li {
    position: relative;
    margin-bottom: 30px;
    border-radius: 10px;
}

/* テキスト部分の背景：白色 */
.c-estate-list-col3-02 li {
    background-color: #fff;
}

/* テキスト部分の背景：灰色 */
.c-estate-list-col3-02--gray li {
    background-color: #f5f5f5;
}

.c-estate-list-col3-02 a,
.c-estate-list-col3-02--gray a {
    display: block;
    height: 100%;
    text-decoration: none;
    color: #000;
}

.c-estate-list-col3-02__image {
    position: relative;
}

.c-estate-list-col3-02__image img {
    display: block;
    width: 100%;
    aspect-ratio: 3/2;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.c-estate-list-col3-02__type {
    position: absolute;
    bottom: -15px;
    left: 10px;
    display: inline-block;
    padding: 5px 10px;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    background: #03b7ab;
    color: #fff;
}

.c-estate-list-col3-02__textarea {
    padding: 25px 20px 20px 20px;
}

.c-estate-list-col3-02__name {
    font-weight: bold;
    margin-bottom: 5px;
}

.c-estate-list-col3-02__access {
    margin-bottom: 5px;
    font-size: 14px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.c-estate-list-col3-02__price {
    margin-bottom: 5px;
    font-size: 22px;
    font-weight: bold;
}

.c-estate-list-col3-02__price span {
    font-size: 17px;
}

.c-estate-list-col3-02__catchcopy {
    line-height: 1.3;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.c-estate-list-col3-02__label {
    position: absolute;
    top: 10px;
    right: 10px;
    display: block;
    padding: 14px 2px;
    text-align: center;
    width: 55px;
    height: 55px;
    background: #f4de51;
    border-radius: 50px;
    box-sizing: border-box;
}

.c-estate-list-col3-02__label span {
    color: #555;
    font-size: 12px;
    font-weight: bold;
}

.c-estate-list-col3-02__label span[data-label*=販売停止] {
    font-weight: bold;
    color: #ff0000;
}

/* PC */
@media screen and (min-width: 768px) {

    .c-estate-list-col3-02,
    .c-estate-list-col3-02--gray {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        width: 100%;
    }

    .c-estate-list-col3-02::after,
    .c-estate-list-col3-02--gray::after {
        content: "";
        display: block;
        width: 31%;
    }

    .c-estate-list-col3-02 li,
    .c-estate-list-col3-02--gray li {
        width: 31%;
        margin-bottom: 50px;
    }

    .c-estate-list-col3-02 a:hover,
    .c-estate-list-col3-02--gray a:hover {
        opacity: 0.6;
    }

    .c-estate-list-col3-02__type {
        left: 20px;
    }

    .c-estate-list-col3-02__textarea {
        padding: 30px 25px 25px 25px;
    }

    .c-estate-list-col3-02__name {
        font-size: 18px;
    }

    .c-estate-list-col3-02__access,
    .c-estate-list-col3-02__catchcopy {
        font-size: 16px;
    }

    .c-estate-list-col3-02__label {
        top: 12px;
        right: 12px;
        padding: 13px 2px;
    }
}

/*
　会社概要-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: 14px 5px 14px 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: auto;
    aspect-ratio: 3/2;
    -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;
    }
}

/*
　会社概要-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: #03b7ab;
    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 h2 {
    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 h2 {
        font-size: clamp(20px, 1.7543859649vw, 23px);
    }
}

/* ━━━━━━━━━━━━━━━━

 ■レイアウト

━━━━━━━━━━━━━━━━ */
/*=================================

* ヘッダー-06

=================================*/
header {
    margin-bottom: 0;
}

.l-header-06 {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    padding: 3px 7px 8px 7px;
    background-color: #ffffff;
    border-top: 4px solid #03b7ab;
    z-index: 99;
}

.l-header-06 h1 {
    font-size: 14px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.l-header-06__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ロゴ */
.l-header-06__logo {
    max-width: 200px;
    margin: 10px 0 0 0;
}

.l-header-06__logo a {
    display: block;
}

.l-header-06__logo a img {
    width: 100%;
    max-height: 45px;
}

/* ナビゲーション */
.l-header-06__nav {
    display: none;
}

/* ハンバーガーメニュー */
.l-header-06__menu__button {
    position: absolute;
    bottom: 3%;
    right: 15px;
    display: block;
}

.l-header-06__menu__button a {
    display: block;
    text-align: center;
    text-decoration: none;
    color: #1f2a34;
}

.l-header-06__menu__button i {
    font-size: 35px;
}

.l-header-06__sp-menu {
    width: 100%;
    height: 100%;
    background: #fefefe;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    padding: 100px 20px 65px 20px;
    transform: translateY(min(-100%, -1000px));
    transition: transform 0.5s;
}

.l-header-06__sp-menu.__open {
    transform: translateY(0);
    transition: transform 0.5s;
}

.l-header-06__sp-menu ul li {
    width: 100%;
    height: auto;
    border-top: 1px solid #919191;
}

.l-header-06__sp-menu ul li:hover {
    background: #747474;
}

.l-header-06__sp-menu ul li:last-child {
    border-bottom: 1px solid #919191;
}

.l-header-06__sp-menu ul li a {
    margin-left: 1em;
    text-decoration: none;
    font-size: 1em;
    line-height: 3em;
    color: #03b7ab;
    display: block;
    width: 100%;
    height: 3em;
}

.l-header-06__sp-menu ul li a:hover {
    color: #fff;
}

.l-header-06__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: #03b7ab;
}

.l-header-06__sp-menu--tel p {
    text-align: center;
}

.l-header-06__sp-menu--inquiry {
    display: flex;
    justify-content: center;
    margin: 20px auto 0 auto;
}

.l-header-06__sp-menu--inquiry__mail {
    width: 80%;
}

.l-header-06__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: #03b7ab;
    box-sizing: border-box;
}

.l-header-06__sp-menu--inquiry__mail a:hover {
    background: #767171;
}

.l-header-06__sp-menu--tel a {
    display: block;
    text-align: center;
}

@media print {
    .l-header-06__sp-menu {
        display: none;
    }
}

/* PC */
@media screen and (min-width: 768px) {
    .l-header-06 {
        padding: 0;
    }

    .l-header-06__inner {
        max-width: 1140px;
        margin: 0 auto;
        justify-content: flex-end;
    }

    .l-header-06 h1 {
        text-align: right;
        font-size: 16px;
        padding-top: 2px;
        -webkit-line-clamp: 1;
    }

    /* ロゴ */
    .l-header-06__logo {
        max-width: 170px;
        margin: 10px auto 10px 0;
    }

    /* ナビゲーション */
    .l-header-06__nav {
        display: block;
    }

    .l-header-06__nav ul {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .l-header-06__nav li {
        padding: 10px;
    }

    .l-header-06__nav li:last-child {
        padding-right: 0;
    }

    .l-header-06__nav a {
        position: relative;
        display: inline-block;
        text-align: center;
        text-decoration: none;
        color: #000;
    }

    .l-header-06__nav a::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 1px;
        bottom: -4px;
        left: 0;
        background: #000;
        transform: scale(0, 1);
        transform-origin: left top;
        transition: transform 0.3s;
    }

    .l-header-06__nav a:hover::after {
        transform: scale(1, 1);
    }

    .l-header-06__menu__button {
        display: none;
    }

    .l-header-06__sp-menu {
        display: none;
    }
}

/* PC(768px～900px) */
@media screen and (min-width: 920px) {
    .l-header-06__logo {
        max-width: 270px;
    }

    .l-header-06__nav li {
        padding: 10px 15px;
    }
}

/**
 * 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;
    }
}

/*=================================

* メインビジュアル

=================================*/
.l-main-visual__inner {
    height: 280px;
    background-repeat: no-repeat;
    background-position: 46% 40%;
    background-size: cover;
    background-image: url(../img/main-visual.jpg);
}

.l-main-visual__title {
    position: relative;
    height: 280px;
}

.l-main-visual__title h2 {
    position: absolute;
    top: 40px;
    left: 13%;
    line-height: 1.2;
    font-size: clamp(25px, 3.2552083333vw, 30px);
    font-family: "Noto Serif JP", serif;
    font-weight: 900;
    color: #333;
    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__inquiry {
    width: 100%;
    color: #ffffff;
    background-color: #029288;
}

.l-main-visual__inquiry__block {
    padding: 25px 30px 35px 30px;
}

.l-main-visual__inquiry__block h3 {
    position: relative;
    margin-bottom: 15px;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
}

.l-main-visual__inquiry__tel {
    margin-bottom: 30px;
}

.l-main-visual__inquiry__tel p {
    margin-bottom: 10px;
}

.l-main-visual__inquiry__tel p span {
    font-size: 37px;
    font-weight: bold;
    color: #f9ce00;
    font-family: "Century Gothic", "arial", "Yu Gothic", sans-serif;
    line-height: 1;
}

.l-main-visual__inquiry__tel p span a {
    text-decoration: none;
    color: #f9ce00;
}

.l-main-visual__inquiry__button {
    text-align: center;
    background-color: #ffffff;
}

.l-main-visual__inquiry__button a {
    display: block;
    padding: 20px 0;
    text-decoration: none;
    font-weight: bold;
    color: #029288;
}

.l-main-visual__inquiry__button i {
    font-size: 23px;
    vertical-align: text-bottom;
}

/* PC(768px～1200px) */
@media screen and (min-width: 768px) {
    .l-main-visual {
        position: relative;
        height: 600px;
        margin-bottom: 0;
    }

    .l-main-visual__inner {
        height: 600px;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .l-main-visual__title {
        max-width: 1140px;
        margin: 0 auto;
        height: 600px;
    }

    .l-main-visual__title h2 {
        width: calc(100% - 350px);
        top: 13%;
        left: 0;
        font-size: clamp(35px, 3.9473684211vw, 53px);
    }

    .l-main-visual__inquiry {
        position: absolute;
        top: 13%;
        right: 10px;
        display: block;
        width: 342px;
    }

    .l-main-visual__inquiry__block {
        padding: 30px 30px 35px 30px;
    }

    .l-main-visual__inquiry__block h3 {
        font-size: 35px;
    }

    .l-main-visual__inquiry__button a:hover {
        color: #03b7ab;
        background-color: #f9ce00;
    }
}

/* PC(1200px～) */
@media screen and (min-width: 1200px) {
    .l-main-visual__title h2 {
        width: 700px;
    }

    .l-main-visual__inquiry {
        right: calc(50% - 570px);
    }
}

/*=========================================

* フッター-08

==========================================*/
.l-footer-08 {
    background-color: #F8F8F8;
    border-top: none;
}

.l-footer-08__inner {
    width: 90%;
    margin: 0 auto;
    padding: 20px 0;
}

.l-footer-08__logo img {
    width: 70%;
    max-width: 300px;
    margin-bottom: 15px;
}

.l-footer-08__info__sns {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.l-footer-08__info__sns a:hover {
    opacity: 0.7;
}

.l-footer-08__info__sns img {
    width: 40px;
}

.l-footer-08__info__sns a:not(:first-child) {
    margin-left: 15px;
}

.l-footer-08__contact {
    margin-top: 30px;
}

.l-footer-08__contact h3 {
    position: relative;
    width: 100%;
    height: 14px;
    text-align: center;
    border-bottom: 1px solid #000;
}

.l-footer-08__contact h3 span {
    padding: 0 10px;
    font-size: 18px;
    background-color: #f8f8f8;
}

.l-footer-08__contact__shop__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.l-footer-08__contact__shop__tel a {
    font-size: clamp(35px, 5.2083333333vw, 40px);
    font-family: "Arial", sans-serif;
    color: #333;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
}

.l-footer-08__contact__shop__tel i {
    margin-right: 5px;
}

.l-footer-08__contact__inquiry {
    margin-top: 15px;
}

.l-footer-08__contact__inquiry a {
    display: block;
    width: 100%;
    padding: 12px 0;
    color: #029288;
    text-align: center;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #029288;
}

.l-footer-08__contact__inquiry a:hover {
    color: #fff;
    background-color: #029288;
}

.copyright {
    padding: 10px 0 !important;
    text-align: center !important;
    background-color: #03b7ab !important;
}

/* スマホ */
@media screen and (max-width: 400px) {
    .l-footer-08__info {
        text-align: center;
    }

    .l-footer-08__contact__shop__info {
        flex-direction: column-reverse;
        text-align: center;
    }
}

/* PC */
@media screen and (min-width: 768px) {
    .l-footer-08__inner {
        display: flex;
        justify-content: space-between;
        width: unset;
        max-width: 1140px;
        margin: 0 auto;
        padding: 20px 10px;
    }

    .l-footer-08__logo img {
        margin-bottom: 10px;
    }

    .l-footer-08__info {
        padding-top: 5px;
        width: 40%;
    }

    .l-footer-08__info__sns {
        justify-content: flex-start;
        margin-top: 15px;
    }

    .l-footer-08__info__sns img {
        width: 35px;
    }

    .l-footer-08__info__sns a:not(:first-child) {
        margin-left: 10px;
    }

    .l-footer-08__contact__shop__open {
        width: 45%;
    }

    .l-footer-08__info p {
        font-size: 17px;
    }

    .l-footer-08__contact__shop__tel a {
        font-size: clamp(30px, 3.0701754386vw, 40px);
    }

    .l-footer-08__contact {
        width: 50%;
        margin-top: 0;
    }

    .l-footer-08__contact__inquiry {
        margin-top: 10px;
    }
}

/* フッターナビゲーション
==============================*/
.l-footer-08__nav {
    padding: 20px 10px;
    background-color: #fff;
}

.l-footer-08__nav__inner {
    padding: 0 8px;
}

.l-footer-08__nav__inner ul {
    display: flex;
    flex-wrap: wrap;
}

.l-footer-08__nav__inner li:not(:last-child) {
    margin-right: 30px;
}

.l-footer-08__nav__inner li a {
    font-size: 15px;
    color: #000;
    text-decoration: none;
}

.l-footer-08__nav__inner li a:hover {
    color: #03b7ab;
}

.l-footer-08__nav__inner li a::before {
    content: ">";
    margin-right: 3px;
}

/* PC */
@media screen and (min-width: 768px) {
    .l-footer-08__nav__inner {
        max-width: 1140px;
        margin: 0 auto;
        padding: 0;
    }
}

/* SP */
@media screen and (max-width: 767px) {
    .btn__page_top {
        display: none !important;
    }
}

/* ━━━━━━━━━━━━━━━━

 ■プロジェクト

━━━━━━━━━━━━━━━━ */
/*=================================

* トップ

=================================*/
/*
　About
================================*/
.p-about .l-section__container {
    padding: 0;
}

.p-about__image {
    margin-bottom: 30px;
}

.p-about__image img {
    width: 100%;
    height: 250px;
    -o-object-fit: cover;
    object-fit: cover;
}

.p-about__text {
    padding: 0 15px;
    line-height: 1.6;
    font-size: 16px;
}

/* PC */
@media screen and (min-width: 768px) {
    .p-about {
        padding-bottom: 100px;
    }

    .p-about__block {
        display: flex;
        justify-content: space-between;
    }

    .p-about__text {
        order: 1;
        width: calc(100% - 480px);
        margin-right: 30px;
        padding: 0;
        font-size: 18px;
    }

    .p-about__image {
        order: 2;
        margin-bottom: 0;
    }

    .p-about__image img {
        width: 450px;
        height: 300px;
    }
}

/*
　お知らせ-01
================================*/
.c-news-list-01__title h2 {
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
}

.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: #03b7ab;
    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: #03b7ab;
        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: #03b7ab;
        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: #029288;
    }

    .c-news-list-01__button__pc .fa {
        margin-left: 10px;
    }

    .c-news-list-01__button__sp {
        display: none;
    }
}

/*
　施工事例-01
================================*/
.c-reform-list-01 {
    width: 95%;
    margin: 0 auto;
}

.c-reform-list-01 li {
    margin-bottom: 30px;
    background-color: #fff;
}

.c-reform-list-01 li a {
    display: block;
    text-decoration: none;
    color: #000;
}

.c-reform-list-01 li a:hover {
    opacity: 0.7;
}

.c-reform-list-01__image {
    width: 100%;
    height: 230px;
}

.c-reform-list-01__image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.c-reform-list-01__text {
    padding: 15px;
}

.c-reform-list-01__text h3 {
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 7px;
}

.c-reform-list-01__label {
    display: inline-block;
    padding: 3px 10px 5px 10px;
    font-size: 14px;
    color: #fff;
    background-color: #767171;
}


/* PC */
@media screen and (min-width:768px) {
    .c-reform-list-01 {
        width: 100%;
    }

    .c-reform-list-01 ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .c-reform-list-01 ul::after {
        content: '';
        display: block;
        width: 31%;
    }

    .c-reform-list-01 li {
        width: 31%;
    }

    .c-reform-list-01__image, 
    .c-reform-list-01__image img {
        height: 250px;
    }

    .c-reform-list-01__text {
        padding: 10px 20px 15px 20px;
    }

}

/*
　事業案内
================================*/
.p-service {
    width: 95%;
    margin: 0 auto;
}

.p-service__block {
    margin-bottom: 50px;
    background-color: #fff;
}

.p-service__block__image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
    -o-object-fit: cover;
    object-fit: cover;
}

.p-service__block__title {
    padding: 15px 10px;
    text-align: center;
}

.p-service__block__title h3 {
    margin-bottom: 5px;
    font-size: 24px;
    font-weight: bold;
    color: #029288;
}

/* PC */
@media screen and (min-width: 768px) {
    .p-service {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .p-service__block {
        width: 30%;
    }

    .p-service__block__title h3 {
        font-size: 26px;
    }

    .p-service__block__title p {
        font-size: 18px;
    }
}

/*=================================

* 会社案内

=================================*/
/*
　紹介文
================================*/
.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 #03b7ab;
    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: #03b7ab;
}

.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;
    }
}

/*
　代表あいさつ
================================*/
.p-company__greeting {
    width: 95%;
    margin: 0 auto;
}

.p-company__greeting h3 {
    margin-bottom: 25px;
    font-size: clamp(24px, 3.125vw, 28px);
    font-weight: 900;
    color: #03b7ab;
    font-family: "Noto Serif JP", serif;
    line-height: 1.5;
}

.p-company__greeting__text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.p-company__greeting__ceo-signature {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.p-company__greeting__ceo-title {
    font-size: 16px;
    margin-top: 6px;
}

.p-company__greeting__ceo-signature img {
    width: 100px;
}

.p-company__greeting__img {
    width: 100%;
}

.p-company__greeting__img img {
    display: block;
    width: 100%;
    max-height: 350px;
    margin: 0 auto;
    -o-object-fit: contain;
    object-fit: contain;
}

/* PC */
@media screen and (min-width: 768px) {
    .p-company__greeting {
        width: 100%;
    }

    .p-company__greeting__inner {
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }

    .p-company__greeting h3 {
        margin-bottom: 30px;
        font-size: clamp(25px, 2.1929824561vw, 40px);
        text-align: center;
    }

    .p-company__greeting__text p {
        margin-bottom: 0;
        font-size: clamp(16px, 1.4035087719vw, 17px);
    }
    
     .p-company__greeting__ceo-title {
        margin-top: 24px;
    }
    
    .p-company__greeting__ceo-signature img {
        width: 150px;
    }

    .p-company__greeting__img {
        width: 65%;
    }

    .p-company__greeting__img img {
        max-height: 500px;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

/*
　スタッフ紹介バナー
================================*/
.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: #03b7ab;
    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;
    }
}