@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;
}

body {
  color: #2B3639 !important;
}

.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;
  }
}

.tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.tab_label {
  font-weight: bold;
  position: relative;
  z-index: 1;
  cursor: pointer;
  width: 33.3333333333%;
  background-image: url(../../top/img/person04.jpg);
  background-size: cover;
  background-position: top;
  position: relative;
}

@media screen and (max-width: 980px) {
  .tab_label {
    width: 33.3%;
  }
}

.tab_label::after {
  content: "";
  padding-top: 66%;
  display: block;
}

.tab_label.sec {
  background-image: url(../../top/img/person03.jpg);
}

.tab_label.thr {
  background-image: url(../../top/img/person02.jpg);
}

.tab_label.four {
  background-image: url(../../top/img/person01.jpg);
}

.tab_label.five {
  background-image: url(../../top/img/person05.jpg);
}

.tab_label.six {
  background-image: url(../../top/img/person09.jpg);
}

.tab_label.seven {
  background-image: url(../../top/img/person10.jpg);
}

.tab_label .img {
  width: 100%;
  height: 100%;
  position: absolute;
  /* 位置を指定 */
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
  background-color: rgba(0, 0, 0, 0.5);
}

.tab_label span {
  position: absolute;
  /* 位置を指定 */
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  margin: 0 auto;
  color: #fff;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 2px;
}

@media screen and (max-width: 980px) {
  .tab_label span {
    font-size: 24px;
  }
}

@media screen and (max-width: 600px) {
  .tab_label span {
    font-size: 20px;
  }
}

.tab_label:hover {
  opacity: 0.75;
}

.tab_content {
  -webkit-box-flex: 100%;
  -ms-flex: 100%;
  flex: 100%;
  display: none;
  overflow: hidden;
  background-color: #E3E8EC;
}

input[name=tab_switch] {
  display: none;
}

.tabs input:checked+.tab_label {
  background-color: #043d78;
  background-image: none;
}

#tab01:checked~#tab01_content,
#tab02:checked~#tab02_content,
#tab03:checked~#tab03_content,
#tab04:checked~#tab04_content,
#tab05:checked~#tab05_content,
#tab06:checked~#tab06_content,
#tab07:checked~#tab07_content {
  display: block;
}

.tab_content {
  position: relative;
  -webkit-animation: fadeIn 1s ease;
  animation: fadeIn 1s ease;
}

.sp-pro {
  display: none;
}

@media screen and (max-width: 980px) {
  .sp-pro {
    display: block;
  }
}

.sp-pro__ttl {
  background-color: rgb(4, 61, 120) !important;
  font-size: 20px;
  color: #fff;
  padding: 10px 20px;
}

.sp-pro__txt {
  background-color: #fff;
  color: #333;
  padding: 10px 20px;
  font-size: 14px;
}

.sp-pro__txt p:first-child {
  font-size: 18px;
  position: relative;
  padding-left: 20px;
}

.sp-pro__txt p:first-child::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 0;
  height: 0;
  border-left: 17px solid #043d78;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.sp-pro__txt p:last-child {
  font-size: 14px;
  line-height: 1.9;
}

.sp-pro__txt h5 {
  font-size: 22px;
  margin: 20px 0;
}

.content__main {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  width: 100%;
  height: 700px;
  position: relative;
}

@media screen and (max-width: 1500px) {
  .content__main {
    height: 500px;
    background-position: 100px top;
  }
}

@media screen and (max-width: 980px) {
  .content__main {
    height: 300px;
    background-position:top;
  }
}

.content__main.main01 {
  background-image: url(../../top/img/pro01.jpg);
}

@media screen and (max-width: 600px) {
  .content__main.main01 {
    background-image: url(../../top/img/sp/pro01.jpg);
  }
}

.content__main.main02 {
  background-image: url(../../top/img/pro02.jpg);
}

@media screen and (max-width: 600px) {
  .content__main.main02 {
    background-image: url(../../top/img/sp/pro02.jpg);
  }
}

.content__main.main03 {
  background-image: url(../../top/img/pro03.jpg);
}

@media screen and (max-width: 600px) {
  .content__main.main03 {
    background-image: url(../../top/img/sp/pro03.jpg);
  }
}

.content__main.main04 {
  background-image: url(../../top/img/pro04.jpg);
}

@media screen and (max-width: 600px) {
  .content__main.main04 {
    background-image: url(../../top/img/sp/pro04.jpg);
  }
}

.content__main.main05 {
  background-image: url(../../top/img/pro05.jpg);
}

@media screen and (max-width: 600px) {
  .content__main.main05 {
    background-image: url(../../top/img/sp/pro05.jpg);
  }
}

.content__main.main06 {
  background-image: url(../../top/img/pro06.jpg);
}

@media screen and (max-width: 600px) {
  .content__main.main06 {
    background-image: url(../../top/img/sp/pro06.jpg);
  }
}

.content__main.main07 {
  background-image: url(../../top/img/pro08.jpg);
  background-position: 0 8% !important;
}

