@charset "UTF-8";

/* ━━━━━━━━━━━━━━━━

 ■初期化

━━━━━━━━━━━━━━━━ */

body {
    font-family: 'Noto Sans Japanese', sans-serif;
    min-width: auto !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;
    }
}

/**
 * margin
*/

.u-mr-5 {
    margin-right: 5px !important;
}
  
.u-mr-10 {
    margin-right: 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-20 {
    margin-bottom: 20px !important;
}

.u-mb-30 {
    margin-bottom: 30px !important;
}

.u-mb-50 {
    margin-bottom: 50px !important;
}
  
/**
 * Padding
*/

.u-pt-0 {
    padding-top: 0 !important;
}

.u-pt-50 {
    padding-top: 50px !important;
}

.u-pb-0 {
    padding-bottom: 0 !important;
}

/**
 * Text
*/

.u-text-center {
    text-align: center;
}

@media screen and (min-width:768px) {
    .u-text-pc-center {
        text-align: center;
    }
}



/* ━━━━━━━━━━━━━━━━

 ■コンポーネント

━━━━━━━━━━━━━━━━ */


/*=================================

* コンテナ

=================================*/

.c-button-container {
    padding: 50px 0 0 0;
    text-align: center;
}

/*
　プライマリボタン
================================*/
.c-button--primary {
    width: 90%;
    display: block;
    margin: 0 auto;
    padding: 12px 5px;
    text-align: center;
    border-radius: 30px;
    border: 2px solid #1d2d50;
    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--primary,
.c-button--primary:link,
.c-button--primary:visited {
    text-decoration: none;
    color: #1d2d50;
    font-weight: bold;
}
  
.c-button--primary::after {
    background: #1d2d50;
    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--primary:hover {
    color: #FFF;
}
  
.c-button--primary:hover::after {
    transform: scale(1, 1);
}
  
@media screen and (min-width: 768px) {
    .c-button--primary {
      width: 35%;
      padding: 15px 10px;
      font-size: 17px;
    }
}

/*
　H2タイトル
================================*/
h2.tit {
    position: relative;
    margin: 0 auto 30px auto;
    padding: 5px 8px;
    text-align: center;
    line-height: 1.4;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    background-color: transparent !important;
}

h2.tit::after {
    content: '';
    position: absolute;
    left: calc(50% - 23px);
    bottom: -5px;
    display: block;
    width: 46px;
    border: 2px solid #1d2d50;
    border-radius: 50px;
}

/* 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, 28 / 1140 * 100vw, 30px);
    }
}

/*
　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: #1d2d50;
}

/* PC */
@media screen and (min-width:768px) {
    h3.tit {
        max-width: 1140px;
        padding: 0 0 10px 0;
    }
}


/* ━━━━━━━━━━━━━━━━

 ■レイアウト

━━━━━━━━━━━━━━━━ */


/*=================================

* セクション

=================================*/

.l-section {
    padding: 50px 0;
}

.l-section.l-section--gray {
    background: #f5f5f5;
}

.l-section.l-section--blue {
    background: #F1F5F8;
}

.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;
    }
}



/* ━━━━━━━━━━━━━━━━

 ■プロジェクト

━━━━━━━━━━━━━━━━ */


/*=================================

* ヘッダー

=================================*/
header {
    margin-bottom: 0;
    border-bottom: none;
}

.l-header {
    position: relative;
    width: 100%;
    height: 55px;
    margin: 0;
}

.l-header__wrapper {
    position: fixed;
    width: 100%;
    height: 55px;
    padding: 5px 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__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 45px;
}
 
/* ロゴ */
.l-header__logo {
    margin: 10px 0 10px 0;
    width: 220px;
}

.l-header__logo a {
    display: block;
    text-decoration: none;
}

.l-header__logo span {
    font-size: 23px !important;
    font-weight: 900;
    color: #333;
    font-family: "Noto Serif JP", serif;
}
            
.l-header__logo img {
    display: block;
    max-width: 200px;
    max-height: 50px;
}

/* 問合わせ */
.l-header__contact {
    display: none;
}

/* ナビゲーション */
.l-header__nav {
    display: none;
}

/* ハンバーガーメニュー */
.l-header__menu__button {
    display: block;
    padding-right: 10px;
}

.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 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 90px 20px 65px 20px;
    background: #fefefe;
    transform: translateY(min(-100%,-1000px));
    transition: transform .5s;
    z-index: 50;
}

