<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/* ━━━━━━━━━━━━━━━━

 ■初期化

━━━━━━━━━━━━━━━━ */

body {
    font-family: 'Noto Sans Japanese', sans-serif;
    min-width: auto !important;
}



/* ━━━━━━━━━━━━━━━━

 ■ユーティリティ

━━━━━━━━━━━━━━━━ */

.u-text-right {
       text-align: right;
}

.u-mb-50 {
    margin-bottom: 50px !important;
}

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

* media

=================================*/
@media screen and (max-width:767px) {
    .u-hidden-sp {
        display: none;
    }
}

@media screen and (min-width:768px) {
    .u-hidden-pc {
        display: none;
    }
}

@media print {
    .l-header__sp-menu {
        display: none;
    }
}



/* ━━━━━━━━━━━━━━━━

 ■コンポーネント

━━━━━━━━━━━━━━━━ */


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

* コンテナ

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

.c-button-container {
    padding: 50px 0 0 0;
    text-align: center;
}

/*
　プライマリボタン
================================*/
.c-button--primary {
    display: block;
    width: 90%;
    padding: 12px 10px;
    margin: 0 auto;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    color: #089457;
    background-color: #fff;
    border: solid 2px #089457;
    border-radius: 5px;
}

.c-button--primary i {
    margin-left: 10px;
}

.c-button--primary,
.c-button--primary:link,
.c-button--primary:visited {
    text-decoration: none;
    color: #089457;
}

.c-button--primary:hover {
    opacity: 1.0;
    color: #fff;
    background: #089457;
}

@media screen and (min-width:768px) {
    .c-button--primary {
        width: 380px;
    }
}

/*
　H2タイトル
================================*/
h2.tit {
    position: relative;
    margin: 0 auto 30px auto;
    padding: 5px 8px;
    text-align: center;
    line-height: 1.4;
    font-family: 'Noto Serif JP', serif;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    background-color: transparent !important;
}

h2.tit::after {
    content: '';
    position: absolute;
    left: calc(50% - 23px);
    bottom: 0;
    display: block;
    width: 46px;
    border: 1px solid #089457;
}

/* PC */
@media screen and (min-width:768px) {
    h2.tit {
        max-width: 1140px;
        margin: 0 auto 50px auto;
        padding: 5px 8px 7px 8px;
        font-size: clamp(28px, 32 / 1140 * 100vw, 32px);
    }
}



/* ━━━━━━━━━━━━━━━━

 ■レイアウト

━━━━━━━━━━━━━━━━ */


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

* セクション

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

.l-section {
    padding: 50px 0;
}

.l-section.l-section--gray {
    background: #f5f5f5;
}

.l-section.l-section--blue {
    background: #eaf3f9;
}

.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;
    }
}


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

* ヘッダー

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

.l-header {
    position: relative;
    width: 100%;
    margin: 0;
    padding-top: 60px;
}

.l-header__wrapper {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 60px;
    top: 0;
    padding: 7px 10px;
    background-color: rgba(250, 250, 250, 0.9);
    box-shadow: 0 0 6px rgb(0 0 0 / 20%);
    z-index: 99;
    box-sizing: border-box;
}

/* ロゴ */
.l-header__logo {
    max-width: 130px;
}

.l-header__logo a {
    display: block;
    text-decoration: none;
}

.l-header__logo span {
    font-size: 18px !important;
    font-weight: 900;
    color: #333;
}
            
.l-header__logo img {
    display: block;
    width: 100%;
}

.l-header__nav {
    display: none;
}

.l-header__inquiry {
    display: none;
}

.open .l-header__nav {
    display: block;
    z-index: 15;
}

/* ハンバーガーメニュー */
.l-header__menu__button {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 25px;
    display: block;
}

.l-header__menu__button a {
    display: block;
    text-align: center;
    text-decoration: none;
    color: #1f2a34;
}
                    
.l-header__menu__button i {
    font-size: 35px;
}

.l-header__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 .5s;
    box-sizing: border-box;
}

.l-header__sp-menu.__open {
    transform: translateY(0);
    transition: transform .5s;
}

.l-header__sp-menu ul li {
    width: 100%;
    height: auto;
    border-top: 1px solid #919191;
}

.l-header__sp-menu ul li:hover {
    background: #747474;
}

.l-header__sp-menu ul li:last-child {
    border-bottom: 1px solid #919191;
}

