@charset "utf-8";
/* ========================================================
	faq.css => faqについてCSS
======================================================== */
#form1 {
  display: flex;
  justify-content: center;
  height: 50px;
  margin: 5em 0 3em 0;
}
/*入力フォーム*/
#sbox1 {
  width: 85%;
  padding: 0 15px;
  border-radius: 4px 0 0 4px;
  background: transparent; /*背景カラー透明*/
  border: 2px solid #158bba;
  border-right: none; /*枠線の右側だけ削除*/
  outline: 0; /*クリック時の青い枠線消す*/
  font-size: 160%;
}
/*検索ボタン*/
#sbtn1 {
  width: 15%;
  border-radius: 0 4px 4px 0; /*右側の角を少し丸める*/
  background: #158bba;
  border: none;
  color: #fff;
  font-size: 160%;
  cursor: pointer;
}
#sbtn1:hover {
  background: #183d7f;
}
/* qa-list
============================================================================================================ */
.qa-list .qa {
  background: #fff;
  border: 2px solid #158BBA;
  -webkit-border-bottom-right-radius: 20px;
  -moz-border-radius-bottomright: 20px;
  border-bottom-right-radius: 20px;
  margin-top: 40px;
  margin-left: 25px;
  width: calc(100% - 25px);
  cursor: pointer;
}
.qa-list .qa dt {
  font-size: 170%;
  /*font-size: 17px;*/
  padding: 0.8em 45px;
  -webkit-border-bottom-right-radius: 18px;
  -moz-border-radius-bottomright: 18px;
  border-bottom-right-radius: 18px;
  position: relative;
}
.qa-list .qa dt:before {
  content: "Q";
  display: inline-block;
  width: 54px;
  height: 54px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  background: #158BBA;
  border-radius: 10px;
  padding-left: 15px;
  position: absolute;
  left: -25px;
  top: -20px;
}
.qa-list .qa dt:after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url("../../shared/img/parts/a_r_b.svg") no-repeat;
  background-size: contain;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -2px;
  transform: rotate(90deg);
}
.qa-list .qa dt.open:after {
  margin-top: -8px;
  transform: rotate(-90deg);
}
.qa-list .qa dd {
  display: none;
  background: #F4F4F4;
  padding: 2em 2em 2em 60px;
  -webkit-border-bottom-right-radius: 18px;
  -moz-border-radius-bottomright: 18px;
  border-bottom-right-radius: 18px;
  position: relative;
}
.qa-list .qa dd p {
  margin-bottom: 0;
}
.qa-list .qa dd:before {
  content: "A";
  display: inline-block;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: #31AD95;
  position: absolute;
  left: 18px;
  top: 5px;
}
.qa-list .qa dd div.qa_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
a.qa_btn {
  text-align: center;
  font-size: 1.6em;
  display: inline-block;
  padding: 0.5em 1em 0.5em 0.7em;
  min-width: 10em;
  border: 2px solid #49c3c9;
  border-radius: 50px;
  background: #49c3c9;
  color: #fff;
}
a.qa_btn > span {
  display: block;
  background: url("../../shared/img/parts/a_r_w.svg") no-repeat right center / auto 0.8em;
  padding-right: 0.5em;
  padding-left: 0.5em;
}
a.qa_btn:hover {
  background: #fff;
  color: #49c3c9;
}
a.qa_btn:hover > span {
  background-image: url("../../shared/img/parts/a_r_lb.svg");
}
@media screen and (max-width: 960px) {
  .qa-list .qa dd div.qa_box {
    display: block;
  }
  .qa_btn_box {
    text-align: right;
    margin-top: 1em;
  }
}
@media screen and (max-width: 750px) {
  .qa-list .qa {
    margin-top: 40px;
    margin-left: 10px;
    width: calc(100% - 10px);
  }
  .qa-list .qa dt {
    font-size: 150%;
    /*font-size: 15px;*/
    line-height: 1.5;
    padding: 1.5em 25px 1em 1em;
  }
  .qa-list .qa dt:before {
    width: 38px;
    height: 38px;
    font-size: 21px;
    padding-left: 12px;
    left: -10px;
    top: -20px;
  }
  .qa-list .qa dt:after {
    width: 10px;
    height: 10px;
    right: 10px;
  }
  .qa-list .qa dd {
    padding: 2em 1em 2em 35px;
  }
  .qa-list .qa dd:before {
    font-size: 21px;
    left: 10px;
    top: 13px;
  }
}
@media screen and (max-width: 480px) {
  .qa_btn_box {
    text-align: center;
  }
}

