@charset "utf-8";

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * メイン
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
/* -------------------------------------------------------------------------------------------------
   * セクショニング
/* ---------------------------------------------------------------------------------------------- */

#main {}

#main-contents {
  overflow: hidden;
}

#main-contents div.body {
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}

#main-contents .column ~ .column {
  margin-top: 40px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1100px) {

 #main-contents div.body {
   max-width: 100%;
   padding-left:20px;
   padding-right: 20px;
   margin: 0 auto;
 }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

#main-contents > .section {
  padding-top: 2em;
  padding-bottom: 4em;
}

#main-contents div.body {
  max-width: 100%;
  padding: 0 1em;
  margin: 0 auto;
}

#main-contents .column ~ .column {
  margin-top: 20px;
}

}


/* ****************************************************************************************************
   * ビジュアル
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

body.layout-lower #visual {
  background: url("../../_images/faq/visual.jpg") no-repeat;
  background-size: cover;
  background-position: center;
}

/* ****************************************************************************************************
   * 共通エリア
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * カラム
/* ------------------------------------------------------------------------------------------------- */

.faq {
  position: relative;
  padding-top: 80px;
  padding-bottom: 120px;
}

.faq .body {
  max-width: 1120px;
  padding: 0 20px;
}

.faq .inner {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

/* ----------------------------------------------------------------------------------------------------
   * タイトル
/* ------------------------------------------------------------------------------------------------- */

.faq .title {
  position: relative;
  font-size: 6.0rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
  font-family: "Prata", serif;
  color: var(--c-gold);
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .faq .title {
    font-size: 3.0rem;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * 見出しタイトル
/* ------------------------------------------------------------------------------------------------- */

.faq .title-1 {
  position: relative;
  font-size: 3.0rem;
  padding-left: 2.5em;
  line-height: 1.4;
}
.faq .title-1::before {
  content: "";
  display: block;
  background: url("../../_images/_common/title-mark.png") no-repeat;
  width: 50px;
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 17px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .faq .title-1 {
    position: relative;
    font-size: 2.2rem;
    padding-left: 1.5em;
    line-height: 1.4;
  }
  .faq .title-1::before {
    content: "";
    display: block;
    background: url("../../_images/_common/title-mark.png") no-repeat;
    width: 25px;
    height: 5px;
    background-size: 25px 5px;
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 17px;
  } 
}


/* ****************************************************************************************************
   * よくある質問
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

#faq {
  position: relative;
}

#faq section ~ section {
  padding-top: 120px;
}

#faq .faq-list {
  margin-top: 40px;
}

#faq .faq-list .faq-item ~ .faq-item {
  margin-top: 30px;
}
#faq .faq-list .faq-item {}
#faq .faq-list .faq-item .title-2 {
  position: relative;
  min-height: 80px;
  font-size: 2.2rem;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 60px;
  padding-right: 40px;
  display: flex;
  align-items: center;
  background: #dfe3df;
}
#faq .faq-list .faq-item .title-2::before {
  content: "Q.";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 20px;
  font-size: 2.4rem;
  font-family: "Prata", serif;
  color: var(--c-green);
}
#faq .faq-list .faq-item .title-2::after {
  content: '＋';
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: block;
  font-weight: 400;
  color: #000;
  text-align: center;
  line-height: 1.4;
  font-size: 2.8rem;
}
#faq .faq-list .faq-item.active .title-2:after {
  content: '－';
}

#faq .faq-list .faq-item .content {
  display: none;
}

#faq .faq-list .faq-item .content > div {
  position: relative;
  padding-top: 20px;
  padding-left: 60px;
  padding-bottom: 40px;
  padding-right: 40px;
  background: #fff;
  margin: 0 auto;
}
#faq .faq-list .faq-item .content > div::before {
  content: "A.";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 20px;
  font-size: 2.4rem;
  font-family: "Prata", serif;
  color: var(--c-gold);
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  #faq section ~ section {
    padding-top: 60px;
  }
  
  #faq .faq-list {
    margin-top: 20px;
  }
  #faq .faq-list .faq-item .title-2 {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  #faq .faq-list .faq-item .content > div {
    padding-bottom: 20px;
  }
}





