@charset "utf-8";
/* CSS Document */
/*メインビジュアル*/


.symptoms {
	
}
.symptoms ul{
}
.symptoms ul li{
	margin:10px 0;
}
.symptoms ul li a{
	color:#000;
	font-weight:bold;
	display:flex;
	align-items:center;
}
.symptoms ul li a::before{
	content:"";
	background-color:#2DC4FF;
	display:inline-block;
	width:10px;
	height:2px;
	margin-right:5px;
}
.symptoms ul li a:hover{
	color:#2DC4FF;
	opacity:1;
}
/*よくある質問*/
.faq{
}
.faq-item {
  margin-top: 20px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

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

.minus-icon {
  position: absolute;
  content: "";
  width: 20px;
  height: 3px;
  background: #89D5F3;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.plus-icon {
  position: absolute;
  content: "";
  width: 20px;
  height: 3px;
  background: #89D5F3;
  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;
  color: #000;
  font-size: 16px;
  position: relative;
  margin:5px 7px;
}
.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: #fff;
  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;
  color: #000;
  font-size: 16px;
}

.faq-answer__title::before {
    position: absolute;
    color: #000;
    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;
}

}
.answer-plus {
	background-color:#E6F8FF;
	padding:20px;
	border-radius:10px;
}

/*監修者*/
.supervisor {
	background-color:#E6F8FF;
	margin:40px auto 10px auto;
	padding:25px;
	max-width:768px;
	widdth:90%;
	border-radius:20px;
}
.supervisor-1 {
	display:flex;
	justify-content:space-between;
	padding-bottom:20px;
}
.supervisor-img {
	width:40%;
	max-width:250px;
}
.supervisor-img img{
	width:100%;
	display:block;
	border-radius:50%;
}
.supervisor-name {
	width:55%;
}
.supervisor-name p{
	margin:5px 0;
	font-weight:bold;
}
.supervisor-name .name1{
	background-color:#00A5E6;
	color:#fff;
	font-weight:bold;
	padding:0 5px;
	border-radius:2px;
	display:inline-block;
}
.supervisor-name .name3{
	color:#00A5E6;
	font-weight:bold;
	font-size:20px;
}
.supervisor-2 {
	border-top:dashed 2px #00A5E6;
}
.supervisor-2 .intro1{
}
.supervisor-2 .intro2{
}
.supervisor-2 .intro2 span{
	display:block;
	font-weight:bold;
}
@media(max-width:640px){
	.supervisor {
	padding:25px 50px;
}
	.supervisor-1 {
	flex-direction:column;
}
	.supervisor-img {
	width:100%;
	max-width:250px;
		margin:auto;
}
    .supervisor-name {
	width:100%;
}
}
@media(max-width:520px){
	.supervisor {
	padding:25px 30px;
}
     .supervisor-2 .intro1{
		 font-size:15px;
}
}
@media(max-width:480px){
	.supervisor {
	padding:20px;
}
}