@charset "utf-8";
/* ----------------------------------------------------
   common
---------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  list-style: none;
}
body {
  font-family: "Noto Sans JP", "Noto Sans", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴシック", Hiragino Sans, Verdana, "メイリオ", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #434343;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  letter-spacing: 1.5px;
}
a {
  display: block;
  text-decoration: none;
  transition: .5s;
}
img {
  max-width: 100%;
}
p + p {
  margin-top: 30px;
}
.alignC {
  text-align: center !important;
}
.alignL {
  text-align: left !important;
}
.mT0 {
  margin-top: 0 !important;
}
.fontB {
  font-weight: bold;
  display: block;
}
.sp-block {
  display: none;
}
/* ----------------------------------------------------
   btn_link
---------------------------------------------------- */
.btn_link {
  max-width: 500px;
  margin: 0 auto;
}
.btn_link a {
  border-radius: 50px;
  font-weight: bold;
  border: 1px solid #1498E2;
  padding: 20px 40px;
  text-align: center;
  background: #fff;
  color: #333;
}
.btn_link a span {
  font-size: 20px;
  color: #333;
  position: relative;
  line-height: 1.5;
  padding: 0 0 0 25px;
  display: inline-block;
}
.btn_link a span::before {
  content: "";
  background: url(../img/icon_arrow-r.svg) no-repeat center;
  width: 8px;
  height: 20px;
  position: absolute;
  top: 55%;
  left: 0;
  transform: translateY(-50%) rotate(90deg);
}
.btn_link a:hover {
  border: 1px solid #1498E2;
  background: #1498E2;
}
.btn_link a:hover span {
  color: #fff;
}
.btn_link a:hover span::before {
  background: url(../img/icon_arrow-r-w.svg) no-repeat center;
}