.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 {
    display: block;
    width: 100%;
    height: 3em;
    margin-left: 1em;
    line-height: 3em;
    text-decoration: none;
    font-size: 1em;
    color: #1d2d50;
}

.l-header__sp-menu ul li a:hover {
    color: #fff;
}

.l-header__sp-menu--tel,
.l-header__sp-menu--mail {
    text-align: center;
}

.l-header__sp-menu--tel a {
    display: inline-block;
    margin-top: 50px;
    text-decoration: none;
    line-height: 1;
    font-family: "Arial", 'Noto Sans Japanese', sans-serif;
    font-size: 32px;
    font-weight: bold;
    color: #1d2d50;
}

.l-header__sp-menu--tel p {
    text-align: center;
    font-size: 16px;
    color: #5f5f5f;
}

.l-header__sp-menu--mail a {
    display: inline-block;
    margin: 30px auto;
    padding: 15px 40px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    color: #FFF;
    background-color: #1d2d50;
    box-sizing: border-box;
}

.l-header__sp-menu--mail a i {
    margin-right: 5px;
}

/* ページタイトル */
.l-header__page-title {
    padding: 10px 8px;
    font-size: 13px;
}

/* PC */
@media screen and (min-width:768px) {
    .l-header {
        height: auto;
    }

    .l-header__wrapper {
        position: relative;
        display: block;
        height: auto;
        padding: 0;
    }
    
    .l-header__inner {
        max-width: 1140px;
        height: auto;
        margin: 0 auto;
        padding: 13px 8px;
    }

    /* ロゴ */
    .l-header__logo {
        width: 320px;
        margin-left: 0;
    }

    .l-header__logo span {
        line-height: 1;
        font-size: clamp(24px, 30 / 1140 * 100vw, 35px) !important;
    }

    .l-header__logo img {
        max-width: clamp(200px, 270 / 1140 * 100vw, 270px);
        max-height: 60px;
    }

    /* コンタクト */
    .l-header__contact {
        display: flex;
        justify-content: flex-end;
        flex-wrap: wrap;
        align-items: center;
        width: 55%;
    }

    .l-header__contact__tel {
        width: 60%;
        margin-right: 10px;
        line-height: 1.2;
        text-align: right;
        font-size: 26px;
        font-family: 'Century Gothic', "Arial", 'Noto Sans Japanese', sans-serif;
    }

    .l-header__contact__tel i {
        margin-right: 5px;
    }

    .l-header__contact__mail {
        width: 170px;
    }
    
    .l-header__contact__mail a {
        display: block;
        padding: 4px 25px 6px 25px;
        text-align: center;
        text-decoration: none;
        font-weight: 500;
        color: #fff;
        border-radius: 3px;
        background: #1d2d50;
    }

    .l-header__contact__mail a i {
        margin-right: 5px;
    }
    
    .l-header__contact__mail a:hover {
        background-color: #133b5c;
    }
    
    /* ナビゲーション */
    .l-header__nav {
        display: block;
        border-bottom: 3px solid #1d2d50;
        border-top: 1px solid #ccc;
        background: #fff;
    }
                
    .l-header__nav ul {
        display: flex;
        align-items: center;
        max-width: 1140px;
        height: auto;
        margin: 0 auto;
    }

    .l-header__nav ul li {
        width: 16.5%;
        border-left: solid 1px #ccc;
    }

    .l-header__nav ul li:last-child {
        border-right: solid 1px #ccc;
    }

    .l-header__nav ul li a {
        display: block;
        padding: 10px 5px;
        text-align: center;
        text-decoration: none;
        font-size: clamp(15px, 16 / 1140 * 100vw, 16px);
        color: #333;
    }

    .l-header__nav ul li a:hover {
        color: #fff;
        background-color: #1d2d50;
    }

    .l-header__menu__button {
        display: none;
    }

    .l-header__sp-menu {
        display: none;
    }

    /* ページタイトル */
    .l-header__page-title {
        max-width: 1140px;
        margin: 0 auto;
        padding: 10px 8px;
        font-size: 14px;
    }
}


