@charset "UTF-8";
#wpfront-scroll-top-container {
  right: 20px;
  bottom: 120px;
  display: none !important;
}

html, body {
  min-height: 100vh;
  font-family: "Noto Sans JP", sans-serif;
  padding: 0;
  margin: 0;
  font-size: clamp(14px, 2.0833333333vw, 16px);
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
  scroll-behavior: smooth;
}
@media screen and (max-width: 640px) {
  html, body {
    overflow: auto;
  }
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #000;
  transition: all 0.5s ease;
}
a:active, a:visited {
  text-decoration: none;
  color: #000;
  transition: all 0.5s ease;
}
a:hover {
  opacity: 0.6;
  transition: all 0.5s ease;
}

.pc {
  display: block;
}
@media screen and (max-width: 1000px) {
  .pc {
    display: none !important;
  }
}

.tab {
  display: none;
}
@media screen and (max-width: 768px) {
  .tab {
    display: block;
  }
}

.sp {
  display: none !important;
}
@media screen and (max-width: 640px) {
  .sp {
    display: inline-block !important;
  }
}

.sps {
  display: none !important;
}
@media screen and (max-width: 480px) {
  .sps {
    display: inline-block !important;
  }
}

.inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.w100 {
  width: 100%;
  max-width: 100%;
}

/*header*/
header {
  background-color: #1c2e6c;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px 18px;
  color: #FFF; /* ページ読み込み時は非表示にする */
  position: fixed; /* ヘッダーを絶対位置にする。スクロールしても固定 */
  display: flex;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: all 0.5s ease;
  opacity: 0;
  top: -150px;
  box-sizing: border-box;
}
header.view {
  transition: all 0.5s ease;
  opacity: 1;
  top: 0;
}
header.view.main {
  position: relative;
}
header .logo {
  width: 20%;
  font-size: 12px;
  max-width: 210px;
}
header .logo img {
  margin: 10px 0 0 0;
}
@media screen and (max-width: 640px) {
  header .logo {
    width: 55%;
    font-size: 11px;
  }
}
header .navi {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 20px 0 auto;
}
@media screen and (max-width: 640px) {
  header .navi {
    display: none;
  }
}
header .navi ul {
  display: flex;
}
header .navi ul a {
  color: #FFF;
  font-size: 15px;
  display: flex;
  align-items: center;
  margin: 0 0 0 15px;
}
header .contact {
  display: flex;
  align-items: center;
}
header .contact .tel {
  display: flex;
  align-items: center;
  margin: 0 15px 0 0;
}
@media screen and (max-width: 640px) {
  header .contact .tel {
    display: none;
  }
}
header .contact .tel a {
  color: #FFF;
  font-family: "Jost", sans-serif;
  font-size: clamp(20px, 4.1666666667vw, 32px);
}
header .contact .tel img {
  width: 46px;
}
header .contact .time {
  font-size: clamp(11px, 1.6927083333vw, 13px);
  line-height: 1.2;
}
@media screen and (max-width: 640px) {
  header .contact .time {
    display: none;
  }
}

/*============
nav
=============*/
#navArea {
  display: none;
}
@media screen and (max-width: 640px) {
  #navArea {
    display: block;
  }
}
#navArea nav {
  display: block;
  position: fixed;
  top: 0;
  left: -300px;
  bottom: 0;
  width: 300px;
  background: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all 0.5s;
  z-index: 30;
  opacity: 0;
}
#navArea.open nav {
  left: 0;
  opacity: 1;
}
#navArea nav .navi {
  padding: 25px;
}
#navArea nav .navi ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#navArea nav .navi ul li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #333;
}
#navArea nav .navi ul li a {
  display: block;
  color: #333;
  font-size: 14px;
  padding: 1em;
  text-decoration: none;
  transition-duration: 0.2s;
}
#navArea nav .navi ul li a:hover {
  background: #e4e4e4;
}
@media screen and (max-width: 767px) {
  #navArea nav {
    left: -220px;
    width: 80%;
  }
}
#navArea {
  /*============
  .toggle_btn
  =============*/
}
#navArea .toggle_btn {
  display: block;
  position: fixed;
  top: 13px;
  right: 17px;
  width: 30px;
  height: 30px;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 30;
}
#navArea .toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 4px;
  transition: all 0.5s;
}
#navArea .toggle_btn span:nth-child(1) {
  top: 4px;
}
#navArea .toggle_btn span:nth-child(2) {
  top: 14px;
}
#navArea .toggle_btn span:nth-child(3) {
  bottom: 4px;
}
#navArea.open .toggle_btn span {
  background-color: #fff;
}
#navArea.open .toggle_btn span:nth-child(1) {
  transform: translateY(10px) rotate(-315deg);
}
#navArea.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
#navArea.open .toggle_btn span:nth-child(3) {
  transform: translateY(-10px) rotate(315deg);
}
#navArea {
  /*============
  #mask
  =============*/
}
#navArea #mask {
  transition: all 0.5s;
  width: 100%;
  background: rgba(28, 46, 108, 0.8588235294);
  position: fixed;
  height: 100%;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
}
#navArea.open #mask {
  opacity: 1;
  transition: all 0.5s;
  cursor: pointer;
  pointer-events: auto;
}