.l-header__sp-menu ul li a {
    margin-left: 1em;
    text-decoration: none;
    font-size: 1em;
    line-height: 3em;
    color: #0b3c5d;
    display: block;
    width: 100%;
    height: 3em;
}

.l-header__sp-menu ul li a:hover {
    color: #fff;
}

/* ページタイトル */
.l-header__page-title {
    padding: 10px 8px;
    font-size: 13px;
}

/* PC */
@media screen and (min-width:1100px) {
    .l-header {
        padding-top: 83px;
    }

    .l-header__wrapper {
        display: block;
        justify-content: flex-end;
        height: 83px;
        padding: 0;
    }

    .l-header__inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 100%;
    }

    /* ロゴ */
    .l-header__logo {
        max-width: 200px;
        margin: 0 auto 0 15px;
    }

    .l-header__logo span {
        line-height: 40px;
        font-size: clamp(24px, 26 / 1140 * 100vw, 26px) !important;
    }

    .l-header__logo img {
        max-width: clamp(200px, 270 / 1140 * 100vw, 270px);
        height: 70px;
    }

    /* ナビゲーション */
    .l-header__nav {
        display: block;
    } 

    .l-header__nav ul {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
    
    .l-header__nav li {
        padding: 10px 15px;
    }
    
    .l-header__nav li a {
        position: relative;
        display: inline-block;
        text-decoration: none;
        color: #000;
    }
    
    .l-header__nav li a::after {
        position: absolute;
        bottom: -4px;
        left: 0;
        content: '';
        width: 100%;
        height: 1px;
        background: #333;
        transform: scale(0, 1);
        transform-origin: left top;
        transition: transform .3s;
    }
    
    .l-header__nav li a:hover::after {
        transform: scale(1, 1);
    }
    
    /* 問合せ */
    .l-header__inquiry {
        display: flex;
        align-items: center;
    }
    
    .l-header__inquiry--tel {
        display: block;
        margin-left: 15px;
        margin-right: 15px;
    }
    
    .l-header__inquiry--tel a {
        text-decoration: none;
        font-size: 22px;
        color: #000;
        font-family: 'Century Gothic', "Arial", 'Noto Sans Japanese', sans-serif;
    }

    .l-header__inquiry--tel a i {
        margin-right: 5px;
    }

    .l-header__inquiry--mail {
        margin-left: 15px;
    }

    .l-header__inquiry--mail a {
        display: block;
        width: 100px;
        padding: 20px 0;
        text-decoration: none;
        text-align: center;
        font-size: 14px;
        color: #fff;
    }

    .l-header__inquiry--mail i {
        font-size: 20px;
    }

    .l-header__inquiry--mail {
        background-color: #089457;
    }
    
    .l-header__inquiry--mail:hover {
        background-color: #f4bd49;
    }

    /* ハンバーガーメニュー*/
    .l-header__menu__button {
        display: none;
    }

    /* ページタイトル */
    .l-header__page-title {
        max-width: 1140px;
        margin: 0 auto;
        padding: 10px 8px;
        font-size: 14px;
    }
}

/* PC */
@media only screen and (min-width: 1100px) and (max-width: 1200px) {
    .l-header__inquiry--tel {
        display: none;
    }
}


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

* メインビジュアル

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

.l-main-visual {
    min-height: 250px;
    margin-bottom: 50px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../img/main-visual.jpg);
    background-position: center;
}

.l-main-visual__inner {
    width: 90%;
    margin: 0 auto;
}

.l-main-visual__inner h1 {
    padding: 40px 0;
    line-height: 1.4;
    font-family: 'Noto Serif JP', serif;
    font-size: 24px;
    font-weight: 900;
    color: #089457;
    text-shadow: 
    #fff 3px 3px 3px, #fff -3px -3px 3px, 
    #fff -3px 3px 3px, #fff 3px -3px 3px, 
    #fff 3px 0px 3px, #fff -3px 0px 3px, 
    #fff 0px 3px 3px, #fff 0px -3px 3px;
}

/* PC */
@media screen and (min-width:768px) {
    .l-main-visual {
        min-height: 550px;
        margin-bottom: 100px;
    }

    .l-main-visual__inner {
        max-width: 1140px;
        padding: 0 8px;
        margin: 0 0 0 100px;
    }

    .l-main-visual__inner h1 {
        padding: 100px 0;
        font-size: clamp(44px, 54 / 1140 * 100vw, 54px);
    }
}


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

* フッター

=================================*/
.l-footer {
    width: 100%;
    background: #089457;
}

.l-footer__inner {
    margin: 0 auto;
    padding: 15px 0;
}