/*=================================

* メインビジュアル

=================================*/

.l-main-visual {
    min-height: 250px;
    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.6;
    font-family: "Noto Serif JP", serif;
    font-size: 24px;
    font-weight: 700;
    color: #1d2d50;
    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;
    }

    .l-main-visual__inner {
        max-width: 1140px;
        padding: 0 8px;
    }

    .l-main-visual__inner h1 {
        padding: 70px 0;
        font-size: clamp(44px, 54 / 1140 * 100vw, 54px);
    }
}

/*=========================================

* フッター-08

==========================================*/
.l-footer {
    background-color: #F8F8F8;
    border-top: none;
}

.l-footer__inner {
    width: 90%;
    margin: 0 auto;
    padding: 25px 0;
}

.l-footer__logo {
    margin-bottom: 15px;
    font-size: clamp(25px, 25 / 768 * 100vw, 30px);
    font-weight: 900;
    line-height: 1;
    color: #000;
    font-family: "Noto Serif JP", serif;
}

.l-footer__logo img {
    width: 70%;
    margin-bottom: 15px;
}

.l-footer__sns {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
  
.l-footer__sns__item {
    width: 15%;
    max-width: 45px;
    margin-right: 13px;
}
  
.l-footer__sns__item a {
    display: block;
    width: 100%;
    height: 100%;
}
  
.l-footer__sns__item a:hover {
    opacity: 0.6;
}
  
.l-footer__sns__item img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}

.l-footer__contact {
    margin-top: 30px;
}

.l-footer__contact h3 {
    position: relative;
    width: 100%;
    height: 14px;
    text-align: center;
    border-bottom: 1px solid #000;
}

.l-footer__contact h3 span {
    padding: 0 10px;
    font-size: 18px;
    background-color: #f8f8f8;
}

.l-footer__contact__shop__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.l-footer__contact__shop__tel a {
    font-size: clamp(35px, 40/768*100vw, 40px);
    font-family: "Arial", sans-serif;
    color: #333;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
}

.l-footer__contact__shop__tel i {
    margin-right: 5px;
}

.l-footer__contact__inquiry {
    margin-top: 15px;
}

.l-footer__contact__inquiry a {
    display: block;
    width: 100%;
    padding: 12px 0;
    color: #133b5c;
    text-align: center;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #133b5c;
}

.l-footer__contact__inquiry a:hover {
    color: #fff;
    background-color: #133b5c;
}

/* スマホ */
@media screen and (max-width: 400px) {
    .l-footer__info {
        text-align: center;
    }

    .l-footer__contact__shop__info {
        flex-direction: column-reverse;
        text-align: center;
    }
}

/* PC */
@media screen and (min-width: 768px) {
    .l-footer__inner {
        display: flex;
        justify-content: space-between;
        width: unset;
        max-width: 1140px;
        margin: 0 auto;
        padding: 20px 10px;
    }
    
    .l-footer__info {
        padding-top: 5px;
        width: 40%;
    }

    .l-footer__logo {
        font-size: clamp(25px, 25 / 1140 * 100vw, 30px);
    }

    .l-footer__logo img {
        width: 60%;
        margin-bottom: 0;
    }

    .l-footer__sns {
        justify-content: flex-start;
        margin-top: 15px;
    }

    .l-footer__sns__item {
        width: 12%;
        margin-right: 15px;
    }

    .l-footer__contact__shop__open {
        width: 45%;
    }

    .l-footer__info p {
        font-size: 17px;
    }

    .l-footer__contact__shop__tel a {
        font-size: clamp(30px, 35/1140*100vw, 40px);
    }
    
    .l-footer__contact {
        width: 50%;
        margin-top: 0;
    }

    .l-footer__contact__inquiry {
        margin-top: 10px;
    }

    .copyright {
        background-color: #1d2d50;
    }
}

/* フッターナビゲーション
==============================*/

.l-footer__nav {
    padding: 20px 10px;
    background-color: #fff;
}

.l-footer__nav__inner {
    padding: 0 8px
}

