@charset "UTF-8";
/*header*/
.menu-toggle {
    position: fixed;
    right: 20px;
    top: 20px;
    width: 50px;
    height: 30px;
    cursor: pointer;
    z-index: 300;
    font-weight: bold;
    font-size: 40px;
  }
  .menu {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background:rgba(0, 0, 0, 0.836);
    color: white;
    width: 150px;
    box-shadow: 0 4px 6px rgba(0, 0, 0);
  }
  .menu a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: white;
    border-bottom: 1px solid #ddd;
  }
  .menu a:last-child {
    border-bottom: none;
  }
body{

font-family: serif;
background-color: #d0eeff;
max-width: 800px;
margin: 60px auto;
padding: 20px;

}

.faq{
text-align: center;
}

.faq_title{
font-size: 35px;
font-weight: bold;
color: #086bc2;
margin-bottom: 30px;
}

.faq_subtitle{
font-size: 25px;
font-weight: bold;

display: table;
margin: 0 auto 20px;

background: linear-gradient(transparent 60%, #9fd0f3 60%);
}

.faq_item{
background-color: #ffffff;
border-radius: 12px;
padding: 20px 20px;
margin-bottom: 20px;
box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.faq_question{
cursor: pointer;

display: flex;
align-items: center;

position: relative;
padding-right: 30px;

}

summary {
  list-style: none;
  display: block;
}

summary::-webkit-details-marker {
  display: none;
}

summary::marker {
  display: none;
  content: "";
}



.faq_answer{
display: flex;
align-items: flex-start;
}

.faq_label{
display: inline-flex;
justify-content: center;
align-items: center;
width: 28px;
height: 28px;
margin-right: 10px;
border-radius: 50%;
font-weight: bold;
color: #ffffff;
}

.faq_question .faq_label{
background-color: #1760a0;
flex-shrink: 0;
}

.faq_answer .faq_label{
background-color: #cc0000;
flex-shrink: 0;
}

summary.faq_question::after{
content: "▼";
position: absolute;
right: 0;
font-size: 14px;
}

details[open] summary.faq_question::after{

content: "▲";
position: absolute;
right: 0;
font-size: 14px;

}






