@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/* ------------------------------
    mixin
------------------------------ */
/* ------------------------------
    reset
------------------------------ */
html {
  font-size: 62.5%;
  overflow-y: scroll;
}
@media screen and (max-width: 1400px) {
  html {
    font-size: 0.7142857143vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.5vw;
  }
}

*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, address, time,
ul, ol, li, dl, dt, dd,
table, th, td, img, figure, figcaption,
form, input, button, textarea, select {
  margin: 0;
  padding: 0;
  border: none;
  line-height: 100%;
  list-style-type: none;
  font-style: normal;
  font-weight: normal;
  font-family: "Noto Sans JP", メイリオ, Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  resize: none;
  outline: none;
  background: none;
}

select::-ms-expand {
  display: none;
}

button:hover {
  cursor: pointer;
}

a {
  color: #1C1C1C;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  a {
    transition: opacity 0.3s ease;
  }
  a:hover {
    opacity: 0.6;
    cursor: pointer;
  }
}

img, object, picture, svg {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

/* ------------------------------
    base
------------------------------ */
body {
  color: #1C1C1C;
  font-size: 1rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

section {
  position: relative;
}

main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex: 1;
}
main > div {
  width: 100%;
}

.wrap {
  width: 90%;
  max-width: 1000px;
  padding: 0;
  margin: 0 auto;
  position: relative;
}

p, th, td, dt, dd, li, input, button, textarea {
  font-size: 1.6rem;
  line-height: 1.8;
}

.tal {
  text-align: left;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.bold, strong {
  font-weight: bold;
}

.fixed {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.preload *, .preload *::before, .preload *::after {
  transition: none !important;
}

@media screen and (min-width: 768px) {
  .fade {
    transition: opacity 0.3s ease;
  }
  .fade:hover {
    opacity: 0.6;
    cursor: pointer;
  }
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media screen and (max-width: 767px) {
  body {
    min-width: inherit;
  }
  main {
    overflow: hidden;
  }
  input, textarea, select, .select {
    font-size: max(1.6rem, 16px) !important;
  }
}
/* ------------------------------
    header
------------------------------ */
#header {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  z-index: 1000;
  padding: 2rem 3rem;
}
#header .wrap {
  background: #fff;
  box-shadow: rgba(35, 151, 223, 0.3) 0 0 1.2rem;
  border-radius: 5px;
  min-width: 80rem;
  height: 6.4rem;
  padding: 0 2rem;
  margin: 0;
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}
#header #header_nav .inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  white-space: nowrap;
}
#header #header_nav .tel i {
  display: inline-block;
  vertical-align: -0.05em;
}
#header #header_nav .tel i img {
  display: block;
}
#header #header_nav .tel a {
  color: #0152A1;
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 700;
}
#header #header_nav .tel small {
  font-size: 1.1rem;
}
#header #header_nav .btn_wrap {
  display: flex;
}
#header #header_nav .btn_wrap .btn {
  margin-left: 1rem;
}
#header #header_nav .btn_wrap .btn a {
  background: #F19012;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 1.4rem;
}
#header #header_nav .btn_wrap .btn i {
  display: inline-block;
  margin-right: 0.5em;
}
#header #header_nav .btn_wrap .btn._line a {
  background: #00C300;
}

@media screen and (min-width: 768px) {
  #header._result {
    background: #0152A1;
    padding: 0;
  }
  #header._result .wrap {
    background: transparent;
    box-shadow: none;
    width: 100%;
    height: 12rem;
    max-width: inherit;
    display: flex;
  }
  #header._result .logo_wrap {
    padding-left: 3rem;
  }
  #header._result .logo_wrap img {
    width: 27rem;
  }
  #header._result .btn_wrap {
    display: flex;
    gap: 1rem;
  }
  #header._result .btn_wrap .item {
    width: 31rem;
  }
  #header._result .btn_wrap .item a {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  #header,
  #header .wrap,
  #header .logo_wrap {
    width: 100%;
    height: 60px;
  }
  #header {
    background-color: transparent;
    position: fixed;
    top: auto;
    bottom: 0;
    right: 0;
    padding: 0;
    margin: 0;
    z-index: 999;
  }
  #header .wrap {
    padding: 0.5rem;
    display: block;
    position: relative;
    min-width: inherit;
  }
  #header #header_nav {
    height: 100%;
  }
  #header #header_nav .inner {
    display: block;
    height: 100%;
  }
  #header #header_nav .btn_wrap {
    height: 100%;
    align-items: stretch;
    justify-content: space-between;
    gap: 0.5rem;
  }
  #header #header_nav .btn_wrap .btn {
    flex: 1 1 auto;
    margin: 0;
  }
  #header #header_nav .btn_wrap .btn a {
    width: 100%;
    height: 100%;
    line-height: 1.2;
  }
  #header #header_nav .btn_wrap .btn._tel {
    flex: 0 0 auto;
    width: 6rem;
  }
  #header #header_nav .btn_wrap .btn._tel a {
    background: #0152A1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    line-height: 1;
  }
  #header #header_nav .btn_wrap .btn._tel a i {
    width: 1.5em;
    height: 1.5em;
    margin: 0 0 0.3em;
  }
  #header._result {
    position: static;
  }
  #header._result .wrap {
    background: transparent;
    box-shadow: none;
  }
  #header._result .logo_wrap {
    background: #0152A1;
    position: fixed;
    left: 0;
    top: 0;
    height: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 5vw;
  }
  #header._result .logo_wrap .logo img {
    width: 190px;
    vertical-align: middle;
  }
  #header._result #header_nav {
    position: fixed;
    left: 0;
    bottom: 0;
    height: 60px;
    width: 100%;
    padding: 0.5rem;
    background: #fff;
  }
  #header._result #header_nav > .sp, #header._result #header_nav .inner {
    height: 100%;
  }
}
/* ------------------------------
    footer
------------------------------ */
#footer {
  background: #0152A1;
  color: #fff;
  text-align: center;
  padding: 3.5rem 0 3rem;
}
@media screen and (max-width: 767px) {
  #footer {
    padding-bottom: 90px;
  }
}
#footer .logo img {
  width: 27rem;
}
#footer .copy {
  font-size: 1.1rem;
  margin-top: 1em;
}

