@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;
}

.u-mb-80 {
    margin-bottom: 80px !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-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 screen and (max-width: 767px) {
  .u-hidden-sp {
    display: none !important;
  }
}



/* ━━━━━━━━━━━━━━━━

 ■コンポーネント

━━━━━━━━━━━━━━━━ */


/*=================================

* コンテナ

=================================*/

.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 #f07f1d;
    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: #f07f1d;
    font-weight: bold;
}
  
.c-button--primary::after {
    background: #f07f1d;
    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 {
    width: 90%;
    margin: 0 auto 30px auto;
    font-size: 1.4rem;
    font-weight: 900;
    text-align: center;
    color: #000;
    background-color: transparent !important;
}

/* PC */
@media screen and (min-width:768px) {
    h2.tit {
        width: 100%;
        font-size: 2.3rem;
    }
}

/*
　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: #f07f1d;
}

/* PC */
@media screen and (min-width:768px) {
    h3.tit {
        max-width: 1140px;
        margin: 0 auto 40px auto;
        padding: 0 0 10px 0;
        font-size: 1.3rem;
    }
}

/*
　ルビ付き-06
================================*/
.c-title-ruby-06 {
    width: 90%;
    margin: 0 auto 30px auto;
    text-align: center;
    line-height: 1.4;
}

.c-title-ruby-06 h2 {
    font-size: 26px;
    font-weight: bold;
    color: #333;
}

.c-title-ruby-06 span::first-letter {
    color: #f07f1d;
}

.c-title-ruby-06 span {
    display: block;
    font-size: 16px;
    font-weight: 900;
    color: #333;
}

/* PC */
@media screen and (min-width:768px) {
    .c-title-ruby-06 {
        width: 100%;
        margin: 0 auto 45px auto;
    }
    
    .c-title-ruby-06 h2 {
        font-size: 34px;
    }

    .c-title-ruby-06 span {
        font-size: 20px;
    }
}



/* ━━━━━━━━━━━━━━━━

 ■レイアウト

━━━━━━━━━━━━━━━━ */


/*=================================

* セクション

=================================*/

.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: #ffeabd;
}

.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;
    }
}



/* ━━━━━━━━━━━━━━━━

 ■プロジェクト

━━━━━━━━━━━━━━━━ */


/*=================================

* ヘッダー-02

=================================*/
html {
    scroll-padding-top: 50px;
}

.l-header-02 {
    position: relative;
    width: 100%;
    height: 45px;
    margin: 0;
}

.l-header-02__wrapper,
.l-header-02__wrapper--glay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 45px;
    padding: 5px 10px;
    background-color: rgba(249, 245, 240, 0.9);
    z-index: 99;
    box-sizing: border-box;
}

.l-header-02__wrapper--glay {
    background-color: rgba(27, 26, 23, 0.9);
}

.l-header-02__information {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.l-header-02__logo {
    width: calc(100% - 45px);
}

.l-header-02__logo a {
    text-decoration: none;
    color: #333;
    font-size: clamp(25px, 25 / 768 * 100vw, 35px);
    font-weight: 900;
    line-height: 1;
}

.l-header-02__wrapper--glay .l-header-02__logo a {
    color: #FFF;
}

.l-header-02__logo img {
    max-height: 35px;
}

.l-header-02__nav {
    display: none;
}

.l-header-02__inquiry--tel,
.l-header-02__inquiry--mail {
    display: none;
}

.open .l-header-02__nav {
    display: block;
    z-index: 15;
}

/* ハンバーガーメニュー */
.l-header-02__menu__button {
    display: block;
}

.l-header-02__menu__button a {
    display: block;
    text-align: center;
    text-decoration: none;
    color: #333;
}

.l-header-02__wrapper--glay .l-header-02__menu__button a {
    color: #FFF;
}

.l-header-02__menu__button i {
    font-size: 35px;
}

.l-header-02__sp-menu {
    position: fixed;
    top: 0;
    left: 0;
    transform: translateY(min(-100%,-1000px));
    width: 100%;
    height: 100%;
    padding: 65px 20px 65px 20px;
    transition: transform .5s;
    background: #fefefe;
    z-index: 50;
    overflow: auto;
}

.l-header-02__sp-menu.__open {
    transform: translateY(0);
    transition: transform .5s;
}

.l-header-02__sp-menu ul li {
    width: 100%;
    height: auto;
    border-top: 1px solid #919191;
}

.l-header-02__sp-menu ul li:hover {
    background: #747474;
}

.l-header-02__sp-menu ul li:last-child {
    border-bottom: 1px solid #919191;
}

.l-header-02__sp-menu ul li a {
    display: block;
    width: 100%;
    height: 3em;
    margin-left: 1em;
    line-height: 3em;
    text-decoration: none;
    font-size: 1em;
    color: #003d75;
}

.l-header-02__sp-menu ul li a:hover {
    color: #fff;
}

.l-header-02__sp-menu--tel a,.l-header-02__sp-menu--mail a {
    display: block;
    text-align: center;
}

.l-header-02__sp-menu--tel p {
    text-align: center;
    font-size: 16px;
    color:  #5f5f5f;
}

.l-header-02__sp-menu--tel a {
    margin-top: 50px;
    text-decoration: none;
    line-height: 1;
    font-family: "Arial", 'Noto Sans Japanese', sans-serif;
    font-weight: bold;
    font-size: 32px;
    color: #f07f1d;
}

.l-header-02__sp-menu--mail a {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    max-width: 450px;
    width: 100%;
    margin: 30px auto;
    padding: 30px;
    text-decoration: none;
    font-size: 16px;
    color: #FFF;
    background-color: #f07f1d;
}

.l-header-02__sp-menu--mail a span {
    font-size: 25px;
    font-weight: bold;
}

.l-header-02__sp-menu--mail a:hover {
    background: #003d75;
}

.p-page-title {
    padding: 10px 8px;
    font-size: 13px;
}

@media print {
    .l-header-02__sp-menu {
        display: none;
    }
}

/* PC */
@media screen and (min-width:768px) {
    html {
        scroll-padding-top: 100px;
    }

    .l-header-02 {
        height: 80px;
    }

    .l-header-02__wrapper {
        display: flex;
        justify-content: space-between;
        height: 80px;
        padding: 0 0 0 10px;
    }

    .l-header-02__inner {
        width: calc(100% - 190px);
        padding-top: 10px;
    }

    .l-header-02__logo {
        width: clamp(220px, 220 / 1140 * 100vw, 300px);
        margin: 0 auto 0 3px;
    }

    .l-header-02__logo a {
        font-size: clamp(25px, 25 / 1140 * 100vw, 35px);
        font-size: 0;
    }

    .l-header-02__logo img {
        max-height: 50px;
        max-height: clamp(50px, 50 / 1140 * 100vw, 70px);
    }

    /* 問合せ */
    .l-header-02__inquiry--mail {
        display: block;
    }

    .l-header-02__inquiry--mail {
        width: 165px;
    }

    .l-header-02__inquiry--mail a {
        display: block;
        width: 165px;
        height: 80px;
        padding: 15px 5px;
        text-align: center;
        text-decoration: none;
        font-size: 13px;
        color: #fff;
        background-color: #003d75;
        box-sizing: border-box;
    }

    .l-header-02__inquiry--mail a span {
        display: flex;
        flex-direction: column;
        font-size: 18px;
    }

    .l-header-02__inquiry--mail a:hover {
        position: absolute;
        bottom: 0;
        background-color: #f07f1d;
    }

    /* ハンバーガーメニュー */
    .l-header-02__menu__button {
        top: 60%;
        right: 200px;
    }

    .p-page-title {
        max-width: 1140px;
        margin: 0 auto;
        padding: 10px 0;
        font-size: 14px;
    }
}

/* PC */
@media screen and (min-width:1200px) {
    .l-header-02__inner {
        width: calc(100% - 150px);
    }

    /* ナビゲーション */
    .l-header-02__nav {
        display: block;
    } 

    .l-header-02__nav ul {
        display: flex;
        justify-content: flex-end;
        margin-right: 10px;
    }
    
    .l-header-02__nav li {
        position: relative;
    }

    .l-header-02__nav li:before,
    .l-header-02__nav li:last-child:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 1px;
        height: 90%;
        background-color: #ededed;
    }

    .l-header-02__wrapper--glay .l-header-02__nav li:before,
    .l-header-02__wrapper--glay .l-header-02__nav li:last-child:after {
        background-color: #f3f3f3;
    }
    
    .l-header-02__nav li a {
        position: relative;
        display: flex;
        flex-direction: column;
        padding: 5px 20px 10px 20px;
        text-align: center;
        text-decoration: none;
        font-size: 13px;
        color: #000;
    }

    .l-header-02__wrapper--glay .l-header-02__nav li a {
        color: #FFF;
    }

    .l-header-02__nav li a span {
        letter-spacing: 0.1em;
        font-size: clamp(15px, 16 / 1200 * 100vw, 17px);
        font-weight: bold;
    }

    .l-header-02__nav li a:hover {
        color: #f07f1d;
    }

    .l-header-02__wrapper--glay .l-header-02__nav li a:hover {
        color: #b88f38;
    }

    .l-header-02__nav li a:hover:before {
        content: '';
        position: absolute;
        left: 0;
        bottom: -8px;
        width: 100%;
        height: 5px;
        background-color: #f07f1d;
    }

    .l-header-02__wrapper--glay .l-header-02__nav li a:hover:before {
        background-color: #b88f38;
    }

    /* 問合せ */
    .l-header-02__inquiry--mail {
        width: 135px;
    }

    .l-header-02__inquiry--mail a {
        width: 135px;
    }
    
    /* ハンバーガーメニュー*/
    .l-header-02__menu__button {
        display: none;
    }
}

/* PC */
@media screen and (min-width:1400px) {
    .l-header-02__nav li a {
        padding-left: clamp(15px, 15 / 1200 * 100vw, 25px);
        padding-right: clamp(15px, 15 / 1200 * 100vw, 25px);
    }

    .l-header-02__inquiry--tel {
        display: block;
    }

    .l-header-02__inquiry--tel a {
        line-height: 1;
        text-decoration: none;
        font-family: "Arial", 'Noto Sans Japanese', sans-serif;
        font-size: 28px;
        font-size: clamp(20px, 20 / 1200 * 100vw, 28px);
        font-weight: bold;
        color: #000;
    }

    .l-header-02__wrapper--glay .l-header-02__inquiry--tel a {
        color: #FFF;
    }

    .l-header-02__inquiry--tel i {
        margin-right: 5px;
    }

    .l-header-02__inquiry--tel p {
        text-align: center;
        font-size: 12px;
        color: #000;
    }

    .l-header-02__wrapper--glay .l-header-02__inquiry--tel p {
        color: #FFF;
    }
}

/* PC */
@media screen and (min-width:1500px) {
    .l-header-02__inner {
        padding-top: 5px;
    }
}

/*=================================

* メインビジュアル-02

=================================*/
.l-main-visual-02 {
    position: relative;
    margin: 0 auto;
    height: calc(100vh - 205px);
}

.l-main-visual-02__slide {
    width: 100%;
    height: calc(100vh - 205px);
    overflow: hidden;
}

.l-main-visual-02__slide::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.15);
}

.l-main-visual-02__text {
    position: absolute;
    top: 22%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    margin: 0 auto;
}

.l-main-visual-02__text h1 {
    margin-bottom: 15px;
    font-size: clamp(25px, 25 / 768 * 100vw, 35px);
    font-weight: 900;
    font-family: 'Noto Serif JP', serif;
    text-align: center;
    line-height: 1.4;
    color: #FFF;
    text-shadow: 0 0 5px #000;
}

