@charset "UTF-8";

/* ━━━━━━━━━━━━━━━━

 ■初期化

━━━━━━━━━━━━━━━━ */

body {
    font-family: 'Noto Sans Japanese', sans-serif;
    min-width: auto !important;
}



/* ━━━━━━━━━━━━━━━━

 ■ユーティリティ

━━━━━━━━━━━━━━━━ */

.u-mr-5 {
    margin-right: 5px;
}

.u-mr-10 {
    margin-right: 10px;
}

.u-ml-10 {
    margin-left: 10px;
}

.u-mb-0 {
    margin-bottom: 0 !important;
}

.u-mb-5 {
    margin-bottom: 5px;
}

.u-mb-10 {
    margin-bottom: 10px !important;
}

.u-mb-20 {
    margin-bottom: 20px !important;
}

.u-mb-30 {
    margin-bottom: 30px;
}

.u-mb-40 {
    margin-bottom: 40px !important;
}

.u-mb-50 {
    margin-bottom: 50px !important;
}

.u-mb-80 {
    margin-bottom: 80px !important;
}

.u-fc-red {
    color: #94003B;
}

.u-fc-gold {
    color: #daa520;
}

.u-text-marker {
    background: linear-gradient(transparent 60%, #FFF799 60%);
}


.u-text-center {
    text-align: center;
}

@media screen and (min-width:768px) {  
    .u-text-pc-center {
        text-align: center;
    }
}


/*=================================

* 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-footer__sp-menu {
        display: none;
    }
}



/* ━━━━━━━━━━━━━━━━

 ■コンポーネント

━━━━━━━━━━━━━━━━ */


/*=================================

* コンテナ

=================================*/

.c-block {
    margin: 0 auto;
    padding: 30px 0;
}

@media screen and (min-width:768px) {
    .c-block {
        max-width: 1140px;
    }
}

.c-button-container {
    padding: 30px 0 0 0;
    text-align: center;
}

/*
　ボタン
================================*/
.c-button {
    display: block;
    width: 90%;
    margin: 0 auto;
    padding: 10px 5px;
    text-decoration: none;
    text-align: center;
    border-radius: 30px;
    background-color: #002c54;
}

.c-button,
.c-button:link,
.c-button:visited {
    text-decoration: none;
    color: #FFF;
}

@media screen and (min-width:768px) {
    .c-button {
        width: 380px;
        padding: 8px 10px 10px 10px;
        font-size: 17px;
    }

    .c-button:hover {
        opacity: 0.8;
    }
}

/*
　プライマリボタン
================================*/
.c-button--primary {
    position: relative;
    display: block;
    width: 90%;
    padding: 20px 10px;
    margin: 0 auto;
    background-color: #00bfff;
    text-decoration: none;
    text-align: center;
}

.c-button--primary::after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 6px);
    right: 20px;
    width: 10px;
    height: 10px;
    border-top: solid 3px #ffffff;
    border-right: solid 3px #ffffff;
    transform: rotate(45deg);
}

.c-button--primary,
.c-button--primary:link,
.c-button--primary:visited {
    text-decoration: none;
    color: #ffffff;
}

@media screen and (min-width:768px) {
    .c-button--primary {
        width: 380px;
        font-size: 17px;
    }

    .c-button--primary:hover {
        color: #ffffff;
        opacity: 0.8;
    }
}

/*
　アウトラインボタン
================================*/
.c-button--outline {
    position: relative;
    display: block;
    width: 90%;
    margin: 0 auto;
    padding: 20px 10px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    color: #00bfff;
    border: solid 1px #00bfff;
}

.c-button--outline::after {
    content: "";
    position: absolute;
    display: block;
    top: calc(50% - 6px);
    right: 20px;
    width: 10px;
    height: 10px;
    border-top: solid 3px #00bfff;
    border-right: solid 3px #00bfff;
    transform: rotate(45deg);
}

.c-button--outline,
.c-button--outline:link,
.c-button--outline:visited {
    text-decoration: none;
    color: #00bfff;
}

@media screen and (min-width:768px) {
    .c-button--outline {
        width: 380px;
        font-size: 17px;
    }

    .c-button--outline:hover {
        color: #ffffff;
        background-color: #00bfff;
    }
    
    .c-button--outline:hover::after {
        border-top-color: #ffffff;
        border-right-color: #ffffff;
    }
}

/*
　H2タイトル（下線付き/ゴッシク）
================================*/
.c-title__border {
    position: relative;
    width: 90%;
    margin: 0 auto 40px auto;
    text-align: center;
    line-height: 1.4;
    font-size: 28px;
    font-weight: 700;
    color: #333;
}

.c-title__border::after {
    content: '';
    display: block;
    position: absolute;
    width: 45px;
    left: calc(50% - 30px);
    bottom: -10px;
    border: 2px solid #767171;
    border-radius: 50px;
}

/* PC */
@media screen and (min-width:768px) {
    .c-title__border {
        width: 100%;
        margin: 0 auto 80px auto;
        line-height: 1.4;
        font-size: 34px;
    }

    .c-title__border::after {
        width: 50px;
    }
}

/*
　地域紹介
=================================*/
.c-introduction__box,
.c-introduction__box--reverse {
    margin-bottom: 50px;
    padding: 20px;
    background-color: #fff;
}

.c-introduction__box__title {
    margin-bottom: 20px;
    font-size: 22px;
}

.c-introduction__box__title::first-letter {
    font-size: 26px;
    color: #ffbf00;
}