/* ------------------------------
    main
------------------------------ */
#sec_fv {
  background: url("../img/fv.jpg") no-repeat center/cover;
  padding: 15rem 0 4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #sec_fv {
    background: #fff;
    padding: 0;
  }
  #sec_fv .wrap {
    width: 100%;
  }
}
#sec_fv .logo {
  position: absolute;
  left: 3rem;
  top: 3.5rem;
  z-index: 10;
}
#sec_fv .logo img {
  width: 27rem;
}
@media screen and (max-width: 767px) {
  #sec_fv .logo {
    left: 3vw;
    top: 5vw;
  }
  #sec_fv .logo img {
    width: 20rem;
  }
}
#sec_fv .btn_wrap {
  text-align: center;
}
#sec_fv .btn_wrap .sttl {
  font-size: 1.8rem;
  line-height: 1;
}
#sec_fv .btn_wrap .btn {
  display: inline-block;
}
#sec_fv .btn_wrap .btn img {
  scale: 1.07;
}

.sec_cta {
  margin: 10rem 0;
}
@media screen and (max-width: 767px) {
  .sec_cta {
    margin: 8vw 0;
  }
}
.sec_cta .wrap {
  max-width: 1400px;
}
.sec_cta .ttl_wrap {
  text-align: center;
  margin-bottom: 1.5rem;
}
.sec_cta .ttl_wrap .blue {
  background: #0152A1;
  color: #fff;
  padding: 0.2em 1em;
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 500;
  display: inline-block;
  border-radius: 100px;
  margin-bottom: 0.3em;
}
@media screen and (max-width: 767px) {
  .sec_cta .ttl_wrap .blue {
    display: block;
  }
}
.sec_cta .ttl_wrap .ttl {
  font-size: 2.2rem;
  line-height: 1.4;
  font-weight: 600;
}
.sec_cta .ttl_wrap .ttl strong {
  color: #0152A1;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .sec_cta .ttl_wrap .ttl {
    font-size: 1.5rem;
    font-weight: 400;
  }
  .sec_cta .ttl_wrap .ttl strong {
    font-size: 110%;
    font-weight: 600;
  }
}
.sec_cta .bg {
  background: url("../img/cta_bg.png") no-repeat center/cover;
  height: 47rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2rem;
}
@media screen and (max-width: 767px) {
  .sec_cta .bg {
    background: transparent;
    height: auto;
  }
  .sec_cta .bg .sttl {
    margin: 0 -4vw;
  }
  .sec_cta .bg .sttl img {
    width: 96vw;
  }
  .sec_cta .bg .tel {
    margin: 3vw 0;
  }
  .sec_cta .bg .tel img {
    width: 90%;
  }
  .sec_cta .bg .txt img {
    width: 100%;
  }
}
.sec_cta .bg .inner {
  max-width: 64rem;
  text-align: center;
}
.sec_cta .bg .btn_wrap {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
}
@media screen and (max-width: 767px) {
  .sec_cta .bg .btn_wrap {
    flex-direction: column;
  }
}

#sec_01 {
  background: linear-gradient(to bottom, transparent 13rem, #F5F8FA 13rem);
  position: relative;
  margin: 12rem 0;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  #sec_01 {
    background: linear-gradient(to bottom, transparent 28rem, #F5F8FA 28rem);
    margin: 15vw 0 10vw;
    padding-bottom: 10vw;
  }
}
#sec_01 .wrap {
  max-width: 1144px;
}
#sec_01 .ttl_wrap {
  position: relative;
  max-width: 100rem;
  margin: 0 auto 4rem;
}
#sec_01 .ttl_wrap .blue {
  color: #0152A1;
  font-size: 2.8rem;
  line-height: 1.4;
  font-weight: 600;
}
#sec_01 .ttl_wrap .blue .big {
  font-size: 4.6rem;
}
@media screen and (max-width: 767px) {
  #sec_01 .ttl_wrap .blue {
    font-size: 3rem;
  }
  #sec_01 .ttl_wrap .blue .big {
    font-size: 150%;
  }
}
#sec_01 .ttl_wrap .small {
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 500;
}
#sec_01 .ttl_wrap .grad {
  background-image: linear-gradient(to right, #0152A1, #2397DF);
  color: #fff;
  font-size: 2.8rem;
  line-height: 1.4;
  font-weight: 600;
  padding: 0.5em 1em;
  border-radius: 1rem;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  #sec_01 .ttl_wrap .grad {
    font-size: 2.4rem;
    text-align: center;
    padding-top: 3rem;
    padding-bottom: 1.5rem;
  }
}
#sec_01 .ttl_wrap .badge {
  display: flex;
  gap: 1rem;
  position: absolute;
  right: 2rem;
  bottom: 2rem;
}
#sec_01 .ttl_wrap .badge .item {
  width: 14.8rem;
}
@media screen and (max-width: 767px) {
  #sec_01 .ttl_wrap .badge {
    position: static;
    margin: 1rem 0 -3rem;
  }
}
#sec_01 .result .grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  #sec_01 .result .grid {
    grid-template-columns: 1fr;
  }
}
#sec_01 .result .box {
  height: 100%;
  background: #fff;
  box-shadow: 0 0 1.5rem rgba(0, 105, 218, 0.1);
  border-radius: 1rem;
  padding: 3rem;
}
#sec_01 .result .box .ttl {
  background: #0152A1;
  color: #fff;
  padding: 0.2em 1em;
  font-size: 1.5rem;
  line-height: 1.4;
  text-align: center;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}