.l-main-visual-02__label {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.l-main-visual-02__circle {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #F25C05;
}

.l-main-visual-02__circle__text {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translate(-50%, -47%);
    left: 50%;
    text-align: center;
    color: #fff;
    font-weight: bold;
    line-height: 1.3;
    text-shadow: #F25C05 3px 3px 3px, #F25C05 -3px -3px 3px, 
    #F25C05 -3px 3px 3px, #F25C05 3px -3px 3px, #F25C05 3px 0px 3px, 
    #F25C05 -3px 0px 3px, #F25C05 0px 3px 3px, #F25C05 0px -3px 3px;
}

.l-main-visual-02__label span {
    font-size: 16px;
}

.l-main-visual-02__label span em {
    font-size: 21px;
    font-weight: 900;
    font-style: normal;
}

.vegas-timer {
    display: none;
}

.l-main-visual-02__nav {
    background-color: #f07f1d;
}

.l-main-visual-02__nav ul {
    display: flex;
    flex-direction: column;
}

.l-main-visual-02__nav li {
    background-color: #e4720f;
}

.l-main-visual-02__nav li:last-child {
    background-color: #f28d35;
}

.l-main-visual-02__nav li a {
    position: relative;
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #FFF;
}

.l-main-visual-02__nav__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 60px;
}

.l-main-visual-02__nav__inner h2 {
    display: flex;
    align-items: center;
    position: relative;
    font-size: clamp(25px, 25 / 768 * 100vw, 35px);
    font-weight: 900;
    font-family: 'Noto Serif JP', serif;
}

.l-main-visual-02__nav__inner h2::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 50px;
  background-image: url(../img/logo-mark.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: text-top;
  margin-right: 10px;
  opacity: 0.85;
}

.l-main-visual-02__nav__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFF;
    color: #f07f1d;
    border-radius: 1px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    padding: 8px 7px;
}

/* PC */
@media screen and (min-width:768px) {
    .l-main-visual-02 {
        height: calc(100vh - 180px);
    }
    
    .l-main-visual-02__slide {
        height: calc(100vh - 180px);
    }

    .l-main-visual-02__text {
        top: 28%;
        max-width: 1140px;
    }

    .l-main-visual-02__text h1 {
        margin-bottom: 30px;
        font-size: clamp(30px, 30 / 1140 * 100vw, 45px);
        text-shadow: 0 0 8px #000;
    }

    .l-main-visual-02__label {
        gap: 25px;
    }

    .l-main-visual-02__circle {
        width: clamp(130px, 130 / 1140 * 100vw, 150px);
        height: clamp(130px, 130 / 1140 * 100vw, 150px);
    }

    .l-main-visual-02__label span {
        font-size: clamp(21px, 21 / 1140 * 100vw, 25px);
    }

    .l-main-visual-02__label span em {
        font-size: clamp(30px, 30 / 1140 * 100vw, 35px);
    }

    .l-main-visual-02__nav ul {
        flex-direction: row;
        max-width: 1350px;
        margin: 0 auto;
    }
    
    .l-main-visual-02__nav li {
        width: 50%;
    }

    .l-main-visual-02__nav li a {
        padding: 3px 20px;
    }

    .l-main-visual-02__nav li a::before {
        content: "";
        position: absolute;
        transition: left 0.2s, width 0.2s;
        width: 0;
        height: 100%;
        bottom: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.15);
    }

    .l-main-visual-02__nav li a:hover::before {
        width: 100%;
        left: 0;
    }

    .l-main-visual-02__nav__inner {
        min-height: 100px;
    }

    .l-main-visual-02__nav__arrow {
        right: 30px;
        padding: 10px;
    }
    
    .l-main-visual-02__nav__inner h2 {
        font-size: clamp(28px, 28 / 1140 * 100vw, 35px);
    }

    .l-main-visual-02__nav__inner h2::before {
        width: clamp(55px, 55 / 1140 * 100vw, 70px);
        height: clamp(55px, 55 / 1140 * 100vw, 70px);
        margin-right: 15px;
    }
}

/* アニメーション */
.vegas-animation-template {
    animation: template ease-out;
}

@keyframes template {
    0% {
        transform: scale(1.2) translate(0, 0);
    }
    100% {
        transform: scale(1) translate(0, 0);
    }
}

/*=========================================

* フッター-08

==========================================*/
.l-footer-08 {
    background-color: #F8F8F8;
    border-top: none;
}

.l-footer-08__inner {
    width: 90%;
    margin: 0 auto;
    padding: 20px 0;
}

.l-footer-08__logo {
    margin-bottom: 15px;
    font-size: clamp(28px, 28 / 768 * 100vw, 35px);
    font-weight: 900;
    line-height: 1;
    color: #000;
}

.l-footer-08__logo img {
    width: 70%;
    margin-bottom: 15px;
}

.l-footer-08__sns {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.l-footer-08__sns a:hover {
    opacity: 0.7;
}

.l-footer-08__sns img {
    width: 35px;
}

.l-footer-08__sns a:not(:first-child) {
    margin-left: 15px;
}

.l-footer-08__contact {
    margin-top: 30px;
}

.l-footer-08__contact h3 {
    position: relative;
    width: 100%;
    height: 14px;
    text-align: center;
    border-bottom: 1px solid #000;
}

.l-footer-08__contact h3 span {
    padding: 0 10px;
    font-size: 18px;
    background-color: #f8f8f8;
}

.l-footer-08__contact__shop__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.l-footer-08__contact__shop__tel a {
    font-size: clamp(35px, 40/768*100vw, 40px);
    font-family: "Arial", sans-serif;
    color: #333;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
}

.l-footer-08__contact__shop__tel i {
    margin-right: 5px;
}

.l-footer-08__contact__inquiry {
    margin-top: 15px;
}

.l-footer-08__contact__inquiry a {
    display: block;
    width: 100%;
    padding: 12px 0;
    color: #f07f1d;
    text-align: center;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #f07f1d;
}

.l-footer-08__contact__inquiry a:hover {
    color: #fff;
    background-color: #f07f1d;
}

/* スマホ */
@media screen and (max-width: 450px) {
    .l-footer-08__info {
        text-align: center;
    }

    .l-footer-08__contact__shop__info {
        flex-direction: column-reverse;
        text-align: center;
    }
}

/* PC */
@media screen and (min-width: 768px) {
    .l-footer-08__inner {
        display: flex;
        justify-content: space-between;
        width: unset;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px 10px;
    }
    
    .l-footer-08__info {
        padding-top: 5px;
        width: 35%;
    }

    .l-footer-08__logo {
        font-size: clamp(25px, 25 / 1140 * 100vw, 35px);
    }

    .l-footer-08__logo img {
        width: 60%;
        margin-bottom: 0;
    }

    .l-footer-08__sns {
        justify-content: flex-start;
    }

    .l-footer-08__sns img {
        width: 40px;
    }

    .l-footer-08__sns a:not(:first-child) {
        margin-left: 10px;
    }

    .l-footer-08__contact__shop__open {
        width: 50%;
    }

    .l-footer-08__info p {
        font-size: 17px;
    }

    .l-footer-08__contact__shop__tel a {
        font-size: clamp(30px, 35/1140*100vw, 40px);
    }
    
    .l-footer-08__contact {
        width: 55%;
        margin-top: 0;
    }

    .l-footer-08__contact__inquiry {
        margin-top: 10px;
    }

    .copyright {
        background-color: #f07f1d;
    }
}

/* フッターナビゲーション
==============================*/

.l-footer-08__nav {
    padding: 20px 10px;
    background-color: #fff;
}

.l-footer-08__nav__inner {
    padding: 0 8px
}

.l-footer-08__nav__inner ul {
    display: flex;
    flex-wrap: wrap;
}

.l-footer-08__nav__inner li:not(:last-child) {
    margin-right: 30px;
}

.l-footer-08__nav__inner li a {
    font-size: 15px;
    color: #000;
    text-decoration: none;
}

.l-footer-08__nav__inner li a::before {
    content: ">";
    margin-right: 3px;
}

/* PC */
@media screen and (min-width: 768px) { 
    .l-footer-08__nav__inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0;
    }
}

/* SP */
@media screen and (max-width:767px) {
    .btn__page_top {
        display: none !important;
    }
}


/*=================================

* トップページ

=================================*/

/*
　当社について
=================================*/
.p-about__image {
    margin-bottom: 30px;
}

.p-about__image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    object-position: 45% 25%;
}

.p-about p {
    line-height: 1.6;
}

/* PC */
@media screen and (min-width:768px) { 
    .p-about__image {
        margin-bottom: 30px;
    }

    .p-about__image img {
        height: 250px;
    }

    .p-about p {
        line-height: 1.8;
    }
}

/*
　特徴（３カラム）-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: 20px;
    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: #F25C05;
    text-align: center;
    font-family: 'Noto Serif JP', serif;
}

.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;
        width: 100%;
    }

    .c-feature-col3-06 li {
        width: 30%;
        margin-bottom: 0;
    }

    .c-feature-col3-06 h3 {
        font-size: clamp(25px, 25 / 1140 * 100vw, 28px);
    }
}

/*
　物件情報-01
================================*/
.c-estate-list-col3-01 li {
    position: relative;
    margin-bottom:50px;
    background-color: #f5f5f5;
}

/* テキスト部分の背景：白色 */
.l-section--gray .c-estate-list-col3-01 li,
.l-section--yellow .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: #f07f1d;
}

.c-estate-list-col3-01__type[data-type*="賃貸"] {
    background: #003d75;
}

.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: #f07f1d;
}

/* 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;
    }
}

/*
　お客様の声（簡易版）-02
================================*/
.c-survey-list-02 {
    width: 95%;
    margin: 0 auto;
}

.c-survey-list-02 li {
    margin-bottom: 50px;
    border: solid 1px #9c9c9c;
    background: #fff;
}

.c-survey-list-02 li a {
    display: block;
    height: 100%;
    padding: 20px;
    text-decoration: none;
    box-sizing: border-box;
}

.c-survey-list-02__image {
    margin-bottom: 20px;
}

.c-survey-list-02__image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.c-survey-list-02__name {
    margin: 0 auto 10px auto;
    color: #333;
    font-weight: bold;
}

.c-survey-list-02__tag {
    display: flex;
    align-items: center;
    margin: 0 auto 15px auto;
}

.c-survey-list-02__tag--area, 
.c-survey-list-02__tag--type {
    margin-right: 10px;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
}

.c-survey-list-02__tag--area {
    background: #f07f1d;
}

.c-survey-list-02__tag--type {
    background: #003d75;
}

.c-survey-list-02__detail {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin: 0 auto;
    line-height: 1.3;
    color: #333;
    overflow: hidden;
}

/* PC */
@media screen and (min-width:768px) {
    .c-survey-list-02 {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        width: 100%;
    }

    .c-survey-list-02::after {
        content: '';
        display: block;
        width: 31%;
    }

    .c-survey-list-02 li {
        width: 31%;
    }

    .c-survey-list-02 a:hover {
        opacity: 0.7;
    }
}

/*
　よくある質問-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: #f07f1d; 
}

.c-ques-list-01 dd:before {
    content: "A";
    background-color: #CCC;
}

/* PC */
@media screen and (min-width:768px) {
    .c-ques-list-01 {
        width: 100%;
    }

    .c-ques-list-01 dt:before,
    .c-ques-list-01 dd:before {
        width: 45px;
        height: 45px; 
        font-size: 27px;
        line-height: 45px;
    }
}

/*
　ブログリスト-01
================================*/
.c-blog-list-01 li {
    margin-bottom: 50px;
}

.c-blog-list-01 li:last-child {
    margin-bottom: 20px;
}

.c-blog-list-01 li a {
    display: block;
    text-decoration: none;
}

.c-blog-list-01__image {
    margin-bottom: 15px;
}

.c-blog-list-01__image img {
    display: block;
    width: 100%;
    max-width: 400px;
    height: 200px;
    object-fit: cover;
    margin: 0 auto;
    border-radius: 13px;
}

.c-blog-list-01__content {
    margin-bottom: 15px;
}

.c-blog-list-01__content__title {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    font-weight: bold;
}

.c-blog-list-01__content__text {
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    color: #333;
}

.c-blog-list-01__content__tag {
    margin-bottom: 10px;
}

.c-blog-list-01__content__tag span {
    display: inline-block;
    margin-bottom: 5px;
    padding: 5px 10px;
    font-size: 14px;
    color: #fff !important;
    background-color: #f07f1d;
}

.c-blog-list-01__content__date {
    font-size: 14px;
    color: #666;
}