.btn01 {
  background: #003292;
  border-radius: 30px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.btn01 a {
  display: flex;
  align-items: center;
  padding: 17px 20px 20px 30px;
  color: #FFF;
  font-weight: 600;
  line-height: 1;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  font-size: 17px;
}
.btn01 a::after {
  font-family: "Material Icons";
  content: "\e5cc";
  margin: 0 0 0 12px;
  font-size: 24px;
  line-height: 0;
}

.cv {
  padding: 1rem 0;
  width: 90%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
}

.cv_side {
  background-color: #3dbf4a;
  color: #FFF;
  writing-mode: vertical-rl;
  position: fixed;
  right: 0;
  top: 20%;
  border-radius: 10px 0 0 10px;
}
@media screen and (max-width: 640px) {
  .cv_side {
    display: none;
  }
}
.cv_side a {
  color: #FFF;
  padding: 15px;
  display: block;
}
.cv_side a::before {
  font-family: "Material Icons";
  content: "\e158";
  margin: 0 0 0 12px;
  font-size: 24px;
  line-height: 0;
}

.mv {
  position: relative;
}
.mv .logo {
  position: absolute;
  left: 2%;
  top: 4%;
  width: 20%;
  font-size: 12px;
  max-width: 260px;
  z-index: 1;
}
@media screen and (max-width: 640px) {
  .mv .logo {
    width: 43%;
    top: 1%;
  }
}
.mv .logo img {
  margin: 10px 0 0 0;
}
@media screen and (max-width: 640px) {
  .mv .logo p.text {
    display: none;
  }
}
.mv .copy {
  position: absolute;
  width: 80%;
  max-width: 1100px;
  z-index: 1;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  height: 68%;
}
.mv .copy img {
  width: 62%;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
@media screen and (max-width: 640px) {
  .mv .copy {
    width: 88%;
    left: -7%;
    right: 0;
    bottom: 0;
    top: 0;
    height: 64%;
  }
}
.mv .title {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  background-color: #003292;
  padding: 1.5% 0;
  flex-wrap: wrap;
  line-height: 2.5;
}
.mv .title p {
  font-size: clamp(16px, 3.3854166667vw, 26px);
  padding: 0 1%;
  font-weight: 700;
  line-height: 1;
}
.mv .title .sh01 {
  width: 17%;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.mv .title .logo02 {
  width: 20%;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
@media screen and (max-width: 640px) {
  .mv .title .logo02 {
    margin: 10px 0 0 0;
  }
}
@media screen and (max-width: 640px) {
  .mv .title {
    padding: 5px 0 10px;
  }
  .mv .title img {
    height: 20px;
    width: 100% !important;
    margin: 4px 0 10px;
  }
}
.mv .bg {
  position: relative;
  z-index: 0;
}
.mv .bg img {
  max-width: 100%;
  max-height: 480px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 640px) {
  .mv .bg img {
    height: 250px;
    -o-object-position: 80%;
       object-position: 80%;
  }
}
@media screen and (max-width: 480px) {
  .mv .bg img {
    height: 200px;
  }
}

.navi.index {
  background-color: #e6e6e6;
}
@media screen and (max-width: 850px) {
  .navi.index {
    display: none;
  }
}
.navi.index ul {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2% 0;
  font-weight: 700;
}

.sec01 .inner {
  display: grid;
  grid-template-columns: 54% 42%;
  align-items: center;
  justify-content: space-between;
  padding: 4% 0;
}
@media screen and (max-width: 768px) {
  .sec01 .inner {
    display: block;
  }
}
.sec01 .inner div h2 {
  font-size: clamp(22px, 2.8571428571vw, 40px);
}
.sec01 .inner div h3 {
  font-size: clamp(16px, 2vw, 24px);
  padding: 3% 0;
  border-top: 1px solid;
  border-bottom: 1px solid;
  margin: 4% 0;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.4;
}
@media screen and (max-width: 640px) {
  .sec01 .inner div h3 br {
    display: none;
  }
}
.sec01 .inner div h3 span {
  color: #003292;
}
.sec01 .inner div h3 + p {
  font-size: clamp(15px, 2.34375vw, 18px);
  line-height: 1.4;
}
.sec01 .inner div h3 + p span {
  font-weight: 700;
}
.sec01 .inner figure img {
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .sec01 .inner figure {
    padding: 15px 0 0 0;
  }
}

.sec02 {
  background-color: #f2f2f2;
  padding: 60px 0;
}
@media screen and (max-width: 640px) {
  .sec02 {
    padding: 30px 0;
  }
}
.sec02 .inner {
  display: grid;
  grid-template-columns: 40% 56%;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 640px) {
  .sec02 .inner {
    display: block;
  }
}
.sec02 .inner .sh {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-right: 24px;
  padding: 2rem 2rem 2rem 44%;
  background-color: #FFF;
  text-align: left;
  line-height: 1.2;
  color: #000000;
  font-size: clamp(20px, 3.2vw, 32px);
  font-weight: 800;
  box-sizing: border-box;
  background-image: url(../image/sec02_image_1.png);
  background-position: left;
  background-repeat: no-repeat;
  background-size: contain;
}
.sec02 .inner .sh p {
  font-size: 18px;
  padding: 10px 0 0 0;
}
@media screen and (max-width: 640px) {
  .sec02 .inner .sh {
    padding: 10px 13px 10px 33%;
    margin-right: 0;
    margin-bottom: 25px;
    text-align: center;
    background-size: 33%;
  }
}
.sec02 .inner .sh::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  border-style: solid;
  border-width: 8.5px 0 8.5px 24px;
  border-color: transparent transparent transparent #FFF;
  translate: 100% -50%;
}
@media screen and (max-width: 640px) {
  .sec02 .inner .sh::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-width: 20px 10px 0 10px;
    border-color: #FFF transparent transparent;
    translate: -50% 100%;
    top: unset;
    right: unset;
  }
}
.sec02 .inner .list ul li {
  font-size: clamp(17px, 3.125vw, 24px);
  font-weight: 600;
  margin: 0 0 2.5% 0;
  display: flex;
}
.sec02 .inner .list ul li::before {
  content: "";
  background-image: url(../image/ico_check.png);
  width: 5%;
  height: 25px;
  background-size: contain;
  background-position: left top;
  background-repeat: no-repeat;
  display: block;
  margin: 0 1% 0 0;
  min-width: 20px;
}
.sec02 .inner .list ul li:last-child {
  margin: 0;
}
.sec02 .inner + div {
  text-align: center;
  font-size: clamp(18px, 2.6041666667vw, 20px);
  padding: 3% 0 0 0;
  font-weight: 600;
  line-height: 1.4;
}
.sec02 .inner + div span {
  font-size: clamp(26px, 3.90625vw, 30px);
  font-weight: 700;
  color: #003292;
}
@media screen and (max-width: 480px) {
  .sec02 .inner + div {
    padding: 25px 0 10px 0;
  }
}

.sec03 {
  padding: 6% 0 0 0;
}
.sec03 .inner {
  display: grid;
  grid-template-columns: 30% 63%;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 640px) {
  .sec03 .inner {
    display: flex;
    align-items: center;
    flex-direction: column-reverse;
  }
}
.sec03 .inner h2 {
  font-size: clamp(28px, 4.6875vw, 36px);
  padding: 0 0 15px;
}
.sec03 .inner p {
  font-size: clamp(16px, 2.34375vw, 18px);
  font-weight: 600;
  padding: 4px 0;
  line-height: 1.4;
}
.sec03 .inner p span {
  color: #003292;
  font-size: clamp(22px, 3.3854166667vw, 26px);
  font-weight: 700;
}
.sec03 .inner + .inner {
  max-width: 900px;
  display: block;
  padding: 3% 0;
}
.sec03 .inner + .inner p {
  font-size: clamp(18px, 3.125vw, 24px);
  text-align: center;
}
.sec03 .inner + .inner p span {
  font-size: clamp(30px, 4.8177083333vw, 37px);
}
.sec03 .inner + .inner dl {
  margin: 3% 0;
  border-bottom: 1px solid #000;
}
.sec03 .inner + .inner dl dt {
  border-top: 1px solid;
  padding: 3% 0 10px;
  font-size: clamp(18px, 3.125vw, 24px);
  font-weight: 700;
  display: flex;
  align-items: normal;
}
.sec03 .inner + .inner dl dt::before {
  content: "";
  background-image: url(../image/ico_att.png);
  width: 3.7%;
  height: 37px;
  background-size: contain;
  background-position: left top;
  background-repeat: no-repeat;
  display: block;
  margin: 0 1% 0 0;
  min-width: 26px;
}
@media screen and (max-width: 640px) {
  .sec03 .inner + .inner dl dt::before {
    height: 20px;
  }
}
.sec03 .inner + .inner dl dd {
  padding: 0px 0 3% 5%;
  line-height: 1.4;
}
@media screen and (max-width: 640px) {
  .sec03 .inner + .inner dl dd {
    padding: 0px 0 3% 30px;
  }
}

.sec04 {
  background-color: #d2ebff;
  position: relative;
  padding: 4% 0;
  text-align: center;
  z-index: 0;
}
@media screen and (max-width: 640px) {
  .sec04 {
    padding: 10% 0;
  }
}
@media screen and (max-width: 640px) {
  .sec04 .inner {
    width: 92%;
  }
}
.sec04 .inner .contents {
  width: 75%;
  max-width: 870px;
}
@media screen and (max-width: 640px) {
  .sec04 .inner .contents {
    width: 100%;
  }
}
.sec04 .inner .contents h2 {
  text-align: center;
  font-size: clamp(18px, 4.4270833333vw, 34px);
  font-weight: 800;
  line-height: 1.6;
}
@media screen and (max-width: 640px) {
  .sec04 .inner .contents h2 {
    line-height: 1.4;
  }
}
.sec04 .inner .contents h2 span {
  color: #0059b9;
}
@media screen and (max-width: 640px) {
  .sec04 .inner .contents h2 span {
    font-size: 18px;
  }
}
.sec04 .inner .contents h2 img {
  max-width: 330px;
  vertical-align: text-top;
  margin: 0 7px 0 0;
}
@media screen and (max-width: 640px) {
  .sec04 .inner .contents h2 img {
    max-width: 200px;
  }
}
.sec04 .inner .contents .frame {
  display: grid;
  grid-template-columns: 40% 60%;
  justify-content: space-between;
  width: 100%;
  padding: 5% 0;
}
@media screen and (max-width: 640px) {
  .sec04 .inner .contents .frame {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 11% 0;
    align-items: center;
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 640px) {
  .sec04 .inner .contents .frame figure {
    margin: 35px 0 0;
  }
}
.sec04 .inner .contents .frame figure img {
  height: 100%;
}
.sec04 .inner .contents .frame + p {
  font-size: clamp(20px, 4.1666666667vw, 32px);
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 4% 0;
}
.sec04 .inner .contents .frame + p span {
  color: #003292;
}
@media screen and (max-width: 640px) {
  .sec04 .inner .contents .frame + p {
    background-color: rgba(255, 255, 255, 0.7019607843);
    padding: 5px;
    border-radius: 10px;
  }
}
.sec04 .inner .contents div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}
.sec04 .inner .contents div h3 {
  background-color: #003292;
  color: #FFF;
  padding: 1.5% 20px;
  font-size: clamp(17px, 2.6041666667vw, 20px);
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.sec04 .inner .contents div h3 + p {
  font-size: clamp(20px, 3.3854166667vw, 26px);
  font-weight: 600;
  line-height: 1.4;
  padding: 20px 0;
  text-decoration: underline;
  text-decoration-color: red;
  text-decoration-thickness: 3px;
}
.sec04 .inner .contents div ul li {
  font-size: clamp(16px, 2.34375vw, 18px);
  font-weight: 600;
  position: relative;
  display: block;
  margin: 3% auto 0 auto;
  padding: 10px 16px;
  border-radius: 13px;
  background-color: #FFF;
  text-align: center;
  line-height: 1.5;
  color: #000000;
  width: 85%;
}
.sec04 .inner .contents div ul li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 6px;
  border-style: solid;
  border-width: 8.5px 25px 8.5px 0;
  border-color: transparent #ffffff transparent transparent;
  translate: -100% -50%;
}
@media screen and (max-width: 640px) {
  .sec04 .inner .contents div ul li::after {
    display: none;
  }
}
.sec04 .inner .contents div ul li:first-child {
  margin: 0 auto;
}
.sec04 .bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 25%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}
.sec04 .bg img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 640px) {
  .sec04 .bg {
    right: auto;
    top: 0;
    width: 100%;
  }
}