#sec_01 .result .box .ttl small {
  font-size: 1.1rem;
}
#sec_01 .result .box .data {
  background: #F5F8FA;
  color: #0152A1;
  font-size: 1.3rem;
  line-height: 1.6;
  padding: 1em;
  border-radius: 1rem;
  margin: 1rem 0;
}
#sec_01 .result .box .sttl {
  color: #0152A1;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 1em 0 0.5em;
}
@media screen and (max-width: 767px) {
  #sec_01 .result .box .sttl {
    font-size: 1.6rem;
  }
}
#sec_01 .result .box .txt {
  font-size: 1.5rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  #sec_01 .result .box .txt {
    font-size: 1.6rem;
  }
}
#sec_01 .result .box .arrow {
  height: 2rem;
  margin: 1rem 0;
  position: relative;
}
#sec_01 .result .box .arrow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.5rem 1.5rem 0 1.5rem;
  border-color: #2397DF transparent transparent transparent;
}
#sec_01 .result .btn {
  text-align: center;
  margin-top: 4rem;
}
#sec_01 .result .btn a {
  background: #0152A1;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28rem;
  height: 5.6rem;
  border-radius: 100px;
  font-size: 1.4rem;
  font-weight: 600;
  position: relative;
}
#sec_01 .result .btn a .ico {
  position: absolute;
  right: 1em;
  top: 50%;
  translate: 0 -50%;
  width: 1.5em;
  height: 1.5em;
  border: 1px solid #fff;
  border-radius: 100%;
}
#sec_01 .result .btn a .ico::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-30%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.3em 0 0.3em 0.3em;
  border-color: transparent transparent transparent #fff;
}
#sec_01 .result .btn._back a .ico {
  right: auto;
  left: 1em;
  scale: -1 1;
}
#sec_01 .result .slick-track {
  display: flex;
  padding: 1.5rem 0;
}
#sec_01 .result .slick-slide {
  height: auto !important;
  margin: 0 1.5rem;
}
#sec_01 .result .slick-slide > div {
  height: 100%;
}
#sec_01 .result .slick-arrow {
  background: url("../img/sec01_arrow.svg") no-repeat center/contain;
  position: absolute;
  left: 33.3%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 9rem;
  height: 9rem;
  font-size: 0;
  line-height: 1000px;
  overflow: hidden;
  z-index: 100;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  #sec_01 .result .slick-arrow {
    left: 2%;
    width: 7rem;
    height: 7rem;
  }
}
#sec_01 .result .slick-arrow.slick-next {
  left: 66.6%;
  transform: translate(-50%, -50%) scale(-1, 1);
}
@media screen and (max-width: 767px) {
  #sec_01 .result .slick-arrow.slick-next {
    left: 98%;
  }
}
@media screen and (min-width: 768px) {
  #sec_01 .result .slick-arrow:hover {
    opacity: 0.6;
  }
}

#sec_02 {
  margin: 10rem 0;
}
@media screen and (max-width: 767px) {
  #sec_02 {
    margin: 15vw 0;
  }
}
#sec_02 .sec_01 {
  padding-bottom: 4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  #sec_02 .sec_01 {
    padding-bottom: 0;
  }
}
#sec_02 .sec_01 .ttl {
  color: #606060;
  font-size: 2.8rem;
  line-height: 1.4;
  font-weight: 600;
  text-align: center;
  position: relative;
  padding-bottom: 0.5em;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 767px) {
  #sec_02 .sec_01 .ttl {
    font-size: 2.2rem;
  }
}
#sec_02 .sec_01 .ttl::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.5rem 1.5rem 0 1.5rem;
  border-color: #0152A1 transparent transparent transparent;
}
#sec_02 .sec_01 .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 3rem;
}
@media screen and (max-width: 767px) {
  #sec_02 .sec_01 .list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 2vw;
  }
}
#sec_02 .sec_01 .list .item {
  background: #E8E8E8;
  width: 30%;
  padding: 0.8em 0;
  font-size: 1.5rem;
  line-height: 1.6;
  text-align: center;
  border-radius: 1rem;
}
@media screen and (min-width: 768px) {
  #sec_02 .sec_01 .list .item:nth-child(3) {
    margin-right: 12rem;
  }
  #sec_02 .sec_01 .list .item:nth-child(4) {
    margin-left: 12rem;
  }
  #sec_02 .sec_01 .list .item:nth-child(5) {
    margin-right: 15rem;
  }
  #sec_02 .sec_01 .list .item:nth-child(6) {
    margin-left: 15rem;
  }
}
@media screen and (max-width: 767px) {
  #sec_02 .sec_01 .list .item {
    width: auto;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5em;
  }
}
#sec_02 .sec_01 .img {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 27rem;
}
@media screen and (max-width: 767px) {
  #sec_02 .sec_01 .img {
    position: static;
    transform: translate(0);
    margin: 0 auto;
  }
}
#sec_02 .sec_02 {
  background: #F6F6F6;
  padding: 4rem;
}
@media screen and (max-width: 767px) {
  #sec_02 .sec_02 {
    margin: 0 -5vw;
    padding: 8vw 5vw;
  }
}
#sec_02 .sec_02 .ttl {
  color: #606060;
  font-size: 2.2rem;
  line-height: 1.4;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.5em;
}
#sec_02 .sec_02 .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 4rem 0;
}
@media screen and (max-width: 767px) {
  #sec_02 .sec_02 .list {
    gap: 2rem;
  }
}
#sec_02 .sec_02 .list .item {
  width: 40%;
}
#sec_02 .sec_02 .list .item .img {
  text-align: center;
  margin-bottom: 1.5rem;
}
#sec_02 .sec_02 .list .item .img img {
  width: 20rem;
}
#sec_02 .sec_02 .list .item .sttl {
  color: #606060;
  font-size: 2.2rem;
  line-height: 1.4;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.5em;
}
#sec_02 .sec_02 .list .item .txt {
  color: #606060;
  font-size: 1.5rem;
  line-height: 1.4;
  max-width: 32rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #sec_02 .sec_02 .list .item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 3vw;
  }
  #sec_02 .sec_02 .list .item .img {
    width: 30vw;
  }
  #sec_02 .sec_02 .list .item .sttl {
    text-align: left;
    font-size: 1.8rem;
  }
}
#sec_02 .sec_03 {
  margin-top: 6rem;
}
#sec_02 .sec_03 .ttl {
  color: #0152A1;
  font-size: 3.4rem;
  line-height: 1.4;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #sec_02 .sec_03 .ttl {
    font-size: 2.8rem;
  }
}
#sec_02 .sec_03 .list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem 2rem;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  #sec_02 .sec_03 .list {
    grid-template-columns: 1fr;
  }
  #sec_02 .sec_03 .list .item {
    display: flex;
    align-items: center;
    gap: 3vw;
  }
}
#sec_02 .sec_03 .list .ico {
  width: 4.8rem;
  margin: 0 auto 1rem;
}
@media screen and (max-width: 767px) {
  #sec_02 .sec_03 .list .ico {
    flex: 0 0 auto;
    margin: 0;
    width: 3.5rem;
  }
}
#sec_02 .sec_03 .list .sttl {
  color: #0152A1;
  font-size: 2.2rem;
  line-height: 1.4;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.3em;
}
@media screen and (max-width: 767px) {
  #sec_02 .sec_03 .list .sttl {
    text-align: left;
  }
}
#sec_02 .sec_03 .list .txt {
  font-size: 1.5rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  #sec_02 .sec_03 .list .txt {
    font-size: 1.6rem;
  }
}
#sec_02 .sec_03 .kome {
  font-size: 1.3rem;
  text-align: right;
  margin-top: 5rem;
}