/* PC */
@media screen and (min-width:768px) {
    .c-blog-list-01 {
        max-width: 1140px;
        margin: 0 auto 15px auto;
    }

    .c-blog-list-01 li {
        margin-bottom: 0;
        padding: 30px 0;
        border-bottom: solid 1px #dfdfdf;
    }

    .c-blog-list-01 li:last-child {
        border-bottom: none;
    }
    
    .c-blog-list-01 li a {
        display: flex;
        justify-content: space-between;
    }

    .c-blog-list-01 li a:hover {
        opacity: 0.7;
    }

    .c-blog-list-01__image {
        width: 350px;
        margin-bottom: 0;
        margin-right: 50px;
        padding: 0;
    }

    .c-blog-list-01__image img {
        height: 180px;
    }

    .c-blog-list-01__content {
        width: calc(100% - 400px);
        margin-bottom: 0;
        padding: 0;
    }
}


/*=================================

* 下層ページ（共通）

=================================*/

/*
　サブビジュアル
================================*/
.c-page-title-02 {
    position: relative;
    height: 250px;
    margin-bottom: 35px;
}

.c-page-title-02::before {
    position: absolute;
    content: '';
    top: 35px;
    left: 0;
    width: 90%;
    height: 250px;
    background: #f07f1d;
}

.c-page-title-02__img {
    position: relative;
    width: 90%;
    height: 100%;
    margin-left: auto;
    background: url(../img/page-title__buy.jpg) no-repeat center center / cover;
}

.c-page-title-02__img__service {
    background: url(../img/page-title__service.jpg) no-repeat center center / cover;
}

.c-page-title-02__img__company {
    background: url(../img/page-title__company.jpg) no-repeat center center / cover;
}

.c-page-title-02__img__sell {
    background: url(../img/page-title__sell.jpg) no-repeat center center / cover;
}

.c-page-title-02__img__souzoku {
    background: url(../img/page-title__souzoku.jpg) no-repeat center center / cover;
}

.c-page-title-02__img__akiya {
    background: url(../img/page-title__akiya.jpg) no-repeat center center / cover;
}

.c-page-title-02__img__teikei {
    background: url(../img/page-title__teikei.jpg) no-repeat center center / cover;
}

.c-page-title-02__img::before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.c-page-title-02__img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c-page-title-02__text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    color: #FFF;
    text-align: center;
    text-shadow: 2px 2px 2px #000;
}

.c-page-title-02 h1 {
    margin-bottom: 10px;
    font-size: clamp(30px, 8vw ,35px);
    font-weight: 900;
    font-family: 'Noto Serif JP', serif;
}

.c-page-title-02 h2 {
    font-size: clamp(15px, 2vw ,18px);
    font-weight: bold;
}

/* PC */
@media screen and (min-width:768px) {
    .c-page-title-02 {
        height: 350px;
        margin-bottom: 100px;
    }

    .c-page-title-02::before {
        height: 350px;
        top: 60px;
    }

    .c-page-title-02 h1 {
        margin-bottom: 0;
        font-size: clamp(40px, 40 / 1140 * 100vw, 55px);
    }

    .c-page-title-02 h2 {
        font-size: clamp(18px, 18 / 1140 * 100vw, 23px);
    }
}


/*=================================

* 事業内容

=================================*/

/*
　特徴（交互）-02
================================*/
.c-feature-swap-02__inner {
    width: 95%;
    margin: 0 auto;
}

.c-feature-swap-02__card {
    margin-bottom: 50px;
}

.c-feature-swap-02__card:last-child {
    margin-bottom: 0;
}

.c-feature-swap-02__card__img { 
    position: relative;
    width: 100%;
    max-height: 350px;
}

.c-feature-swap-02__card__img:before {
    content:"";
    display: block;
    padding-top: 51.22%
}

.c-feature-swap-02__card__img img {
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c-feature-swap-02__card__text h3 {
    padding: 20px 0;
    color: #f07f1d;
    font-size: clamp(27px, 27 / 768 * 100vw, 33px);
    font-weight: 900;
    line-height: 1.3;
}

.c-feature-swap-02__card__text h3 span {
    display: inline-block;
    margin-bottom: 8px;
    padding: 5px 12px 7px;
    text-align: center;
    color: #FFF;
    background-color: #f07f1d;
    border-radius: 25px;
    font-size: clamp(17px, 17 / 768 * 100vw, 22px);
    font-weight: bold;
    line-height: 1;
}

.c-feature-swap-02__card__text p {
    font-size: clamp(16px, 16 / 768 * 100vw, 18px);
    line-height: 1.7;
}

.c-feature-swap-02__card__text a {
    display: block;
    margin-top: 15px;
    padding: 10px 15px;
    text-decoration: none;
    text-align: center;
    color: #f07f1d;
    font-size: clamp(16px, 16 / 768 * 100vw, 18px);
    font-weight: 500;
    border: 2px solid #f07f1d;
    background-color: #FFF;
}

.c-feature-swap-02__card__text a:hover {
    background-color: #f07f1d;
    border: 2px solid #f07f1d;
    color: #FFF;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-feature-swap-02 {
        overflow: hidden;
    }

    .c-feature-swap-02__inner {
        width: 100%;
        max-width: 1140px;
    }

    .c-feature-swap-02__card {
        display: flex;
        margin-bottom: 80px;
    }

    .c-feature-swap-02__flex-reverse {
        flex-direction: row-reverse;
    }
    
    .c-feature-swap-02__outside--right {
        flex: 1;
        margin-right: calc(50% - 50vw);
    }

    .c-feature-swap-02__outside--left {
        flex: 1;
        margin-left: calc(50% - 50vw);
    }

    .c-feature-swap-02__card__img {
        width: 50%;
        max-height: 450px;
    }

    .c-feature-swap-02__card__text {
        box-sizing: border-box;
        width: 50%;
        margin-top: 10px;
        padding: 0 30px;
    }

    .c-feature-swap-02__card__text h3 {
        padding-top: 0;
        font-size: clamp(25px, 25 / 1140 * 100vw, 40px);
        line-height: 1.2;
    }

    .c-feature-swap-02__card__text h3 span {
        margin-bottom: 10px;
        padding: 7px 15px 8px;
        font-size: clamp(18px, 18 / 1140 * 100vw, 22px);
    }

    .c-feature-swap-02__card__text p {
        font-size: clamp(16px, 16 / 1140 * 100vw, 18px);
        line-height: 1.8;
    }

    .c-feature-swap-02__card__text a {
        width: 60%;
        margin-top: 20px;
        padding: 10px 15px;
        font-size: clamp(16px, 16 / 1140 * 100vw, 19px);
    }
}  

/*
　ルビ付き-07
================================*/
.c-title-ruby-07 {
    position: relative;
    text-align: center;
    font-family: "Noto Serif JP", serif;
    font-weight: bold;
    margin-bottom: 30px;
    padding: 30px 0 20px 0;
}
  
.c-title-ruby-07 span {
    position: relative;
    line-height: 1.5;
    font-size: clamp(26px, 26/768*100vw, 35px);
    z-index: 2;
}
  
.c-title-ruby-07::before {
    content: attr(data-en);
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(241, 141, 95, 0.6);
    opacity: 0.2;
    font-size: 3rem;
    font-size: clamp(47px, 47/768*100vw, 60px);
    font-weight: normal;
    font-style: italic;
    z-index: 1;
}
  
.c-title-ruby-07::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 1px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
}
  
/* PC */
@media screen and (min-width: 768px) {
    .c-title-ruby-07 {
        margin-bottom: 40px;
    }

    .c-title-ruby-07 span {
        font-size: clamp(25px, 25/1140*100vw, 35px);
    }

    .c-title-ruby-07::before {
        top: -40px;
        font-size: clamp(65px, 65/1140*100vw, 85px);
        letter-spacing: -3px;
    }
}

/*
　下線付き-01
================================*/
.c-title-border-01 {
    position: relative;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.4;
    width: 90%;
    margin: 0 auto 50px auto;
}

.c-title-border-01::after {
    content: '';
    display: block;
    position: absolute;
    width: 46px;
    left: calc(50% - 23px);
    bottom: -15px;
    border: 2px solid #f07f1d;
    border-radius: 50px;
}

/* PC */
@media screen and (min-width:768px) {
    .c-title-border-01 {
        width: 100%;
        font-size: 2.3rem;
        line-height: 1.4;
        margin: 0 auto 70px auto;
    }
}

/*
特徴（3カラム）-07
================================*/
.c-feature-col3-07 {
    width: 90%;
    margin: 0 auto;
}

.c-feature-col3-07__unit {
    position: relative;
    margin-bottom: 50px;
}

.c-feature-col3-07__list-cover {
    position: absolute;
    top: -14px;
    left: -20px;
    padding-top: 6px;
    width: clamp(60px, 60/768*100vw, 70px);
    height: clamp(60px, 60/768*100vw, 70px);
    text-align: center;
    color: #fff;
    font-weight: bold;
    background-color: #f07f1d;
    border-radius: 50%;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
    border: 3px solid #fff;
}

.c-feature-col3-07__list-cover span.c-feature-col3-07__list-number {
    font-size: clamp(30px, 30/768*100vw, 45px);
}

.c-feature-col3-07__unit:last-child {
    margin-bottom: 0;
}

.c-feature-col3-07__unit__body {
    background-color: #fff;
}

.c-feature-col3-07__unit__body img {
    display: block;
    width: 100%;
    aspect-ratio: 2/1;
    object-fit: cover;
}

.c-feature-col3-07__unit__body p {
    padding: 15px;
    font-weight: bold;
}

.c-feature-col3-07__triangle {
    width: 0;
    height: 0;
    margin: 40px auto;
    border-style: solid;
    border-right: 50px solid transparent;
    border-left: 50px solid transparent;
    border-top: 50px solid #696969;
    border-bottom: 0;
}

.c-feature-col3-07__catch {
    padding: 10px;
    background-color: #f07f1d;
}

.c-feature-col3-07__catch p {
    font-size: clamp(20px, 20/768*100vw, 23px);
    font-weight: bold;
    color: #fff;
    text-align: center;
}


/* PC */
@media screen and (min-width:768px) {
    .c-feature-col3-07 {
        display: flex;
        justify-content: space-between;
        width: 98%;
    }

    .c-feature-col3-07__unit {
        width: 31%;
        margin-bottom: 0;
    }

    .c-feature-col3-07__list-cover {
        top: -15px;
        left: -18px;
        padding-top: 3px;
        width: clamp(60px, 60/1140*100vw, 70px);
        height: clamp(60px, 60/1140*100vw, 70px);
    }
    
    .c-feature-col3-07__list-cover span.c-feature-col3-07__list-number {
        font-size: clamp(30px, 30/1140*100vw, 40px);

    }

    .c-feature-col3-07__unit__body img {
        aspect-ratio: 3/2;
    }

    .c-feature-col3-07__unit__body p {
        padding: 18px 15px;
        font-size: clamp(16px, 16/1140*100vw, 18px);
        letter-spacing: 0.03rem;
    }

    .c-feature-col3-07__catch {
        width: 98%;
        margin: 0 auto;
        padding: 15px 20px;
        box-sizing: border-box;
    }

    .c-feature-col3-07__catch p {
        font-size: clamp(23px, 27/1140*100vw, 30px);
    }
}

/*
　ポイント（１カラム）-07
================================*/
.c-point-col1-07 {
    margin: 0 10px;
}

.c-point-col1-07__card {
    margin-bottom: 50px;
    padding: 20px 15px 40px 15px;
    background-color: #fff;
    box-shadow: 0 0 15px 3px rgba(118, 118, 118, 0.5);
}

.c-point-col1-07__card:last-child {
    margin-bottom: 0;
}

.c-point-col1-07__card__header {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.c-point-col1-07__list-cover {
    width: 50px;
    height: 50px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    background-color: #f07f1d;
    border-radius: 50%;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}

.c-point-col1-07__list-cover span.c-point-col1-07__list-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    font-size: clamp(30px, 30/768*100vw, 45px);
}

.c-point-col1-07__card__title {
    line-height: 1.3;
    font-size: 22px;
    font-weight: bold;
}

.c-point-col1-07__card__title.c-point-col1-07__card__title--akiya {
    color: #f07f1d;
    font-weight: 900;
}

.c-point-col1-07__card__image {
    margin-bottom: 30px;
}

.c-point-col1-07__card__image img {
    display: block;
    max-width: 100%;
    height: auto;
}

.c-point-col1-07__card__text p {
    line-height: 1.75;
}

