@charset "UTF-8";

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
}

.gloabal {
  overflow: hidden;
}

a {
  color: #fff;
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

/* 共通パーツ */
.section-width {
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
}

.section-width-md {
  max-width: 1000px;
  margin: 0 auto;
  width: 90%;
}

/*
コンテンツ幅を設定するための共通クラス
*/
.wrapper {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

/*
  セクションタイトル用の共通クラス
  */
.section-ttl {
  font-size: 4rem;
  text-align: center;
  margin-top: 15px;
}

@media screen and (max-width: 896px) {
  .section-ttl {
    font-size: 2.4rem;
  }
}

/* 疑似要素でタイトル下に下線を引く */
.section-title::after {
  content: "";
  width: 100px;
  height: 3px;
  background-color: #333;
  display: block;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.button-sp-wrap {
  display: none;
}

@media screen and (max-width: 1025px) {
  .button-sp-wrap {
    width: 100%;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    right: 0;
    bottom: 0;
    font-size: 50px;
    color: #fff;
    background: #FFEA00;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: 30;
    /*デフォルトで非表示にする*/
    opacity: 0;
    visibility: hidden;
  }
}

/*このクラスが付与されると表示する*/
.active {
  opacity: 1;
  visibility: visible;
}

.button-sp-link {
  text-align: center;
  width: 50%;
}

.button-sp-link:first-child {
  border-right: 1px solid black;
}

.button-sp-link>p {
  font-size: 1.3rem;
  color: #000;
  margin-top: -10px;
}

.button-sp-link-img>img {
  width: 25px;
  height: 25px;
  position: relative;
  bottom: 20px;
}

.top-img {
  position: relative;
}

@media screen and (max-width: 600px) {
  .top-img {
    height: 130px;
  }
}

.top-img>img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.top-logo {
  position: absolute;
  left: 5%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 400px;
}

@media screen and (max-width: 980px) {
  .top-logo {
    width: 300px;
  }
}

@media screen and (max-width: 600px) {
  .top-logo {
    width: 200px;
  }
}

input {
  display: none;
}

.arrow_r_b {
  position: absolute;
  top: 50%;
  right: 20px;
  display: inline-block;
  padding-left: 22px;
}

@media screen and (max-width: 896px) {
  .arrow_r_b {
    right: 10px;
  }
}

.arrow_r_b:before {
  content: "";
  width: 30px;
  height: 30px;
  background: #043d78;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}

@media screen and (max-width: 896px) {
  .arrow_r_b:before {
    width: 20px;
    height: 20px;
  }
}

.arrow_r_b:after {
  content: "";
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  top: -3px;
  left: 10px;
  bottom: 0;
  margin: auto;
}

@media screen and (max-width: 896px) {
  .arrow_r_b:after {
    width: 7px;
    height: 7px;
    left: 7px;
    top: -3px;
  }
}

.Label {
  /*タイトル*/
  padding: 20px;
  display: block;
  color: #000;
  background: #E6EBEF;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.9;
  letter-spacing: 0.1em;
}

.Label:nth-child(2n) {
  background-color: white;
}

@media screen and (max-width: 896px) {
  .Label {
    font-size: 1.4rem;
    padding: 10px 40px 10px 10px;
    margin-top: 15px;
  }
}

.Label>a {
  pointer-events: none;
}

.Label::before {
  /*タイトル横の矢印*/
  content: "";
}

.Label,
.content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.content {
  /*本文*/
  height: 0;
  padding: 0 20px 0px 20px;
  overflow: hidden;
}

@media screen and (max-width: 896px) {
  .content {
    padding: 0;
  }
}

.content-wrap {
  margin-bottom: 20px;
}

.content-wrap>p {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.content-wrap>a {
  color: #019ac6;
  font-size: 1.8rem;
}

.toggle:checked+.Label+.content {
  /*開閉時*/
  height: auto;
  padding: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-bottom: 40px;
  background-color: #E6EBEF;
  margin-top: -1px;
}

@media screen and (max-width: 896px) {
  .toggle:checked+.Label+.content {
    padding: 0 !important;
  }
}

.toggle:checked+.Label+.content .content-inner {
  border-top: 1px solid white;
  padding: 20px 0;
}

@media screen and (max-width: 896px) {
  .toggle:checked+.Label+.content .content-inner {
    padding: 10px;
  }
}

.toggle:checked+.Label+.content .content-inner p {
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 896px) {
  .toggle:checked+.Label+.content .content-inner p {
    font-size: 14px;
  }
}

.toggle:checked+.Label+.content.sec {
  background-color: white;
}

.toggle:checked+.Label+.content.sec .content-inner {
  border-top: 1px solid #E6EBEF;
  padding: 20px 0;
}

@media screen and (max-width: 896px) {
  .toggle:checked+.Label+.content.sec .content-inner {
    padding: 10px;
  }
}

.toggle:checked+.Label+.content.sec .content-inner p {
  font-size: 16px;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 896px) {
  .toggle:checked+.Label+.content.sec .content-inner p {
    font-size: 14px;
  }
}

@media screen and (max-width: 896px) {
  .toggle:checked+.Label+.content {
    padding: 20px 0;
  }
}

.toggle:checked+.Label>.arrow_r_b:after {
  -webkit-transform: rotate(-45deg) !important;
  transform: rotate(-45deg) !important;
  top: 2px;
}

@media screen and (max-width: 600px) {
  .toggle:checked+.Label>.arrow_r_b:after {
    left: 7px;
  }
}

#cate01,
#cate02,
#cate03,
#cate04 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-left: 24px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 600px) {

  #cate01,
  #cate02,
  #cate03,
  #cate04 {
    font-size: 1.9rem;
  }
}

#cate01::before,
#cate02::before,
#cate03::before,
#cate04::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 0;
  height: 0;
  border-left: 17px solid #043d78;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.faq-wrap {
  margin-bottom: 60px;
}

.faq-wrap:last-child {
  margin-bottom: 100px;
}

@media screen and (max-width: 600px) {
  .faq-wrap:last-child {
    margin-bottom: 70px;
  }
}

.tab-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 60px;
}

@media screen and (max-width: 896px) {
  .tab-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.tab-li {
  margin-right: 20px;
  background-color: rgb(190, 189, 189);
  width: 25%;
  border-radius: 30px;
  text-align: center;
  padding: 10px 15px;
}

@media screen and (max-width: 896px) {
  .tab-li {
    width: 45%;
    margin-right: 10px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 896px) {
  .tab-li:nth-child(2) {
    margin-right: 0;
  }
}

.tab-li:last-child {
  margin-right: 0;
}

.tab-li>a {
  color: #000;
  font-size: 2rem;
  display: block;
}

@media screen and (max-width: 896px) {
  .tab-li>a {
    font-size: 1.3rem;
  }
}

.content>p {
  font-size: 2rem;
}

.faq-btn {
  text-align: center;
  width: 230px;
  border-radius: 30px;
  background-color: #043d78;
  margin: 0 auto 90px;
}

@media screen and (max-width: 600px) {
  .faq-btn {
    margin: 0 auto 70px;
    width: 200px;
  }
}

.faq-btn>a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px;
  font-size: 20px;
}

@media screen and (max-width: 600px) {
  .faq-btn>a {
    font-size: 16px;
  }
}