#sec_03 {
  background: linear-gradient(to bottom, #2397DF, #0152A1);
  padding: 8rem 0;
}
@media screen and (max-width: 767px) {
  #sec_03 {
    margin-bottom: 15vw;
  }
}
#sec_03 .logo {
  width: 17rem;
  margin: 0 auto;
}
#sec_03 .ttl {
  color: #fff;
  font-size: 3.4rem;
  line-height: 1.4;
  font-weight: 600;
  text-align: center;
  margin: 0.5em 0 1em;
}
@media screen and (max-width: 767px) {
  #sec_03 .ttl {
    font-size: 2.4rem;
    text-align: left;
    margin-top: 1em;
  }
}
#sec_03 .list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  #sec_03 .list {
    grid-template-columns: 1fr;
  }
  #sec_03 .list .img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 65vw;
    overflow: hidden;
  }
  #sec_03 .list .img img {
    width: 100%;
  }
}
#sec_03 .list .item .sttl {
  color: #F5C125;
  font-size: 2.2rem;
  line-height: 1.4;
  font-weight: 600;
  text-align: center;
  margin: 0.8em 0;
}
@media screen and (max-width: 767px) {
  #sec_03 .list .item .sttl {
    font-size: 2.4rem;
  }
}
#sec_03 .list .item .txt {
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  #sec_03 .list .item .txt {
    font-size: 1.6rem;
  }
}

#sec_04 {
  margin: 10rem 0;
}
@media screen and (max-width: 767px) {
  #sec_04 {
    margin: 15vw 0;
  }
}
#sec_04 .ttl_wrap {
  text-align: center;
}
#sec_04 .ttl_wrap .ttl {
  font-size: 2.2rem;
  line-height: 1.4;
  font-weight: 600;
  padding-bottom: 1em;
  margin-bottom: 4rem;
  position: relative;
}
#sec_04 .ttl_wrap .ttl::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 2.5rem;
  height: 1px;
  background: #0152A1;
}
#sec_04 .ttl_wrap .sttl {
  font-size: 1.8rem;
  line-height: 1.4;
}
#sec_04 .ttl_wrap .sttl strong {
  color: #0152A1;
  font-size: 3.4rem;
}
#sec_04 .bg {
  background: #F5F8FA;
  max-width: 1310px;
  width: 94%;
  padding: 6rem 0;
  margin: 3rem auto 0;
  border-radius: 2rem;
}
#sec_04 .bg .wrap {
  max-width: 85.6rem;
}
@media screen and (max-width: 767px) {
  #sec_04 .bg {
    padding: 5vw 0;
  }
}
#sec_04 .plus_wrap {
  display: flex;
  justify-content: space-between;
}
#sec_04 .plus_wrap .item {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  width: 42%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #sec_04 .plus_wrap .item {
    width: 44%;
    padding: 2rem 0;
  }
}
#sec_04 .plus_wrap .item .ico img {
  width: 8rem;
}
#sec_04 .plus_wrap .item .green {
  color: #02A7B9;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
  margin: 0.5em 0 0.3em;
}
#sec_04 .plus_wrap .item .green small {
  color: #1C1C1C;
  font-size: 1.3rem;
  font-weight: 400;
}
#sec_04 .plus_wrap .item .price {
  font-size: 1.4rem;
  line-height: 1.4;
}
#sec_04 .plus_wrap .item .price strong {
  font-size: 1.8rem;
  font-weight: 600;
}
#sec_04 .plus_wrap .plus {
  position: relative;
}
#sec_04 .plus_wrap .plus::before, #sec_04 .plus_wrap .plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.8rem;
  height: 3rem;
  background: #02A7B9;
}
#sec_04 .plus_wrap .plus::after {
  width: 3rem;
  height: 0.8rem;
}
#sec_04 .free_wrap {
  background: #fff;
  padding: 4rem 3rem 2rem;
  border-radius: 1rem;
  margin-top: 6rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  #sec_04 .free_wrap {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