@media screen and (max-width: 600px) {
  .content__main.main07 {
    background-image: url(../../top/img/sp/pro08.jpg);
    background-position: top !important;
  }
}

.content__main .pro__ttl {
  font-size: 40px;
  width: 30%;
  height: 100%;
  position: absolute;
  /* 位置を指定 */
  top: 0;
  left: 0;
  mix-blend-mode: multiply !important;
  background-color: rgba(4, 61, 120, 0.9) !important;
}

@media screen and (max-width: 1500px) {
  .content__main .pro__ttl {
    width: 40%;
  }
}

@media screen and (max-width: 1300px) {
  .content__main .pro__ttl {
    width: 40%;
  }
}

.content__main .pro__ttl-div {
  position: relative;
  height: 130px;
}

@media screen and (max-width: 980px) {
  .content__main .pro__ttl-div {
    display: none;
  }
}

.content__main .pro__ttl-div span {
  color: #fff;
  letter-spacing: 0.1em;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 5%;
  font-size: 40px;
}

@media screen and (max-width: 1300px) {
  .content__main .pro__ttl-div span {
    left: 5%;
    width: 30%;
    font-size: 3rem;
  }
}

@media screen and (max-width: 980px) {
  .content__main .pro__ttl-div span {
    top: auto;
    bottom: 20%;
  }
}

.content__main .pro__content-txt-wrap {
  position: absolute;
  width: 30%;
  height: 570px;
  background-color: rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 1500px) {
  .content__main .pro__content-txt-wrap {
    height: 370px;
    width: 40%;
  }
}

@media screen and (max-width: 1300px) {
  .content__main .pro__content-txt-wrap {
    width: 40%;
  }
}

.content__main .pro__content-txt {
  height: 570px;
  width: 100%;
}

@media screen and (max-width: 980px) {
  .content__main .pro__content-txt {
    display: none;
  }
}

.content__main .pro__content-txt span {
  width: 21%;
  color: #fff;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 5%;
  font-size: 16px;
}

@media screen and (max-width: 1500px) {
  .content__main .pro__content-txt span {
    top: 60%;
    width: 32%;
  }
}

@media screen and (max-width: 1300px) {
  .content__main .pro__content-txt span {
    left: 4%;
  }
}

.content__main .pro__content-txt span h5 {
  font-size: 40px;
  margin-bottom: 30px;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 1300px) {
  .content__main .pro__content-txt span h5 {
    margin-bottom: 20px;
    font-size: 3rem;
  }
}

.content__main .pro__content-txt span p:first-child {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 1500px) {
  .content__main .pro__content-txt span p:first-child {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
}

.content__main .pro__content-txt span p:first-child::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 0;
  height: 0;
  border-left: 17px solid #043d78;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.content__main .pro__content-txt span p:last-child {
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.1em;
}

.content__inner {
  background-color: #fff;
  max-width: 1300px;
  width: 95%;
  margin: 0 auto;
  padding: 50px;
}

@media screen and (max-width: 980px) {
  .content__inner {
    padding: 25px;
  }
}

.content__question {
  border-bottom: 1px solid #bbbdbe;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.content__question span:first-child {
  color: #043d78;
  font-size: 30px;
  font-weight: 700;
  padding-bottom: 20px;
  letter-spacing: 0.1em;
  padding-right: 10px;
}

.content__question span:last-child {
  font-size: 24px;
  font-weight: 600;
}

@media screen and (max-width: 600px) {
  .content__question span:last-child {
    font-size: 20px;
  }
}

.content__answer {
  margin-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 800px) {
  .content__answer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media screen and (max-width: 600px) {
  .content__answer {
    margin-bottom: 30px;
  }
}

.content__answer:last-child {
  margin-bottom: 0;
}

.content__answer p {
  font-size: 16px;
  line-height: 1.9;
  left: 0.1em;
}

.content__answer-img {
  width: 340px;
  position: relative;
}

.content__answer-img .txt-cap {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: #043d78;
  font-weight: bold;
  background-color: white;
  padding: 3px 0px 3px;
  font-size: 14px;
  width: 78% !important;
  margin: 0 0 0 auto !important;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .content__answer-img .txt-cap {
    width: 70% !important;
    padding: 6px 0;
    text-align: center;
  }
}

@media screen and (max-width: 800px) {
  .content__answer-img {
    width: 90%;
    margin: 30px auto 0;
  }
}

.content__answer-img img {
  width: 100%;
}

.answer-txt {
  width: 70%;
  margin-right: 5%;
}

@media screen and (max-width: 800px) {
  .answer-txt {
    width: 100%;
    margin-right: 0;
  }
}

.fa-ttl h3 {
  padding-bottom: 0;
}

@media screen and (max-width: 980px) {
  .fa-ttl {
    padding: 30px 0;
  }
}

.faq-btn {
  text-align: center;
  width: 90%;
  max-width: 500px;
  border-radius: 30px;
  background-color: #043d78;
  margin: 50px auto 50px;
  padding: 10px 0;
  position: relative;
}

.faq-btn::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  right: 3%;
  top: 45%;
}

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

.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;
  }
}