/* PC */
@media screen and (min-width:768px) {
    .c-point-col1-07 {
        margin: 0;
    }

    .c-point-col1-07__card {
        margin-bottom: 100px;
        padding: 45px 60px 60px 60px;
    }

    .c-point-col1-07__card__header {
        margin-bottom: 40px;
    }

    .c-point-col1-07__card__header.c-point-col1-07__card__header--akiya {
        justify-content: center;
    }

    .c-point-col1-07__list-cover {
        width: 70px;
        height: 70px;
    }
    
    .c-point-col1-07__list-cover span.c-point-col1-07__list-number {
        width: 70px;
        height: 70px;
        font-size: 40px;
    }

    .c-point-col1-07__card__title {
        font-size: 36px;
        line-height: 1.5;
    }

    .c-point-col1-07__card__title.c-point-col1-07__card__title--akiya {
        text-align: center;
    }

    .c-point-col1-07__card__block {
        display: flex;
        flex-direction: row-reverse;
    }
    
    .c-point-col1-07__card__image {
        width: 50%;
        margin: 0;
        text-align: right;
    }
    
    .c-point-col1-07__card__text {
        width: 50%;
        margin-right: 50px;
    }

    .c-point-col1-07__card__text p {
        font-size: clamp(16px, 16/1140*100vw, 18px);
        line-height: 1.8;
    }
}

/*
　ブログリスト-02
================================*/
.c-blog-list-02 {
    margin-bottom: 40px;
}

.c-blog-list-02 li {
    max-width: 400px;
    margin: 0 auto 50px auto;
}

.c-blog-list-02 li:last-child {
    border-bottom: none;
}

.l-section--gray .c-blog-list-02 li,
.l-section--blue .c-blog-list-02 li,
.l-section--yellow .c-blog-list-02 li {
    background-color: #fff;
}

.c-blog-list-02 li a {
    display: block;
    text-decoration: none;
}

.c-blog-list-02__image img {
    display: block;
    width: 100%;
    max-width: 400px;
    height: 200px;
    object-fit: cover;
    margin: 0 auto;
}

.c-blog-list-02__content {
    padding-top: 10px;
    padding-bottom: 10px;
}

.l-section--gray .c-blog-list-02__content,
.l-section--blue .c-blog-list-02__content,
.l-section--yellow .c-blog-list-02__content {
    padding-left: 8px;
    padding-right: 8px;
}

.c-blog-list-02__content__inner { 
    padding-bottom: 10px;    
}

.c-blog-list-02__content__date {
    color: #666;
}

.c-blog-list-02__content__title {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: bold;
    color: #f07f1d;
    font-weight: bold;
}

.c-blog-list-02__content__text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    color: #333;
}

.c-blog-list-02__tag span {
    display: inline-block;
    margin-bottom: 5px;
    padding: 5px 10px;
    font-size: 14px;
    color: #fff !important;
    background-color: #003d75;
}

/* PC */
@media screen and (min-width:768px) {
    .c-blog-list-02 {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        max-width: 1140px;
        margin: 0 auto;
    }

    .c-blog-list-02::after {
        content: '';
        display: block;
        width: 31%;
    }

    .c-blog-list-02 li {
        width: 31%;
        margin: 0 0 50px 0;
        border-bottom: none;
    }

    .c-blog-list-02 a:hover {
        opacity: 0.7;
    }
}

/*
　コンタクト-17
================================*/
.c-contact-17 {
    width: 90%;
    margin: 0 auto;
}

.c-contact-17__title {
    margin-bottom: 30px;
    font-size: 1.6rem;
    font-weight: 900;
    text-align: center;
    color: #000;
}

.c-contact-17__lead {
    font-weight: bold;
}

.c-contact-17__catch {
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.c-contact-17__catch__free-consult,
.c-contact-17__catch__online {
    padding: 10px;
    border: 3px solid #b22222;
    background-color: #efd2d2;
}

.c-contact-17__catch__free-consult p,
.c-contact-17__catch__online p {
    font-size: clamp(21px, 21/768*100vw, 26px);
    color: #b22222;
    font-weight: 900;
}

.c-contact-17__catch__online {
    margin-top: 20px;
    background-color: #efd2d2;
}

.c-contact-17__inner {
    margin-top: 50px;
    margin-bottom: 50px;
    text-align: center;
}

.c-contact-17__button {
    margin-bottom: 30px;
}

.c-contact-17__button-balloon {
    display: block;
    position: relative;
    z-index: 2;
    padding: 8px 20px 9px;
    width: max-content;
    margin: 0 auto -13px;
    color: #333;
    background-color: #fff;
    border: 3px solid #003d75;
    border-radius: 30px;
    line-height: 1;
    font-weight: 700;
}

.c-contact-17__button-balloon span {
    color: #003d75;
    font-size: 1.1rem;
}

.c-contact-17__button__tel .c-contact-17__button-balloon {
    border: 3px solid #f07f1d;
}

.c-contact-17__button__tel .c-contact-17__button-balloon span {
    color: #f07f1d;
}

.c-contact-17__button__line .c-contact-17__button-balloon {
    border: 3px solid #00b900;
}

.c-contact-17__button__line .c-contact-17__button-balloon span {
    color: #00b900;
}

.c-contact-17__button-balloon::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%);
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 7px 0;
    border-color: #fff transparent transparent transparent;
}

.c-contact-17__button a {
    position: relative;
    display: block;
    padding: 25px 20px 20px 20px;
    border-radius: 60px;
    text-decoration: none;
    color: #fff;
    font-size: clamp(20px, 25/768*100vw, 25px);
    text-align: center;
    background: #003d75;
    box-shadow: 0 2px 6px rgba(125, 55, 4, 0.26);
    line-height: 1.4;
    font-weight: 700;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.c-contact-17__button a:hover {
    background: #767171;
}

.c-contact-17__button__tel a {
    background-color: #f07f1d;
    font-size: clamp(27px, 32/768*100vw, 32px);
    font-family: "Arial", "Century Gothic", sans-serif;
    letter-spacing: 0.05em;
    line-height: 1.1;
}

.c-contact-17__button__line a {
    background: #00b900;
    font-size: clamp(20px, 25/768*100vw, 25px);
    letter-spacing: 0.1em;
    line-height: 1.1;
}

.c-contact-17__button a::before {
    content: "";
    position: absolute;
    top: 52%;
    left: 5.5%;
    transform: translateY(-50%);
    display: block;
    width: 30px;
    height: 30px;
}

.c-contact-17__button__tel a::before {
    background: url(../img/contact-17__tel.svg) no-repeat center / contain !important;
}

.c-contact-17__button__line a::before {
    background: url(../img/contact-17__line.svg) no-repeat center / contain !important;
}

.c-contact-17__button.c-contact-17__button__inquiry a::before {
    display: none;
}

.c-contact-17__button a::after {
    content: "";
    position: absolute;
    top: 52%;
    right: 6%;
    transform: translateY(-50%);
    display: block;
    width: 10px;
    height: 15px;
    background: url(../img/contact-17__arrow.svg) no-repeat center / contain;
    width: 10px;
    height: 15px;
}

.c-contact-17__time {
    text-align: center;
    font-weight: 500;
}

.c-contact-17__button i {
    position: absolute;
    left: 5.5%;
    font-size: 30px;
}

/* スマホ */
@media screen and (max-width: 400px) {
    .c-contact-17__button a::before {
        left: 4%;
    }
}
/* PC */
@media screen and (min-width: 1000px) {
    .c-contact-17 {
        width: 95%;
        max-width: 1250px;
    }

    .c-contact-17__title {
        font-size: 2.5rem;
    }

    .c-contact-17__lead {
        font-size: 20px;
        text-align: center;
    }

    .c-contact-17__catch {
        display: flex;
        justify-content: center;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .c-contact-17__catch__free-consult,
    .c-contact-17__catch__online {
        padding: 10px 30px;
    }

    .c-contact-17__catch__free-consult p,
    .c-contact-17__catch__online p {
        font-size: clamp(20px, 25/1250*100vw, 25px);
    }

    .c-contact-17__catch__online {
        margin-top: 0;
        margin-left: 15px;
    }

    .c-contact-17__inner {
        display: flex;
        justify-content: space-between;
    }

    .c-contact-17__button {
        margin-bottom: 0;
        width: 32%;
    }

    .c-contact-17__button-balloon {
        letter-spacing: 0.05em;
    }

    .c-contact-17__button a {
        padding: 28px 10px 26px 30px;
        font-size: clamp(20px, 22/1250*100vw, 24px);
        line-height: 40px;
    }

    .c-contact-17__button i {
        top: 50%;
        transform: translateY(-50%);
        left: 7.5%;
        font-size: clamp(25px, 30/1140*100vw, 30px);
    }

    .c-contact-17__button__tel a {
        font-size: clamp(30px, 35/1250*100vw, 35px);
    }

    .c-contact-17__button a::before {
        top: 50%;
        width: clamp(22px, 35/1250*100vw, 35px);
        height: clamp(22px, 35/1250*100vw, 35px);
    }

    .c-contact-17__button:first-child a:before {
        left: 8.5%;
    }

    .c-contact-17__button:nth-child(2) a:before {
        left: 7.5%;
    }

    .c-contact-17__button.c-contact-17__button__inquiry a::before {
        display: none;
    }

    .c-contact-17__button a::after {
        width: 16px;
        height: 20px;
        right: 3%;
    }

    .c-contact-17__time {
        font-size: 18px;
    }
}

/*
　特徴-04
================================*/
.c-feature-col1-04__title {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 15px auto;
    font-size: clamp(30px, calc(35 / 768 * 100vw), 35px);
    font-weight: 900;
    color: #f07f1d;
}

.c-feature-col1-04 {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}

.c-feature-col1-04__text {
    width: 100%;
    margin-bottom: 40px;
}

.c-feature-col1-04 p {
    font-size: 17px;
    line-height: 1.7;
}

.c-feature-col1-04 p span {
    font-weight: bold;
}

.c-feature-col1-04__image {
    position: relative;
    width: 100%;
    height: 100%;
    margin-bottom: 40px;
    border-radius: 20px;
}

.c-feature-col1-04__image::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: -4%;
    right: -4%;
    background-color: #f4a560;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: inherit;
}

.c-feature-col1-04__image img {
    display: block;
    position: relative;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-radius: inherit;
}

@media screen and (min-width: 768px) {
    .c-feature-col1-04__title {
        margin-bottom: 20px;
        font-size: clamp(35px, calc(55 / 1140 * 100vw), 55px);
    }

    .c-feature-col1-04 {
        display: flex;
        justify-content: space-between;
    }

    .c-feature-col1-04__text {
        width: 55%;
        margin-bottom: 0;
    }

    .c-feature-col1-04 p {
        font-size: 20px;
    }

    .c-feature-col1-04__image {
        width: 42%;
        margin-bottom: 0;
    }

    .c-feature-col1-04__image::before {
        top: -30px;
        right: -30px;
        background-position: unset;
    }
}

/*
　顧客の声-01
================================*/ 
.c-customer-voice-01 {
    margin-bottom: 40px;
}

.c-customer-voice-01 ul li {
    display: flex;
    width: 100%;
    margin: 20px 0;
    align-items: center;
    box-sizing: border-box;
}

.c-customer-voice-01 img {
    width: 18%;
}

.c-customer-voice-01 p {
    position: relative;
    display: inline-block;
    margin-left: 15px;
    padding: 10px 18px;
    font-weight: bold;
    border-radius: 50px;
    background-color: #fff;
    box-sizing: border-box;
} 

.c-customer-voice-01 p::before {
    position: absolute;
    content: "";
    top: 50%;
    left: -23px;
    margin-top: -15px;
    border: 15px solid transparent;
    border-right: 20px solid #FFF;
    z-index: 0;
}

.c-customer-voice-01 span {
    background: linear-gradient(transparent 60%, #FFF799 60%);
}

.c-customer-voice-01__under-text {
    font-size: 1.1rem;
    color: #343a40;
    font-weight: bold;
}


/* PC */
@media screen and (min-width:768px) {
    .c-customer-voice-01 ul {
        display: flex;
        flex-wrap: wrap;
    }

    .c-customer-voice-01 ul li {
        width: 50%;
        margin: 12px 0;
    }

    .c-customer-voice-01 img {
        width: 13%;
    }

    .c-customer-voice-01 p {
        font-size: 20px;
    }

    .c-customer-voice-01__under-text {
        font-size: 1.2rem;
        text-align: center;
    }
}

/*
　誘導型-01
================================*/
.c-title-induction-01 {
    width: 100%;
    padding-bottom: 35px;
    box-sizing: content-box;
    clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%, 0 0);
    background-color: #f07f1d;
}

.c-title-induction-01__inner {
    display: flex;
    align-items: center;
    align-content: flex-start;
    justify-content: center;
    width: 90%;
    margin: 0 auto;
    padding: 4% 0 2% 0;
}

.c-title-induction-01__inner h2 {
    text-align: center;
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    line-height: 1.4;
}

.c-title-induction-01 span {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
}

/* PC */
@media screen and (min-width:768px) {
    .c-title-induction-01__inner {
        max-width: 1140px;
        padding: 25px 0 20px 0;
    }

    .c-title-induction-01__inner h2 {
        line-height: 1.3;
        font-size: clamp(36px, 2vw, 40px);
    }

    .c-title-induction-01__inner span {
        font-size: clamp(42px, 5vw, 53px);
    }
}

/*
 特徴（１カラム）-06
================================*/
.c-feature-col1-06 {
    padding: 30px 20px;
    position: relative;
    background: #ffeabd;
}

.c-feature-col1-06::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    z-index: -1;
}