#sec_04 .free_wrap .ttl {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  background: #2397DF;
  color: #fff;
  padding: 0.2em 2em;
  font-size: 2.2rem;
  line-height: 1.4;
  font-weight: 600;
  border-radius: 1rem;
  white-space: nowrap;
}
#sec_04 .free_wrap .list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  #sec_04 .free_wrap .list {
    grid-template-columns: 1fr 1fr;
    gap: 2vw;
  }
}
#sec_04 .free_wrap .list .item {
  background: #0152A1;
  color: #fff;
  border-radius: 5px;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  padding: 0.3em 1em;
}
@media screen and (max-width: 767px) {
  #sec_04 .free_wrap .list .item {
    padding-left: 0;
    padding-right: 0;
  }
}
#sec_04 .line_wrap {
  background: #fff;
  padding: 2rem 3rem 3rem;
  border-radius: 1rem;
  margin-top: 3rem;
  text-align: center;
}
#sec_04 .line_wrap .ico img {
  width: 5.6rem;
}
#sec_04 .line_wrap .ttl {
  font-weight: 500;
}
#sec_04 .line_wrap .ttl strong {
  color: #00C300;
  font-size: 2.8rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  #sec_04 .line_wrap .ttl {
    font-size: 1.7rem;
    margin: 0.3em 0;
  }
  #sec_04 .line_wrap .ttl strong {
    font-size: 120%;
  }
}

#sec_05 {
  margin: 10rem 0;
}
@media screen and (max-width: 767px) {
  #sec_05 {
    margin: 15vw 0;
  }
}
#sec_05 .wrap {
  max-width: 87rem;
}
#sec_05 .ttl_wrap {
  text-align: center;
}
#sec_05 .ttl_wrap .ico img {
  width: 3.2rem;
}
#sec_05 .ttl_wrap .blue {
  background: #0152A1;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1.4;
  font-weight: 600;
  padding: 0.2em 1.5em;
  border-radius: 1rem;
  display: inline-block;
  margin: 0.5em 0;
}
@media screen and (max-width: 767px) {
  #sec_05 .ttl_wrap .blue {
    font-size: 1.8rem;
    padding-left: 1em;
    padding-right: 1em;
    white-space: nowrap;
  }
}
#sec_05 .ttl_wrap .ttl {
  color: #0152A1;
  font-size: 3.4rem;
  line-height: 1.4;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #sec_05 .ttl_wrap .ttl {
    font-size: 2.5rem;
    text-align: left;
    margin-top: 0.5em;
  }
}
#sec_05 .img {
  margin: 3rem auto;
}
#sec_05 .list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  #sec_05 .list {
    gap: 2vw 2%;
  }
}
#sec_05 .list .item {
  width: calc((100% - 3rem) / 3);
  background: #F5F8FA;
  color: #0152A1;
  border: 1px solid #2397DF;
  border-radius: 5px;
  padding: 0.5em 1em;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #sec_05 .list .item {
    width: 49%;
    font-size: 1.6rem;
    font-weight: 600;
    padding-left: 0;
    padding-right: 0;
  }
  #sec_05 .list .item:last-child {
    width: 100%;
  }
}

#sec_06 {
  background: #F5F8FA;
  padding: 10rem 0 15rem;
}
@media screen and (max-width: 767px) {
  #sec_06 {
    padding: 15vw 0;
  }
}
#sec_06 .sec_01 {
  max-width: 86.6rem;
  margin: 0 auto;
}
#sec_06 .sec_01 .ttl_wrap {
  text-align: center;
}
#sec_06 .sec_01 .ttl_wrap .slash {
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 500;
}
#sec_06 .sec_01 .ttl_wrap .ttl {
  color: #02A7B9;
  font-size: 3.4rem;
  line-height: 1.4;
  font-weight: 600;
}
#sec_06 .sec_01 .list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  #sec_06 .sec_01 .list {
    grid-template-columns: 1fr;
  }
  #sec_06 .sec_01 .list img {
    width: 100%;
  }
}
#sec_06 .sec_01 .list .ttl {
  color: #02A7B9;
  font-size: 2.2rem;
  line-height: 1.4;
  font-weight: 600;
  text-align: center;
  margin-top: 0.3em;
}
@media screen and (max-width: 767px) {
  #sec_06 .sec_01 .list .ttl {
    font-size: 2.4rem;
  }
}
#sec_06 .sec_01 .list .txt {
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  #sec_06 .sec_01 .list .txt {
    font-size: 1.6rem;
  }
}
#sec_06 .sec_02 {
  margin-top: 8rem;
}
#sec_06 .sec_02 .ttl_wrap {
  text-align: center;
}
#sec_06 .sec_02 .ttl_wrap .ttl {
  font-size: 2.8rem;
  line-height: 1.4;
  font-weight: 600;
}
#sec_06 .sec_02 .ttl_wrap .white {
  background: #fff;
  max-width: 73rem;
  padding: 4rem;
  margin: 2rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
#sec_06 .sec_02 .ttl_wrap .white img {
  height: 2.5rem;
}
@media screen and (max-width: 767px) {
  #sec_06 .sec_02 .ttl_wrap .white {
    flex-wrap: wrap;
    gap: 2vw 5vw;
    padding: 5vw;
  }
  #sec_06 .sec_02 .ttl_wrap .white strong, #sec_06 .sec_02 .ttl_wrap .white small {
    width: 100%;
  }
  #sec_06 .sec_02 .ttl_wrap .white img {
    height: 3rem;
  }
}
#sec_06 .sec_02 .box {
  margin-top: 6rem;
}
#sec_06 .sec_02 .box + .box {
  margin-top: 8rem;
}
#sec_06 .sec_02 .box .sttl {
  text-align: center;
}
#sec_06 .sec_02 .box .grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: center;
  gap: 4rem 5rem;
  max-width: 73.6rem;
  margin: 4rem auto 0;
}
@media screen and (max-width: 767px) {
  #sec_06 .sec_02 .box .grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem 2%;
    margin-top: 2rem;
  }
}
#sec_06 .sec_02 .box .grid._02 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  max-width: inherit;
}
#sec_06 .sec_02 .box .grid .item {
  text-align: center;
}
@media screen and (max-width: 767px) {
  #sec_06 .sec_02 .box .grid .item {
    flex-basis: 49%;
  }
}
#sec_06 .sec_02 .box .grid .item .name {
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 500;
  margin: 0.5em 0 0.3em;
}
#sec_06 .sec_02 .box .grid .item .small {
  font-size: 1.3rem;
  line-height: 1.4;
  margin: 0.3em 0;
}
#sec_06 .sec_02 .box .grid .item .data {
  font-size: 1.5rem;
  line-height: 1.4;
}