.c-introduction__box__image {
    margin-bottom: 20px;
}

.c-introduction__box__image img {
    width: 100%;
}

.c-introduction__box__image iframe {
    display: block;
    width: 100%;
}

.c-introduction__box__text {
    line-height: 1.4;
}

.c-introduction__box__text > div {
    margin-bottom: 20px;
}

.c-introduction__box__text > div:last-child {
    margin-bottom: 0;
}

.c-introduction__box__text dt {
    display: inline-block;
    margin-bottom: 10px;
    padding: 3px 5px;
    color: #fff;
    background-color: rgba(6, 47, 79, 0.8);
}

.c-introduction .tbl {
    font-size: 16px;
}

/* PC */
@media screen and (min-width:768px) {
    .c-introduction__box,
    .c-introduction__box--reverse {
        margin-bottom: 80px;
        padding: 50px 40px;
    }

    .c-introduction__box__title {
        margin-bottom: 50px;
        font-size: 30px;
        font-weight: bold;
    }

    .c-introduction__box__title::first-letter {
        font-size: 36px;
    }

    .c-introduction__box__inner {
        display: flex;
    }

    .c-introduction__box__image {
        margin-bottom: 0;
    }

    .c-introduction__box__image img,
    .c-introduction__box__image iframe {
        width: 500px;
    }

    .c-introduction__box__text {
        width: 50%;
        line-height: 1.6;
        font-size: 18px;
    }

    .c-introduction__box__text dt {
        padding: 3px 10px;
        font-size: 16px;
    }

    .c-introduction .tbl th,
    .c-introduction .tbl td {
        font-size: 18px;
    }

    .c-introduction__box .c-introduction__box__text {
        padding: 0 0 0 40px;
    }

    .c-introduction__box--reverse .c-introduction__box__text {
        padding: 0 40px 0 0;
    }

    .c-introduction__box--reverse .c-introduction__box__text {
        order: 1;
    }

    .c-introduction__box--reverse .c-introduction__box__image {
        order: 2;
    }
}


/*
　タイトル（フォントサイズlg）
================================*/
.c-title--large {
    margin-bottom: 30px;
    font-size: 25px;
    font-weight: 900;
}

.c-title--large span {
    font-size: 33px;
}

/* PC */
@media screen and (min-width:768px) {
    .c-title--large  {
        font-size: 40px;
        text-align: center;
    }
    
    .c-title--large span {
        font-size: 55px;
    }
}

/*
　H2タイトル（メインカラー）
================================*/
.c-title__color-1 {
    font-size: 30px;
    color: #00bfff;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 900;
    line-height: 1.3;
}

/* PC */
@media screen and (min-width:768px) {
    .c-title__color-1 {
        font-size: 55px;
        margin-bottom: 50px;
    }
}

/*
　H2タイトル
================================*/
h2.tit {
    width: 95%;
    margin: 30px auto 20px auto;
    padding: 8px 10px 10px 0px;
    font-size: 24px;
    font-weight: 700;
    color: #00bfff;
    background-color: #ffffff !important;
}

/* PC */
@media screen and (min-width:768px) {
    h2.tit {
        width: 100%;
        max-width: 1140px;
        margin: 50px auto;
        padding: 0;
        font-size: 32px;
        border-bottom: 2px dotted #333;
    }
}


/*
　H2タイトル（背景カラー付）
================================*/
.c-title__bg-color-1,
.c-title__bg-color-2 {
    font-size: 23px;
    color: #FFF;
    font-weight: bold;
    background: #00bfff;
    margin-bottom: 20px;
    padding: 10px 15px;
}

.c-title__bg-color-2 {
    background: #ffbf00;
}

/* PC */
@media screen and (min-width:768px) {
    .c-title__bg-color-1,
    .c-title__bg-color-2 {
        font-size: 30px;
        margin-bottom: 30px;
    }
}


/*
　H2タイトル（中央寄せ/ゴシック）
================================*/

.c-title--gothic {
    margin-bottom: 30px;
    text-align: center;
    font-size: 22px;
    font-weight: 900;
}

/* PC */
@media screen and (min-width:768px) {
    .c-title--gothic {
        margin-bottom: 40px;
        font-size: 30px;
    }
}

/*
　H3タイトル（下線あり）
================================*/
.c-title--underline {
    position: relative;
    margin-bottom: 10px;
    padding-bottom: 5px;
    padding-left: 0;
    text-shadow: none;
    border-top: none;
    border-bottom: 4px solid #ccc;
    background: none;
}

.c-title--underline:after {
    position: absolute;
    bottom: -4px;
    left: 0;
    z-index: 2;
    content: '';
    width: 20%;
    height: 4px;
    background-color: #00bfff;
}

/* PC */
@media screen and (min-width:768px) {
    .c-title--underline {
        max-width: 1140px;
        margin: 20px auto;
        font-size: 20px;
    }
}


/*
　コンタクト
================================*/
.c-contact {
    margin: 0 auto;
    background: #727A84;
}

.c-contact .c-contact__block {
    display: block;
}

.c-contact .c-contact__block li:first-child {
    border-right: 1px solid #FFF;
}

/* mail */
.c-contact .c-contact__mail {
    padding: 30px 50px;
    border-bottom: 1px solid #FFF;
}   

.c-contact .c-contact__mail a {
    display: block;
    padding: 15px 0;
    font-size: 16px;
    color: #FFF;
    border: 1px solid #FFF;
    text-align: center;
    text-decoration: none;
}

