@charset "utf-8";

/*----------------------------------------------------
    共通css
----------------------------------------------------*/

/* oki_20220509 */
.kanren {
  /* border: 3px solid #ff5252; */
  /* padding: 20px 30px ; */
  /* margin: 30px 0; */
  margin: 30px auto;
  position: relative;
  box-sizing: border-box;
  z-index: 0;
  max-width: 1100px;
}

.midasi {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
}

.kanren br {
  display: none;
}

.kanren ul li {
  padding: 0 0 1.6rem 2.2rem !important;
  position: relative;
}

.kanren ul li::before {
  content: "";
  display: block;
  background-color: #4b887d;
  width: 10px;
  height: 10px;
  border-radius: 50px;
  position: absolute;
  top: 8px;
  left: 0;
}

/* アコーディオンのときに下記追加 */
.readmore-content {
  position: relative;
  overflow: hidden;
  height: 100px;
}

.readmore-content::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  content: "";
  /*以下お好み グラデーションの色と高さ 高さはreadmoreのheight以下にすること*/
  height: 50px;
  z-index: 1;
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.8) 50%, #fff 100%);
  background: linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.8) 50%, #fff 100%);
}

/* 続きを読むボタン */
.readmore-label {
  display: table;
  bottom: 5px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  margin: 5px auto;
  z-index: 2;
  padding: 6px 15px;
  /* background-color: #ff7777; */
  background-color: #1f201d;
  /* border-radius: 20px; */
  color: #FFF;
  font-weight: bold;
}

.readmore-label:before {
  content: "\7D9A\304D\3092\8AAD\3080";
}

.readmore-check {
  display: none;
}

/*チェック時にボタンを非表示*/
.readmore-check:checked~.readmore-label {
  position: static;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  /* 「続きを読む」を押した後、元に戻す必要がない場合は、上のオプションを消してこの1行だけにする */
  /* display: none; */
}

.readmore-check:checked~.readmore-label:before {
  content: "\9589\3058\308B";
}

/*チェック時に高さを自動に戻す*/
.readmore-check:checked~.readmore-content {
  height: auto;
}

/*チェック時グラデーション等を削除*/
.readmore-check:checked~.readmore-content::before {
  display: none;
}

/* oki_20220509 */

.category_links {
  font-size: 2.6rem;
  font-weight: bold;
  margin: 9rem auto 4rem;
  line-height: 1.4;
  padding: 1.5rem 3rem 1.2rem;
  background: #ffefbc;
  border-bottom: 1px solid #e1b940;
  box-shadow: 0px 8px 0px #ffefbc;
  position: relative;
  color: #000;
}

.faq {
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
  display: flex;
  display: -webkit-flex;
}

.faq.f_l {
  padding: 30px 0 30px 150px;
}

.faq.f_r {
  padding: 30px 150px 30px 0;
}


.faq .faq-img img {
  max-width: 100%;
}

.faq.f_l .faq-txt {
  background: #fff;
  border: 2px solid #555;
  border-radius: 10px;
  float: right;
  width: 100%;
  padding: 20px 30px;
  position: relative;
}

.faq.f_l .faq-txt:before {
  content: "";
  width: 21px;
  height: 21px;
  position: absolute;
  top: 56px;
  border-left: 2px solid #555;
  border-top: 2px solid #555;
  transform: rotate(-45deg);
  background: #fff;
  left: -13px;
  margin-top: -13px;
}

.faq.f_l .faq-txt .float-img.fl {
  position: absolute;
  top: 0;
  left: -160px;
}

.faq.f_l .faq-txt .faq-img.fr {
  position: absolute;
  top: 0;
  right: -160px;
}

.faq.f_l .faq-txt .faq-img.fl .faq-flame {
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 100px;
}

.faq.f_l .faq-txt .faq-img.fl .faq-flame img {
  border-radius: 100px;
}

.faq.f_r .faq-txt {
  background: #fff;
  border: 2px solid #555;
  border-radius: 10px;
  float: left;
  width: 100%;
  padding: 20px 30px;
  position: relative;
}

.faq.f_r .faq-txt:before {
  content: "";
  width: 21px;
  height: 21px;
  position: absolute;
  top: 56px;
  border-right: 2px solid #555;
  border-top: 2px solid #555;
  transform: rotate(45deg);
  background: #fff;
  right: -13px;
  margin-top: -13px;
}

.faq.f_l .faq-txt .faq-img.fl {
  position: absolute;
  top: 0;
  left: -150px;
  margin: 0 !important;
}

.faq.f_r .faq-txt .faq-img.fl {
  position: absolute;
  top: 0;
  right: -150px;
  margin: 0 !important;
}

.faq.f_r .faq-txt .faq-img.fl .faq-flame,
.faq.f_l .faq-txt .faq-img.fl .faq-flame {
  width: 120px;
  height: 120px;
  background: #eaeaea;
  border-radius: 100px;
}

.faq.f_r .faq-txt .faq-img.fl .faq-flame img {
  border-radius: 100px;
}

.map {
  width: 100%;
  position: relative;
  padding-top: 56.25%;
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.btnArea {
  align-items: center;
  display: flex;
  width: 100%;
}

.btnArea .btn-internal {
  width: 30%;
  margin: 0 20px 0 0;
}

.btnArea .btn-internal a::after {
  transform: translateY(-50%) rotate(90deg);
}




/*----------------------------------------------------
       SPサイトcss
----------------------------------------------------*/
@media screen and (min-width: 600px) {

  #contents .frame-wrap .type-a table th {
    padding: 10px;
  }

}



/*----------------------------------------------------
       SPサイトcss
----------------------------------------------------*/
@media screen and (max-width: 599px) {

  .category_links {
    font-size: 2rem;
    margin: 4rem auto 3rem;
    padding: 1.2rem 4% 1rem;
  }

  #visArea .mainArea .mainAreaInner {
    padding: 0.1% 0 0;
  }

  #visArea .mainArea .txtArea p {
    padding: 17.798077% 0 0;
  }

  #visArea .mainArea .catchArea .catch {
    font-size: 2.2rem;
  }

  .faq {
    padding: 10% 0;
    width: 100%;
    margin: auto;
  }

  .faq.flex {
    align-items: center;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
  }

  .faq.f_r {
    flex-flow: row-reverse;
  }

  .faq .faq-img .faq-flame {
    border-radius: 100px;
  }

  .faq .faq-img .faq-flame img {
    border-radius: 100px;
  }

  .faq .faq-img {
    width: 80px;
    float: left;
    margin: 0 10px 10px 0;
    border-radius: 80px;
    height: 80px;
  }

  .faq.f_l .faq-txt {
    background: #fff;
    border: 1px solid #555;
    border-radius: 5px;
    padding: 4%;
    position: relative;
    text-align: justify;
  }

  #index-bottom .faq .faq-txt p,
  #page-bottom .faq .faq-txt p {
    margin: 0;
  }

  .faq.f_r .faq-txt {
    background: #fff;
    border: 1px solid #555;
    border-radius: 5px;
    padding: 4%;
    position: relative;
    text-align: justify;
  }

  .faq.f_r .faq-txt .faq-img.fl {
    position: absolute;
    top: 0;
    right: -110px;
    margin: 0 !important;
  }

  .kanren {
    padding: 0 4% !important;
  }

  .btnArea {
    display: block;
    max-width: 92%;
    margin: 0 auto;
  }

  .btnArea .btn-internal {
    width: 100%;
    margin: 0 auto 10px;
    max-width: inherit;
  }

}
