@charset "utf-8";
/*=====================================================
  Contact/faq.css
  Contact/faq.html／文書構造
=====================================================*/

/* ----------------------------------------------------
  ヘッダー
-----------------------------------------------------*/
.header_contact{
  /* position: relative; */
  min-height: 70px;
  /* z-index: 999; */
  width: 100%;
  background: #fff;
}

/* タイトル背景 */
.heading_page {
  background-image: url(../images/bg_heading.jpg);
  background-position: center;
  height: 140px;
}


/* ----------------------------------------------------
  コンテンツエリア
-----------------------------------------------------*/
.container_mid {
  /*ページ内の基準文字サイズ*/
  font-size: 16px;　
}

/**/
ul.faq_category{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
ul.faq_category li{
  width: 32%;
  border: 2px solid #DBDBDB;
  margin-bottom: 1.4em;
}
ul.faq_category li a{
  color: #006AD5;
  font-size: 1.8rem;
  font-weight: bold;
  display: flex;
  padding: 1em;
  transition: .4s;
  align-items: center;
  line-height: 1.2;
}
ul.faq_category li a:hover{
  background-color: rgba(90,113,132,0.8);
  color: #fff;
}

@media (max-width: 768px) {
  ul.faq_category li{
    width: 100%;
    margin-bottom: 0.5em;
  }
  ul.faq_category li a{
    font-size: 1.2em;
  }

}


/* ----------------------------------------------------
  faq
-----------------------------------------------------*/
.heading_border_left {
    margin-top: 50px;
    margin-bottom: 35px;
}

.heading_mini{
  margin-bottom: 23px;
}


/* ================================
  FAQアコーディオン（Q&A部分）
  ================================ */

/* 質問リスト全体 */
.faq-accordion {
  list-style: none;
  /* border-top: 1px solid rgba(25, 39, 83, 0.2); */
}

.faq-accordion li{
  /* margin-top: 800px; */
}

/* 開閉アイコン（＋／−） */
/*.faq-accordion-q-icon {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

@media (min-width: 768px) {
  .faq-accordion-q-icon {
    right: 20px;
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 767px) {
  .faq-accordion-q-icon {
    right: 10px;
    width: 16px;
    height: 16px;
  }
}

.faq-accordion-q-icon::before,
.faq-accordion-q-icon::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #333;
}

@media (min-width: 768px) {
  .faq-accordion-q-icon::before,
  .faq-accordion-q-icon::after {
    top: 9px;
  }
}

@media (max-width: 767px) {
  .faq-accordion-q-icon::before,
  .faq-accordion-q-icon::after {
    top: 7px;
  }
}

.faq-accordion-q-icon::after {
  transform: rotate(90deg);
  transition: transform 400ms;
}*/

/* 質問ボタン本体 */
.faq-accordion-q button {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  border: none;
  background: none;
  color: inherit;
  font: inherit;
  text-align: left;
  appearance: none;
  cursor: pointer;
  transition: opacity 400ms;
}

@media (min-width: 768px) {
  .faq-accordion-q button {
    padding: 18px 13px;
  }
}

@media (max-width: 767px) {
  .faq-accordion-q button {
    padding: 18px 15px;
  }
}

@media (min-width: 768px) {
  .faq-accordion-q button:hover,
  .faq-accordion-q button:active {
    opacity: 0.5;
  }
}

/* 質問テキスト */
h4.heading_faq_f {
  font-size: 115%;
  margin: 0;
  padding: 0 0 0 42px;
  position: relative;
}

/* Q. の表示（左側固定配置） */
h4.heading_faq_f::before{
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-variation-settings: "wdth" 75;
  /*font-family: 'Montserrat', sans-serif;*/
  display: block;
  text-align: center;
  box-sizing: border-box;
  line-height: 1;
  position: absolute;
  left: 3px;
  top: -4px;
  font-weight: bold;
  font-size: 24px;
  content: "Q.";
  color: #00498C;
}

/* 回答部分：非表示が初期状態 */
.faq-accordion-a {
  display: none;
  overflow: hidden; /* 開閉アニメ用 */
}

/* 回答内の余白調整（Q.との位置関係を保つ） */
.faq-accordion-a-inner {
  position: relative;
  border-top: 1px dotted #e0e0e0;
}

@media (min-width: 768px) {
  .faq-accordion-a-inner {
    padding: 15px 0 30px 45px;
    margin: 0 10px;
  }
}

@media (max-width: 767px) {
  .faq-accordion-a-inner {
    padding: 15px 0 25px 41px;
    margin: 0 10px;
  }
}

/* A. の表示 */
.faq-accordion-a-inner::before{
  position: absolute;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-variation-settings: "wdth" 75;
  line-height: 1;
  content: "A.";
  color: #ef6c00;
}
@media (min-width: 768px) {
  .faq-accordion-a-inner::before {
    left: 9px;
    top: 10px;
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .faq-accordion-a-inner::before {
    left: 10px;
    top: 15px;
    font-size: 24px;
  }
}

/*質問回答エリア*/
@media (min-width: 768px) {
  .faq-accordion-a-content{
    line-height: 1.8;
  }
}

.faq-accordion-a-content p {
  margin: 0 0 0.8em;
}

.faq-accordion-a-content ul {
  list-style: disc;
  padding: 0 0 0 1.8em;
  margin: 0 0 0.8em;
}
.faq-accordion-a-content ul li {
  margin: 0 0 0.3em;
}

.faq-accordion-a-content a:link {
  color: #005fb4;
  text-decoration: underline;
  transition: .2s;
}
.faq-accordion-a-content a:hover{
  color: #03a9f4;
}


.faq-accordion-a-content .pc_size{
  width: 80%;
}
@media (max-width: 767px) {
  .faq-accordion-a-content .pc_size{
    width: 100%;
  }
}


/* 各項目の区切り線 */
.faq-accordion > li {
  border-bottom: 1px solid rgba(25, 39, 83, 0.2);
}

/* 開いた状態でアイコンを−に変化 */
.faq-accordion > li.is-open .faq-accordion-q-icon::after {
  transform: rotate(0deg);
}


/* ----------------------------------------------------
  敷地料リスト
-----------------------------------------------------*/
.price_list {
  font-size: 90%;
  line-height: 1.3;
  text-align: left;
  border: 1px solid #000;
  margin: 0 0 1.5em;
  box-sizing: border-box;
  /* width: 82%; */
}

.price_list caption {
  margin: 0 0 0.2em;
  text-align: left;
}

.price_list th, .price_list td {
  padding: 0.4em 0.5em;
  border: 1px solid #000;
  white-space: nowrap;
}

.price_list th {
  background: #e8f4ff;
}

.price_list th[scope="col"] {
  width: 100px;
}

.price_list th[scope="row"] {
  width: 400px;
}

@media screen and (max-width: 768px) {
  .scroll_wrap {
    overflow-x: scroll;
  }
  .price_list {
    min-width: 700px;
    white-space: normal;
  }

}


/* ----------------------------------------------------
  フッター
-----------------------------------------------------*/
.contact_sec{
  color: #fff;
}

.contact_sec .title {
  margin-bottom: 1em;
}

.contact_column {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact_column li {
  width: 48%;
  box-sizing: border-box;
  text-align: center;
}

.contact_sec .heading {
  font-size: 2em;
  font-weight: bold;
  text-align: center;
  border-style: solid;
  border-width: 1px 0;
  margin-bottom: 1em;
  padding: 0.5rem 0;
}

.contact_sec .tel{
  font-size: 1.5em;
}

@media screen and (max-width: 768px) {
  .contact_column li {
    width: 100%;
  }

  .contact_sec .heading {
    font-size: 2rem;
    margin-bottom: 15px;
  }

}


/* ----------------------------------------------------
  汎用
-----------------------------------------------------*/
.external_link {
  background: url(../../images/common/icon_blank.png) no-repeat top right;
  padding-right: 25px;
}

.faq-accordion-a-content a[href*=".pdf"]::after{
  content: "";
  background: url(../../images/common/icon_pdf.png) no-repeat center right;
  padding: 4px 23px 2px 0;
  /*color: #0068b7;*/
}


/* リスト装飾 */
.arr_list li{
  margin-bottom: 10px;
}

.dot_list{
  list-style-type: disc;
  margin-left: 1.6rem;
}

.mgr10 {
    margin-right:10px;
}
.mgb10 {
    margin-bottom:10px;
}
.pdr10 {
    padding-right: 10px;
}

p.defolt_font {
  margin-bottom:40px;
}


.inquiry_list {
  margin-left: 12px;
}

.inquiry_list li {
  /* padding-left: 30px; */
  /* background: url(../../images/common/icon_circle_black.png) no-repeat top 5px left; */
  position: relative;
  margin-bottom: 28px;
  list-style-type: none;
  counter-increment: list-item;
}

.inquiry_list li:before{
  content: counter(list-item);
  padding: 0 0.4em;
  margin-right: 10px;
  font-weight: bold;
}
.inquiry_list li::after {
  content: '';
  /* 配置を調整 */
  position: absolute;
  display: block;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  /* ○を作る */
  width: 1.2em;
  height: 1.2em;
  border: 1px solid #222;
  border-radius: 50%;
}

.inquiry_list li a {
  color: #006AD5;
  font-weight: bold;
  font-size: 1.6rem;
}

.inquiry_list li a[target="_blank"]:after {
  content: "";
  display: inline-block;
  vertical-align: text-top;
  background: url(../../images/common/icon_blank.png) no-repeat center center;
  width: 1.9rem;
  height: 1.7rem;
  margin-left: .5rem;
}

.inquiry_list li a:hover {
  text-decoration: underline;
}

.inquiry_list li a > em{
  color: #ca2800;
  font-style: normal;
}