.sec05 {
  padding: 5% 0;
}
.sec05 .inner h2 {
  font-size: clamp(25px, 5.7291666667vw, 44px);
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-weight: 800;
}
.sec05 .inner h2 img {
  height: 44px;
}
@media screen and (max-width: 640px) {
  .sec05 .inner h2 img {
    height: 25px;
  }
}
.sec05 .inner h2 + p {
  font-size: clamp(22px, 3.3854166667vw, 26px);
  text-align: center;
  font-weight: 800;
  padding: 3% 0 5%;
}
.sec05 .inner .frame {
  display: grid;
  grid-template-columns: repeat(3, 30%);
  justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .sec05 .inner .frame {
    display: block;
  }
}
.sec05 .inner .frame article {
  background-color: #d2ebff;
  padding: 9% 10%;
  text-align: center;
}
.sec05 .inner .frame article figure {
  margin: 0 0 1rem 0;
}
.sec05 .inner .frame article h3 {
  font-size: 28px;
  color: #003292;
  font-weight: 700;
}
.sec05 .inner .frame article h3 + p {
  font-size: 36px;
}
.sec05 .inner .frame article p + figure {
  width: 74%;
  margin: 2% auto;
}
.sec05 .inner .frame article p + figure + p {
  font-size: 15px;
  line-height: 1.6;
  text-align: left;
  padding: 10% 0 0 0;
}
.sec05 .inner .frame + p {
  font-size: clamp(28px, 4.6875vw, 36px);
  line-height: 1.6;
  text-align: center;
  padding: 5% 0;
  font-weight: 700;
}