.c-contact .c-contact__mail a:hover {
    background: #F5F5F5;
    border: 1px solid #F5F5F5;
    color: #727A84;
}

/* tel */
.c-contact .c-contact__tel {
    padding: 30px 0;
    text-align: center;
    color: #FFF;
}

.c-contact .c-contact__tel p {
    font-size: 16px;
    margin-bottom: 10px;
}

.c-contact .c-contact__tel a {
    text-decoration: none;
    color: #FFFFFF;
}

.c-contact .c-contact__telno {
    font-size: 30px !important;
    font-weight: bold;
    margin-bottom: 10px;
}

/* PC */
@media screen and (min-width:768px) {
    .c-contact .c-contact__block {
        display: flex;
        margin: 0 auto;
        align-items: center;
    }

    /* mail */
    .c-contact .c-contact__mail {
        width: 45%;
        padding: 30px 50px;
        border: none;
        border-right: 1px solid #FFF;
        border-bottom: none;
    }

    .c-contact .c-contact__mail a {
        font-size: 19px;
    }
    
    /* tel */
    .c-contact .c-contact__tel {
        width: 55%;
    }

    .c-contact .c-contact__tel p {
        margin-bottom: 0;
    }
    
    .c-contact .c-contact__teltext {
        font-size: 19px !important;
    }
    
    .c-contact .c-contact__telno {
        margin-bottom: 0;
        font-size: 42px !important;
    }
}


/*
　チェックボックス付きリスト
=================================*/
.c-checkbox-list {
    margin: 10px;
}

.c-checkbox-list li {
    position: relative;
    padding-left: 30px;
    line-height: 1.5;
    margin-bottom: 20px;
    font-size: 17px;
}

.c-checkbox-list li:before {
    position: absolute;
    top: 3px;
    margin-left: -30px;
    margin-right: 10px;
    content: url(../img/icon__check.png);
}

@media screen and (min-width:768px) {
    .c-checkbox-list {
        margin: 0;
    }

    .c-checkbox-list li:before {
        top: 0;
    }
}

/*
　こだわりリスト
=================================*/
.c-checkbox-list.p-sell__commitment {
    margin-bottom: 50px;
}

/* PC */
@media screen and (min-width:768px) {
    .c-checkbox-list.p-sell__commitment {
        display: flex;
        justify-content: center;
    }
    
    .c-checkbox-list.p-sell__commitment li {
        font-size: 18px;
    }
}


/*
　吹き出し
================================*/
.c-balloon__title {
    margin-bottom: 40px;
    text-align: center;
    font-size: 20px;
    font-weight: 900;
}

.c-balloon__list {
    display: flex;
    flex-wrap: wrap;
}

.c-balloon__list li {
    margin-bottom: 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    align-content: flex-start;
    width: 100%;
}

.c-balloon img {
    width: 15%;
}

.c-balloon p {
    font-size: 15px;
    font-weight: bold;
}

.c-balloon p span {
    background: linear-gradient(transparent 60%, #FFF799 60%);
}

.c-balloon__comment {
    position: relative;
    display: inline-block;
    margin-left: 5px;
    padding: 10px 15px;
    text-align: left;
    background: #FFF;
    border-radius: 50px;
    box-sizing: border-box;
}

.c-balloon__comment:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -23px;
    margin-top: -15px;
    border: 15px solid transparent;
    border-right: 20px solid #FFF;
    z-index: 0;
  }

/* PC */
@media screen and (min-width:768px) {
    .c-balloon__title {
        font-size: 35px;
        margin-bottom: 50px;
    }

    .c-balloon img {
        width: 13%;
    }

    .c-balloon__comment {
        font-size: 27px;
    }
    
    .c-balloon__list li {
        margin-bottom: 25px;
        width: 50%;
    }
    
    .c-balloon p {
        font-size: 20px;
    }

    .c-balloon__comment {
        padding: 10px 15px;
    }
}

/* iPhone5 */
@media screen and (max-width:320px) {
    .c-balloon p {
        font-size: 11px;
    }
    
    .c-balloon img {
        width: 10%;
    }
}


/*
　2columnレイアウト
=================================*/
.c-column-2 {
    margin-bottom: 50px;
}

.c-column__col {
    margin-bottom: 15px;
}

.c-column__col h3 {
    margin-bottom: 5px;
    font-size: 18px;
}

.c-column__col img {
    max-width: 100%;
}

/* PC */
@media screen and (min-width:768px) {
    .c-column-2 {
        display: flex;
        justify-content: space-between;
    }
    
    .c-column__col {
        width: 48%;
    }
}



/* ━━━━━━━━━━━━━━━━

 ■レイアウト

━━━━━━━━━━━━━━━━ */


/*=================================

* セクション

=================================*/

.l-section {
    padding: 50px 0;
}

.l-section.l-section--gray {
    background: #F5F5F5;
}

.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;
    }
}


/*=================================

* ヘッダー

=================================*/

header {
    margin-bottom: 0;
}

