@charset "UTF-8";
/*==============================================================
	レイアウト関係
===============================================================*/
.inner_wrap {
  width: 1200px;
  margin: auto;
}

[class*=fl_box] {
  display: -webkit-flex;
  display: flex;
}

.fl_box_wr {
  flex-wrap: wrap;
}
.fl_box_c {
  justify-content: center;
  align-items: flex-start;
}
.fl_box_cc {
  justify-content: center;
  align-items: center;
}
.fl_box_bw {
  justify-content: space-between;
  align-items: flex-start;
}
.fl_box_bwc {
  justify-content: space-between;
  align-items: center;
}

.pc_el {
  display: inline-block;
}

.sp_el {
  display: none;
}

.faq_box {
  overflow: hidden;
  margin-bottom: 12px;
  border-radius: 8px;
  background: #fff;
}
.faq_box [class^=ico_] {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  margin-right: 18px;
  font-size: 41px;
  font-size: 4.1rem;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}
.faq_box .ico_question {
  color: #fff;
}
.faq_box .ico_answer {
  color: #f57089;
}
.faq_box .tl_question,
.faq_box .answer_box {
  display: flex;
  align-items: center;
  padding: 15px 25px;
}
.faq_box .tl_question {
  cursor: pointer;
  position: relative;
  font-size: 20px;
  font-size: 2rem;
  color: #fff;
  background: #f57089;
}
.faq_box .answer_box p {
  color: #191919;
}
.faq_box .answer_box .txt_box {
  width: calc(100% - 45px);
}

.accordion_icon span,
.accordion_icon {
  display: inline-block;
  transition: all 0.3s;
  box-sizing: border-box;
}

.accordion_icon {
  position: absolute;
  width: 35px;
  height: 35px;
  top: 35px;
  right: 35px;
}
.accordion_icon span {
  position: absolute;
  width: 100%;
  height: 5px;
  background-color: #fff;
  border-radius: 35px;
}
.accordion_icon span:nth-of-type(1) {
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
}
.accordion_icon span:nth-of-type(2) {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}
.accordion_icon.is-active span:nth-of-type(1) {
  display: none;
}
.accordion_icon.is-active span:nth-of-type(2) {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

/*==============================================================
	見出し関係
===============================================================*/
/*==============================================================
	ボタン関係
===============================================================*/
/*==============================================================
	リスト関係
===============================================================*/
/*==============================================================
	テーブル関係
===============================================================*/
/*==============================================================
	下階層headline
===============================================================*/
/*==============================================================
	共通パーツ
===============================================================*/
.wid_100 {
  width: 100%;
  height: auto;
}

.floatL {
  float: left;
}

.floatR {
  float: right;
}

.phoL {
  float: left;
  margin-right: 20px;
}

.phoR {
  float: right;
  margin-left: 20px;
}

.clearL {
  clear: left;
}

.clearR {
  clear: right;
}

.clearB {
  clear: both;
}

.alignL {
  text-align: left;
}

.alignR {
  text-align: right;
}

.alignC {
  text-align: center;
}

/* これが無いとモーダルウィンドウ表示の際に余白が出る */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: 9;
}

.js-modal-open,
.js-modal-open-sp {
  cursor: pointer;
  width: 100%;
  border-style: hidden !important;
  text-align: center;
  transition: 0.3s;
}
.js-modal-open:hover,
.js-modal-open-sp:hover {
  transition: 0.3s;
  opacity: 0.8;
}
.js-modal-open img,
.js-modal-open-sp img {
  max-width: 100%;
  height: auto;
}

/* モーダル全体(背景＋本体) */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: 9;
}
.modal .youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.modal .youtube iframe,
.modal .youtube lite-youtube {
  max-width: 100% !important;
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/* モーダル背景 */
.modal__bg,
.modal-bg {
  position: absolute;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
}

/* モーダル本体 */
#modal-content,
.modal-content {
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 70%; /* これが無いと「overflow:scroll」が利かない */
  background: white;
  padding: 40px;
}

.close,
.modal-close {
  background-color: #014a97;
  color: #fff;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin: 30px auto 0;
}/*# sourceMappingURL=module.css.map */