@charset "utf-8";

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * メイン
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
/* -------------------------------------------------------------------------------------------------
   * セクショニング
/* ---------------------------------------------------------------------------------------------- */

#main {}

#main-contents {}

#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: 4em;
  padding-bottom: 4em;
}

#main-contents div.body {
  max-width: 100%;
  padding:0 1em;
  margin: 0 auto;
}

#main-contents .column ~ .column {
  margin-top: 20px;
}

}

/* ****************************************************************************************************
   * ビジュアル　アイコン
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

body.page-faq #visual .body::before {
  content: "";
  display: block;
  background: url("../../_images/first/title-icon-left.png") no-repeat;
  width: 152px;
  height: 197px;
  background-size: 152px 197px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  body.page-faq #visual .body::before {
    background: url("../../_images/first/title-icon-left.png") no-repeat;
    width: 76px;
    height: 98px;
    background-size: 76px 98px;
  }
}

/* ****************************************************************************************************
   * ページナビ
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

body.page-faq
.page-nav .body {
  padding: 0 !important;
}

/* ****************************************************************************************************
   * よくあるご質問
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

.faq {
  position: relative;
  padding-top: 50px;
  padding-bottom: 120px;
}

.faq .body {
  max-width: 1120px;
  padding: 0 20px;
}

.faq .inner {
  background: #eeeeee;
  padding: 60px;
  border-radius: 10px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .faq {
    padding-top: 2em !important;
  }
  .faq .inner {
    background: #eeeeee;
    padding: 20px;
    border-radius: 10px;
  }
}


/* ----------------------------------------------------------------------------------------------------
   * 内容
/* ------------------------------------------------------------------------------------------------- */

.faq .inner .faq-list {}

.faq .inner .faq-item {
  padding: 25px 0;
}
.faq .inner .faq-item ~ .faq-item {
  border-top: 1px solid #cccccc;
}
.faq .inner .faq-item:last-child {
  border-bottom: 1px solid #cccccc;
}
.faq .inner .faq-list .faq-item .title {
  position: relative;
  font-size: 2.0rem;
  font-weight: 700;
  color: var(--c-blue);
  cursor: pointer;
  padding: 12px 0;
  padding-left: 3em;
  padding-right: 60px;
}
.faq .inner .faq-list .faq-item .title::before {
  content: "";
  background: url(../../_images/faq/icon-q.png) no-repeat;
  display: flex;
  align-items: center;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.faq .inner .faq-list .faq-item .content {
  position: relative;
  font-size: 1.6rem;
  padding-left: 3.8em;
  padding-right: 60px;
  margin-top: 1em;
}
.faq .inner .faq-list .faq-item .content::before {
  content: "";
  background: url(../../_images/faq/icon-a.png) no-repeat;
  display: flex;
  align-items: center;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
}
.faq .inner .faq-list .faq-item .content a {
  color: var(--c-blue);
  text-decoration: underline;
  
}
.faq .inner .faq-list .faq-item .content a:hover {
  text-decoration: none;
}


/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .faq .inner .faq-list .faq-item .title {
    position: relative;
    font-size: 1.8rem;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    line-height: 1.6;
    padding-left: 2em;
    padding-right: 30px;
  }
  .faq .inner .faq-list .faq-item .title::before {
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(7px);
  }
  
  .faq .inner .faq-list .faq-item .content {
    position: relative;
    font-size: 1.6rem;
    padding-left: 2em;
    padding-right: 0;
    margin-top: 1em;
  }
  .faq .inner .faq-list .faq-item .content::before {
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(7px);
  }
}


/* ----------------------------------------------------------------------------------------------------
   * 開閉
/* ------------------------------------------------------------------------------------------------- */

.faq .inner .faq-list .faq-item .title:after {
  content: '＋';
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: block;
  font-weight: 700;
  color: #fff;
  background: #000;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 1.4;
}
.faq .inner .faq-list .faq-item.active .title:after {
  content: '－';
}
.faq .inner .faq-list .faq-item .content {
  display: none;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
.faq .inner .faq-list .faq-item .title:after {
  content: '＋';
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  display: block;
  font-weight: 700;
  color: #fff;
  background: #000;
  border-radius: 100%;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 1.3;
  font-size: 1.4rem;
}
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .gallery-item {
    width: 100% !important;
  }
}