.l-header {
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.l-header__title {
    padding: 5px;
    background-color: #00bfff;
}

.l-header__title h1 {
    font-size: 14px;
    color: #ffffff;
}
    
.l-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
 
/* ロゴ */
.l-header__logo {
    max-width: 280px;
    margin: 10px 0 10px 10px;
}
            
.l-header__logo a {
    display: block;
}
                
.l-header__logo a img {
    width: 280px;
    max-height: 70px;
}

/* 問合わせ */
.l-header__inquiry {
    display: none;
}

/* ナビゲーション */
.l-header__nav {
    display: none;
}

/* PC */
@media screen and (min-width:768px) {
    .l-header {
        padding: 0;
    }

    .l-header__title {
        padding: 2px 5px 5px 5px;
    }

    .l-header__title h1 {
        max-width: 1140px;
        margin: 0 auto;
        font-size: 16px;
    }
    
    .l-header__inner {
        max-width: 1140px;
        margin: 0 auto;
        padding: 7px 0;
    }

    /* ロゴ */
    .l-header__logo {
        margin: 0;
        max-width: 430px;
    }
    
    .l-header__logo a img {
        width: 430px;
        max-height: 100px;
    }

    /* 問合わせ */
    .l-header__inquiry {
        display: flex;
        justify-content: flex-end;
        flex-wrap: wrap;
        width: 75%;
    }
    
    .l-header__inquiry p {
        font-size: 18px;
    }

    .l-header__inquiry__tel {
        text-align: right;
        font-size: 35px;
        line-height: 1.2;
        font-family: 'Century Gothic', "Arial", 'Noto Sans Japanese', sans-serif;
    }

    .l-header__inquiry__mail {
        width: 165px;
    }

    .l-header__inquiry__mail a {
        display: block;
        padding: 8px 10px;
        text-align: center;
        text-decoration: none;
        color: #ffffff;
        background-color: #ffbf00;
    }

    .l-header__inquiry__mail a:hover {
        opacity: 0.8;
    }
    
    
    /* ナビゲーション */
    .l-header__nav {
        display: block;
        background-color: #00bfff;
    }
                
    .l-header__nav ul {
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 1140px;
        margin: 0 auto;
        padding: 17px 0;
    }
                    
    .l-header__nav li {
        flex-grow: 1;
        border-left: solid 1px #ffffff;
    }

    .l-header__nav li:last-child {
        border-right: solid 1px #ffffff;
    }

    .l-header__nav a {
        display: block;
        padding: 0 15px;
        text-align: center;
        text-decoration: none;
        font-size: 17px;
        color: #FFF;
    }

    .l-header__nav a:hover {
        color: #ffed67;
    }
}

@media screen and (max-width:882px) {
    .l-header__inquiry__tel {
        font-size: 26px;
    }
}


/*=================================

* メインビジュアル

=================================*/

.l-jumbotron {
    position: relative;
    height: 220px;
    background-repeat: no-repeat;
    background-position: 50% 5%;
    background-size: cover;
    background-image: url(../img/jumbotron__image.jpg);
}


.l-jumbotron__inner {
    position: relative;
    padding: 20px 15px;
    z-index: 10;
}

.l-jumbotron__inner ul {
    display: flex;
    margin-bottom: 5px;
}

.l-jumbotron__inner li {
    display: inline-block;
    margin-right: 5px;
    padding: 5px 10px;
    font-size: 18px;
    font-weight: bold;
    color: #00bfff;
    border: 2px solid #00bfff;
    border-radius: 50px;
    background-color: rgba(255,255,255, 0.6);
}

.l-jumbotron__inner h2 {
    line-height: 1.4;
    font-size: 22px;
    font-weight: 900;
    color: #000;
    text-shadow: 
        #ffffff 2px 0px, #ffffff -2px 0px, 
        #ffffff 0px -2px, #ffffff 0px 2px, 
        #ffffff 2px 2px, #ffffff -2px 2px, 
        #ffffff 2px -2px, #ffffff -2px -2px, 
        #ffffff 1px 2px, #ffffff -1px 2px, 
        #ffffff 1px -2px, #ffffff -1px -2px, 
        #ffffff 2px 1px, #ffffff -2px 1px, 
        #ffffff 2px -1px, #ffffff -2px -1px;
}

.l-jumbotron__inner h2 span {
    font-size: 34px;
    color: #ffbf00;
}

/* PC */
@media screen and (min-width:768px) {
    .l-jumbotron {
        height: 500px;
        background-position: 50% 50%;
    }

    .l-jumbotron__inner {
        max-width: 1140px;
        margin: 0 auto;
        padding: 40px 0;
    }

    .l-jumbotron__inner li {
        padding: 5px 20px;
        font-size: 28px;
        margin-right: 10px;
        border: 3px solid #00bfff;
    }

    .l-jumbotron__inner h2 {
        font-size: 48px;
        line-height: 1.2;
    }

    .l-jumbotron__inner h2 span {
        font-size: 88px;
    }
}

/*
　このようなお悩み
================================*/

.l-section.l-section--blue {
    background: #eaf3f9;
}


.l-section.l-section--yellow {
    background: #FEFBF5;
}


/*=================================

* フッター

=================================*/
.l-footer {
    width: 100%;
}

.l-footer__block {
    padding: 35px 20px;
    text-align: center;
    color: #FFF;
    background-color: #00bfff;
}

.l-footer__nav {
    display: none;
}

.l-footer__contact h3 {
    position: relative;
    margin-bottom: 20px;
    text-align: center;
}

.l-footer__contact h3:before {
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    width: 100%;
    height: 1px;
    content: '';
    background: #fff;
}

.l-footer__contact h3 span {
    position: relative;
    padding: 0 15px;
    font-size: 22px;
    background: #00bfff;
}

.l-footer__contact__tel {
    margin-bottom: 20px;
}

.l-footer__contact__tel a {
    text-decoration: none;
    font-size: 30px;
    font-weight: bold; 
    color: #fff;
}

.l-footer__contact__mail a {
    display: block;
    padding: 15px 0;
    text-decoration: none;
    color: #fff;
    border: solid 1px #fff;
}
        
.l-footer__company {
    padding: 30px;
}

.l-footer__company h3 {
    max-width: 300px;
    margin: 0 auto 20px auto;
}

.l-footer__company__operation p {
    margin-bottom: 5px;
}

.l-footer__company__operation span {
    display: inline-block;
    margin-right: 10px;
    padding: 5px 10px;
    color: #fff;
    background-color: #767171;
}
            
.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;
}