.c-feature-col1-06__inner {
    padding: 20px 15px;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 0 15px 3px rgba(118, 118, 118, 0.2);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.c-feature-col1-06__header {
    margin-bottom: 30px;
    text-align: center;
}

.c-feature-col1-06__header h2 {
    position: relative;
    display: inline-block;
    align-items: center;
    margin-bottom: 10px;
    font-size: clamp(16px, calc(20/768*100vw), 20px);
    font-weight: bold;
    color: #333;
    line-height: 1.4;
}

.c-feature-col1-06__header h2::before,
.c-feature-col1-06__header h2::after {
    position: absolute;
    content: "";
    width: 2px;
    height: 40px;
    top: 5px;
    background: #333;
}

.c-feature-col1-06__header h2::before {
    left: -20px;
    transform: rotate(-40deg);
}

.c-feature-col1-06__header h2::after {
    right: -20px;
    transform: rotate(40deg);
}

.c-feature-col1-06__header h3 {
    font-size: clamp(27px, calc(30/768*100vw), 30px);
    font-weight: 900;
    color: #f07f1d;
    line-height: 1.4;
}

.c-feature-col1-06__text {
    min-height: 250px;
    overflow-wrap: break-word;
    font-size: 16px;
    text-align: justify;
    line-height: 1.6;
    letter-spacing: 0.06em;
}

.c-feature-col1-06__text span {
    font-weight: 600;
}

.c-feature-col1-06__text ul {
    margin: 25px 0;
    padding-left: 20px;
}

.c-feature-col1-06__text ul li {
    list-style: none;
    display: list-item;
    position: relative;
}

.c-feature-col1-06__text ul li::before {
    position: absolute;
    left: -1em;
    top: .8em;
    content: '';
    width: .3em;
    height: .3em;
    border-radius: 99%;
    background-color: #333;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-feature-col1-06 {
        padding: 70px 60px;
    }

    .c-feature-col1-06__inner {
        max-width: 1140px;
        padding: 70px 60px;
    }

    .c-feature-col1-06__header {
        margin-bottom: 40px;
    }

    .c-feature-col1-06__header h2 {
        margin-bottom: 0;
        font-size: clamp(25px, calc(30/1140*100vw), 30px);
    }

    .c-feature-col1-06__header h2::before,
    .c-feature-col1-06__header h2::after {
        top: 2px;
        width: 3px;
    }

    .c-feature-col1-06__header h2::before {
        left: -25px;
    }

    .c-feature-col1-06__header h2::after {
        right: -20px;
    }

    .c-feature-col1-06__header h3 {
        font-size: clamp(35px, calc(45/1140*100vw), 45px);
    }

    .c-feature-col1-06__text {
        font-size: clamp(16px, calc(20/1140*100vw), 20px);
    }
}

/*
　2columnレイアウト
=================================*/
.c-column-2 {
    margin-bottom: 50px;
}

.c-column__col {
    margin-bottom: 15px;
}

.c-column__col p {
    font-size: clamp(16px, 18/768*100vw, 18px);
}

.c-column__col img {
    max-width: 100%;
    aspect-ratio: 5 / 3;
    object-fit: cover;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-column-2 {
        display: flex;
        justify-content: space-between;
    }
    
    .c-column__col.c-column__col__text {
        width: 55%;
    }

    .c-column__col.c-column__col__image {
        width: 40%;
    }
}

/*
  吹き出し付き見出し-01
==================================*/
.c-title-balloon-01 {
    text-align: center;
}

.c-title-balloon-01__inner p {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    padding: 12px 45px;
    text-align: center;
    font-size: clamp(16px, 16/320*100vw, 28px);
    font-weight: bold;
    color: #fff;
    background: #f07f1d;
    border-radius: 30px;
}

.c-title-balloon-01__inner p::before {
    position: absolute;
    content: "";
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-top: 20px solid #f07f1d;
}

.c-title-balloon-01 h2 {
    font-size: clamp(26px, 26/320*100vw, 35px);
    font-weight: 900;
}

/* PC */
@media screen and (min-width:768px) {
    .c-title-balloon-01__inner p {
        margin-bottom: 20px;
        font-size: clamp(18px, 18/1140*100vw, 28px);
    }

    .c-title-balloon-01 h2 {
        font-size: clamp(30px, 30/1140*100vw, 50px);
    }
}

/*
　特徴（４カラム）-01
================================*/
.c-feature-col4-01  {
    padding: 0 8px;
}

.c-feature-col4-01 ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.c-feature-col4-01 ul li {
    width: 48%;
    margin-bottom: 50px;
}

.c-feature-col4-01__image {
    width: 100%;
}

.c-feature-col4-01__image img {
    width: 100%;
    aspect-ratio: 3/2;
    -o-object-fit: cover;
    object-fit: cover;
}

.c-feature-col4-01__text h3 {
    margin: 10px 0;
    font-size: 16px;
    font-weight: bold;
    color: #003d75;
    text-align: center;
}

.c-feature-col4-01__text p {
    font-size: 15px;
}

/* スマホ */
@media screen and (max-width:374px) {
    .c-feature-col4-01 ul li {
        width: 100%;
    }
}

/* PC */
@media screen and (min-width:768px) {
    .c-feature-col4-01 {
        max-width: 1140px;
        margin: 0 auto;
        padding: 0;
    }

    .c-feature-col4-01 ul {
        justify-content: flex-start;
    }

    .c-feature-col4-01 ul::after {
        content: '';
        display: block;
        width: 23%;
    }

    .c-feature-col4-01 ul li {
        width: 23%;
        margin: 0 2.5% 30px 0;
    }

    .c-feature-col4-01 ul li:nth-child(4n) {
        margin: 0 0 30px 0;
    }

    .c-feature-col4-01__text h3 {
        font-size: 20px;
    }

    .c-feature-col4-01__text p {
        padding: 0 5px;
        font-size: 16px;
    }
}

/*
　ポイント（１カラム）-05
================================*/
.c-point-col1-05__title {
    display: flex;
    align-items: flex-start;
    line-height: 1;
    border-top: 3px solid #000;
    border-bottom: 3px solid #000;
    padding: 10px 0;
}

.c-point-col1-05__title:not(:first-of-type) {
    margin-top: 50px;
}

.c-point-col1-05__title h2 {
    margin-left: 1%;
    line-height: 1.4;
    font-size: clamp(20px, 6vw, 41px);
    font-weight: 900;
}

.c-point-col1-05__text p {
    margin-top: 20px;
    line-height: 2;
    font-size: 16px;
}

/* PC */
@media screen and (min-width:768px) {
    .c-point-col1-05 {
        padding-top: 125px;
    }

    .c-point-col1-05__title {
        align-items: center;
        padding: 15px 0;
    }

    .c-point-col1-05__title:not(:first-of-type) {
        margin-top: 80px;
    }

    .c-point-col1-05__title h2 {
        font-size: clamp(30px, 3.5vw, 45px);
    }

    .c-point-col1-05__text p {
        margin-top: 30px;
        font-size: 18px;
    }
}

/*
　流れ-05
================================*/
.c-flow-05__title__bg-primary {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    background-color: #f07f1d;
    margin-bottom: 30px;
    padding: 10px;
}

.c-flow-05__title__bg-primary h2 {
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    color: #FFF;
}

.c-flow-05 {
    position: relative;
    padding-left: 10px;
    margin-bottom: 50px;
}

.c-flow-05::before {
    content: "";
    width: 15px;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 10px;
    background: #dcdcdc;
    margin-left: -8px;
}

.c-flow-05 li {
    position: relative;
}

.c-flow-05 li:not(:last-child) {
    margin-bottom: 30px;
}

.c-flow-05__block {
    position: relative;
    padding-left: 45px;
    padding-top: 3px;
}

.c-flow-05__block::before, 
.c-flow-05__block::after {
    content: "";
    display: block;
    position: absolute;
    top: 20px;
}

.c-flow-05__block::before {
    width: 8px;
    height: 8px;
    margin-top: -3px;
    left: -4px;
    background: #000;
    border-radius: 50%;
}

.c-flow-05__block::after {
    width: 30px;
    left: 5px;
    border-bottom: 1px dashed;
}

.c-flow-05__no {
    display: inline-block;
    padding: 7px 15px;
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    border: 1px solid #003d75;
    border-radius: 50px;
    color: #003d75;
}

.c-flow-05__title {
    font-size: 20px;
    font-family: 'Noto Serif JP', serif;
    font-weight: 900;
    color: #f07f1d;
    margin: 15px 0;
    line-height: 1.4;
}

.c-flow-05__text {
    line-height: 1.6;
}

/* PC */
@media screen and (min-width:768px) {
    .c-flow-05__title__bg-primary {
        margin-bottom: 50px;
    }

    .c-flow-05__title__bg-primary h2 {
        font-size: 2rem;
    }

    .c-flow-05 li:not(:last-child) {
        margin-bottom: 50px;
    }

    .c-flow-05__block {
        padding-top: 0;
        padding-left: 70px;
    }

    .c-flow-05__block::before {
        margin-top: -5px;
    }

    .c-flow-05__no {
        padding: 7px 20px;
        font-size: 23px;
    }

    .c-flow-05__title {
        font-size: 28px;
    }

    .c-flow-05__block::after {
        width: 50px;
        top: 18px;
    }
}

/*
　コンタクト-16
================================*/
.c-contact-16 {
    width: 95%;
    margin: 0 auto;
}

.c-contact-16__title {
    margin-bottom: 30px;
    font-size: 1.6rem;
    font-weight: 900;
    text-align: center;
    color: #000;
}

.c-contact-16__inner {
    margin-bottom: 40px;
    text-align: center;
}

.c-contact-16__button {
    margin-bottom: 30px;
}

.c-contact-16__button-balloon {
    display: block;
    position: relative;
    z-index: 2;
    padding: 8px 20px 9px;
    width: max-content;
    margin: 0 auto -13px;
    color: #333;
    background-color: #fff;
    border: 3px solid #f07f1d;
    border-radius: 30px;
    line-height: 1;
    font-weight: 700;
}

.c-contact-16__button-balloon span {
    color: #f07f1d;
    font-size: 1.1rem;
}

.c-contact-16__button__tel .c-contact-16__button-balloon {
    border: 3px solid #B22222;
}

.c-contact-16__button__tel .c-contact-16__button-balloon span {
    color: #B22222;
}

.c-contact-16__button-balloon::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%);
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 7px 0;
    border-color: #fff transparent transparent transparent;
}