.qa_btn_list {
  display: inline-block;
  font-size: 16px;
  text-align: center;
  color: #fff;
  background: #49c3c9;
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 0.6em 35px;
  position: relative;
  text-decoration: none !important;
  margin-top: auto;
}
.qa_btn_list:after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 13px;
  background: url("../../shared/img/parts/a_r_w.svg") no-repeat;
  background-size: 100% auto;
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 1px;
}
.qa_btn_list:hover {
  background: #fff;
  color: #49c3c9;
  border: 2px solid #49c3c9;
}
.qa_btn_list:hover:after {
  background: url("../../shared/img/parts/a_r_lb.svg") no-repeat;
}
@media screen and (max-width: 750px) {
  .qa_btn_list {
    font-size: 15px;
    padding: 0.7em 25px;
  }
}

/* .qa_detail
============================================================================================================ */
.qa_detail {
	background: #fff;
	border: 2px solid #158BBA;
	-webkit-border-bottom-right-radius: 20px;
	-moz-border-radius-bottomright: 20px;
	border-bottom-right-radius: 20px;
	margin-top: 40px;
	margin-left: 25px;
	width: calc(100% - 25px);
}
.qa_detail dt {
	font-size: 170%;
	/*font-size: 17px;*/
	padding: 0.8em 45px;
	-webkit-border-bottom-right-radius: 18px;
	-moz-border-radius-bottomright: 18px;
	border-bottom-right-radius: 18px;
	position: relative;
}
.qa_detail dt:before {
	content:"Q";
	display: inline-block;
	width: 54px;
	height: 54px;
	font-family: 'Zen Maru Gothic', sans-serif;
	font-size: 30px;
	font-weight: 600;
	color: #fff;
	background: #158BBA;
	border-radius: 10px;
	padding-left: 15px;
	position: absolute;
	left: -25px;
	top: -20px;  
}
.qa_detail dt:after {
	content:"";
	display: inline-block;
	width: 15px;
	height: 15px;
	background: url("../img/parts/a_r_b.svg") no-repeat;
	background-size: contain;
	position: absolute;
	right: 20px;
	top: 50%;
	margin-top: -2px;
	transform: rotate(90deg);
}
.qa_detail dt.open:after {
	margin-top: -8px;
	transform: rotate(-90deg);
}
.qa_detail dd {
	background: #F4F4F4;
	padding: 1em 2em 2em 60px;
	-webkit-border-bottom-right-radius: 18px;
	-moz-border-radius-bottomright: 18px;
	border-bottom-right-radius: 18px;
	position: relative;
     font-size: 160%;
}
.qa_detail dd p {
	margin-bottom: 0;
   
}
.qa_detail dd:before {
	content:"A";
	display: inline-block;
	font-family: 'Zen Maru Gothic', sans-serif;
	font-size: 30px;
	font-weight: 600;
	color: #31AD95;
	position: absolute;
	left: 18px;
	top: 5px;  
}
@media screen and (max-width: 750px) {
	.qa_detail {
		margin-top: 40px;
		margin-left: 10px;
		width: calc(100% - 10px);
	}
	.qa_detail dt {
		font-size: 150%;
		/*font-size: 15px;*/
		line-height: 1.5;
		padding: 1.5em 25px 1em 1em;
	}
	.qa_detail dt:before {
		width: 38px;
		height: 38px;
		font-size: 21px;
		padding-left: 12px;
		left: -10px;
		top: -20px;  
	}
	.qa_detail dt:after {
		width: 10px;
		height: 10px;
		right: 10px;
	}
	.qa_detail dd {
		padding: 2em 1em 2em 35px;
	}
	.qa_detail dd:before {
		font-size: 21px;
		left: 10px;
		top: 13px;  
	}
}