.l-footer__company {
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.l-footer__company img {
    width: auto;
    height: clamp(70px, 115 / 1140 * 100vw, 115px);
    display: inline-block;
    margin-right: 10px;
}

.l-footer__company span {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}
        
.l-footer__nav {
    display: none;
}

.l-footer__bottom__nav {
    position: fixed;
    box-sizing: border-box;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 10px;
    background-color: #ffffff;
    box-shadow: 0 0 6px rgb(0 0 0 / 20%);
    z-index: 50;
}

.l-footer__bottom__nav ul {
    display: flex;
    justify-content: space-around;
}

.l-footer__bottom__nav li {
    width: 20%;
}
                
.l-footer__bottom__nav a {
    display: block;
    text-align: center;
    text-decoration: none;
    color: #1f2a34;
}
                    
.l-footer__bottom__nav i {
    font-size: 30px;
}
        
.l-footer__bottom__nav span {
    display: block;
    font-size: 12px;
    font-weight: bold;
}

/* PC */
@media screen and (min-width:768px) {
    footer {
        border-top: none;
    }

    .l-footer {
        margin-bottom: 0;
    }

    .l-footer__inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1140px;
        padding: 15px 8px;
    }

    .l-footer__company {
        max-width: 450px;
        margin: 0;
        text-align: left;
    }

    .l-footer__company span {
        font-size: clamp(18px, 24 / 1140 * 100vw, 24px);
    }

    .l-footer__nav {
        display: block;
        width: calc(100% - 500px);
        margin-bottom: 0;
        font-size: 16px;
    }

    .l-footer__nav ul {
        display: flex;
        flex-wrap: wrap;
    }
                    
    .l-footer__nav li {
        display: flex;
        padding: 5px 20px;
        width: auto;
    }

    .l-footer__nav li a {
        text-decoration: none;
        color: #fff;
    }

    .l-footer__nav li a:hover {
        color: #f4bd49;
    }

    .l-footer__bottom__nav {
        display: none;
    }
}


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

* Copyright

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

.copyright {
    background-color: #089457 !important;
    padding: 8px 0 75px 0 !important;
    color: #fff;
}

/* PC */
@media screen and (min-width:768px) {
    .copyright {
        padding: 8px 0 8px 0 !important;
    }
}


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

* ページの先頭へ

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

/* SP */
@media screen and (max-width: 767px) {
    .btn__page_top {
      display: none !important;
    }
}



/* ━━━━━━━━━━━━━━━━

 ■プロジェクト

━━━━━━━━━━━━━━━━ */


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

* トップ

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