.c-contact-16__button a {
    position: relative;
    display: block;
    padding: 25px 20px 20px 20px;
    border-radius: 60px;
    text-decoration: none;
    color: #fff;
    font-size: clamp(20px, 5vw, 25px);
    text-align: center;
    background: #f07f1d;
    box-shadow: 0 2px 6px rgba(125, 55, 4, 0.26);
    line-height: 1.4;
    font-weight: 700;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.c-contact-16__button a:hover {
    background: #767171;
}

.c-contact-16__button__tel a {
    background: #B22222;
    font-size: clamp(27px, 5vw, 32px);
    font-family: "Arial", "Century Gothic", sans-serif;
    letter-spacing: 0.1em;
    line-height: 1.1;
}

.c-contact-16__button a::before {
    content: "";
    position: absolute;
    top: 52%;
    left: 7.5%;
    transform: translateY(-50%);
    display: block;
    width: 25px;
    height: 25px;
}

.c-contact-16__button__tel a::before {
    background: url(../img/contact-16__tel.svg) no-repeat center / contain !important;
}

.c-contact-16__button a::after {
    content: "";
    position: absolute;
    top: 52%;
    right: 6%;
    transform: translateY(-50%);
    display: block;
    width: 10px;
    height: 15px;
    background: url(../img/contact-16__arrow.svg) no-repeat center / contain;
    width: 10px;
    height: 15px;
}

.c-contact-16__button i {
    position: absolute;
    top: 52%;
    left: 7.5%;
    transform: translateY(-52%);
}

.c-contact-16__time {
    text-align: center;
    font-weight: 500;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-contact-16 {
        width: 100%;
    }

    .c-contact-16__title {
        font-size: 2.5rem;
    }

    .c-contact-16__inner {
        display: flex;
        justify-content: space-between;
        margin-bottom: 50px;
    }

    .c-contact-16__button {
        margin-bottom: 0;
        width: 48%;
    }

    .c-contact-16__button-balloon {
        letter-spacing: 0.05em;
    }

    .c-contact-16__button a {
        padding: 28px 30px 26px 30px;
        font-size: clamp(21px, 3vw, 29px);
        line-height: 40px;
    }

    .c-contact-16__button__tel a {
        font-size: clamp(30px, 3vw, 37px);
    }

    .c-contact-16__button a::before {
        top: 50%;
        width: clamp(25px, 3vw, 40px);
        height: clamp(25px, 3vw, 40px);
    }

    .c-contact-16__button a::after {
        width: 16px;
        height: 20px;
    }

    .c-contact-16__time {
        font-size: 18px;
    }
}


/*=================================

* 会社紹介

=================================*/

/*
　経営理念
================================*/
.p-company-philosophy {
    width: 95%;
    margin: 0 auto;
}

.p-company-philosophy h2 {
    margin-bottom: 25px;
    font-size: clamp(28px, 28 / 768 * 100vw, 33px);
    font-weight: bold;
    letter-spacing: 0.2em;
    color: #f07f1d;
    text-align: center;
}

.p-company-philosophy p {
    font-size: clamp(20px, 20 / 768 * 100vw, 23px);
    font-weight: bold;
    font-family: "Noto Serif JP", serif;
    line-height: 1.6;
    color: #333;
}

.p-company-philosophy img {
    display: block;
    margin: 20px auto 0 auto;
    width: 80%;
}

/* PC */
@media screen and (min-width:768px) {
    .p-company-philosophy {
        width: 100%;
    }

    .p-company-philosophy h2 {
        font-size: clamp(33px, 33 / 1140 * 100vw, 45px);
    }

    .p-company-philosophy p {
        font-size: clamp(23px, 23 / 1140 * 100vw, 30px);
        text-align: center;
    }

    .p-company-philosophy img {
        width: 60%;
        max-width: 350px;
        margin-top: 40px;
    }
}

/*
　ポイント（３カラム）-08
================================*/
.c-point-col3-08 {
    width: 95%;
    margin: 0 auto;
    box-sizing: border-box;
}

.c-point-col3-08__unit {
    margin-bottom: 50px;
    background: #fff;
    border: solid 1px #f07f1d;
    border-radius: 5px;
    box-sizing: border-box;
}

.c-point-col3-08__unit:last-child {
    margin-bottom: 0;
}

.c-point-col3-08__head {
    position: relative;
}

.c-point-col3-08__head span{
    position: absolute;
    top: 0;
    left: 0;
    padding: 6px;
    font-family: "Arial", sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    background: #f07f1d;
    border-radius: 3px 0 5px 0;
}

.c-point-col3-08__head h3 {
    padding: 52px 20px 0 20px;
    line-height: 1.5;
    font-size: 20px;
    font-weight: bold;
    color: #f07f1d;
}

.c-point-col3-08__body {
    padding: 15px 20px 20px 20px;
}

.c-point-col3-08__body p {
    line-height: 1.6;
    font-size: 16px;
}

/* PC */
@media screen and (min-width:768px) {
    .c-point-col3-08 {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        width: 100%;
        padding: 0 8px;
    }

    .c-point-col3-08__unit {
        display: flex;
        flex-direction: column;
        width: 30%;
        margin-bottom: 0;
    }

    .c-point-col3-08__head span {
        padding: 10px;
        font-size: 24px;
    }

    .c-point-col3-08__head h3 {
        padding: 65px 25px 0 25px;
    }

    .c-point-col3-08__body {
        padding: 25px 25px 30px 25px;
    }
}

/*
　挨拶-03
================================*/
.c-greeting-03 {
    display: flex;
    flex-direction: column;
    width: 95%;
    margin: 0 auto;
}

.c-greeting-03__image img {
    display: block;
    width: 80%;
    margin: 0 auto;
    object-fit: cover;
}

.c-greeting-03__body {
    margin: -80px auto 0 auto;
    padding: 18px;
    line-height: 1.6;
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 500;
    background: rgba(249, 245, 240, 0.9);
    border-radius: 10px;
    box-sizing: border-box;
}

.c-greeting-03__body__title {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.c-greeting-03__body__post {
    margin-right: 10px;
    font-size: 15px;
}

.c-greeting-03__body__name {
    font-size: 18px;
}

/* PC */
@media screen and (min-width:768px) {
    .c-greeting-03 {
        flex-direction: row-reverse;
        justify-content: center;
        align-items: flex-end;
        width: 100%;
        gap: 50px;
    }

    .c-greeting-03__image {
        width: 31%;
        margin: 0;
    }

    .c-greeting-03__image img {
        width: 100%;
        margin: 0 0 0 auto;
    }

    .c-greeting-03__body {
        width: 69%;
        margin: 0;
        padding: 40px;
    }

    .c-greeting-03__body__text {
        margin-bottom: 15px;
        font-size: 18px;
    }

    .c-greeting-03__body__post {
        margin-right: 15px;
        font-size: 16px;
    }
    
    .c-greeting-03__body__name {
        font-size: 20px;
    }
}

/*
　バナー（１カラム）-05
================================*/
.c-banner-col1-05 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: url(../img/company-staff__image.jpg) no-repeat 45% center / cover;
}

.c-banner-col1-05::before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(11, 60, 93, 0.7);
}

.c-banner-col1-05__content {
    position: relative;
    width: 90%;
    text-align: center;
}

.c-banner-col1-05__content__title {
    font-size: clamp(32px, 10vw, 45px);
    font-weight: bold;
    color: #fff;
}

.c-banner-col1-05__content__text {
    margin-top: 15px;
    line-height: 1.4;
    font-size: 16px;
    color: #fff;
}

a.c-banner-col1-05__content__button {
    display: block;
    max-width: 330px;
    margin: 30px auto 0;
    padding: 10px 10px;
    font-size: clamp(18px, 5.6vw, 22px);
    font-weight: bold;
    text-decoration: none;
    color: #f07f1d;
    background: #fedb39;
}

a.c-banner-col1-05__content__button:hover {
    opacity: 0.8;
}

/* PC */
@media screen and (min-width:768px) {
    .c-banner-col1-05__content {
        width: 100%;
    }

    .c-banner-col1-05__content__title {
        font-size: 45px;
    }

    .c-banner-col1-05__content__text {
        font-size: 20px;
    }

    a.c-banner-col1-05__content__button {
        font-size: 22px;
    }
}

/*
　会社概要-02
================================*/
.c-company-02__detail__list {
    display: flex;
    align-items: flex-start;
    padding: 10px 0;
}

.c-company-02__detail__list:nth-child(even) {
    background: #FFF;
}

.c-company-02__detail__list dt {
    width: 28%;
    padding-left: 2%;
}

.c-company-02__detail__list dd {
    width: 81%;
}

.c-company-02__detail__list dt,
.c-company-02__detail__list dd {
    font-size: 14px;
}

/* 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 dt,
    .c-company-02__detail__list dd {
        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%;
    object-fit: contain;
}

@media screen and (min-width: 768px) {
    .p-company__image {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 15px;
    }

    .p-company__image__img {
        width: 32%;
    }

    .p-company__image__img:not(:first-child) {
        margin-top: unset;
    }
}

/* アクセス
 ======================= */
.p-company-access {
    font-size: 0;
}


/*=================================

* 不動産売却

=================================*/

/*
　シンプル-01・中央寄せ
================================*/
.c-title-01 {
    width: 90%;
    font-size: 1.4rem;
    font-weight: 900;
    text-align: center;
    color: #000;
    margin: 0 auto 30px auto;
}

/* PC */
@media screen and (min-width:768px) {
    .c-title-01 {
        width: 100%;
        font-size: 2.5rem;
    }
}

/*
　シンプル-02・テキストカラー
================================*/
.c-title-02,
.c-title-02--color-2 {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.3;
    text-align: center;
    color: #f07f1d;
    margin-bottom: 30px;
}

.c-title-02--color-2 {
    color: #003d75;
}

/* PC */
@media screen and (min-width:768px) {
    .c-title-02,
    .c-title-02--color-2 {
        font-size: 53px;
        margin-bottom: 50px;
    }
}

/*
　背景カラー-01
================================*/
.c-title-bg-01,
.c-title-bg-01--color-2,
.c-title-bg-01--sm,
.c-title-bg-01--color-2--sm {
    margin-bottom: 30px;
    padding: 15px;
    background: #f07f1d;
}

.c-title-bg-01 h2,
.c-title-bg-01--color-2 h2,
.c-title-bg-01--sm h2,
.c-title-bg-01--color-2--sm h2,
.c-title-bg-01 h3,
.c-title-bg-01--color-2 h3,
.c-title-bg-01--sm h3,
.c-title-bg-01--color-2--sm h3 {
    font-size: clamp(27px, 32/768*100vw, 32px);
    color: #fff;
    font-weight: 900;
    line-height: 1.5;
}

.c-title-bg-01--color-2,
.c-title-bg-01--color-2--sm {
    background: #003d75;
}

.c-title-bg-01--sm,
.c-title-bg-01--color-2--sm {
    padding: 10px;
}

.c-title-bg-01--sm h2,
.c-title-bg-01--color-2--sm h2,
.c-title-bg-01--sm h3,
.c-title-bg-01--color-2--sm h3 {
    font-size: clamp(20px, 25/768*100vw, 25px);
}

/* PC */
@media screen and (min-width: 768px) {
    .c-title-bg-01,
    .c-title-bg-01--color-2,
    .c-title-bg-01--sm,
    .c-title-bg-01--color-2--sm {
        margin-bottom: 50px;
        padding: 30px 0;
        text-align: center;
    }
    
    .c-title-bg-01 h2,
    .c-title-bg-01--color-2 h2,
    .c-title-bg-01--sm h2,
    .c-title-bg-01--color-2--sm h2,
    .c-title-bg-01 h3,
    .c-title-bg-01--color-2 h3,
    .c-title-bg-01--sm h3,
    .c-title-bg-01--color-2--sm h3 {
        font-size: clamp(32px, 50/768*100vw, 50px);
        letter-spacing: 0.05em;
    }

    .c-title-bg-01--sm,
    .c-title-bg-01--color-2--sm {
        padding: 15px;
    }

    .c-title-bg-01--sm h2,
    .c-title-bg-01--color-2--sm h2,
    .c-title-bg-01--sm h3,
    .c-title-bg-01--color-2--sm h3 {
        font-size: clamp(25px, 30/768*100vw, 30px);
    }
}

/*
　タイトル（フォントサイズlg）
================================*/
.c-title--large {
    margin-bottom: 30px;
    font-size: 25px;
    font-weight: 900;
}

.c-title--large span {
    font-size: 33px;
}

/* PC */
@media screen and (min-width:768px) {
    .c-title--large  {
        font-size: 40px;
        text-align: center;
    }
    
    .c-title--large span {
        font-size: 55px;
    }
}

/*
　横3つ並び枠
=================================*/
.p-sell__promise {
    width: 90%;
    margin: 0 auto 40px auto;
}