.ttl_border {
  font-size: 2.2rem;
  line-height: 1.4;
  font-weight: 600;
  text-align: center;
  padding-bottom: 0.8em;
  margin-bottom: 4rem;
  position: relative;
}
.ttl_border::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 2.5rem;
  height: 1px;
  background: #0152A1;
}

#sec_07 {
  margin: 10rem 0;
}
@media screen and (max-width: 767px) {
  #sec_07 {
    margin: 15vw 0;
  }
}
#sec_07 .flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-left: 5rem;
}
@media screen and (max-width: 767px) {
  #sec_07 .flow {
    padding: 0;
  }
}
#sec_07 .flow .item {
  background: #F5F8FA;
  border-radius: 1rem;
  padding: 2rem;
  padding-left: 16rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  #sec_07 .flow .item {
    padding: 5vw;
    gap: 5vw;
  }
}
#sec_07 .flow .item + .item::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -1.5rem;
  transform: translate(-50%, -50%);
  margin-left: -2.5rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1rem 1rem 0 1rem;
  border-color: #0152A1 transparent transparent transparent;
}
@media screen and (max-width: 767px) {
  #sec_07 .flow .item + .item::before {
    margin-left: 0;
  }
}
#sec_07 .flow .item .num {
  background: #0152A1;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 10rem;
  height: 10rem;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.4rem;
  line-height: 1.1;
}
#sec_07 .flow .item .num strong {
  font-size: 3.4rem;
}
@media screen and (max-width: 767px) {
  #sec_07 .flow .item .num {
    left: 5vw;
    top: -5vw;
    transform: translate(0);
    width: 6rem;
    height: 6rem;
    font-size: 1.2rem;
  }
  #sec_07 .flow .item .num strong {
    font-size: 2.8rem;
  }
}
#sec_07 .flow .item .ico {
  flex: 0 0 auto;
  width: 8rem;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
@media screen and (max-width: 767px) {
  #sec_07 .flow .item .ico {
    width: 6rem;
    transform: translateY(20%);
  }
}
#sec_07 .flow .item .detail {
  flex: 1 1 auto;
}
#sec_07 .flow .item .detail .sttl {
  color: #0152A1;
  font-size: 2.2rem;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 767px) {
  #sec_07 .flow .item .detail .sttl {
    margin-bottom: 0;
  }
}
#sec_07 .flow .item .detail .txt {
  font-size: 1.5rem;
  line-height: 1.6;
}

#sec_08 {
  background: #F5F8FA;
  padding: 10rem 0;
}
@media screen and (max-width: 767px) {
  #sec_08 {
    margin: 15vw 0;
    padding: 15vw 0;
  }
}
#sec_08 .faq {
  max-width: 576px;
  margin: 0 auto;
}
#sec_08 .faq .ttl, #sec_08 .faq .txt {
  padding: 0.5em 3em;
  font-size: 1.5rem;
  line-height: 1.6;
  position: relative;
}
#sec_08 .faq .ttl::before, #sec_08 .faq .txt::before {
  content: "A";
  position: absolute;
  left: 1em;
  top: 0.5em;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 600;
}
#sec_08 .faq .ttl {
  background: #fff;
  color: #0152A1;
  border-radius: 1rem;
  font-weight: 600;
  margin-top: 1em;
}
#sec_08 .faq .ttl::before {
  content: "Q";
  top: 50%;
  transform: translateY(-50%);
}
#sec_08 .faq .ttl::after {
  content: "";
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 0.6em;
  height: 0.6em;
  border-right: 2px solid #0152A1;
  border-bottom: 2px solid #0152A1;
  transition: transform 0.3s ease;
}
#sec_08 .faq .ttl.acd-open::after {
  transform: translateY(-50%) rotate(225deg);
}