/*
　あいさつ-02
================================*/
.sc-greeting-02 {
    padding: 50px 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.sc-greeting-02__inner {
    width: 90%;
    margin: 0 auto;
    padding: 50px 25px;
    background-color: rgba(255, 255, 255, 0.9); 
    box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
    box-sizing: border-box;
}

.sc-greeting-02__inner h2 {
    margin-bottom: 30px;
    text-align: center;
    font-family: 'Noto Serif JP', serif;
    font-size: 20px;
    font-weight: bold;
}

.sc-greeting-02__inner p {
    line-height: 1.6;  
}

.sc-greeting-02__ceo-signature {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.sc-greeting-02__ceo-title {
    font-size: 16px;
    margin-top: 15px;
}

.sc-greeting-02__ceo-signature img {
    width: 150px;
}

@media screen and (min-width: 768px) {
    .sc-greeting-02 {
        padding: 80px 0;
    }
    
    .sc-greeting-02__inner {
        max-width: 1140px;
        padding: 50px 110px;
    }
    
    .sc-greeting-02__inner h2 {
        font-size: 30px;
    }
    
    .sc-greeting-02__ceo-title {
        margin-top: 24px;
    }
    
    .sc-greeting-02__ceo-signature img {
        width: 200px;
    }
}

/*
　特徴3カラム-02
================================*/
.sc-feature-col3-02 li {
    width: 95%;
    margin: 0 auto 50px auto;
}

.sc-feature-col3-02 li:last-child {
    margin-bottom: 0;
}

.sc-feature-col3-02__image {
    margin-bottom: 20px;
}

.sc-feature-col3-02__image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.sc-feature-col3-02__text {
    display: block;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

.sc-feature-col3-02 h3 {
    margin: 0 0 15px 0;
    padding: 0;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
}

/* PC */
@media screen and (min-width:768px) {
    .sc-feature-col3-02 {
        margin-bottom: -50px;
        padding: 0 8px;
    }

    .sc-feature-col3-02 ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .sc-feature-col3-02 ul::after {
        content: '';
        display: block;
        width: 30%;
    }

    .sc-feature-col3-02 li {
        width: 30%;
        margin: 0 0 50px 0;
    }

    .sc-feature-col3-02 li:last-child {
        margin-bottom: 50px;
    }

    .sc-feature-col3-02 h3 {
        text-align: center;
        font-size: 24px;
    }
}

/*
　新着物件3カラム-01
================================*/
.sc-estate-new-col3-01 li {
    position: relative;
    width: 90%;
    margin:0 auto 50px auto;
    border: solid 1px #9c9c9c;
    background-color: #f5f5f5;
}

.sc-estate-new-col3-01 li:last-child {
    margin-bottom: 0;
}

.sc-estate-new-col3-01 a {
    display: block;
    text-decoration: none;
    color: #333;
}
                
.sc-estate-new-col3-01__image {
    position: relative;
}

.sc-estate-new-col3-01__image img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
}
    
.sc-estate-new-col3-01__label {
    position: absolute;
    bottom: 0;
    left: 0;
    display: inline-block;
    padding: 5px 10px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.7);
}

.sc-estate-new-col3-01__price {
    line-height: 1.3;
    font-size: 20px;
    font-weight: bold;
}

.sc-estate-new-col3-01__price span {
    margin-left: 2px;
    font-size: 17px;
}
    
.sc-estate-new-col3-01__textarea {
    padding: 15px 20px;
}
                    
.sc-estate-new-col3-01__type {
    display: inline-block;
    margin-bottom: 10px;
    padding: 3px 10px;
    line-height: 1.6;
    font-size: 14px;
    color: #fff;
    background-color: #089457;
}

.sc-estate-new-col3-01__type[data-type*="賃貸"]{
    background: #f4bd49;
}

.sc-estate-new-col3-01__address {
    margin-bottom: 10px;
    font-weight: bold;
}

.sc-estate-new-col3-01__access {
    margin-bottom: 10px;
    font-size: 15px;
}
                        
.sc-estate-new-col3-01__catchcopy {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-align: left;
    font-size: 15px;
    color: #089457;
}

/* PC */
@media screen and (min-width:768px) {
    .sc-estate-new-col3-01 {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-bottom: -50px;
        padding: 0 8px;
    }

    .sc-estate-new-col3-01::after {
        content: '';
        display: block;
        width: 30%;
    }

    .sc-estate-new-col3-01 li {
        width: 30%;
        margin: 0 0 50px 0;
    }

    .sc-estate-new-col3-01 li:last-child {
        margin-bottom: 50px;
    }

    .sc-estate-new-col3-01 a {
        height: 100%;
    }

    .sc-estate-new-col3-01 a:hover {
        opacity: 0.6;
    }

    .sc-estate-new-col3-01__price {
        font-size: 22px;
    }

    .sc-estate-new-col3-01__price span {
        font-size: 18px;
    }
}

/*
　お知らせ-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: #089457;
    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: #089457;
        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: #089457;
        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: #f4bd49;
    }

    .c-news-list-01__button__pc .fa {
        margin-left: 10px;
    }

    .c-news-list-01__button__sp {
        display: none;
    }
}

/*
　SEOブログ-01（成約事例）
================================*/
.sc-blog-list-01 {
    width: 95%;
    margin: 0 auto;
    box-sizing: border-box;
}

.sc-blog-list-01 li {
    margin-bottom: 50px;
}

.sc-blog-list-01 li:last-child {
    margin-bottom: 0;
}

.sc-blog-list-01 li a {
    display: block;
    text-decoration: none;
}

.sc-blog-list-01__image {
    margin-bottom: 15px;
}

.sc-blog-list-01__image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 13px;
}

.sc-blog-list-01__content__title {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: bold;
    font-weight: bold;
    color: #333;
}

.sc-blog-list-01__content__text {
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    color: #333;
    overflow: hidden;
}

.sc-blog-list-01__content__tag {
    margin-bottom: 10px;
}

.sc-blog-list-01__content__tag span {
    display: inline-block;
    margin-bottom: 5px;
    padding: 5px 10px;
    font-size: 14px;
    color: #fff !important;
    background-color: #f4bd49;
}

.sc-blog-list-01__content__date {
    font-size: 14px;
    color: #666;
}

