@charset "utf-8";
/* CSS Document */
/*よくある質問*/
.faq-btn{
	margin:auto auto 50px auto;
	width:100%;
	max-width:960px;
	color:#737373;
	border:solid 1px #80C4C4;
	padding:5px 15px;
	box-sizing:border-box;
	background-color:#fff;
	position:relative;
}
.faq-btn p{
	background-color:#80C4C4;
	color:#fff;
	padding:5px 50px 5px 50px;
	display:inline-block;
	border-radius:5px 5px 0 0;
	position:absolute;
	bottom:100%;
	left:-1px;
	font-weight:bold;
}
.faq-btn ul{
	display:flex;
	flex-wrap:wrap;
}
.faq-btn ul li{
	margin:5px;
	display:flex;
	align-items:center;
}
.faq-btn ul li::before{
	content:"▶";
	font-size:12px;
	margin-right:5px;
	color:#80C4C4;
}
.faq-btn ul .faq-btn-1{
	width:100%;
	border-bottom:dotted 1px #80C4C4;
	padding-bottom:10px;
}
.faq-btn ul .faq-btn-2{
	margin-right:20px;
}
.faq-btn ul li a{
	color:#373737;
}
.faq-btn ul li a:hover{
	opacity:1!important;
}

/*ボタンパターン2*/
.faq-btn2{
	margin:auto auto 50px auto;
}
.faq-btn2 ul{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	padding-left:0;
}
.faq-btn2 ul li{
	text-align:center;
}
.faq-btn2 ul .faq-btn-1{
	width:20%;
}
.faq-btn2 ul .faq-btn-1 a{
	background-color:#fff;
}
.faq-btn2 ul .faq-btn-2{
	width:19%;
}
.faq-btn2 ul .faq-btn-2 a{
	background-color:#fff;
}
.faq-btn2 ul li a{
	color:#000;
	border:solid 1px #00A5E6;
	display:block;
	padding:5px 0;
	border-radius: 4px;
	font-weight:bold;
}

/*吹き出し*/
.speechBubble {
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px;
  border-radius: 4px;
  background-color: #00A5E6;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  width:20%;
}
.speechBubble a{
  color: #ffffff!important;
  background-color:#00A5E6!important;
  font-weight:bold;
  opacity:1!important;
}
.speechBubble::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 12px 7.5px 0 7.5px;
  border-color: #00A5E6 transparent transparent;
  translate: -50% 100%;
}
@media(max-width:768px){
.faq-btn2 ul .faq-btn-1{
	width:100%;
	margin-bottom:20px;
}
.speechBubble {
  width:24%;
}
.faq-btn2 ul .faq-btn-2{
	width:24%;
}	
}
@media(max-width:640px){
.faq-btn2 ul .faq-btn-1{
	width:100%;
	margin-bottom:15px;
}
.speechBubble {
    width:49%;
	margin-bottom:15px;
	padding: 0;
}
.faq-btn2 ul .faq-btn-2{
	width:49%;
	margin-bottom:15px;
}	
}
.faq-content{
	margin:auto auto 50px auto;
}
.faq{
	width:100%;
	max-width:960px;
	margin:auto;
}
.faq-item {
  margin-top: 20px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.faq-question__wrap {
  position: relative;
  background:#fff;
  padding: 0px 40px 0px 55px;
  cursor: pointer;
  width:100%;
  margin:0;
  box-sizing: border-box;
  border: 1px solid #00A5E6;
  border-radius:5px;
}

.minus-icon {
  position: absolute;
  content: "";
  width: 20px;
  height: 3px;
  background: #00A5E6;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.plus-icon {
  position: absolute;
  content: "";
  width: 20px;
  height: 3px;
  background: #00A5E6;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transition: ease all 0.5s; /* 擬似要素のトランジションを追加 */
}

.plus-icon.active {
  transform: translateY(-50%);
}

.faq-question__title {
  font-weight: bold;
  font-size: 18px;
  position: relative;
	margin:10px;
}
.faq-question__title::before {
    position: absolute;
    color: #00A5E6;
    content: "Q";
    top: 50%;
    left: -35px;
    transform: translateY(-50%);
  }

.faq-answer__wrap {
  background: #fff;
  padding: 10px 5px 10px 55px;
  transition: ease all 0.5s; /* 擬似要素のトランジションを追加 */
  height: 0;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}

.faq-answer__wrap.active {
  height: auto;
  padding: 10px 5px 10px 55px;
}
.faq-answer__wrap {
  background: #EDF9FF;
  opacity: 0;
  padding: 10px 5px 10px 55px;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  transition: ease all 0.7s; /* 擬似要素のトランジションを追加 */
}

.faq-answer__wrap.active {
  opacity: 1;
  padding: 10px 5px 10px 55px;
}

.faq-answer__title {
  position: relative;
  font-weight: bold;
  font-size: 16px;
}

.faq-answer__title::before {
    position: absolute;
    content: "A";
    top: 50%;
    left: -35px;
    transform: translateY(-50%);
  }

.faq-answer__text {
  margin-top: 5px;
}
@media(max-width:768px){
.faq-question__wrap {
  padding: 5px 40px 5px 40px;
}	
}
@media(max-width:520px){
.faq-item {
  margin-top: 10px;
}
.faq-question__title {
  font-size: 16px;
  margin:7px;
}
.faq-answer__title {
  font-size: 15px;
}

}
/*ボタン1*/
.btn-pt-1 {
	
}
.btn-pt-1 ul{
	padding-left:0;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
.btn-pt-1 ul li{
	width:16%;
}
.btn-pt-1 ul li a{
	width:100%;
	font-weight:bold;
	text-align:center;
	font-size:16px;
	border-radius:5px;
	padding:5px 0;
	display:flex;
	justify-content:center;
	align-items:center;
	height:65px;
	border:solid 2px #00A5E6;
	background-color:#fff;
	color:#00A5E6;
}
.btn-pt-1 ul li a:hover{
	background-color:#00A5E6;
	color:#fff;
	opacity:1;
}
@media(max-width:768px){
.btn-pt-1 ul li{
	width:32%;
	margin-bottom:7px;
}	
}
@media(max-width:480px){
.btn-pt-1 ul li{
	width:49%;
	margin-bottom:7px;
}	
}
/*A内リンク*/
.faq-link1 {
	color:#000;
	text-decoration:underline;
}

.jump-adjust {
	padding-top:100px;
	margin-top:-100px;
}