.sec06 {
  background-image: url(../image/bg01.png);
  background-size: cover;
  padding: 0 0 3% 0;
}
.sec06 .inner {
  max-width: 900px;
}
.sec06 .inner h2 {
  padding: 6% 0 8%;
}
.sec06 .inner h2 img {
  margin: 0 auto;
  display: block;
}
.sec06 .inner article {
  background-color: #FFF;
  display: grid;
  grid-template-columns: 26% 71.5%;
  justify-content: space-between;
  padding: 2% 3% 2% 2%;
  margin: 0 0 4%;
  align-items: center;
}
@media screen and (max-width: 640px) {
  .sec06 .inner article {
    display: block;
    padding: 15px;
  }
}
.sec06 .inner article figure img {
  aspect-ratio: 4/3.5;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 640px) {
  .sec06 .inner article figure img {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 4/2;
  }
}
.sec06 .inner article dl dt {
  display: flex;
  align-items: center;
  line-height: 1;
  font-size: 26px;
  font-weight: 700;
}
.sec06 .inner article dl dt span {
  color: #0059b9;
  font-family: "Jost", sans-serif;
  font-size: clamp(60px, 9.6354166667vw, 74px);
  font-style: italic;
  font-weight: 500;
  margin: 0 10px 0 0;
}
@media screen and (max-width: 640px) {
  .sec06 .inner article dl dt {
    font-size: 22px;
    padding: 12px 0;
    line-height: 1.2;
  }
  .sec06 .inner article dl dt span {
    margin: 0 27px 0 0;
  }
}
.sec06 .inner article dl dd {
  font-size: 14px;
  line-height: 1.5;
}