/* --- btn_link _blank --- */
.btn_link a[target="_blank"] span {
  padding: 0 25px;
}
.btn_link a[target="_blank"] span::before {
  background: url(../img/icon_arrow-r.svg) no-repeat center;
  top: 50%;
  transform: translateY(-50%);
}
.btn_link a[target="_blank"]:hover span::before {
  background: url(../img/icon_arrow-r-w.svg) no-repeat center;
}
.btn_link a[target="_blank"] span::after {
  content: "";
  background: url("../img/icon_blank-b.svg") no-repeat center;
  background-size: cover;
  width: 15px;
  height: 15px;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.btn_link a:hover span::after {
  background: url("../img/icon_blank-w.svg") no-repeat center;
}
/* --- btn_link inquiry_link --- */
.btn_link.inquiry_link {
  max-width: none;
  margin: 30px 0 0;
}
.btn_link.inquiry_link a[target="_blank"] span {
  padding: 0 25px 0 0;
}
.btn_link.inquiry_link span::before {
  content: none!important;
}
.btn_link.inquiry_link a:hover {
  background: #0094F5;
  color: #fff;
  border: 1px solid #fff;
}
.btn_link.inquiry_link a:hover span::after {
  background: url("../img/icon_blank-w.svg") no-repeat center;
}
/* --- btn_link pdf_link --- */
.btn_link.pdf_link a span::before {
  background: url(../img/icon_arrow-r.svg) no-repeat center;
}
.btn_link.pdf_link a:hover span::before {
  background: url(../img/icon_arrow-r-w.svg) no-repeat center;
}
.btn_link.pdf_link a span::after {
  background: url("../img/icon_pdf-r.svg") no-repeat center;
  width: 19px;
  height: 24px;
}
.btn_link.pdf_link a:hover span::after {
  background: url("../img/icon_pdf-w.svg") no-repeat center;
}
.btn_link.pdf_link span.sub-txt {
  text-align: center;
  padding-top: 15px;
  display: block;
}
/* --- btn_link-list --- */
.btn_link-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 30px;
  column-gap: 30px;
}
.btn_link-list > * {
  width: calc((100% - 40px) /2);
  margin: 0;
}
.box_area + .btn_link-list {
  margin-top: 100px;
}
/* ----- mv btn_link ----- */
.mv .btn_link {
  margin-top: 40px;
  display: inline-block;
}
.mv .btn_link a {
  padding: 10px 50px;
  border: 1px solid transparent;
}
.mv .btn_link span::before {
  content: none;
}
/* ----------------------------------------------------
   column
---------------------------------------------------- */
/* --- col-2 --- */
.col-2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
}
.col-2 > * {
  width: calc((100% - 50px) / 2);
  margin-top: 0;
}
/* --- col-2_1 --- */
.col-2_1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 30px
}
.col-2_1>*:first-child {
  width: 64%;
}
.col-2_1>*:last-child {
  width: 30%;
  margin-top: 0
}
/* --- col-3 --- */
.col-3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 20px;
}
.col-3 > * {
  width: calc((100% - 50px) / 3);
  margin-top: 0;
}
/* ----------------------------------------------------
   picture / figure
---------------------------------------------------- */
picture {
  margin-top: 50px;
  text-align: center;
  display: block;
}
figure {
  margin-top: 50px;
  text-align: center;
}
/* ----------------------------------------------------
   list
---------------------------------------------------- */
/* --- ul --- */
ul {
  padding-left: 23px;
}
p + ul {
  margin-top: 20px;
}
ul li {
  list-style: disc;
  margin-top: 5px;
}
/* --- ol --- */
ol {
  padding-left: 23px;
  margin-top: 5px;
}
ol li {
  list-style: auto;
  margin-top: 5px;
}
ol.cnt {
  padding-left: 10px;
}
ol.cnt li {
  list-style: none;
  counter-increment: cnt;
}
ol.cnt > li:before {
  content: counter(cnt) ") ";
}
/* ----------------------------------------------------
   box_area
---------------------------------------------------- */
.box_area {
  background: #F8FEFF;
  border: 8px solid #E3F6FF;
  position: relative;
  width: 85%;
  margin: 50px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px;
  box-sizing: border-box;
}
.box_area::before {
  content: "";
  width: calc(100% + 15px);
  height: calc(100% + 15px);
  border: 8px solid #CAF5FF;
  position: absolute;
  top: -15px;
  left: -15px;
}
.box_area .txt_area {
  width: 60%;
}
.box_area figure {
  width: 35%;
  margin-top: 0;
}
.box_area .ttl-h5 {
  font-size: 18px;
  padding-bottom: 20px;
}
.box_area p + .ttl-h5 {
  padding-top: 40px;
}
.box_area.col-2 > * {
  width: calc((100% - 10px) /2);
}
.box_area.col-2 .col-2 {
  column-gap: 0;
  justify-content: space-between;
  width: calc((100% - 50px) / 2);
}
.box_area.col-2 .col-2:nth-of-type(n+3) {
  margin-top: 50px;
}
.box_area.col-2 .col-2 > .txt_area {
  width: 50%;
}
.box_area.col-2 .col-2 > figure {
  width: 40%;
}
.box_area + .btn_link {
  margin-top: 100px;
}
/* ----------------------------------------------------
   table
---------------------------------------------------- */
.table {
  border-collapse: collapse;
  max-width: 400px;
  width: 100%;
  margin-bottom: 30px;
}
.table th, .table td {
  border: 1px solid #333;
  padding: 10px;
  text-align: center;
}
/* ----------------------------------------------------
   header
---------------------------------------------------- */
header h1 {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
h1 img {
  width: 300px;
}
/* ----------------------------------------------------
   mv
---------------------------------------------------- */
.mv {
  background: url(../img/mv_bg.jpg) no-repeat center;
  background-size: cover;
  width: 100%;
  height: 750px;
  padding: 50px 0;
  position: relative;
}
/* ----- txt_block ----- */
.mv .txt_block {
  color: #fff;
  text-align: center;
  padding: 80px 0 0;
}
.mv .txt_block .lead {
  font-size: 23px;
  margin-top: 10px;
}
/* ----------------------------------------------------
   nav_list
---------------------------------------------------- */
.nav_list {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1000px;
}
.nav_list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 1%;
}
.nav_list ul li {
  width: calc((100% - 220px) / 3);
  margin: 10px;
  display: flex;
}
@media screen and (max-width: 940px) {
  .nav_list ul li {
    width: calc((100% - 40px) / 3);
  }
}
.nav_list ul li:nth-child(2) {
  width: 290px;
}
.nav_list ul li:last-child {
  width: 410px;
}
.nav_list ul li a {
  color: #333;
  font-weight: bold;
  text-align: center;
  padding: 10px 5px 30px;
  position: relative;
  line-height: 1.5;
  border-radius: 3px;
  border: 1px solid #88CEED;
  background: #fff;
  transition: .5s;
  width: 100%;
}
.nav_list ul li a::before {
  content: "";
  background: url(../img/icon_arrow-b.svg) no-repeat center;
  position: absolute;
  bottom: 13px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 8px;
  transition: .5s;
}
.nav_list ul li a span {
  position: relative;
  padding-left: 30px;
}
.nav_list ul li:last-child a span {
  padding-left: 30px;
}
.nav_list ul li a span::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -5px;
  width: 28px;
  height: 30px;
}
.nav_list ul li:first-child a span::before {
  background: url("../img/icon_01.svg") no-repeat center;
}
.nav_list ul li:nth-child(2) a span::before {
  background: url("../img/icon_02.svg") no-repeat center;
}
.nav_list ul li:nth-child(3) a span::before {
  background: url("../img/icon_03.svg") no-repeat center;
}
.nav_list ul li:nth-child(4) a span::before {
  background: url("../img/icon_04.svg") no-repeat center;
}
.nav_list ul li:nth-child(5) a span::before {
  background: url("../img/icon_05.svg") no-repeat center;
}
.nav_list ul li:nth-child(6) a span::before {
  background: url("../img/icon_06.svg") no-repeat center;
}
.nav_list ul li a:hover {
  border: 1px solid #6BBEDB;
  box-shadow: 0px 0px 5px #74C8ED;
  background: #F2FFFF;
}
.nav_list ul li a:hover::before {
  bottom: 8px;
}
/* ----------------------------------------------------
   contents
---------------------------------------------------- */
.container {
  padding: 150px 0;
}
.container + .container {
  padding-top: 0;
}
.sec_contents-block {
  padding: 0 5%;
  max-width: 1000px;
  margin: 0 auto;
}
.ttl-h2 {
  font-size: 32px;
  text-align: center;
  padding-bottom: 40px;
  position: relative;
}
.ttl-h2:before {
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 60px;
}
#ac03 .ttl-h2, #ac04 .ttl-h2, #ac06 .ttl-h2 {
  position: relative;
  top: 20px;
  padding-bottom: 0;
}
#ac01 .ttl-h2:before {
  background: url("../img/icon_01.svg") no-repeat center;
}
#ac02 .ttl-h2:before {
  background: url("../img/icon_02.svg") no-repeat center;
}
#ac03 .ttl-h2:before {
  background: url("../img/icon_03.svg") no-repeat center;
}
#ac04 .ttl-h2:before {
  background: url("../img/icon_04.svg") no-repeat center;
}
#ac05 .ttl-h2:before {
  background: url("../img/icon_05.svg") no-repeat center;
}
#ac06 .ttl-h2:before {
  background: url("../img/icon_06.svg") no-repeat center;
}
.ttl-h3 {
  font-size: 24px;
  position: relative;
  padding-left: 60px;
  margin-bottom: 30px;
}
.ttl-h3:before {
  content: "";
  background: url("../img/icon_point.svg") no-repeat center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
}
.ttl-h4 {
  font-size: 18px;
  position: relative;
  padding-left: 10px;
  margin-bottom: 10px;
}
.ttl-h4:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 15px;
  height: 15px;
  background: #C0EFFF;
}
/* ----------------------------------------------------
   sec_ttl-block
---------------------------------------------------- */
.sec_ttl-block {
  background: url("../img/sec_bg.jpg") no-repeat center;
  background-size: cover;
  padding: 100px 0;
}
.sec_ttl-block .container {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 5%;
  text-align: center;
}
.sec_ttl-block p {
  font-size: 18px;
  position: relative;
  font-weight: bold;
}
.sec_ttl-block p span {
  font-size: 26px;
}
/* ------ txt-marker ------ */
.txt-marker {
  background: linear-gradient(transparent 60%, #C5EEFC 0%);
}
/* ----------------------------------------------------
   deco
---------------------------------------------------- */
section {
  position: relative;
}
section::before {
  content: "";
  background: url(../img/deco_01.png) no-repeat center;
  background-size: cover;
  width: 500px;
  height: 400px;
  position: absolute;
  top: 30%;
  left: 0;
  z-index: -1;
}
section::after {
  content: "";
  background: url(../img/deco_02.png) no-repeat center;
  background-size: cover;
  width: 500px;
  height: 400px;
  position: absolute;
  bottom: 19%;
  right: 0;
  z-index: -1;
}
section#ac06::after {
  content: none;
}
/* ----------------------------------------------------
   intro
---------------------------------------------------- */
.intro {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 5%;
}
/* ----------------------------------------------------
   ac01
---------------------------------------------------- */
#ac01 .sec_ttl-block .container {
  text-align: left;
}
#ac01 .sec_ttl-block p::before {
  content: "";
  width: 24px;
  height: 42px;
  position: absolute;
  top: -8px;
  left: -40px;
}
#ac01 .sec_ttl-block .txt_q::before {
  background: url("../img/icon_q.svg") no-repeat center;
}
#ac01 .sec_ttl-block .txt_a {
  margin-top: 40px;
}
#ac01 .sec_ttl-block .txt_a::before {
  background: url("../img/icon_a.svg") no-repeat center;
  top: 13px;
}
/* ----------------------------------------------------
   ac02
---------------------------------------------------- */
#ac02 .col-2 {
  align-items: flex-end;
}
#ac02 .note {
  background: #EFEFEF;
  padding: 15px 20px;
  box-sizing: border-box;
  font-size: 14px;
  margin-top: 50px;
}
#ac02 .note span {
  display: block;
  padding-bottom: 10px;
}
/* ----------------------------------------------------
   ac05
---------------------------------------------------- */
#ac05 .box_gray {
  background: #EFEFEF;
  padding: 25px 45px;
  margin-top: 30px;
}
#ac05 .box_gray span {
  font-size: 18px;
  padding-bottom: 10px;
  display: block;
  font-weight: bold;
}
/* ----------------------------------------------------
   footer
---------------------------------------------------- */
footer {
  background: url(../img/footer_bg.jpg) no-repeat right;
  background-size: cover;
  width: 100%;
  height: 320px;
  padding: 60px 0;
  position: relative;
}
footer .ftr_container {
  padding: 0 5%;
  color: #fff;
}
footer .ftr_container .inqiry_ttl {
  font-size: 20px;
}
footer .ftr_container .txt {
  margin-top: 20px;
  line-height: 2;
}
footer .ftr_container .footer_logo {
  height: 40px;
  position: absolute;
  bottom: 30px;
  left: 5%;
}
footer .ftr_container .btn_link a {
  padding: 10px 40px;
  border: 1px solid #fff;
  display: inline-block;
}
footer .ftr_container .btn_link a:hover {
  background: #000000;
  color: #fff;
}
footer #pagetop {
  position: fixed;
  bottom: 30px;
  right: 5%;
}
footer #pagetop a {
  background: url(../img/pagetop_w.svg) no-repeat center;
  width: 73px;
  height: 73px;
}
footer #pagetop a:hover {
  background: url(../img/pagetop_b.svg) no-repeat center;
}
/* ====================================================
   SP
==================================================== */
@media screen and (max-width: 767.9px) {
  .pc-block {
    display: none;
  }
  .sp-block {
    display: block;
  }
  /* ----------------------------------------------------
   btn_link
  ---------------------------------------------------- */
  .btn_link a {
    padding: 15px 20px;
  }
  .btn_link a span {
    font-size: 15px;
  }
  .btn_link a[target="_blank"] span::after {
    width: 12px;
    height: 12px;
  }
  /* --- btn_link-list --- */
  .btn_link-list {
    display: block;
    margin-top: 0;
  }
  .btn_link-list > * {
    width: 100%;
    margin: 30px auto 0;
  }
  /* --- btn_link pdf_link --- */
  .btn_link.pdf_link a span::after {
    width: 15px;
    height: 20px;
  }
  .btn_link.pdf_link span.sub-txt {
    text-align: left;
    padding-top: 8px;
  }
  /* ----------------------------------------------------
   header
  ---------------------------------------------------- */
  header h1 {
    top: 25px;
  }
  h1 img {
    width: 170px;
  }
  /* ----------------------------------------------------
   column
  ---------------------------------------------------- */
  /* --- col-2 --- */
  .col-2 {
    display: block;
    margin-top: 30px;
  }
  .col-2 > * {
    width: 100%;
    margin-top: 30px;
  }
  /* --- col-2_1 --- */
  .col-2_1 {
    display: block;
  }
  .col-2_1>*:first-child {
    width: 100%;
  }
  .col-2_1>*:last-child {
    width: 100%;
    margin-top: 30px;
  }
  /* --- col-3 --- */
  .col-3 {
    display: block;
  }
  .col-3 > * {
    width: 100%;
    margin-top: 30px;
  }
  .col_block {
    margin-top: 30px;
  }
  /* ----------------------------------------------------
   picture / figure
  ---------------------------------------------------- */
  /* --- picture --- */
  picture {
    margin-top: 30px;
  }
  /* --- figure --- */
  figure {
    margin-top: 30px;
    text-align: center;
  }
  /* ----------------------------------------------------
   box_area
  ---------------------------------------------------- */
  .box_area {
    width: 95%;
    padding: 20px;
  }
  .box_area .ttl-h5 {
    padding-bottom: 15px;
  }
  .box_area figure {
    margin-top: 30px;
  }
  .box_area .txt_area, .box_area figure {
    width: 100%;
  }
  .box_area.col-2 > * {
    width: 100%;
  }
  .box_area.col-2 .col-2 {
    width: 100%;
  }
  .box_area.col-2 .col-2:first-of-type {
    margin: 0 0 40px;
  }
  .box_area.col-2 .col-2 > .txt_area {
    width: 100%;
  }
  .box_area.col-2 .col-2 > figure {
    width: 100%;
  }
  .box_area + .btn_link, .box_area + .btn_link-list {
    margin-top: 50px;
  }
  /* ----------------------------------------------------
   deco
  ---------------------------------------------------- */
  section::before, section::after {
    width: 300px;
    height: 300px;
  }
  /* ----------------------------------------------------
   mv
  ---------------------------------------------------- */
  .mv {
    background: url(../img/mv_bg-sp.jpg) no-repeat center;
    background-size: cover;
    width: 100%;
    height: 600px;
  }
  /* ----- txt_block ----- */
  .mv .txt_block {
    padding: 20px 5%;
    width: 290px;
    margin: 0 auto;
  }
  .mv .txt_block .lead {
    font-size: 13px;
    font-weight: bold;
  }
  /* ----- mv btn_link ----- */
  .mv .txt_block .btn_link {
    margin-top: 30px;
    display: inline-block;
  }
  .mv .btn_link a {
    padding: 10px 30px;
  }
  .mv .btn_link span {
    padding: 0 20px 0 0;
  }
  .mv .btn_link span::after {
    width: 12px;
    height: 12px;
    top: 5px;
  }
  /* ----------------------------------------------------
   nav_list
---------------------------------------------------- */
  .nav_list ul {
    display: block;
  }
  .nav_list ul li {
    width: 90% !important;
    margin: 5px auto;
  }
  .nav_list ul li a {
    padding: 10px 50px;
    text-align: left;
  }
  .nav_list ul li a span {
    padding: 0;
    font-size: 14px;
  }
  .nav_list ul li:last-child a span {
    padding: 0;
  }
  .nav_list ul li a::before {
    bottom: auto;
    top: 54%;
    right: 15px;
    left: auto;
    transform: translateY(-50%);
  }
  .nav_list ul li a::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    width: 28px;
    height: 30px;
  }
  .nav_list ul li:first-child a::after {
    background: url("../img/icon_01.svg") no-repeat center;
  }
  .nav_list ul li:nth-child(2) a::after {
    background: url("../img/icon_02.svg") no-repeat center;
  }
  .nav_list ul li:nth-child(3) a::after {
    background: url("../img/icon_03.svg") no-repeat center;
  }
  .nav_list ul li:nth-child(4) a::after {
    background: url("../img/icon_04.svg") no-repeat center;
  }
  .nav_list ul li:nth-child(5) a::after {
    background: url("../img/icon_05.svg") no-repeat center;
  }
  .nav_list ul li:nth-child(6) a::after {
    background: url("../img/icon_06.svg") no-repeat center;
  }
  .nav_list ul li a span::before {
    content: none;
  }
  .nav_list ul li:nth-child(7) a span::before {
    left: 55%;
  }
  /* ----------------------------------------------------
   contens
---------------------------------------------------- */
  .container {
    text-align: left;
    padding: 65px 0;
  }
  .ttl-h2 {
    font-size: 24px;
    padding-bottom: 25px;
  }
  #ac03 .ttl-h2, #ac04 .ttl-h2, #ac06 .ttl-h2 {
    top: 0;
  }
  /* --- sec_ttl-block --- */
  .sec_ttl-block {
    background: url(../img/sec_bg-sp.jpg) no-repeat top right;
    background-size: cover;
    padding: 80px 0 50px;
  }
  .sec_ttl-block .container {
    padding: 0 3%;
  }
  .ttl-h2:before {
    top: -60px;
    width: 49px;
    height: 53px;
  }
  .ttl-h3 {
    font-size: 19px;
    padding-left: 50px;
  }
  .ttl-h3:before {
    top: -2px;
    width: 36px;
    height: 36px;
  }
  .ttl-h4:before {
    top: 7px;
  }
  .sec_ttl-block p {
    font-size: 14px;
  }
  .sec_ttl-block p span {
    font-size: 22px;
  }
  /* ----------------------------------------------------
   #ac01
  ---------------------------------------------------- */
  #ac01 .sec_ttl-block .container {
    padding-left: 57px;
  }
  #ac01 .sec_ttl-block p::before {
    top: 0px;
    left: -36px;
  }
  /* ----------------------------------------------------
   #ac02
  ---------------------------------------------------- */
  #ac02 .note {
    margin-top: 30px;
  }
  /* ----------------------------------------------------
   #ac05
  ---------------------------------------------------- */
  #ac05 .box_gray {
    padding: 20px 20px;
  }
  /* ----------------------------------------------------
   footer
---------------------------------------------------- */
  footer {
    height: 310px;
    background: url(../img/footer_bg-sp.jpg) no-repeat top right;
  }
  footer .ftr_container {
    padding: 0 5%;
    color: #fff;
    text-align: center;
  }
  footer .ftr_container .txt {
    margin-top: 15px;
    line-height: 1.8;
    font-size: 15px;
  }
  footer .ftr_container .footer_logo {
    height: 25px;
  }
  footer #pagetop a {
    width: 45px;
    height: 45px;
  }
}