/* ハンバーガーメニュー */
.l-footer__sp-menu {
    width: 100%;
    height: 100%;
    background: #fefefe;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    padding: 72px 20px 65px 20px;
    transform: translateY(min(-100%,-1000px));
    transition: transform .5s;
}

.l-footer__sp-menu.__open {
    transform: translateY(0);
    transition: transform .5s;
}

.l-footer__sp-menu ul li {
    width: 100%;
    height: auto;
    border-top: 1px solid #919191;
}

.l-footer__sp-menu ul li:hover {
    background: #747474;
}

.l-footer__sp-menu ul li:last-child {
    border-bottom: 1px solid #919191;
}

.l-footer__sp-menu ul li a {
    margin-left: 1em;
    font-size: 1em;
    line-height: 3em;
    color: #00bfff;
    display: block;
    width: 100%;
    height: 3em;
    text-decoration: none;
}

.l-footer__sp-menu ul li a:hover {
    color: #fff;
}

/* PC */
@media screen and (min-width:768px) {
    footer {
        border-top: none;
    }

    .l-footer__block {
        padding: 0;
    }

    .l-footer__inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1140px;
        margin: 0 auto;
        padding: 30px 0;
    }
    
    .l-footer__nav {
        display: block;
        width: 60%;
        margin-bottom: 0;
    }

    .l-footer__nav ul {
        display: flex;
        flex-wrap: wrap;
    }
                    
    .l-footer__nav li {
        display: flex;
        padding: 5px 15px;
        width: auto;
    }

    .l-footer__nav li a {
        position: relative;
        display: inline-block;
        text-decoration: none;
        color: #fff;
    }

    .l-footer__nav li a:hover {
        color: #ffbf00;
        text-decoration: underline;
    }

    .l-footer__contact {
        width: 40%;
    }

    .l-footer__contact h3 {
        margin-bottom: 0;
    }

    .l-footer__contact__tel {
        margin-bottom: 10px;
    }

    .l-footer__contact__tel a {
        text-decoration: none;
    }

    .l-footer__contact__mail a {
        text-decoration: none;
        text-align: center;
    }

    .l-footer__contact__mail a:hover {
        background-color: #ffbf00;
        border-color: #ffbf00;
    }

    .l-footer__company {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1140px;
        margin: 0 auto;
        padding: 20px 0;
    }
                
    .l-footer__company h3 {
        width: 40%;
        margin: 0;
        text-align: left;
        max-width: 400px;
    }

    .l-footer__company__operation {
        display: flex;
    }

    .l-footer__company__operation p {
        margin-bottom: 0;
        margin-left: 25px;
    }
    
    .l-footer__bottom__nav {
        display: none;
    }

    .l-footer__sp-menu {
        display: none;
    }
}


/*=================================

* Copyright

=================================*/

.copyright {
    background-color: #00bfff !important;
    padding: 8px 0 75px 0 !important;
}

/* PC */
@media screen and (min-width:768px) {
    .copyright {
        padding: 8px 0 8px 0 !important;
    }
}


/* ━━━━━━━━━━━━━━━━

 ■プロジェクト

━━━━━━━━━━━━━━━━ */

/*
　sub-visual
================================*/
.p-sub-visual {
    width: 100%;
    height: 150px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    position: relative;
    margin: 0 auto 50px auto;
    filter: saturate(200%);
}

.p-sub-visual.p-sub-visual__sell {
    background-image: url(../img/sub-visual__sell.jpg);
}

.p-sub-visual.p-sub-visual__souzoku {
    background-image: url(../img/sub-visual__souzoku.jpg);
}

.p-sub-visual::before {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    content: '';
    background-color: rgba(29, 39, 49, 0.6);
}

/* h1 */
.p-sub-visual h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #FFF;
    line-height: 1.4;
    font-size: 35px;
    font-weight: 700;
}

/* h2 */
.p-sub-visual h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #FFF;
    line-height: 1.4;
    font-size: 35px;
    font-weight: 700;
}

/* PC */
@media screen and (min-width:768px) {
    .p-sub-visual {
        height: 250px;
        margin: 0 auto 80px auto;
    }
    
    /* h1 */
    .p-sub-visual h1 {
        font-size: 60px;
    }
    
    /* h2 */
    .p-sub-visual h2 {
        font-size: 60px;
    }
}


/*
　地域紹介
=================================*/
.p-presentation__caption {
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.3;
    font-family: 'Noto Serif JP', serif;
    font-size: 20px;
    font-weight: 900;
}

.p-presentation__block__image {
    display: block;
}

.p-presentation__block__image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.p-presentation__block__text {
    position: relative;
    display: block;
    width: 90%;
    margin: -20px auto 10px auto;
    background-color: rgba(193, 217, 234, 0.9);
    z-index: 10;
}

.p-presentation__block__text__inner {
    padding: 40px;
}

.p-presentation__block__text__inner h3 {
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Noto Serif JP', serif;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.4;
}

.p-presentation__block__text__inner p {
    line-height: 1.6;
}

