@charset "UTF-8";

.home-container{
    margin-top: 1vh;
    
    .summary {
      padding: 0.6rem 1.0rem;
      font-size: 1.1rem;
      line-height: 1.5;
    }  
  }
  
/*-- ニュース --*/
.news-section {
/*  margin: 1.2rem auto; */
  position: relative;
  margin: 1.2em 1.0rem;
  padding: 0.5em 0.5rem;
  border: solid 1px #257a99;
  border-radius: 8px;

  h2 {
    position: absolute;
    display: inline-block;
    top: -13px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    font-size: 1.2rem;
    background: #FFF;
    color: #0f4355;
    font-weight: bold;
  }

  ul {
    margin-top: 9px;
    margin-bottom: 9px;
  }
  
  .title-with-icon {
    display: flex;
    align-items: center;
    font-size: 16px; /* フォントサイズ */
    color: #333; /* 文字色 */
  }

  .title-with-icon i {
    margin-right: 5px; /* アイコンの右マージン */
    color: #f4c03d; /* アイコンの色 */
  }

  .post-date {
    font-size: 0.9rem;
  }

}
/*-- ニュース --*/

/*-- セクション --*/
.home-section {
  max-width: 1280px;
  margin: 1.2em auto;
  padding: 0.6rem 0.6rem;

  h2 {
    padding-bottom: 0.7em;
    text-align: center;
    position: relative;
    font-size: 1.6rem;
/*    font-weight:bold; */
    margin: 24px 0;

    &::after {
      content: '';
      position: absolute;
      border-bottom: 10px dotted #2cc10b;
      width: 60px;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
    }
  }
 
  h3 {
    display: inline-block;
    padding-top: 18px;
    margin: 36px auto;
    font-size: 1.4rem;
    padding-bottom: .3em;
    text-align: center;
    border-bottom: 3px dotted rgb(12, 171, 47);
/*    &::after {
      content: '';
      background-color: #4c9ac0;
      width: 4em;
      height: 5px;
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
    }
*/
  }

  ul {
    margin: 12px;
    width: 80%; /* コンテンツ間のスペース */
  }

  .dl-price {
    display: flex;
    flex-wrap: wrap;
    margin: 12px;
    border: 1px solid #f0f0f0;
    border-radius: 6px;
    width: 96%; /* コンテンツ間のスペース */

    dt {
      font-weight: normal;
      background-color: #f0f0f0;
      padding: 9px;
      width: 40%;
    }

    dd {
      padding: 9px;
      margin: 0 20px 0 0; /* コンテンツ間のスペース */
    }

    @media (max-width: 576px) {

      dt {
        width: 100%;
      }
    }
    
  }

  .cation {
    border: 1px dotted #eb8e8e;
    border-radius: 8px;
    padding: 12px;
  
    .title {
      text-align: center;
      margin-bottom: 6px;
    }
  }

  .home-section-contents {
    padding: 9px;
    p {
      margin-top: 12px;
      padding: 6px 3px;
    }
    /*-- 所在地・アクセス --*/
    .address-map {
      margin-top: 18px;
      .address {
        font-size: 1.0rem;
        padding-bottom: 24px;
        dt {
          font-weight: normal;
          border-bottom: solid 1px #ad9b95;
        }
        dd {
          margin-left: 12px;
          margin-top: 3px;
          margin-bottom: 9px;
        }
      }
      .google-map {
        text-align: center;
        max-width: 50%;
      }
    }
  }
}

.section-catch {
  width: 100%;
  text-align: center;
  strong {
    margin: 1.6rem auto 0rem auto;
    color: #e66e36;
    font-size: 1.7rem;
    font-weight: bold;
    position: relative;
    display:inline-table;
    padding: 0 12px;
  }
  strong:before, strong:after {
    content: '';
    position: absolute;
    top: 60%;
    display: inline-block;
    width: 22px;
    height: 2px;
    background-color: #e6cb67;
  }
  strong:before {
    left: -0.8rem;
    transform: rotate(60deg);
  }
  strong:after {
    right: -0.8rem;
    transform: rotate(-60deg);
  }


}

@media (max-width: 576px) {
  .section-catch {
    strong {
      font-size: 1.2rem;
    }
  }
}

@media (max-width: 576px) {
  .section-mobile-space {
    height: 8rem;
  }
}

/*-- bxSlider Ticker --*/

/*-- trial --*/
.flex-card-3 {
  width: calc(31%);
  padding: 1.0rem 0 1.2rem 0;
  display:flex; /* 高さを揃える:子要素に追加*/
  flex-direction:column;/* 高さを揃える:子要素に追加*/
/* FCF3B8 */
  .trial-title {
    border-radius: 8px 8px 3px 3px;
    background-color: #E1FF8C;
/*  background-image:
    radial-gradient(#fff 24%, transparent 12%),
    radial-gradient(#fff 24%, transparent 12%);
  background-size: 24px 24px;
  background-position: 0 0, 12px 12px;
*/
    border-left: 1px solid #7FA700;
    border-right: 1px solid #7FA700;
    border-top: 1px solid #7FA700;
    padding: 0.5rem 0;
  }

  .trial-image {
    width: 100%;
    display: block;
  }

  .trial-text {
    padding: 1.0rem;
    text-align: left;
    border-left: 1px solid #7FA700;
    border-right: 1px solid #7FA700;
    border-bottom: 1px solid #7FA700;
    flex-grow:1;  /* 高さを揃える*/
  }
}