/* PC */
@media screen and (min-width:768px) {
    .sc-blog-list-01 {
        width: 100%;
        padding: 0 8px;
    }

    .sc-blog-list-01 li {
        margin-bottom: 0;
        padding: 30px 0;
        border-bottom: dotted 1px #9e9e9e;
    }

    .sc-blog-list-01 li:last-child {
        border-bottom: none;
    }
    
    .sc-blog-list-01 li a {
        display: flex;
        justify-content: space-between;
    }

    .sc-blog-list-01 li a:hover {
        opacity: 0.7;
    }

    .sc-blog-list-01__image {
        width: 30%;
        margin-bottom: 0;
        margin-right: 50px;
        padding: 0;
    }

    .sc-blog-list-01__content {
        width: 70%;
        margin-bottom: 0;
        padding: 0;
    }
}

/*
　会社概要-05
================================*/
.sc-company-05 {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    width: 95%;
    margin: 0 auto;
    box-sizing: border-box;
}

.sc-company-05 img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.sc-company-05 img:nth-child(2),
.sc-company-05 img:nth-child(3) {
    width: 48%;
}

/* PC */
@media screen and (min-width:768px) {
    .sc-company-05 {
        display: flex;
        justify-content: space-between;
        gap: 0;
        width: 100%;
        padding: 0 8px;
    }

    .sc-company-05::after {
        content: '';
        display: block;
        width: 31%;
    }

    .sc-company-05 &gt; img {
        width: 31%;
    }

    .sc-company-05 img:nth-child(2),
    .sc-company-05 img:nth-child(3) {
        width: 31%;
    }
}

/*
　会社概要-02
================================*/
.sc-company-02 {
    width: 95%;
    margin: 0 auto;
    box-sizing: border-box;
}

.sc-company-02__content__detail {
    margin-bottom: 30px;
}

.sc-company-02__content__detail dl &gt; div {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 13px 10px;
    font-weight: bold;
    border-top: dotted 1px #908a6a;
    box-sizing: border-box;
}

.sc-company-02__content__detail dl &gt; div:last-child {
    border-bottom: dotted 1px #908a6a;
}

.sc-company-02__content__detail dt {
    width: calc(100% - 70%);
    text-align: center;
}

.sc-company-02__content__detail dd {
    width: 65%;
}

.sc-company-02__content__map {
    height: 250px;
}

/* PC */
@media screen and (min-width: 768px) {
    .sc-company-02 {
        max-width: 900px;
    }

    .sc-company-02__content__detail dt {
        width: calc(100% - 80%);
        text-align: center;
    }

    .sc-company-02__content__detail dd {
        width: 75%;
    }

    .sc-company-02__content__map {
        height: 400px;
    }
}

/*
　よくある質問-01
================================*/
.sc-ques-list-01 {
    width: 95%;
    margin: 0 auto;
}

.sc-ques-list-01 dl {
    margin-bottom: 30px;
}

.sc-ques-list-01 dl:last-child {
    margin-bottom: 0;
}

.sc-ques-list-01 dt,
.sc-ques-list-01 dd {
    line-height: 1.7;
}

.sc-ques-list-01 dt {
    margin-bottom: 10px;
}

.sc-ques-list-01 dt p,
.sc-ques-list-01 dd p {
    display: inline-block;
    width: calc(100% - 60px);
    margin-left: 10px;
    padding: 8px;
    font-size: 16px;
    background-color: #fff;
    border: solid 1px #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.sc-ques-list-01 dt:before,
.sc-ques-list-01 dd:before {
    content: "Q";
    display: inline-block;
    width: 35px;
    height: 35px; 
    vertical-align: top;
    text-align: center;
    line-height: 35px;
    font-family: "Arial", sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    background-color: #089457; 
    border-radius: 50%; 
}

.sc-ques-list-01 dd:before {
    content: "A";
    background-color: #ccc;
}

/* PC */
@media screen and (min-width:768px) {
    .sc-ques-list-01 dt:before,
    .sc-ques-list-01 dd:before {
        width: 45px;
        line-height: 45px;
        height: 45px; 
        font-size: 27px;
    }
}

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

* 下層ページ

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

* 会社概要ページ

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

/*
　会社概要-02
================================*/
.c-company-02__detail__list {
    display: flex;
    align-items: flex-start;
    padding: 10px 0;
}

.c-company-02__detail__list:nth-child(odd) {
    background: #F5F5F5;
}

.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: #089457;
    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;
    }
}

/* 店舗写真
======================= */
.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;
    }
}</pre></body></html>