/* PC */
@media screen and (min-width:768px) {
    .p-presentation__caption {
        margin-bottom: 70px;
        font-size: 32px;
    }

    .p-presentation__block {
        position: relative;
        height: 400px;
        margin: 0 auto 50px auto;
    }

    .p-presentation__block__image {
        position: absolute;
        width: 60%;
        top: 0;
        right: 0;
    }

    .p-presentation__block__image img {
        width: 100%;
        height: 400px;
    }

    .p-presentation__block__text {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translate(0, -50%);
        width: 50%;
        height: auto;
        margin: 0;
        padding: 0;
    }

    .p-presentation__block__text__inner {
        width: 60%;
        margin: 0 0 0 auto;
    }

    .p-presentation__block__text__inner h3 {
        font-size: 28px;
    }

    .p-presentation__block__text__inner p {
        font-size: 18px;
    }
}

/*
　おすすめ物件
================================*/
.p-estate-list li,
.p-estate-list--gray li {
    position: relative;
    width: 100%;
    margin: 0 auto 50px auto;
}

/* テキスト部分の背景：白色 */
.p-estate-list li {
    background-color: #fff;
}

/* テキスト部分の背景：灰色 */
.p-estate-list--gray li {
    background-color: #f5f5f5;
}
            
.p-estate-list a,
.p-estate-list--gray a {
    display: block;
    text-decoration: none;
    color: #333;
}
                
.p-estate-list__image {
    position: relative;
}

.p-estate-list__image img {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
}
    
.p-estate-list__label {
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 0;
    min-width: 100px;
    padding: 10px 15px;
    line-height: 1.6;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.5);
}

.p-estate-list__roomtype {
    font-weight: bold;
    line-height: 1.6;
}

.p-estate-list__price {
    font-size: 22px;
    font-weight: bold;
}

.p-estate-list__price span {
    font-size: 18px;
}

.p-estate-list__textarea {
    padding: 20px;
}
                    
.p-estate-list__name {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
}
    
.p-estate-list__access {
    margin-bottom: 10px;
}
                        
.p-estate-list__access i {
    margin-right: 5px;
    color: #00bfff;
}
    
.p-estate-list__catchcopy {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

/* PC */
@media screen and (min-width:768px) {
    .p-estate-list,
    .p-estate-list--gray {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        max-width: 1140px;
        margin: 0 auto;
        padding: 0;
    }

    .p-estate-list::after,
    .p-estate-list--gray::after {
        content: '';
        display: block;
        width: 30%;
    }

    .p-estate-list li,
    .p-estate-list--gray li {
        width: 30%;
        margin: 0 0 50px 0;
    }

    .p-estate-list a:hover,
    .p-estate-list--gray a:hover {
        opacity: 0.8;
    }

    .p-estate-list__label {
        padding: 10px 15px 5px 15px;
    }
    
    .p-estate-list__roomtype {
        font-size: 18px;
        line-height: 1;
    }

    .p-estate-list__name {
        font-size: 18px;
    }

    .p-estate-list__access,
    .p-estate-list__catchcopy {
        font-size: 16px;
    }
}


/* 
　お客様の声
======================= */
.survey__list li {
    width: 100%;
    margin: 0 0 30px 0;
    font-size: 16px;
}
    
.survey__list li a {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0;
    box-sizing: border-box;
}

.survey__list ._image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.survey__list ._detail {
    font-size: 15px;display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

/* PC */
@media screen and (min-width:768px) {
    .survey__list li {
        width: 23%;
        margin: 0 2% 30px 0;
        display: inline-block;
        vertical-align: top;
    }
    
    .survey__list li:nth-of-type(4n) {
        margin-right: 0;
    }

    .survey__list ._image img {
        height: 170px;
    }
}

/*
　お知らせ
================================*/
.p-news__block__list {
    padding: 0 10px;
}

.p-news__block__list li {
    position: relative;
    padding: 10px 0;
    border-bottom: solid 1px #dddddd;
}

.p-news__block__list li:first-child {
    border-top: solid 1px #dddddd;
}

.p-news__block__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);
}

.p-news__block__list li a {
    text-decoration: none;
}

.p-news__block__list a {
    display: block;
    color: #333;
}

.p-news__block__list__data {
    margin-bottom: 5px;
    font-size: 14px;
}

.p-news__block__list__text {
    width: 90%;
    font-size: 16px;
}

.p-news__button {
    position: relative;
    display: block;
    width: 90%;
    padding: 20px 10px;
    margin: 0 auto;
    color: #ffffff;
    background-color: #00bfff;
    text-decoration: none;
    text-align: center;
}

.p-news__button::after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 6px);
    right: 20px;
    width: 10px;
    height: 10px;
    border-top: solid 3px #ffffff;
    border-right: solid 3px #ffffff;
    transform: rotate(45deg);
}

.p-news__button,
.p-news__button:link,
.p-news__button:visited {
    text-decoration: none;
    color: #FFF;
}

/* PC */
@media screen and (min-width:768px) {
    .p-news__block {
        max-width: 1000px;
        margin: 0 auto;
    }

    .p-news__block__list {
        margin-bottom: 50px;
        padding: 0;
    }

    .p-news__block__list li {
        padding: 15px 10px;
        border-bottom: solid 1px #000;
    }
    
    .p-news__block__list li::after {
        display: none;
    }

    .p-news__block__list li:first-child {
        border-top: none;
    }

    .p-news__block__list li:last-child {
        border-bottom: none;
    }

    .p-news__block__list li a {
        display: flex;
        box-sizing: border-box;
    }

    .p-news__block__list li a:hover {
        color: #00bfff;
        text-decoration: underline;
    }

    .p-news__block__list__data {
        width: 20%;
        font-size: 16px;
    }

    .p-news__block__list__text {
        width: 80%;
    }
}