.p-sell__promise li {
    width: 100%;
    margin-bottom: 15px;
    border: 2px solid #f07f1d;
    box-sizing: border-box;
    padding: 15px;
    border-radius: 8px;
}

.p-sell__promise li h3 {
    font-size: 23px;
    margin-bottom: 10px;
    color: #f07f1d;
    text-align: center;
    line-height: 1.2;
    font-weight: 900;
}

/* PC */
@media screen and (min-width:768px) {
    .p-sell__promise {
        margin: 0 auto 70px auto;
        width: 100%;
    }

    .p-sell__promise ul {
        display: flex;
        justify-content: space-between;
    }
    
    .p-sell__promise li {
        width: 32%;
        margin-right: 2%;
        margin-bottom: 0;
        padding: 20px;
    }
    
    .p-sell__promise li:last-child {
        margin-right: 0%;
    }
    
    .p-sell__promise:after {
        content: "";
        display: block;
        clear: both;
    }
    
    .p-sell__promise li h3 {
        font-size: 27px;
    }
}

/*
　こだわりリスト
=================================*/

/* PC */
@media screen and (min-width:768px) {
    .c-checkbox-list-01.p-sell__commitment {
        display: flex;
        justify-content: center;
    }
    
    .c-checkbox-list-01.p-sell__commitment li {
        font-size: 20px;
    }
}

/*
　コンタクト-01
================================*/
.c-contact-01 {
    display: block;
    padding: 30px 0;
    background: #727a84;
}

/* mail */
.c-contact-01__mail {
    width: 95%;
    margin: 0 auto;
    border-bottom: 1px solid #FFF;
}

.c-contact-01__mail a {
    display: block;
    max-width: 380px;
    width: 90%;
    margin: 0 auto 30px auto;
    padding: 20px 0;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    color: #fff;
    border: solid 1px #fff;
}

.c-contact-01__mail a:hover {
    background-color: #FFF;
    color: #727a84;
}

.c-contact-01__mail a i {
    margin-right: 5px;
}

/* tel */
.c-contact-01__tel {
    padding-top: 20px;
    text-align: center;
    color: #fff;
}

.c-contact-01__tel__announce {
    font-size: 18px;
}

.c-contact-01__tel__no {
    text-decoration: none !important;
    font-size: 40px;
    font-weight: bold;
    color: #fff !important;
    font-family: "Arial", "Century Gothic", "Noto Sans Japanese", sans-serif;
}

.c-contact-01__tel__no i {
    margin-right: 5px;
}

/* PC */
@media screen and (min-width:768px) {
    .c-contact-01 {
        display: flex;
        align-items: center;
        padding: 20px 0;
    }

    /* mail */
    .c-contact-01__mail {
        width: 50%;
        padding: 25px 0;
        border-right: 1px solid #FFF;
        border-bottom: none;
    }

    .c-contact-01__mail a {
        width: 70%;
        margin: 0 auto;
    }
    
    /* tel */
    .c-contact-01__tel {
        width: 50%;
        padding-top: 0;
    }

    .c-contact-01__tel__announce {
        font-size: 20px;
    }
}

/*
　流れ-04
================================*/
.c-flow-04 {
    margin: 0 auto 40px auto;
}

.c-flow-04.c-flow-04__inner {
    margin-top: 25px;
}

.c-flow-04__step {
    position: relative;
    width: 270px;
    background: #f07f1d;
    padding: 10px 10px 0 10px;
    text-align: center;
    color: #FFF;
    box-sizing: border-box;
    margin: 0 auto;
}

.c-flow-04__step p, 
.c-flow-04__step h3 {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 2px;
}

.c-flow-04__step:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    bottom: -25px;
    left: 0;
    border-style: solid;
    border-color: #f07f1d transparent transparent transparent;
    border-width: 25px 135px 0 135px;
    z-index: 1;
}

.c-flow-04__text {
    padding: 40px 10px;
}

/* PC */
@media screen and (min-width:768px) {
    .c-flow-04 {
        margin-bottom: 80px;
    }

    .c-flow-04__block {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 20px 0;
        margin-bottom: 30px;
    }

    .c-flow-04__step {
        margin: 0;
    }

    .c-flow-04__text {
        width: calc(100% - 330px);
        padding: 0 0 0 60px;
        font-size: 16px;
    }
}

/*
　コンタクト-10
================================*/
.c-contact-10 {
    background: #003d75;
    width: 100%;
    padding: 50px 0;
}

.c-contact-10__intro {
    position: relative;
    color: #fff;
    width: 80%;
    max-width: 500px;
    margin: 0 auto 50px auto;
}