/* 吹き出し
============================================================================================================ */
.sb-box {
  position: relative;
  overflow: hidden;
}
.icon-img {
  position: absolute;
  overflow: hidden;
  top: 0;
  width: 100px;
  height: 100px;
}
.icon-img-left {
  left: 0;
}
.icon-img-right {
  right: 0;
}
/* 吹き出し */
.sb-side {
  position: relative;
  float: left;
  margin: 0 105px 40px 105px;
}
.sb-side-right {
  float: right;
}
.sb-txt {
  position: relative;
  border: 2px solid #ddd;
  border-radius: 6px;
  background: #fff;
  font-size: 160%;
  padding: 1.5em 1em;
}
.sb-txt > p:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
}
/* 吹き出しの三角 */
.sb-txt:before {
  content: "";
  position: absolute;
  border-style: solid;
  top: 16px;
  z-index: 3;
}
.sb-txt:after {
  content: "";
  position: absolute;
  border-style: solid;
  top: 15px;
  z-index: 2;
}
/* 吹き出しの三角（左） */
.sb-txt-left:before {
  left: -7px;
  border-width: 7px 10px 7px 0;
  border-color: transparent #fff transparent transparent;
}
.sb-txt-left:after {
  left: -10px;
  border-width: 8px 10px 8px 0;
  border-color: transparent #ddd transparent transparent;
}
/* 吹き出しの三角（右） */
.sb-txt-right:before {
  right: -7px;
  border-width: 7px 0 7px 10px;
  border-color: transparent transparent transparent #fff;
}
.sb-txt-right:after {
  right: -10px;
  border-width: 8px 0 8px 10px;
  border-color: transparent transparent transparent #ddd;
}
@media (max-width: 750px) {
  .icon-img {
    width: 60px;
    height: 60px;
  }
  .sb-side-left {
    margin: 0 0 30px 78px;
  }
  .sb-side-right {
    margin: 0 78px 30px 0;
  }
  .sb-txt {
    padding: 12px;
  }
}
/* point_list
============================================================================================================ */
.point_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.point_list li {
  width: 29.8%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.point_list li a {
  border: 3px solid #49c3c9;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-border-bottom-right-radius: 20px;
  -moz-border-radius-bottomright: 20px;
  border-bottom-right-radius: 20px;
  position: relative;
}
.point_list li a:after {
  content: "";
  display: inline-block;
  width: 34px;
  height: 34px;
  background: url("../../shared/img/parts/a_r_c_lb.svg") no-repeat;
  background-size: contain;
  position: absolute;
  right: 12px;
  bottom: 12px;
}
.point_list li a:hover {
  opacity: 0.75;
}
.point_list_num {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  display: inline-block;
  width: 65px;
  text-align: center;
  position: absolute;
  left: -15px;
  top: -10px;
  z-index: 2;
}
.point_list_num > span {
  font-size: 40px;
  display: block;
}
.point_list_num:before {
  content: "";
  display: inline-block;
  width: 65px;
  height: 65px;
  background: #49c3c9;
  -webkit-border-bottom-right-radius: 20px;
  -moz-border-radius-bottomright: 20px;
  border-bottom-right-radius: 20px;
  position: absolute;
  left: 0;
  top: -5px;
  z-index: -1;
}
.point_list_title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 250%;
  /*font-size: 25px;*/
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  color: #183d7f;
  margin-top: 1.6em;
  margin-bottom: 0.7em;
  padding: 0 5%;
}
.point_list_image {
  text-align: center;
  margin-bottom: 0;
}
.point_list_image img {
  height: 65px;
  width: auto;
}
.point_list_text {
  padding: 1em;
}
@media screen and (max-width: 750px) {
  .point_list {
    display: block;
  }
  .point_list li {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  .point_list li + li {
    margin-top: 10%;
  }
  .point_list li a {
    display: block;
  }
  .point_list li a:after {
    width: 28px;
    height: 28px;
    right: 6px;
    bottom: 6px;
  }
  .point_list_num {
    font-size: 11px;
    width: 50px;
    left: -15px;
    top: -10px;
  }
  .point_list_num > span {
    font-size: 28px;
  }
  .point_list_num:before {
    width: 50px;
    height: 50px;
  }
  .point_list_title {
    font-size: 200%;
    /*font-size: 20px;*/
    margin-top: 0.7em;
    margin-bottom: 0.5em;
  }
  .point_list_image img {
    height: 45px;
  }
}
/* cons_menu2
============================================================================================================ */
ul.cons_menu2 {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  font-family: 'Zen Maru Gothic', sans-serif;
  margin-bottom: 4em;
}
.cons_menu2 li {
  flex-basis: 22%;
  text-align: center;
  font-size: 190%;
  font-weight: 520;
  background: #FFF;
  /*background: #FFE0E0;*/
}
.cons_menu2 li:first-child {
  border-radius: 20px 0 0 20px;
  -webkit-border-radius: 20px 0 0 20px;
  -moz-border-radius: 20px 0 0 20px;
}
.cons_menu2 li:last-child {
  border-radius: 0 20px 20px 0;
  -webkit-border-radius: 0 20px 20px 0;
  -moz-border-radius: 0 20px 20px 0;
}
.cons_menu2 li > a {
  display: block;
  padding: 1.3em 0 1.1em;
}
.cons_menu2 li > a:hover {
  color: #158bba;
}
.cons_menu2 li > a .title {
  width: 100%;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  /*min-height: 2.9em;*/
}
.cons_menu2 li > a .title span {
  display: inline-block;
  background: url("../../shared/img/parts/a_r_lb.svg") no-repeat right center;
  padding-right: 0.9em;
}
.cons_menu2 li .thum {
  display: block;
  position: relative;
}
.cons_menu2 li .thum::after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  border-right: 1px solid #e4eef2;
  height: 100%;
}
.cons_menu2 li:last-child .thum::after {
  display: none;
}
.cons_menu2 li .thum .image {
  width: 100%;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  height: 3em;
  margin-bottom: 0.5em;
}
.cons_menu2 li .thum .image img {
  max-height: 100%;
  max-width: 3.6em;
  max-height: 2.7em;
}
@media screen and (max-width: 1600px) {
  .cons_menu li > a {}
  .cons_menu2 li > a {}
  .cons_menu2 li .thum .image {
    margin-bottom: 0.7em;
  }
}
@media screen and (max-width: 1280px) {}
@media screen and (max-width: 990px) {}
@media screen and (max-width: 750px) {
  .consider_area {
    padding: 3.3em 0;
  }
  ul.cons_menu {
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 2.5em;
  }
  .cons_menu li {
    flex-basis: 46%;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    margin-bottom: 2em;
  }
  .cons_menu li:first-child, .cons_menu li:last-child, .cons_menu2 li:first-child, .cons_menu2 li:last-child {
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
  }
  .cons_menu li .thum::after {
    display: none;
  }
  ul.cons_menu2 {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 3em;
  }
  .cons_menu2 li {
    flex-basis: 32%;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    margin-bottom: 2em;
  }
  .cons_menu2 li .thum::after {
    display: none;
  }
  .cons_menu li {
    flex-basis: 47%;
    font-size: 170%;
    margin-bottom: 1em;
  }
  .cons_menu li > a {
    padding: 1em 0.2em 0.8em;
  }
  .cons_menu2 li > a {
    /*padding: 1em 0 1.1em;*/
  }
  .cons_menu li .thum .image {
    height: 4.4em;
  }
  .cons_menu li .thum .image img {
    max-width: 3.3em;
  }
  .cons_menu li > a .title {
    min-height: 2.1em;
  }
  .cons_menu li > a .title span {
    padding-right: 0.9em;
    padding-left: 0.9em;
    letter-spacing: 0.5px;
    line-height: 1.2;
  }
  .cons_menu2 li {
    font-size: 160%;
    margin-bottom: 0;
  }
  .cons_menu2 li > a {
    padding: 1.3em 0.1em 0.5em;
  }
  .cons_menu2 li .thum .image {
    height: 2.5em;
    margin-bottom: 0.8em;
  }
  .cons_menu2 li .thum .image img {
    max-width: 3.3em;
    max-height: 2.4em;
  }
  .cons_menu2 li > a .title span {
    padding-right: 0.8em;
    padding-left: 0.8em;
    letter-spacing: 0.5px;
  }
}
/*追記*/
h2 {
  font-family: 'Zen Maru Gothic', sans-serif;
  position: relative;
  font-size: 26px;
  padding: 0.4em 0.6em 0.4em 18px;
  margin-bottom: 20px;
  font-weight: 600;
  background-color: #f0f9fb;
}
h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background-color: #158bba;
}
h4 {
  font-family: 'Zen Maru Gothic', sans-serif;
  padding: 0.25em 0.5em;
  background: transparent;
  border-left: solid 3px #49c3c9;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media screen and (max-width: 750px) {
  h2 {
    font-size: 19px;
  }
  h4 {
    font-size: 16px;
  }
}