.l-footer__nav__inner ul {
    display: flex;
    flex-wrap: wrap;
}

.l-footer__nav__inner li:not(:last-child) {
    margin-right: 30px;
}

.l-footer__nav__inner li a {
    font-size: 15px;
    color: #000;
    text-decoration: none;
}

.l-footer__nav__inner li a::before {
    content: ">";
    margin-right: 3px;
}

/* PC */
@media screen and (min-width: 768px) { 
    .l-footer__nav__inner {
        max-width: 1140px;
        margin: 0 auto;
        padding: 0;
    }
}

/* SP */
@media screen and (max-width:767px) {
    .btn__page_top {
        display: none !important;
    }
}


/*=================================

* トップページ

=================================*/

/*
　当社について
=================================*/
.p-about .l-section__container {
    padding: 0;
}

.p-about__image {
    margin-bottom: 30px;
}

.p-about__image img {
    width: 100%;
    height: 250px;
    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;
    }
}

/*
　特徴（３カラム）-06
================================*/
.c-feature-col3-06 {
    width: 95%;
    margin: 0 auto;
}

.c-feature-col3-06 ul {
    display: flex;
    flex-direction: column;
}

.c-feature-col3-06 li {
    margin-bottom: 50px;
}

.c-feature-col3-06 li:last-child {
    margin-bottom: 0;
}

.c-feature-col3-06__image {
    border: 1px solid #B6BBC4;
    background-color: #FFF;
    border-radius: 5px;
    margin-bottom: 15px;
    padding: 7px;
    box-sizing: border-box;
    filter: drop-shadow(2px 2px 2px rgba(160, 160, 160, 0.7));
    font-size: 0;
}

.c-feature-col3-06__image img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
}

.c-feature-col3-06 h3 {
    margin-bottom: 10px;
    font-size: clamp(25px, 25 / 768 * 100vw, 30px);
    font-weight: bold;
    color: #1d2d50;
    text-align: center;
}

.c-feature-col3-06 p {
    line-height: 1.6;
}

/* PC */
@media screen and (min-width:768px) {
    .c-feature-col3-06 {
        width: 100%;
    }

    .c-feature-col3-06 ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 50px;
        width: 100%;
    }

    .c-feature-col3-06 li {
        width: 47%;
        margin-bottom: 0;
    }
    
    .c-feature-col3-06__image img {
        aspect-ratio: 2/1;
        object-position: 50% 45%;
    }

    .c-feature-col3-06 h3 {
        font-size: clamp(25px, 25 / 1140 * 100vw, 28px);
    }
    
    .c-feature-col3-06 p {
        padding: 0 10px;
        font-size: clamp(16px, 16 / 1140 * 100vw, 17px);
        letter-spacing: 0.05rem;
    }
}

/*
　物件情報-01
================================*/
.c-estate-list-col3-01 li {
    position: relative;
    margin-bottom:50px;
    background-color: #f5f5f5;
}

/* テキスト部分の背景：白色 */
.l-section--gray .c-estate-list-col3-01 li {
    background-color: #fff;
}
            
.c-estate-list-col3-01 a {
    display: block;
    height: 100%;
    text-decoration: none;
    color: #333;
}
                
.c-estate-list-col3-01__image {
    position: relative;
}

.c-estate-list-col3-01__image img:last-of-type {
    display: block;
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
}
    
.c-estate-list-col3-01__label {
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 5px 10px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.7);
}

.c-estate-list-col3-01__price {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.3;
}

.c-estate-list-col3-01__price span {
    margin-left: 2px;
    font-size: 17px;
}
    
.c-estate-list-col3-01__textarea {
    padding: 20px;
}
                    
.c-estate-list-col3-01__type {
    display: inline-block;
    margin-bottom: 10px;
    padding: 3px 10px;
    line-height: 1.6;
    font-size: 14px;
    color: #FFF;
    background-color: #1d2d50;
}

.c-estate-list-col3-01 a[href*="/ebm/"] .c-estate-list-col3-01__type {
    background: #1E7C76;
}

.c-estate-list-col3-01 a[href*="/ebl/"] .c-estate-list-col3-01__type {
    background: #703030;
}

.c-estate-list-col3-01 a[href*="/ebb/"] .c-estate-list-col3-01__type {
    background: #73693B;
}