#sec_contact {
  margin: 10rem 0;
}
@media screen and (max-width: 767px) {
  #sec_contact {
    margin: 15vw 0;
  }
}
#sec_contact .wrap {
  max-width: 82.8rem;
}
#sec_contact .ttl_wrap {
  text-align: center;
  margin-bottom: 3rem;
}
#sec_contact .ttl_wrap .ttl {
  color: #0152A1;
  font-size: 2.2rem;
  line-height: 1.4;
  font-weight: 600;
}
#sec_contact .ttl_wrap .tel {
  border: 1px solid #ddd;
  border-radius: 1rem;
  max-width: 64rem;
  margin: 3rem auto 0;
  padding: 2rem;
}
#sec_contact .ttl_wrap .tel .sttl {
  color: #0152A1;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 600;
}
#sec_contact .ttl_wrap .tel .big {
  color: #0152A1;
  font-size: 2.8rem;
  line-height: 1.4;
  font-weight: 600;
}
#sec_contact .ttl_wrap .tel .big a {
  color: #0152A1;
}
#sec_contact .ttl_wrap .tel .big i {
  display: inline-block;
  vertical-align: -0.1em;
  margin-right: 0.1em;
}
#sec_contact .ttl_wrap .tel .big i img {
  display: block;
  height: 1em;
  width: auto;
}
#sec_contact .ttl_wrap .tel .small {
  font-size: 1.1rem;
}
#sec_contact .form .table {
  display: grid;
  grid-template-columns: 28% 1fr;
}
@media screen and (max-width: 767px) {
  #sec_contact .form .table {
    grid-template-columns: 1fr;
  }
}
#sec_contact .form .table .ttl, #sec_contact .form .table .txt {
  padding: 1rem 0;
}
#sec_contact .form .table .ttl {
  padding-top: 1.8rem;
  font-size: 1.4rem;
  font-weight: 600;
}
#sec_contact .form .table .ttl .required {
  background: #F19012;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.2;
  padding: 0 0.5em;
  margin-right: 0.5em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  #sec_contact .form .table .ttl {
    padding-bottom: 0;
  }
}
#sec_contact .form *::placeholder {
  color: #999;
}
#sec_contact .form label {
  display: inline-block;
  font-size: 1.4rem;
  margin: 0.2em 0;
}
#sec_contact .form input[type=text],
#sec_contact .form input[type=email],
#sec_contact .form input[type=tel],
#sec_contact .form textarea,
#sec_contact .form select {
  background: #F5F8FA;
  font-size: 1.4rem;
  padding: 0 1em;
}
@media screen and (max-width: 767px) {
  #sec_contact .form input[type=text],
  #sec_contact .form input[type=email],
  #sec_contact .form input[type=tel],
  #sec_contact .form textarea,
  #sec_contact .form select {
    padding: 0 0.5em;
  }
}
#sec_contact .form textarea {
  line-height: 1.8em;
  padding: 1em;
  height: 5em;
}
#sec_contact .form input[type=text],
#sec_contact .form input[type=email],
#sec_contact .form input[type=tel],
#sec_contact .form select {
  line-height: 3em;
  height: 3em;
}
#sec_contact .form input[type=text],
#sec_contact .form input[type=email],
#sec_contact .form input[type=tel],
#sec_contact .form textarea {
  width: 100%;
}
#sec_contact .form select {
  background: #F5F8FA url("../img/form_select.svg") no-repeat right 1em center/0.8em auto;
  color: #1C1C1C;
  padding-right: 2.5em;
  min-width: 14em;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  #sec_contact .form select {
    min-width: 12em;
  }
}
#sec_contact .form input[type=radio],
#sec_contact .form input[type=checkbox] {
  display: block;
  width: 1px;
  height: 1px;
  overflow: hidden;
  visibility: hidden;
}
#sec_contact .form input[type=radio] + span,
#sec_contact .form input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  padding-left: 1.8em;
}
#sec_contact .form input[type=radio] + span::before, #sec_contact .form input[type=radio] + span::after,
#sec_contact .form input[type=checkbox] + span::before,
#sec_contact .form input[type=checkbox] + span::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 1.4em;
  height: 1.4em;
  border-radius: 100%;
  background: #F5F8FA;
  margin-right: 0.3em;
}
#sec_contact .form input[type=radio] + span::after,
#sec_contact .form input[type=checkbox] + span::after {
  width: 0.8em;
  height: 0.8em;
  margin: 0.3em 0 0 0.3em;
  background: transparent;
  border: none;
}
#sec_contact .form input[type=radio]:checked + span::after,
#sec_contact .form input[type=checkbox]:checked + span::after {
  background: #0152A1;
}
#sec_contact .form input[type=checkbox] + span::before {
  border-radius: 0;
}
#sec_contact .form input[type=checkbox]:checked + span::after {
  width: 1em;
  height: 0.6em;
  margin: 0.2em 0 0 0.2em;
  border-bottom: 3px solid #0152A1;
  border-left: 3px solid #0152A1;
  transform: rotate(-45deg);
  border-radius: 0;
  background: transparent;
}
#sec_contact .form input.post {
  width: 14em;
}
@media screen and (max-width: 767px) {
  #sec_contact .form input.post {
    width: 100%;
  }
}
#sec_contact .form .post_search {
  background: #0152A1;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  height: 3em;
  width: 14em;
  border-radius: 5px;
  margin-left: 2rem;
}
@media screen and (max-width: 767px) {
  #sec_contact .form .post_search {
    height: 48px;
    width: 45%;
    margin-left: 1rem;
  }
}
#sec_contact .form .checkbox .wpcf7-checkbox {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-top: 0.5rem;
}
#sec_contact .form .checkbox .wpcf7-checkbox .wpcf7-list-item {
  margin: 0;
}
@media screen and (max-width: 767px) {
  #sec_contact .form .checkbox .wpcf7-checkbox {
    grid-template-columns: 1fr;
  }
}
#sec_contact .form .privacy {
  margin-top: 3rem;
}
#sec_contact .form .privacy .ttl {
  color: #0152A1;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 600;
  text-align: center;
}
#sec_contact .form .privacy .scroll {
  width: 60rem;
  height: 20rem;
  padding: 1rem;
  margin: 1.5rem auto;
  border: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  #sec_contact .form .privacy .scroll {
    width: 100%;
  }
}
#sec_contact .form .privacy .scroll .inner {
  height: 100%;
  overflow-y: auto;
  padding: 1rem;
}
#sec_contact .form .privacy .scroll .sttl {
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 600;
  margin-top: 1em;
}
#sec_contact .form .privacy .scroll .sttl:first-child {
  margin-top: 0;
}
#sec_contact .form .privacy .scroll .txt {
  font-size: 1.3rem;
  line-height: 1.6;
}
#sec_contact .form .privacy .blue,
#sec_contact .form .privacy .wpcf7-acceptance label {
  background: #F5F8FA;
  padding: 2rem 6rem;
  font-size: 1.4rem;
}
#sec_contact .form .privacy .blue input[type=checkbox] + span::before,
#sec_contact .form .privacy .wpcf7-acceptance label input[type=checkbox] + span::before {
  background: #fff;
}
#sec_contact .form .btn_wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  #sec_contact .form .btn_wrap {
    flex-direction: column;
  }
}
#sec_contact .form .btn_wrap .btn {
  text-align: center;
}
#sec_contact .form .btn_wrap .btn input, #sec_contact .form .btn_wrap .btn button, #sec_contact .form .btn_wrap .btn a {
  background: #F19012 url("../img/form_arrow.svg") no-repeat right 1em center/1.5em auto;
  color: #fff;
  width: 42rem;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 600;
  border-radius: 100px;
}
@media screen and (max-width: 767px) {
  #sec_contact .form .btn_wrap .btn input, #sec_contact .form .btn_wrap .btn button, #sec_contact .form .btn_wrap .btn a {
    width: 90vw;
  }
}
#sec_contact .form .btn_wrap .btn._back input, #sec_contact .form .btn_wrap .btn._back button, #sec_contact .form .btn_wrap .btn._back a {
  background-color: #ccc;
}
@media screen and (min-width: 768px) {
  #sec_contact .form .btn_wrap .btn._back input, #sec_contact .form .btn_wrap .btn._back button, #sec_contact .form .btn_wrap .btn._back a {
    max-width: 30rem;
  }
}
#sec_contact .form .btn_wrap .btn .wpcf7-spinner {
  margin-top: 0.5em;
}
#sec_contact .form._confirm .table .ttl {
  padding-top: 1rem;
}