.c-contact-10__text {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.c-contact-10__text h3 {
    font-weight: bold;
}

.c-contact-10__telno {
    font-size: 40px;
    font-weight: bold;
    font-family: "Arial", sans-serif;
    margin-bottom: 10px;
}

.c-contact-10__telno a {
    color: #fff;
    text-decoration: none;
}

.c-contact-10__telno i {
    font-size: 30px;
    margin-right: 10px;
}

.c-contact-10__open {
    font-weight: bold;
    line-height: 1.5;
}

/* ボタン */
.c-contact-10__button {
    width: 80%;
    max-width: 500px;
    margin: 0 auto 30px auto;
}

.c-contact-10__button a {
    font-size: 20px;
    position: relative;
    padding: 35px 15px 15px 15px;
    border-radius: 10px;
    box-sizing: border-box;
    display: block;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
}

.c-contact-10__button a span {
    position: absolute;
    font-size: 16px;
    color: #000;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 80%;
    padding: 5px 0;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 1px 3px -1px rgba(0,0,0,0.5);
}

.c-contact-10__button-satei {
    margin-bottom: 50px;
}

.c-contact-10__button a i {
    font-size: 25px;
    margin: -5px 10px 0 0;
    vertical-align: middle;
}

.c-contact-10__button a:hover {
    opacity: 0.7;
}

.c-contact-10__button-satei a {
    background: #B22222;
    color: #fff;
}

.c-contact-10__button-inquiry a {
    background: #f07f1d;
    color: #fff;
}

.c-contact-10__button-satei a span {
    border: solid 2px #B22222;
}

.c-contact-10__button-inquiry a span {
    border: solid 2px #f07f1d;
}

/* PC */
@media screen and (min-width:960px) {
    .c-contact-10__intro {
        width: 100%;
        max-width: 1140px;
        margin: 0 auto;
        margin-bottom: 40px;        
    }
    
    .c-contact-10__block {
        width: 100%;
        align-items: center;
        margin-bottom: 0;
        box-sizing: border-box;
    }
    
    .c-contact-10__text {
        font-size: 23px;
        margin: 0;
    }
    
    .c-contact-10__text h3 {
        font-weight: bold;
        text-align: left;
    }
    
    .c-contact-10__tel {
        width: 100%;
        margin: 0 auto 30px auto;
        display: flex;
        align-items: center;
    }
    
    .c-contact-10__telno {
        font-size: 80px;
        margin-bottom: 0;
    }

    .c-contact-10__telno i {
        font-size: 65px;
    }

    .c-contact-10__open {
        font-size: 18px;
        margin-left: 20px;
    }
    
    /* ボタン */
    .c-contact-10__button {
        display: flex;
        justify-content: space-between;
        width: 100%;
        max-width: 1140px;
        margin: 0 auto;
    }
    
    .c-contact-10__button-satei,
    .c-contact-10__button-inquiry {
        width: 48%;
    }

    .c-contact-10__button-satei {
        margin-bottom: 0;
    }

    .c-contact-10__button a {
        padding: 40px 40px 30px 40px;
        font-size: 32px;
    }

    .c-contact-10__button a i {
        font-size: 37px;
        margin: -7px 10px 0 0;
    }

    .c-contact-10__button a span {
        font-size: 21px;
        top: -25px;
        border-width: 3px;
        border-radius: 25px;
    }
}

/* iPhone5 */
@media screen and (max-width:320px) {   
    .c-contact-10__text {
        padding-left: 10px;
    }
    
    /* tel */
    .c-contact-10__telno {
        font-size: 30px;
    }
}

/*
　チェックボックス付きリスト-01
=================================*/
.c-checkbox-list-01,
.c-checkbox-list-01--center {
    width: 95%;
    margin: 0 auto;
}

.c-checkbox-list-01 li,
.c-checkbox-list-01--center li {
    position: relative;
    padding-left: 30px;
    line-height: 1.5;
    margin-bottom: 20px;
    font-size: 17px;
}

.c-checkbox-list-01 li::before,
.c-checkbox-list-01--center li::before {
    position: absolute;
    top: 2px;
    left: 0;
    width: 20px;
    height: 20px;
    content: url(../img/icon__check.svg);
}

@media screen and (min-width:768px) {
    .c-checkbox-list-01,
    .c-checkbox-list-01--center {
        width: 100%;
    }

    .c-checkbox-list-01--center {
        display: flex;
        justify-content: center;
    }

    .c-checkbox-list-01 li,
    .c-checkbox-list-01--center li {
        font-size: 20px;
    }

    .c-checkbox-list-01 li::before,
    .c-checkbox-list-01--center li::before {
        width: 25px;
        height: 25px;
    }

    .c-checkbox-list-01 li,
    .c-checkbox-list-01--center li {
        padding-left: 33px;
    }

    .c-checkbox-list-01 li::before,
    .c-checkbox-list-01--center li::before {
        top: 0;
    }
}

/*
　よくある質問（アコーディオン）-02
================================*/
.c-accordion-menu-02 {
    width: 100%;
    margin: 0 auto 30px auto;
}

.c-accordion-menu-02 li {
    display: block;
    background: #fff;
    box-shadow: 1px 1px 6px #dcdcdc;
    margin-bottom: 20px;
    overflow: hidden;
}

.c-accordion-menu-02__check {
    display: none;
}

.c-accordion-menu-02__check:checked + .c-accordion-menu-02__question + .c-accordion-menu-02__answer {
    padding: 15px 30px 15px 30px;
    height: auto;
    opacity: 1;
    visibility: visible;
}

.c-accordion-menu-02__check:checked + .c-accordion-menu-02__question::after {
    content: "－";
}

.c-accordion-menu-02__question {
    position: relative;
    display: block;
    padding: 15px 50px 15px 30px;
    font-size: 15px;
    font-weight: bold;
    background: #fff;
}

.c-accordion-menu-02__question::before {
    position: absolute;
    display: block;
    top: 12px;
    left: 8px;
    box-sizing: border-box;
    content: "Q";
    color: #f07f1d;
    font-size: 19px;
}

.c-accordion-menu-02__question::after {
    position: absolute;
    display: block;
    top: 50%;
    transform: translate(0, -50%);
    right: 0;
    padding: 15px;
    box-sizing: border-box;
    content: "＋";
    color: #f07f1d;
}

.c-accordion-menu-02__answer {
    padding: 0 30px;
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

.c-accordion-menu-02__answer p {
    margin: 0 auto;
    line-height: 1.6;
    font-size: 15px;
    word-break: break-word;
    position: relative;
}

.c-accordion-menu-02__answer p::before {
    position: absolute;
    display: block;
    top: -4px;
    left: -19px;
    box-sizing: border-box;
    content: "A";
    color: #003d75;
    font-weight: bold;
    font-size: 20px;
}

.c-accordion-menu-02__button {
    text-align: right;
}

@media screen and (min-width: 768px) {
    .c-accordion-menu-02 {
        margin-bottom: 50px;
    }

    .c-accordion-menu-02__question {
        padding-right: 70px;
        padding-left: 40px;
        font-size: 18px;
        cursor: pointer;
    }

    .c-accordion-menu-02__question::before {
        left: 18px;
    }

    .c-accordion-menu-02__question::after {
        padding: 20px;
    }

    .c-accordion-menu-02__answer {
        padding: 0 30px 0 40px;
    }

    .c-accordion-menu-02__check:checked + .c-accordion-menu-02__question + .c-accordion-menu-02__answer {
        padding: 15px 70px 15px 40px;
    }

    .c-accordion-menu-02__answer p {
        font-size: 16px;
        line-height: 1.6;
    }
}

/*=================================

* 相続

=================================*/
/*
　リード
================================*/
.p-souzoku__lead {
    width: 95%;
    margin: 0 auto;
}

.p-souzoku__lead p {
    font-size: clamp(16px, 16/768*100vw, 18px);
    letter-spacing: 0.02rem;
    line-height: 1.7;
}

@media screen and (min-width: 768px) {
    .p-souzoku__lead p {
        font-size: clamp(16px, 18/1140*100vw, 19px);
        letter-spacing: 0.03rem;
        line-height: 1.8;
    }
}

/*
　担当者紹介
================================*/
.p-profile {
    width: 95%;
    margin: 0 auto;
    border: 2px solid #f07f1d;
    box-sizing: border-box;
    border-radius: 20px;
    background-color: #FFF;
}

.p-profile__title {
    padding: 15px;
    background-color: #f07f1d;
    border-radius: 15px 15px 0 0;
}

.p-profile__title h2 {
    font-size: clamp(25px, 5vw, 28px);
    font-weight: 900;
    color: #fff;
}

.p-profile__info {
    padding: 10px 15px;
}

.p-profile__image img {
    display: block;
    width: 60%;
    margin: 0 auto 10px auto;
}

.p-profile__image p {
    font-size: 18px;
    text-align: center;
}

.p-profile__text {
    margin: 20px 0 10px;
    line-height: 1.75;
}

@media screen and (min-width: 768px) {
    .p-profile {
        width: 100%;
    }

    .p-profile__title h2 {
        font-size: clamp(29px, 3vw, 35px);
        text-align: center;
    }

    .p-profile__info {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 20px 40px 20px 30px;
    }

    .p-profile__image {
        width: 25%;
    }

    .p-profile__image img {
        width: 80%;
    }

    .p-profile__text {
        width: 75%;
        margin: 0;
    }

    .p-profile__text p {
        font-size: clamp(16px, 3vw, 18px);
        line-height: 1.8;
    }
}

/*
　対応エリア
================================*/
.p-area__text {
    display: flex;
    justify-content: center;
}

.p-area__text p {
    margin: 0 5px;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.7;
}

.p-area__list {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    padding: 0;
    list-style: none;
    text-align: center;
}

.p-area__list li {
    background-color: #f07f1d;
    padding: 12px 16px;
    border-radius: 50px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    font-size: 20px;
} 

/* PC */
@media screen and (min-width:768px) {
    .p-area__text p {
        font-size: 19px;
        text-align: center;
    }

    .p-area__list {
        margin-top: 60px;
    }
}

/*=================================

* 空き家

=================================*/

/*
　空き家の活用方法
================================*/
.p-akiya__feature {
    width: 95%;
    margin: 0 auto;
}

.p-akiya__feature__lead {
    margin-top: 20px;
    font-size: clamp(18px, 20/768*100vw, 20px);
    font-weight: bold;
    line-height: 1.7;
}

.p-akiya__feature ul {
    margin-top: 50px;
    margin-bottom: 50px;
}

.p-akiya__feature li:not(:first-child) {
    margin-top: 30px;
}

.p-akiya__feature__choice {
    padding: 20px 5px;
    background-color: #f07f1d;
}

.p-akiya__feature__choice h3 {
    font-size: clamp(22px, 24/768*100vw, 24px);
    color: #fff;
    font-weight: bold;
    text-align: center;
}

.p-akiya__feature__triangle {
    width: 0;
    height: 0;
    margin: 20px auto;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 40px solid #696969;
}

.p-akiya__feature__demerit,
.p-akiya__feature__merit {
    position: relative;
    padding: 45px 15px 15px;   
}

.p-akiya__feature__demerit {
    background-color: #f1f1f1;
    border: 2px solid #767171;
}

.p-akiya__feature__merit {
    margin-top: 20px;
    background-color: #fdf2e8;
    border: 2px solid #f07f1d;
}

.p-akiya__feature__demerit__label,
.p-akiya__feature__merit__label {
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    padding: 5px 10px;
}

.p-akiya__feature__demerit__label {
    background-color: #767171;
}

.p-akiya__feature__merit__label {
    background-color: #f07f1d;
}

.p-akiya__feature__demerit__label h4,
.p-akiya__feature__merit__label h4 {
    font-size: 20px;
    color: #fff;
    text-align: center;
}

.p-akiya__feature__demerit p,
.p-akiya__feature__merit p  {
    position: relative;
    margin-left: 25px;
    margin-bottom: 7px;
    font-size: 18px;
    line-height: 1.4;
}

.p-akiya__feature__demerit p i,
.p-akiya__feature__merit p i {
    position: absolute;
    top: 1px;
    left: -27px;
    font-size: clamp(25px, 25/768*100vw, 30px);
}

.p-akiya__feature__merit p i {
    color: #f07f1d;
}

.p-akiya__feature__under-text {
    text-align: center;
}

.p-akiya__feature__under-text p {
    font-size: 17px;
    font-weight: bold;
    text-align: left;
    color: #333;
    line-height: 1.7;
}

.p-akiya__feature__under-text a {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    background-color: #003d75;
    border-radius: 25px;
    color: #FFF;
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
}

.p-akiya__feature__under-text a:hover {
    background-color: #c30d24;
}

@media screen and (min-width: 768px) {
    .p-akiya__feature {
        width: 98%;
        max-width: 1140px;
    }

    .p-akiya__feature__lead {
        margin-top: 40px;
        font-size: clamp(18px, 23/1140*100vw, 23px);
        text-align: center;
    }

    .p-akiya__feature ul {
        display: flex;
        justify-content: space-between;
    }

    .p-akiya__feature li {
        width: 31%;
    }

    .p-akiya__feature li:not(:first-child) {
        margin-top: 0;
    }

    .p-akiya__feature__choice h3 {
        font-size: clamp(16px, 24/1140*100vw, 24px);
    }

    .p-akiya__feature__demerit,
    .p-akiya__feature__merit {
        padding: 60px 20px 20px;   
    }

    .p-akiya__feature__demerit {
        min-height: 120px;
    }

    .p-akiya__feature__merit {
        min-height: 225px;
    }

    .p-akiya__feature__demerit p,
    .p-akiya__feature__merit p  {
        margin-left: 30px;
        margin-bottom: 10px;
        font-size: clamp(16px, 18/1140*100vw, 18px);
    }

    .p-akiya__feature__demerit p i,
    .p-akiya__feature__merit p i {
        top: -1px;
        left: -32px;
        font-size: clamp(25px, 28/1140*100vw, 28px);
    }

    .p-akiya__feature__under-text p,
    .p-akiya__feature__under-text a {
        font-size: clamp(17px, 20/1140*100vw, 20px);
        text-align: center;
    }

    .p-akiya__feature__under-text a {
        min-width: 300px;
    }
}

/*
　空き家すごろく
================================*/
.p-akiya_sugoroku {
    margin-top: 50px;
    padding: 20px;
    border: 1px solid #767171;
}

.p-akiya_sugoroku h2 {
    margin-bottom: 15px;
    font-size: clamp(20px, 20/768*100vw, 25px);
    font-weight: bold;
    color: #003d75;
    line-height: 1.4;
}

.p-akiya_sugoroku p {
    font-size: clamp(16px, 18/768*100vw, 18px);
    line-height: 1.6;
}

.p-akiya_sugoroku i {
    margin-right: 5px;
    font-size: clamp(20px, 20/768*100vw, 25px);
}

.p-akiya_sugoroku a {
    display: inline-block;
    margin: 3px 0;
    word-wrap: break-word; 
}

@media screen and (min-width: 768px) {
    .p-akiya_sugoroku {
        padding: 30px 40px;
    }
}

/*
　空き家管理サービス
================================*/
.p-akiya__service__lead {
    width: 95%;
    margin: 30px auto;
    font-size: 17px;
    font-weight: 500;
    color: #333;
}

.p-akiya__service__under-text {
    width: 95%;
    margin: 0 auto;
    font-size: 18px;
    font-weight: bold;
    color: #f07f1d;
    line-height: 1.5;
}

@media screen and (min-width: 768px) {
    .p-akiya__service__lead {
        margin-top: 40px;
        margin-bottom: 60px;
        font-size: 19px;
        text-align: center;
    }

    .p-akiya__service__under-text {
        margin-top: 30px;
        font-size: 22px;
        text-align: center;
    }
}

/*
　テーブル-02
================================*/
.c-table-02 {
    width: 100%;
    margin: 0 auto 20px auto;
}

.c-table-02 table.tbl thead th {
    padding: 15px 5px;
    color: #FFF;
    background-color: #f07f1d;
    font-weight: bold;
    border-radius: 10px 10px 0 0;
    border: none;
    border-right: 2px solid #f5fbf3;
}

.c-table-02 table.tbl th span.c-table-02__heading {
    display: block;
    width: 95%;
    margin: 0 auto 10px auto;
    padding: 10px 5px;
    background-color: #FFF;
    color: #f07f1d;
    font-weight: bold;
    text-align: center;
    border-radius: 10px;
    line-height: 1.2;
}

.c-table-02 table.tbl th p {
    width: 95%;
    margin: 0 auto;
    text-align: left;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
}

.c-table-02 table.tbl th {
    width: 45%;
    min-width: 149px;
    background: #f3f3f3;
    text-align: center;
}

.c-table-02 table.tbl tr:nth-child(even) td {
    background-color: #f3f3f3;
}

.c-table-02 table.tbl th,
.c-table-02 table.tbl td {
    padding: 13px 5px;
    font-size: clamp(15px, 3vw, 17px);
    box-sizing: border-box;
    color: #333
}

.c-table-02 table.tbl td:first-child {
    font-weight: bold;
}

.c-table-02 table.tbl td:not(:first-child) {
    text-align: center;
}

.c-table-02 table.tbl td span {
    font-size: 1.3rem;
    font-family: "Arial", "Century Gothic", sans-serif;
}

.c-table-02 table.tbl td span.small {
    font-size: 0.8rem;
    font-family: "Noto Sans Japanese", sans-serif;
}

.c-table-02__detail {
    width: 95%;
    margin: 0 auto;
}

.c-table-02__detail p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.4;
}

.c-table-02__price td {
    color: #e60012 !important;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-table-02 table.tbl {
        width: 100%;
    }

    .c-table-02 table.tbl th:first-child,
    .c-table-02 table.tbl td:first-child {
        width: 24%;
    }

    .c-table-02 table.tbl tr:first-child th {
        padding: 25px 5px;
    }

    .c-table-02 table.tbl th span.c-table-02__heading {
        width: 80%;
        line-height: 1;
    }

    .c-table-02 table.tbl th p {
        width: 85%;
        font-size: 16px;
    }

    .c-table-02 table.tbl th,
    .c-table-02 table.tbl td {
        width: 19%;
        padding: 14px 23px;
        font-size: 18px;
    }

    .c-table-02 table.tbl td span {
        font-size: 1.5rem;
    }

    .c-table-02__detail {
        width: 100%;
    }
}

/*
特徴（3カラム）-08
================================*/
.c-feature-col3-08 {
    width: 90%;
    margin: 0 auto;
}

.c-feature-col3-08 li {
    border: 1px solid #000;
    background: #fff;
    margin-bottom: 30px;
    padding: 10px;
    box-sizing: border-box;
}

.c-feature-col3-08__image {
    margin-bottom: 15px;
}

.c-feature-col3-08__image img {
    width: 100%;
    height: 185px;
    object-fit: cover;
}

.c-feature-col3-08__label {
    color: #fff;
    font-weight: bold;
    background: #f07f1d;
    display: inline-block;
    padding: 5px 15px;
    margin-bottom: 12px;
}

.c-feature-col3-08 h3 {
    color: #f07f1d;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-feature-col3-08 {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        width: 100%;
        max-width: 1250px;
    }

    .c-feature-col3-08 li {
        width: 32%;
        margin-bottom: 0;
        padding: 20px;
    }

    .c-feature-col3-08__image img {
        height: 220px;
    }
}

/*=================================

* 業務提携先募集

=================================*/

/*
　業務提携・分担のご相談の流れ　
================================*/

.p-teikei__flow-under-text {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .p-teikei__flow-under-text {
        font-size: 21px;
    }
}

/*
　CTA
================================*/
.p-teikei__cta__text {
    margin-bottom: 50px;
    font-weight: bold;
}

@media screen and (min-width: 768px) {
    .p-teikei__cta__text {
        font-size: 20px;
        text-align: center;
    }
}