.c-estate-list-col3-01 a[href*="/ebi/"] .c-estate-list-col3-01__type {
    background: #F28705;
}

.c-estate-list-col3-01__type[data-type*="賃貸"] {
    background: #133b5c;
}

.c-estate-list-col3-01__address {
    margin-bottom: 10px;
    font-weight: bold;
}

.c-estate-list-col3-01__access {
    margin-bottom: 10px;
    font-size: 15px;
}
                        
.c-estate-list-col3-01__catchcopy {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-align: left;
    font-size: 15px;
    color: #1d2d50;
}

/* PC */
@media screen and (min-width:768px) {
    .c-estate-list-col3-01 {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .c-estate-list-col3-01::after {
        content: '';
        display: block;
        width: 30%;
    }

    .c-estate-list-col3-01 li {
        width: 30%;
        margin: 0 0 50px 0;
    }

    .c-estate-list-col3-01 a:hover {
        opacity: 0.6;
    }

    .c-estate-list-col3-01__price {
        font-size: 22px;
    }

    .c-estate-list-col3-01__price span {
        font-size: 18px;
    }
}


/*
　よくある質問-01
================================*/
.c-ques-list-01 {
    width: 90%;
    margin: 0 auto 30px auto;
}

.c-ques-list-01 dt,
.c-ques-list-01 dd {
    line-height: 1.7;
}

.c-ques-list-01 dt {
    margin-bottom: 10px;
}

.c-ques-list-01 dd {
    margin-bottom: 50px;
}

.c-ques-list-01 dt p,
.c-ques-list-01 dd p {
    display: inline-block;
    width: calc(100% - 60px);
    margin-left: 10px;
    padding: 8px;
    font-size: 16px;
    background-color: #FFFFFF;
    border: solid 1px #CCCCCC;
    border-radius: 5px;
    box-sizing: border-box;
}

.c-ques-list-01 dt:before,
.c-ques-list-01 dd:before {
    display: inline-block;
    content: "Q";
    width: 35px;
    height: 35px; 
    vertical-align: top;
    text-align: center;
    font-size: 24px;
    font-family: "Arial", sans-serif;
    font-weight: 500;
    color: #FFF;
    line-height: 35px;
    border-radius: 50%; 
    background-color: #1d2d50; 
}

.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;
    }
}


/*
　会社概要-06
================================*/
.c-company-06 {
    margin: 0 auto 10px auto;
}

.c-company-06__body {
    margin-bottom: 30px;
}

.c-company-06__body__detail {
    margin-bottom: 20px;
}

.c-company-06__body__detail dl > div {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 13px 10px;
    font-weight: bold;
    border-bottom: dotted 1px #908a6a;
    box-sizing: border-box;
}

.c-company-06__body__detail dl > div:last-child {
    border-bottom:none;
}

.c-company-06__body__detail dt {
    width: calc(100% - 70%);
    text-align: center;
}

.c-company-06__body__detail dd {
    width: 65%;
}

.c-company-06__body__map {
    height: 250px;
}

.c-company-06__foot__image {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.c-company-06__foot__image img {
    display: block;
    width: 49%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    margin-bottom: 7px;
}

/* PC */
@media screen and (min-width:768px) {
    .c-company-06 {
        margin: 0 auto 30px auto;
        padding: 0 8px;
    }

    .c-company-06__body {
        display: flex;
        justify-content: space-between;
        box-sizing: border-box;
        margin-bottom: 20px;
    }

    .c-company-06__body__detail {
        width: 55%;
        margin-right: 30px;
        margin-bottom: 0;
    }

    .c-company-06__body__detail dt {
        width: calc(100% - 80%);
        text-align: center;
    }
    
    .c-company-06__body__detail dd {
        width: 75%;
    }

    .c-company-06__body__map {
        width: calc(100% - 55%);
        height: 430px;
    }

    .c-company-06__foot__image {
        display: flex;
        justify-content: flex-start;
        box-sizing: border-box;
    }

    .c-company-06__foot__image img {
        width: 23%;
        margin: 0 11px 10px 11px;
    }
}


/*=================================

* 下層ページ

=================================*/