.wpcf7-form-control-wrap[data-name=zip] {
  display: inline-block;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .wpcf7-form-control-wrap[data-name=zip] {
    max-width: 45%;
  }
  .wpcf7-form-control-wrap[data-name=zip] input.post {
    width: 100%;
  }
}

.wpcf7-response-output {
  font-size: 1.6rem;
  line-height: 1.4;
  padding: 1em;
}

.wpcf7-response-output:empty {
  display: none;
}

#sec_09 {
  background: #F5F8FA;
  padding: 6rem 0;
}
#sec_09 .wrap {
  max-width: 82.8rem;
}
#sec_09 .sttl {
  color: #0152A1;
  font-size: 2.2rem;
  line-height: 1.4;
  font-weight: 600;
  margin: 1em 0;
}
#sec_09 .flex {
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  #sec_09 .flex {
    flex-direction: column;
  }
}
#sec_09 .flex .table {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: 35% 1fr;
  border-top: 1px solid #0152A1;
}
#sec_09 .flex .table .ttl, #sec_09 .flex .table .txt {
  font-size: 1.5rem;
  line-height: 1.6;
  padding: 0.5em;
  border-bottom: 1px solid #0152A1;
}
#sec_09 .flex .table .ttl {
  display: flex;
  align-items: center;
  font-weight: 600;
}
#sec_09 .flex .img {
  flex: 0 0 auto;
  width: 37rem;
}

#page_result #sec_01 {
  padding-top: 6rem;
}
@media screen and (min-width: 768px) {
  #page_result #sec_01::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 22rem;
    background: #fff;
  }
}
@media screen and (max-width: 767px) {
  #page_result #sec_01 {
    padding: 2rem 0 8rem;
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  #page_result #sec_01 .ttl_wrap .badge {
    bottom: 14rem;
  }
  #page_result #sec_01 .ttl_wrap .grad {
    height: 18rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
#page_result #sec_01 .search {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 6rem 0 4rem;
}
@media screen and (max-width: 767px) {
  #page_result #sec_01 .search {
    margin: 3rem 0 1rem;
    flex-direction: column;
    gap: 2rem;
  }
}
#page_result #sec_01 .search .category {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  #page_result #sec_01 .search .category {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem 1rem;
    width: 100%;
  }
}
#page_result #sec_01 .search .category .item {
  font-size: 1.5rem;
}
#page_result #sec_01 .search .category .item a, #page_result #sec_01 .search .category .item span {
  display: inline-block;
  border: 1px solid #2397DF;
  color: #2397DF;
  text-align: center;
  padding: 0 2em;
  border-radius: 100px;
}
@media screen and (max-width: 767px) {
  #page_result #sec_01 .search .category .item a, #page_result #sec_01 .search .category .item span {
    display: block;
    padding: 0;
  }
}
#page_result #sec_01 .search .category .item span {
  background: #2397DF;
  color: #fff;
}
#page_result #sec_01 .search .count {
  color: #2397DF;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 600;
  text-align: right;
}
#page_result #sec_01 .search .count strong {
  display: inline-block;
  font-size: 3.4rem;
  line-height: 1;
  margin-right: 0.1em;
}
#page_result #sec_01 .pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin: 8rem 0 6rem;
}
@media screen and (max-width: 767px) {
  #page_result #sec_01 .pager {
    gap: 1rem;
    margin-top: 6rem;
  }
}
#page_result #sec_01 .pager li a, #page_result #sec_01 .pager li span {
  width: 1.5em;
  height: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  #page_result #sec_01 .pager li a, #page_result #sec_01 .pager li span {
    font-size: 1.4rem;
    width: 3rem;
    height: 3rem;
  }
}
#page_result #sec_01 .pager li span {
  border-bottom: 1px solid #666;
}
#page_result #sec_01 .pager li.prev a, #page_result #sec_01 .pager li.next a {
  display: block;
  background: #0152A1;
  border-radius: 100%;
  width: 2.5em;
  height: 2.5em;
  overflow: hidden;
  text-indent: -1000px;
  position: relative;
}
#page_result #sec_01 .pager li.prev a::before, #page_result #sec_01 .pager li.next a::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translate(-70%, -50%) rotate(45deg);
}
#page_result #sec_01 .pager li.prev a::before {
  transform: translate(-20%, -50%) scale(-1, 1) rotate(45deg);
}

/* ------------------------------
    responsive
------------------------------ */
@media screen and (min-width: 960px) {
  .pc-none {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 959px) {
  .tb-none {
    display: none !important;
  }
  .pc {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .sp-none {
    display: none !important;
  }
}
/* ------------------------------
    clearfix
------------------------------ */
.cf {
  zoom: 1;
}
.cf::after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow: hidden; /* 隙間対応 */
  font-size: 0.1em; /* 隙間対応 */
  line-height: 0; /* 隙間対応 */
}