/*
　会社概要
================================*/
.p-company__data dl {
    margin-bottom: 30px;
}

.p-company__data dl > div {
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    margin-top: 0;
    margin-bottom: 0;
}

.p-company__data dt {
    width: 25%;
    padding: 12px 5px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    border-bottom: solid 1px #908a6a;
}

.p-company__data dd {
    width: 73%;
    margin-left: 0;
    padding: 12px 5px 12px 20px;
    font-size: 16px;
    font-weight: bold;
    border-bottom: solid 1px #e5e5e5;
}

.p-company__data__image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
}

.p-company__data__image img:last-child {
    margin-bottom: 50px;
}

.p-company__map iframe {
    display: block;
    width: 100%;
}

/* PC */
@media screen and (min-width:768px) {
    .p-company {
        display: flex;
        justify-content: space-between;
    }

    .p-company__data {
        width: 100%;
    }

    .p-company__data dl {
        margin-bottom: 40px;
    }

    .p-company__data dt {
        width: 22%;
        font-size: 16px;
    }

    .p-company__data dd {
        width: 71%;
        font-size: 18px;
    }

    .p-company__data__image {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .p-company__data__image::after {
        content: '';
        display: block;
        width: 30%;
    }
    
    .p-company__data__image img {
        width: 30%;
        height: 150px;
        margin-bottom: 0;
    }

    .p-company__map iframe {
        width: 480px !important;
        margin-left: 50px;
    }
}


/*
　横3つ並び枠
=================================*/
.p-sell__promise {
    width: 90%;
    margin: 0 auto 40px auto;
}

.p-sell__promise li {
    width: 100%;
    margin-bottom: 15px;
    border: 2px solid #00bfff;
    box-sizing: border-box;
    padding: 15px;
    border-radius: 8px;
}

.p-sell__promise li h3 {
    font-size: 23px;
    margin-bottom: 10px;
    color: #00bfff;
    text-align: center;
    line-height: 1.2;
    font-weight: 900;
}

/* PC */
@media screen and (min-width:768px) {
    .p-sell__promise {
        margin: 0 auto 70px auto;
        width: 100%;
    }

    .p-sell__promise ul {
        display: flex;
        justify-content: space-between;
    }
    
    .p-sell__promise li {
        width: 32%;
        margin-right: 2%;
        margin-bottom: 0;
        padding: 20px;
    }
    
    .p-sell__promise li:last-child {
        margin-right: 0%;
    }
    
    .p-sell__promise:after {
        content: "";
        display: block;
        clear: both;
    }
    
    .p-sell__promise li h3 {
        font-size: 27px;
    }
}


/*
　流れ
=================================*/
.p-flow {
    margin: 0 auto 40px auto;
}

.p-flow__step {
    position: relative;
    width: 270px;
    background: #00bfff;
    padding: 10px 10px 0 10px;
    text-align: center;
    color: #FFF;
    box-sizing: border-box;
    margin: 0 auto;
}

.p-flow__step p,
.p-flow__step h3 {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 2px;
}

.p-flow__step:after{
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    bottom: -25px;
    left: 0;
    border-style: solid;
    border-color: #00bfff transparent transparent transparent;
    border-width: 25px 135px 0 135px;
    z-index: 1;
}

.p-flow__text {
    padding: 40px 10px;
}

/* PC */
@media screen and (min-width:768px) {
    .p-flow {
        margin-bottom: 80px;
    }
    
    .p-flow__block {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 20px 0;
        margin-bottom: 30px;
    }
    
    .p-flow__step {
        margin: 0;
    }
    
    .p-flow__text {
        width: calc(100% - 330px);
        padding: 0 0 0 60px;
        font-size: 16px;
    }
}


/*
　よくある質問(不動産買取パート)
=================================*/

.p-ques-list {
    width: 90%;
    margin: 0 auto 70px auto;
}

.p-ques-list dt,
.p-ques-list dd {
    line-height: 1.7;
}

.p-ques-list dt {
    margin-bottom: 10px;
}

.p-ques-list dd {
    margin-bottom: 50px;
}

.p-ques-list dt p,
.p-ques-list dd p {
    width: calc(100% - 60px);
    padding: 8px;
    background-color: #FFFFFF;
    border: solid 1px #CCCCCC;
    display: inline-block;
    border-radius: 5px;
    font-size: 16px;
    margin-left: 10px;
    box-sizing: border-box;
}

.p-ques-list dt:before,
.p-ques-list dd:before {
    content: "Q";
    width: 35px;
    height: 35px; 
    background-color: #00bfff;
    color: #FFF;
    font-weight: 500;
    border-radius: 50%; 
    text-align: center;
    line-height: 35px;
    font-family: "Arial", sans-serif;
    font-size: 24px;
    display: inline-block;
    vertical-align: top;
}

.p-ques-list dd:before {
    content: "A";
    background-color: #CCC;
}

/* PC */
@media screen and (min-width:768px) {
    .p-ques-list {
        width: 100%;
    }

    .p-ques-list dt:before,
    .p-ques-list dd:before {
        width: 45px;
        height: 45px; 
        line-height: 45px;
        font-size: 27px;
    }
}


/*
　CTA バナー
=================================*/
.p-sell__contact {
    background: #00bfff;
    width: 100%;
    padding: 50px 0;
    margin-bottom: 100px;
}

.p-sell__contact__intro {
    position: relative;
    color: #fff;
    width: 80%;
    max-width: 500px;
    margin: 0 auto 50px auto;
}

.p-sell__contact__text {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.p-sell__contact__text h3 {
    font-weight: bold;
}

.p-sell__contact__telno {
    font-size: 40px;
    font-weight: bold;
    font-family: "Arial", sans-serif;
    margin-bottom: 10px;
}

.p-sell__contact__telno a {
    color: #fff;
    text-decoration: none;
}

.p-sell__contact__telno i {
    font-size: 30px;
    margin-right: 10px;
}

.p-sell__contact__open {
    font-weight: bold;
    line-height: 1.5;
}

/* ボタン */
.p-sell__contact__button {
    width: 80%;
    max-width: 500px;
    margin: 0 auto 30px auto;
}

.p-sell__contact__button a {
    font-size: 20px;
    position: relative;
    padding: 35px 15px 15px 15px;
    border-radius: 10px;
    box-sizing: border-box;
    display: block;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
}

.p-sell__contact__button a span {
    position: absolute;
    font-size: 16px;
    color: #000;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 80%;
    padding: 5px 0;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 1px 3px -1px rgba(0,0,0,0.5);
}

.p-sell__contact__button-satei {
    margin-bottom: 50px;
}

.p-sell__contact__button a i {
    font-size: 25px;
    margin: -5px 10px 0 0;
    vertical-align: middle;
}

.p-sell__contact__button a:hover {
    opacity: 0.7;
}

.p-sell__contact__button-satei a {
    background: #B22222;
    color: #fff;
}

.p-sell__contact__button-inquiry a {
    background: #ffbf00;
    color: #fff;
}

.p-sell__contact__button-satei a span {
    border: solid 2px #B22222;
}

.p-sell__contact__button-inquiry a span {
    border: solid 2px #ffbf00;
}


/* PC */
@media screen and (min-width:960px) {
    .p-sell__contact__intro {
        width: 100%;
        max-width: 1140px;
        margin: 0 auto;
        margin-bottom: 40px;
        
    }
    
    .p-sell__contact__block {
        width: 100%;
        align-items: center;
        margin-bottom: 0;
        box-sizing: border-box;
    }
    
    .p-sell__contact__text {
        font-size: 23px;
        margin: 0;
    }
    
    .p-sell__contact__text h3 {
        font-weight: bold;
        text-align: left;
    }
    
    .p-sell__contact__tel {
        width: 100%;
        margin: 0 auto 30px auto;
        display: flex;
        align-items: center;
    }
    
    .p-sell__contact__telno {
        font-size: 80px;
        margin-bottom: 0;
    }

    .p-sell__contact__telno i {
        font-size: 65px;
    }

    .p-sell__contact__open {
        font-size: 18px;
        margin-left: 20px;
    }
    
    /* ボタン */
    .p-sell__contact__button {
        display: flex;
        justify-content: space-between;
        width: 100%;
        max-width: 1140px;
        margin: 0 auto;
    }
    
    .p-sell__contact__button-satei,
    .p-sell__contact__button-inquiry {
        width: 48%;
    }

    .p-sell__contact__button-satei {
        margin-bottom: 0;
    }

    .p-sell__contact__button a {
        padding: 40px 40px 30px 40px;
        font-size: 32px;
    }

    .p-sell__contact__button a i {
        font-size: 37px;
        margin: -7px 10px 0 0;
    }

    .p-sell__contact__button a span {
        font-size: 21px;
        top: -25px;
        border-width: 3px;
        border-radius: 25px;
    }
}

/* iPhone5 */
@media screen and (max-width:320px) {   
    .p-sell__contact__text {
        padding-left: 10px;
    }
    
    /* tel */
    .p-sell__contact__telno {
        font-size: 30px;
    }
}


/*=================================

* 相続相談

=================================*/
.p-souzoku__action {
    box-sizing: border-box;
    margin: 10px;
}

.p-souzoku__action-list {
    margin-bottom: 30px;
    text-align: center;
}

.p-souzoku__action-list li {
    margin: 10px 0;
    padding: 10px;
    line-height: 1.5;
    background-color: #1e5b85;
    color: #FFF;
}

.p-souzoku__actionpoint-list {
    padding: 10px;
    border: 2px solid #1e5b85;
    border-radius: 4px;
    background-color: #FFF;
}

.p-souzoku__actionpoint-list li {
    margin: 7px 0;
}

.p-souzoku__actionpoint-list li::before {
    margin-right: 3px;
    padding: 10px 5px;
    content: "□";
}

.p-souzoku__service-list li {
    font-size: 17px;
    margin-bottom: 10px;
}

.p-souzoku__service-list li::before {
    content: "◆";
    margin-right: 5px;
}

/* PC */
@media screen and (min-width:768px) {
    .p-souzoku__action-list {
        display: flex;
        justify-content: space-between;
    }
    
    .p-souzoku__action-list li {
        width: 32%;
        padding: 10px 25px;
        box-sizing: border-box;
    }
    
    .p-souzoku__actionpoint-list {
        display: flex;
        flex-wrap: wrap;
        align-content: space-between;
    }
    
    .p-souzoku__actionpoint-list li {
        margin-right: 15px;
    }
    
    .p-souzoku__actionpoint-list li::before {
        margin-right: 0;
    }
    
    .p-souzoku__service-list li {
        font-size: 18px;
    }
}