@charset "UTF-8";

h2 img{
  width: 50%;
  margin: auto;
  max-width: 550px;
}

.faq_section{
font-family: "Noto Serif JP", serif;
}
.faq_section h2{
margin: 0 0 50px;
}
/*小さくする場合は有効にする
.faq_section h2 img{
    max-width: 230px
}
*/

.faq{
max-width: 1000px;
margin: auto;
width: 80%;
margin-bottom: 50px;
}

h3{
  margin-bottom: 30px;
  position: relative;
  cursor: pointer;
  padding-right: 20px;
}

h3::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-135deg); /* ← 上向き */
}


/* 開いてる時 */
.faq.active .faq_title::after {
transform: translateY(-50%) rotate(45deg);
}


.faq_item{
  border-top:1px solid #ccc;
  padding:20px 0;
}

.question{
  font-weight:bold;
  margin-bottom:10px;
}

.answer{
  margin-left:10px;
}
.faq-_item{
  border-top:1px solid #ccc;
  padding:25px 0;
}

.faq_item:last-child{
  border-bottom:1px solid #ccc;
}


h3::before{
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #cb5229;
  margin-right: 8px;
}

h3:hover{
  opacity: 0.8;
}


.faq_area{
  display:none;
}

.faq.active .faq_area{
  display:block;
}


.faq_area{
  max-height:0;
  overflow:hidden;
  transition: max-height 0.1s ease;
}

 /*JSで高さ制御するので空*/
.faq.active .faq_area{
}




/*お問い合わせ*/
.contact_section{
    margin: 50px 0;
    font-family: "Noto Serif JP", serif;
}
/*小さくする場合は有効にする
.contact_section h2 img{
    max-width: 400px
}
*/
.contact_section div{
    margin: 70px 0;
    text-align: center;
}
.contact_rink{
    padding: 10px 10%;
    background-color: #6a3906;
    color: #fff;
    border-radius: 5px;
}

.contact_rink:hover{
  opacity: 0.9;
}

.contact_section p{
  margin: 10px auto 10px;
  width: 80%;
  max-width: 900px;
}


@media screen and (max-width: 700px) {
    h2 img{
    width: 80%;
  }  
  /*小さくする場合は有効にする
  .faq_section h2 img{
        width: 40%;
    }
  */
  .contact_section p{
    width: auto;
    margin: 10px 3%;
  }
  .contact_section div{
    margin-top: 30px;
  }
}




  
