body {
    margin: 0%;
}
.menu {
    display: flex;
    position: fixed;
    width: 100%;
    height: 100px;
    top: 0;
    z-index: 100;
    background-color: white;
    box-shadow: 0px 10px 5px rgba(0, 0, 0, 0.501);
    color: #002868;
}
.menu img {
    padding: 0.5%;
    width: 100px;
    float: left;
}
.logo {
    padding: 1% 1% 1% 1%;
    height: 5%;
    font-size: 28px;
}
.logo > .sh {
    font-size: 70%;
}

.links {
    /* padding-top: 50px; */
    width: 50%;
    padding-left: 1%;
    font-size: 120%;
}
.links a {
    color:#000dff; text-decoration: none; 
    position: relative; /* 相対位置 */
    transition: color 1s;
}
.links a::after {
    content: ''; /* コンテンツの追加 */
    position: absolute; /* 絶対位置 */
    left: 0; /* 左からの位置 */
    bottom: -5px; /* 下からの位置 */
    width: 0; /* 幅 */
    height: 5px; /* 高さ */
    background-color: #006aff; /* 背景色 */
    transition: width 0.3s ease-in-out; /* アニメーションの設定 */
  }
.links a:hover::after {
    width: 100%; /* 幅を100%に */
}


.slider-container {
    width: 100%;
    height: 700px;
    overflow: hidden;
    position: relative;
    margin: 20px auto;
}

.slides {
    display: flex;
    width: 100%;
    height: 100%;
    position: absolute;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-display {
    margin-left: 4%;
    margin-right: 4%;
    /* display: flex; */
}
.main {
    /* width: 100%; */
    padding-right: 1%;
    /* border-right: 2px solid black; */
}
.main p {
    padding: 1%;
    font-size: 170%;
    background-color: #002868;
    color: white;
}

.questions {
  display: flex;
}
.accordion {
    width: 45%;
    margin: 1%;
  }
  

  
  .accordion-header {
    padding: 0 10px;
  }
  
  .accordion-button {
    background-color: #002868;
    background-size: cover;
    padding: 7px;
    color: #ffffff;
    font-weight: 300;
    font-family: "Ubuntu";
    border: solid #002868 2px;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    font-size: 80%;
    padding: 10px;
    text-align: left;
    width: 100%;
  }
  
  .accordion-button:hover {
    background-color: rgb(255, 255, 255);
    padding: 7px;
    color: #002868;
    font-weight: 300;
    font-family: "Ubuntu";
    border: solid #002868 2px;
    cursor: pointer;
    display: block;
    font-size: 80%;
    padding: 10px;
    text-align: left;
    width: 100%;
  }
  
  .accordion-content {
    display: none;
    padding: 10px;
    font-size: 120%;
  }
  
  .accordion-item.active .accordion-content {
    display: block;
  }
  

.accordion-content a {
    color:#000dff; text-decoration: none; 
    line-height: 40px;
    position: relative; /* 相対位置 */
    transition: color 1s;
}
.accordion-content a::after {
    content: ''; /* コンテンツの追加 */
    position: absolute; /* 絶対位置 */
    left: 0; /* 左からの位置 */
    bottom: -0px; /* 下からの位置 */
    width: 0; /* 幅 */
    height: 3px; /* 高さ */
    background-color: #006aff; /* 背景色 */
    transition: width 0.3s ease-in-out; /* アニメーションの設定 */
  }
.accordion-content a:hover::after {
    width: 100%; /* 幅を100%に */
}

footer {
    margin-top: 10%;
    background-color: #0046b7;
    color: white;
    font-size: 130%;

}