.sec07 {
  background-color: #d2ebff;
  padding: 4% 0;
}
.sec07 .inner .sh {
  text-align: center;
  margin: 0 auto -2.5rem;
  width: 52%;
}
@media screen and (max-width: 640px) {
  .sec07 .inner .sh {
    margin: 0 13px 0 auto;
    width: 96%;
  }
}
.sec07 .top {
  display: flex;
  align-items: center;
  width: 98%;
  margin: 0 auto 0 0;
}
@media screen and (max-width: 640px) {
  .sec07 .top {
    display: block;
  }
}
.sec07 .top .sh {
  background-color: #0059b9;
  color: #FFF;
  font-size: clamp(18px, 2.2vw, 22px);
  padding: 20px;
  margin: 0 20px 0 0;
  width: 25%;
  max-width: 400px;
  box-sizing: border-box;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.sec07 .top .sh span {
  font-family: "Jost", sans-serif;
  font-size: clamp(11px, 1.6927083333vw, 13px);
  margin: 0 0 0 10px;
}
.sec07 article {
  background: #FFF;
  display: grid;
  grid-template-columns: 26% 71%;
  align-items: center;
  padding: 2%;
  margin: 3% 0;
  justify-content: space-between;
}
.sec07 article figure img {
  border: 1px solid #8c8c8c;
}
@media screen and (max-width: 640px) {
  .sec07 article {
    display: block;
  }
  .sec07 article figure img {
    margin: 22px auto;
    display: block;
  }
  .sec07 article figure + div {
    padding: 0 13px 15px;
  }
}
.sec07 article div a {
  color: #0059b9;
  text-decoration: underline;
}
.sec07 article div .head {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 640px) {
  .sec07 article div .head {
    display: block;
    padding: 0;
  }
}
.sec07 article div .head h3 {
  font-size: clamp(22px, 2.8vw, 28px);
  margin: 0 20px 0 0;
}
@media screen and (max-width: 640px) {
  .sec07 article div .head h3 {
    padding: 0 0 10px 0;
    margin: 0;
  }
}
.sec07 article div .head p {
  display: flex;
  align-items: center;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
}
.sec07 article div .head p span {
  font-size: clamp(12px, 1.5vw, 15px);
  border: 1px solid #8c8c8c;
  padding: 5px;
  line-height: 1;
  display: block;
  margin: 0 10px 0 0;
}
.sec07 article div .head + p {
  display: flex;
  align-items: center;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 600;
  padding: 2.5% 0;
}
.sec07 article div .head + p span {
  font-size: clamp(13px, 1.5vw, 15px);
  border: 1px solid #8c8c8c;
  padding: 5px;
  line-height: 1;
  display: block;
  margin: 0 10px 0 0;
}
@media screen and (max-width: 640px) {
  .sec07 article div .head + p a {
    font-size: 16px;
  }
}
.sec07 article div .link p {
  display: flex;
  align-items: center;
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 600;
}
.sec07 article div .link p span {
  font-size: clamp(13px, 1.5vw, 15px);
  border: 1px solid #8c8c8c;
  padding: 5px;
  line-height: 1;
  display: block;
  margin: 0 10px 0 0;
}
@media screen and (max-width: 640px) {
  .sec07 article div .link p span {
    display: block;
    margin: 0 10px 6px 0;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (max-width: 640px) {
  .sec07 article div .link p {
    display: block;
  }
}
.sec07 article div .link ul {
  display: flex;
  flex-wrap: wrap;
  padding: 10px 0 0 0;
  margin: 0;
}
.sec07 article div .link ul li {
  padding: 8px 22px 8px 0;
}

.sec08 {
  padding: 80px 0;
}
.sec08 .inner {
  max-width: 900px;
}
.sec08 .inner h2 {
  font-size: clamp(30px, 3.8vw, 38px);
  text-align: center;
  position: relative;
  margin: 0 0 90px 0;
}
.sec08 .inner h2::after {
  content: "";
  width: 78px;
  height: 7px;
  background-color: #0059b9;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -25px;
}
.sec08 .inner ul li {
  display: grid;
  grid-template-columns: 7% 93%;
  margin: 0 0 6% 0;
}
@media screen and (max-width: 640px) {
  .sec08 .inner ul li {
    grid-template-columns: 10% 87%;
    margin: 0 0 6% 0;
    justify-content: space-between;
  }
}
.sec08 .inner ul li .icon {
  background-color: #0059b9;
  color: #FFF;
  text-align: center;
  font-family: "Jost", sans-serif;
  font-size: clamp(30px, 4.6875vw, 36px);
  font-weight: 500;
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sec08 .inner ul li div h3 {
  font-size: clamp(22px, 3.3854166667vw, 26px);
  font-weight: 600;
  margin: 0 0 5px 0;
}
.sec08 .inner ul li.one {
  align-items: center;
}

.sec09 {
  padding: 80px 0;
  background-color: #f2f2f2;
}
.sec09 .inner {
  max-width: 900px;
}
.sec09 .inner h2 {
  font-size: clamp(30px, 3.8vw, 38px);
  text-align: center;
  position: relative;
  margin: 0 0 90px 0;
}
.sec09 .inner h2::after {
  content: "";
  width: 78px;
  height: 7px;
  background-color: #0059b9;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -25px;
}
.sec09 .inner dl dt {
  font-size: clamp(20px, 2.4vw, 24px);
  font-weight: 600;
  display: flex;
}
.sec09 .inner dl dt::before {
  content: "Q.";
  font-family: "Jost", sans-serif;
  font-size: clamp(24px, 3.6458333333vw, 28px);
  font-weight: 500;
  color: #0059b9;
}
.sec09 .inner dl dd {
  padding: 10px 0 2rem 2rem;
}

.sec10 {
  background-color: #1c2e6c;
  color: #FFF;
  padding: 3rem 0;
  text-align: center;
}
.sec10 h2 {
  font-size: clamp(18px, 3.90625vw, 30px);
  font-weight: 700;
  margin: 0 0 2rem 0;
}
.sec10 h2 span {
  font-size: clamp(20px, 5.46875vw, 42px);
}
.sec10 h2 p {
  background-color: #ffff00;
  color: #1c2e6c;
  font-size: clamp(24px, 5.46875vw, 42px);
  width: -moz-fit-content;
  width: fit-content;
  margin: 10px auto;
  padding: 5px 10px 5px 15px;
}
.sec10 h3 {
  font-size: clamp(24px, 3.90625vw, 30px);
  font-weight: 700;
  line-height: 1.4;
}
.sec10 h3 span {
  color: #ffff00;
}
.sec10 h3 + p {
  padding: 1rem;
  line-height: 1.4;
}

footer {
  background-color: #1c2e6c;
  color: #FFF;
  padding: 25px 0;
}
footer .inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .inner .logo {
  display: flex;
  align-items: center;
}
footer .inner .logo img {
  height: 25px;
  width: auto;
  margin: 0;
}
footer .inner .logo p {
  padding: 0 15px 0 0;
}

.sp_footer {
  display: none;
}
@media screen and (max-width: 640px) {
  .sp_footer {
    display: block;
    z-index: 100;
    position: fixed;
    bottom: 0;
    height: 60px;
    background-color: #003292;
    width: 100%;
  }
  .sp_footer ul {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-around;
  }
  .sp_footer ul li {
    border-right: 1px solid #3f5b8f;
  }
  .sp_footer ul li a {
    color: #FFF !important;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
  }
  .sp_footer ul li:first-child a::before {
    font-family: "Material Icons";
    content: "\e0ee";
    margin: 0 5px;
    font-size: 26px;
    display: block;
    line-height: 1;
  }
  .sp_footer ul li:nth-child(2) a::before {
    font-family: "Material Icons";
    content: "\ea40";
    margin: 0 5px;
    font-size: 26px;
    display: block;
    line-height: 1;
  }
  .sp_footer ul li:last-child {
    border-right: none;
  }
  .sp_footer ul li:last-child a {
    flex-direction: column;
  }
  .sp_footer ul li:last-child a::before {
    font-family: "Material Icons";
    content: "\e0cd";
    margin: 0 5px;
    font-size: 26px;
    display: block;
  }
}/*# sourceMappingURL=contents.css.map */