@charset "UTF-8";
/*-------------------------------------
リセットCSS
--------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, a,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  color: #3B3938;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  color: #3B3938;
  font-style: normal;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

input[type=submit],
input[type=button],
input[type=radio] select {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration,
input[type=radio]::-webkit-search-decoration select::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus,
input[type=radio]::focus select::focus {
  outline-offset: -2px;
}

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

html {
  font-size: 62.5%;
}

body {
  font-size: 1rem;
  font-family: "Roboto", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", 游ゴシック, "Yu Gothic", 游ゴシック体, YuGothic, sans-serif;
  color: #3B3938;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  word-wrap: break-word;
  -webkit-overflow-scrolling: touch;
}

img,
video,
object {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: bottom;
}

a {
  color: #3B3938;
  text-decoration: none;
}

input,
button,
select,
textarea {
  background: transparent;
  border: none;
  border-radius: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

.header {
  height: 13.8666666667vw;
  width: 100%;
  background: #DDEEF3;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
@media (min-width: 920px) {
  .header {
    height: 80px;
  }
}
.header .inner-layout {
  width: 100%;
  height: 100%;
  position: relative;
}
@media (min-width: 920px) {
  .header .inner-layout {
    width: 880px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.header .logo {
  width: 24vw;
  height: 7.7333333333vw;
  display: block;
  position: absolute;
  top: 0;
  left: 1.8666666667vw;
  bottom: 0;
  margin: auto;
}
@media (min-width: 920px) {
  .header .logo {
    width: 129px;
    height: 41px;
    position: static;
    margin: 0;
  }
}
.header .logo img {
  display: block;
  width: 100%;
  height: 100%;
}

.btn-hamburger {
  width: 8vw;
  height: 5.0666666667vw;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 4.8vw;
  bottom: 0;
  margin: auto;
  z-index: 10;
}
@media (min-width: 920px) {
  .btn-hamburger {
    display: none;
  }
}
.btn-hamburger:before {
  content: "";
  display: block;
  width: 100%;
  height: 0.2666666667vw;
  background: #3B3938;
  position: absolute;
  top: 0;
  left: 0;
}
.btn-hamburger:after {
  content: "";
  display: block;
  width: 100%;
  height: 0.2666666667vw;
  background: #3B3938;
  position: absolute;
  bottom: 0;
  left: 0;
}
.btn-hamburger .btn-hamburger__border {
  width: 100%;
  background: #3B3938;
  height: 0.2666666667vw;
  top: 2.1333333333vw;
  left: 0;
  position: absolute;
}

body.fixed {
  position: fixed;
  width: 100%;
}
body.fixed .btn-hamburger:before {
  transform: translateY(2.4vw) rotate(135deg);
}
body.fixed .btn-hamburger:after {
  transform: translateY(-2.4vw) rotate(-135deg);
}
body.fixed .btn-hamburger .btn-hamburger__border {
  opacity: 0;
}

.modal-nav {
  display: none;
  width: 100%;
  height: calc(100% - 13.8666666667vw);
  position: fixed;
  top: 13.8666666667vw;
  left: 0;
  z-index: 4;
}
@media (min-width: 920px) {
  .modal-nav {
    display: block;
    position: static;
    height: auto;
  }
}
.modal-nav .modal-nav__bg {
  position: fixed;
  top: 13.8666666667vw;
  left: 0;
  width: 100%;
  height: calc(100% - 13.8666666667vw);
  transition: 0.3s;
  z-index: 9;
  background: #DDEEF3;
}
@media (min-width: 920px) {
  .modal-nav .modal-nav__bg {
    display: none;
  }
}
.modal-nav .modal-nav__menu {
  z-index: 9;
  width: 100%;
  padding: 0;
  overflow: scroll;
  position: fixed;
  left: 0;
  border-top: solid 1px #FFF;
}
@media (min-width: 920px) {
  .modal-nav .modal-nav__menu {
    position: static;
    border: none;
    overflow: inherit;
  }
}
.modal-nav .modal-nav__menu--wrap ul {
  font-size: min(4.2666666667vw, 16px);
}
@media (min-width: 920px) {
  .modal-nav .modal-nav__menu--wrap ul {
    font-size: 16px;
    font-weight: bold;
    display: flex;
  }
}
.modal-nav .modal-nav__menu--wrap ul li {
  border-bottom: solid 1px #FFF;
}
@media (min-width: 920px) {
  .modal-nav .modal-nav__menu--wrap ul li {
    border-bottom: none;
  }
}
.modal-nav .modal-nav__menu--wrap ul li a {
  padding: 1.25em 0;
  padding-left: 1em;
  display: block;
  width: 100%;
  height: 100%;
  color: #3B3938;
}
@media (min-width: 920px) {
  .modal-nav .modal-nav__menu--wrap ul li a {
    padding: 0;
    padding-left: 1.5em;
  }
}

.modal-nav__fadein {
  display: block;
  animation: showIn 0.3s linear 0s;
}

.modal-nav__fadeout {
  display: block;
  animation: showOut 0.3s linear 0s forwards;
}

@keyframes showIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes showOut {
  0% {
    opacity: 1;
    display: block;
  }
  99% {
    opacity: 0;
    display: block;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
.footer {
  padding-top: 25.3333333333vw;
  padding-bottom: min(20.2666666667vw, 100px);
}
@media (min-width: 920px) {
  .footer {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
.footer .btn-fixedcontact {
  width: 100%;
  position: fixed;
  bottom: -150px;
  left: 0;
  z-index: 9;
  transition: 0.4s ease;
}
.footer .btn-fixedcontact.scroll {
  bottom: 0;
}
.footer .btn-fixedcontact.scroll a {
  background: #4B92EE;
}
.footer .btn-fixedcontact a {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: min(16vw, 80px);
  background: #FFF193;
  transition: 0.7s ease;
  transition-delay: 0.15s;
  box-shadow: 0 5px 10px rgba(0, 52, 60, 0.2);
}
.footer .btn-fixedcontact a:hover {
  filter: saturate(300%);
}
.footer .btn-fixedcontact a img {
  display: block;
  height: 62%;
}
.footer .inner-layout {
  width: 90.4%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 920px) {
  .footer .inner-layout {
    width: 100%;
  }
}
.footer .logo-footer {
  margin-bottom: 11.2vw;
  width: 31.4666666667vw;
}
@media (min-width: 920px) {
  .footer .logo-footer {
    margin-bottom: 50px;
    width: 180px;
  }
}
.footer .logo-footer a {
  display: block;
  width: 100%;
}
.footer .logo-footer a img {
  display: block;
  width: 100%;
}
.footer ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 14.9333333333vw;
}
@media (min-width: 920px) {
  .footer ul {
    margin-bottom: 60px;
  }
}
.footer ul li {
  font-size: 2.9333333333vw;
  letter-spacing: -0.03em;
  margin-bottom: 4.2666666667vw;
}
@media (min-width: 920px) {
  .footer ul li {
    font-size: 13px;
    margin-bottom: 0;
    margin: 0 14px;
  }
}
.footer ul li:last-of-type {
  margin-bottom: 0;
}
.footer small {
  font-size: 3.2vw;
}
@media (min-width: 920px) {
  .footer small {
    font-size: 12px;
  }
}

.wrap {
  width: 100%;
}

.main {
  width: 100%;
  padding-top: 13.8666666667vw;
  position: relative;
  z-index: 1;
}
@media (min-width: 920px) {
  .main {
    padding-top: 80px;
  }
}

.fv {
  width: 100%;
  height: 217.3333333333vw;
  background: #76C7DD;
}
@media (min-width: 920px) {
  .fv {
    height: 540px;
  }
}
@media (min-width: 920px) {
  .fv .inner-layout {
    width: 880px;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }
}
.fv h1 .img {
  width: 90.6666666667vw;
  margin-left: 4.8vw;
  padding-top: 2.6666666667vw;
}
@media (min-width: 920px) {
  .fv h1 .img {
    width: 385px;
    margin-left: -10px;
    padding-top: 40px;
  }
}
.fv h1 .img img {
  display: block;
  width: 100%;
}
.fv h1 .text_1 {
  font-size: 4vw;
  color: #FFF;
  letter-spacing: -0.013em;
  font-weight: bold;
  margin-left: 8.2666666667vw;
  margin-top: 2.6666666667vw;
}
@media (min-width: 920px) {
  .fv h1 .text_1 {
    font-size: 17px;
    margin-left: 0;
    margin-top: 31px;
  }
}
.fv h1 .text_2 {
  font-size: 5.6vw;
  letter-spacing: 0.077em;
  font-weight: bold;
  margin-left: 8.2666666667vw;
  margin-top: 2.6666666667vw;
}
@media (min-width: 920px) {
  .fv h1 .text_2 {
    font-size: 24px;
    margin-left: 0;
    margin-top: 12px;
  }
}
.fv .mainimg {
  width: 92vw;
  margin-top: 1.3333333333vw;
  margin-left: 4vw;
  margin-bottom: 6.6666666667vw;
}
@media (min-width: 920px) {
  .fv .mainimg {
    width: 434px;
    height: 434px;
    margin-top: 0;
    margin-left: 0;
    margin-bottom: 0;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}
.fv .mainimg img {
  display: block;
  width: 100%;
}
.fv .fvlist {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media (min-width: 920px) {
  .fv .fvlist {
    width: 364px;
    margin-top: 26px;
  }
}
.fv .fvlist li {
  width: calc(33.3333333333% - 1px);
  list-style-type: none;
}
.fv .fvlist li:first-of-type {
  width: 33.3333333333%;
}
.fv .fvlist li img {
  display: block;
  width: 100%;
  height: 100%;
}
.fv .fvbtn {
  width: 90.1333333333vw;
  margin: 0 auto;
  margin-top: 8.8vw;
}
@media (min-width: 920px) {
  .fv .fvbtn {
    width: 558px;
    height: 72px;
    position: absolute;
    margin: 0;
    bottom: -36px;
    left: 0;
    right: 0;
    margin: auto;
  }
}
.fv .fvbtn a {
  display: none;
}
@media (min-width: 920px) {
  .fv .fvbtn a:hover {
    filter: saturate(300%);
  }
}
.fv .fvbtn img {
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.28));
  width: 100%;
  display: block;
}

.sec01 .inner-layout {
  width: 90.4%;
  margin: 0 auto;
  padding-top: 23.2vw;
  padding-bottom: 15.2vw;
}
@media (min-width: 920px) {
  .sec01 .inner-layout {
    width: 880px;
    padding-top: 110px;
    padding-bottom: 90px;
  }
}
.sec01 .ttl-large {
  margin-bottom: 7.4666666667vw;
}
@media (min-width: 920px) {
  .sec01 .ttl-large {
    margin-bottom: 47px;
  }
}
@media (min-width: 920px) {
  .sec01 .ttl-large br {
    display: none;
  }
}
.sec01 p {
  font-size: 4.2666666667vw;
  line-height: 2;
  margin-bottom: 1em;
}
@media (min-width: 920px) {
  .sec01 p {
    line-height: 2.111;
    font-size: 18px;
    width: 741px;
    margin: 0 auto;
    margin-bottom: 54px;
  }
}
.sec01 img {
  display: block;
  width: 100%;
}
@media (min-width: 920px) {
  .sec01 img {
    width: 478px;
    margin: 0 auto;
  }
}

.sec02 {
  background: #EAEFF7;
}
.sec02 .inner-layout {
  width: 90.4%;
  margin: 0 auto;
  padding-top: 14.4vw;
  padding-bottom: 17.3333333333vw;
}
@media (min-width: 920px) {
  .sec02 .inner-layout {
    width: 880px;
    padding-top: 82px;
    padding-bottom: 120px;
  }
}
.sec02 .ttl-middle {
  margin-bottom: 21.3333333333vw;
}
@media (min-width: 920px) {
  .sec02 .ttl-middle {
    margin-bottom: 134px;
  }
}
@media (min-width: 920px) {
  .sec02 .sec02layout {
    width: 680px;
    margin: 0 auto;
  }
}
.sec02 .sec02layout li {
  list-style-type: none;
  border: solid 0.8vw #FFF;
  padding: 14.9333333333vw 6.1333333333vw 10.6666666667vw;
  border-radius: 8vw;
  position: relative;
  margin-bottom: 20vw;
}
@media (min-width: 920px) {
  .sec02 .sec02layout li {
    border: solid 3px #FFF;
    padding: 64px 54px;
    border-radius: 30px;
    margin-bottom: 100px;
  }
}
.sec02 .sec02layout li:last-of-type {
  margin-bottom: 0;
}
.sec02 .sec02layout li .number {
  position: absolute;
  top: -0.5em;
  left: 0;
  right: 0;
  margin: auto;
  width: 1em;
  height: 1em;
  font-size: 19.2vw;
  text-align: center;
  background: #EAEFF7;
}
@media (min-width: 920px) {
  .sec02 .sec02layout li .number {
    font-size: 90px;
  }
}
.sec02 .sec02layout li h3 {
  font-size: 6.1333333333vw;
  text-align: center;
  font-weight: bold;
  line-height: 1.565;
  letter-spacing: -0.03em;
}
@media (min-width: 920px) {
  .sec02 .sec02layout li h3 {
    font-size: 26px;
    line-height: 1;
  }
}
@media (min-width: 920px) {
  .sec02 .sec02layout li h3 br {
    display: none;
  }
}
.sec02 .sec02layout li p {
  font-size: 3.7333333333vw;
  line-height: 2;
  letter-spacing: -0.03em;
}
@media (min-width: 920px) {
  .sec02 .sec02layout li p {
    font-size: 18px;
  }
}
.sec02 .sec02layout li .img {
  position: absolute;
}
.sec02 .sec02layout li .img img {
  display: block;
  width: 100%;
}
.sec02 .sec02layout li.nth-1 .nth-1_ttl2 {
  font-size: 4.2666666667vw;
  color: #00A9BD;
  text-align: center;
  font-weight: bold;
  letter-spacing: -0.03em;
  margin-top: 0.65em;
  margin-bottom: 8.8vw;
}
@media (min-width: 920px) {
  .sec02 .sec02layout li.nth-1 .nth-1_ttl2 {
    font-size: 18px;
    margin-top: 1.1em;
    margin-bottom: 58px;
  }
}
.sec02 .sec02layout li.nth-1 .nth-1_text1 {
  width: 54.1333333333vw;
  margin-bottom: 6.6666666667vw;
}
@media (min-width: 920px) {
  .sec02 .sec02layout li.nth-1 .nth-1_text1 {
    width: 435px;
    margin-bottom: 10px;
  }
}
.sec02 .sec02layout li.nth-1 .nth-1_text2 {
  font-size: 2.9333333333vw;
  line-height: 1.4;
}
@media (min-width: 920px) {
  .sec02 .sec02layout li.nth-1 .nth-1_text2 {
    font-size: 13px;
  }
}
.sec02 .sec02layout li.nth-1 .nth-1_img {
  width: 19.2vw;
  bottom: 21.3333333333vw;
  right: 8vw;
}
@media (min-width: 920px) {
  .sec02 .sec02layout li.nth-1 .nth-1_img {
    width: 113px;
    bottom: 26px;
    right: 70px;
  }
}
.sec02 .sec02layout li.nth-2 {
  padding-bottom: 0;
}
.sec02 .sec02layout li.nth-2 .nth-2_text1 {
  margin-top: 1.25em;
}
@media (min-width: 920px) {
  .sec02 .sec02layout li.nth-2 .nth-2_text1 {
    margin-top: 35px;
  }
}
.sec02 .sec02layout li.nth-2 .nth-2_img {
  position: relative;
  width: 65.6vw;
  margin-left: 6.6666666667vw;
}
@media (min-width: 920px) {
  .sec02 .sec02layout li.nth-2 .nth-2_img {
    width: 369px;
    margin-left: 117px;
  }
}
.sec02 .sec02layout li.nth-3 .nth-3_text1 {
  margin-top: 1.65em;
  width: 43.4666666667vw;
}
@media (min-width: 920px) {
  .sec02 .sec02layout li.nth-3 .nth-3_text1 {
    margin-top: 89px;
    width: 372px;
  }
}
.sec02 .sec02layout li.nth-3 .nth-3_img {
  width: 28.8vw;
  bottom: 13.0666666667vw;
  right: 6.1333333333vw;
}
@media (min-width: 920px) {
  .sec02 .sec02layout li.nth-3 .nth-3_img {
    width: 180px;
    bottom: 32px;
    right: 49px;
  }
}

.sec03 .inner-layout {
  width: 90.4%;
  margin: 0 auto;
  padding-top: 14.4vw;
  padding-bottom: 17.3333333333vw;
}
@media (min-width: 920px) {
  .sec03 .inner-layout {
    width: 880px;
    padding-top: 82px;
    padding-bottom: 120px;
  }
}
@media (min-width: 920px) {
  .sec03 .sec02layout {
    display: flex;
    justify-content: space-between;
  }
}
.sec03 .sec02layout li {
  background: #EAEFF7;
  border-radius: 8vw;
  padding: 7.2vw 6.1333333333vw;
  list-style-type: none;
  position: relative;
  margin-bottom: 5.8666666667vw;
}
@media (min-width: 920px) {
  .sec03 .sec02layout li {
    padding: 0 22px 30px;
    width: 270px;
    border-radius: 30px;
    margin-bottom: 0;
  }
}
.sec03 .sec02layout li:last-of-type {
  margin-bottom: 0;
}
.sec03 .sec02layout li .img {
  position: absolute;
}
@media (min-width: 920px) {
  .sec03 .sec02layout li .img {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.sec03 .sec02layout li .img img {
  display: block;
  width: 100%;
}
.sec03 .sec02layout li p {
  font-size: 3.7333333333vw;
  line-height: 2;
  letter-spacing: -0.03em;
}
@media (min-width: 920px) {
  .sec03 .sec02layout li p {
    font-size: 16px;
  }
}
.sec03 .sec02layout li.nth-1 .img {
  width: 18.9333333333vw;
  top: 10.4vw;
  left: 5.8666666667vw;
}
@media (min-width: 920px) {
  .sec03 .sec02layout li.nth-1 .img {
    width: 100%;
    height: 184px;
    top: 0;
    left: 0;
  }
}
@media (min-width: 920px) {
  .sec03 .sec02layout li.nth-1 .img img {
    width: auto;
    height: 112px;
  }
}
.sec03 .sec02layout li.nth-1 p {
  width: 52.5333333333vw;
  margin-left: auto;
}
@media (min-width: 920px) {
  .sec03 .sec02layout li.nth-1 p {
    margin-left: 0;
    width: auto;
  }
}
.sec03 .sec02layout li.nth-2 {
  padding-left: 8.2666666667vw;
}
@media (min-width: 920px) {
  .sec03 .sec02layout li.nth-2 {
    padding-left: 22px;
  }
}
.sec03 .sec02layout li.nth-2 .img {
  width: 20.8vw;
  bottom: 0;
  right: 7.7333333333vw;
}
@media (min-width: 920px) {
  .sec03 .sec02layout li.nth-2 .img {
    width: 100%;
    height: 184px;
    bottom: 0;
    right: 0;
  }
}
@media (min-width: 920px) {
  .sec03 .sec02layout li.nth-2 .img img {
    width: auto;
    height: 127px;
  }
}
.sec03 .sec02layout li.nth-2 p {
  width: 52.5333333333vw;
  margin-left: 0;
}
@media (min-width: 920px) {
  .sec03 .sec02layout li.nth-2 p {
    width: auto;
  }
}
.sec03 .sec02layout li.nth-3 .img {
  width: 20.2666666667vw;
  top: 5.6vw;
  left: 5.8666666667vw;
}
@media (min-width: 920px) {
  .sec03 .sec02layout li.nth-3 .img {
    width: 100%;
    height: 184px;
    top: 0;
    left: 0;
  }
}
@media (min-width: 920px) {
  .sec03 .sec02layout li.nth-3 .img img {
    width: auto;
    height: 123px;
  }
}
.sec03 .sec02layout li.nth-3 p {
  width: 52.5333333333vw;
  margin-left: auto;
}
@media (min-width: 920px) {
  .sec03 .sec02layout li.nth-3 p {
    width: auto;
  }
}

.sec04 {
  background: #EAEFF7;
}
.sec04 .inner-layout {
  width: 90.4%;
  margin: 0 auto;
  padding-top: 14.4vw;
  padding-bottom: 17.3333333333vw;
}
@media (min-width: 920px) {
  .sec04 .inner-layout {
    width: 880px;
    padding-top: 82px;
    padding-bottom: 120px;
  }
}
.sec04 .sec04layout {
  border: solid 0.8vw #FFF;
  padding: 9.8666666667vw 6.6666666667vw 8vw;
  border-radius: 8vw;
  position: relative;
}
@media (min-width: 920px) {
  .sec04 .sec04layout {
    width: 680px;
    margin-left: auto;
    margin-right: auto;
    border: solid 3px #FFF;
    padding: 70px 56px 46px;
    border-radius: 30px;
  }
}
.sec04 .sec04layout .h3 {
  width: 56.2666666667vw;
  margin: 0 auto;
  margin-bottom: 5.0666666667vw;
}
@media (min-width: 920px) {
  .sec04 .sec04layout .h3 {
    width: 262px;
    margin-bottom: 32px;
  }
}
.sec04 .sec04layout .h3 img {
  display: block;
  width: 100%;
}
.sec04 .sec04layout p {
  font-size: 3.7333333333vw;
  line-height: 2;
  letter-spacing: -0.03em;
}
@media (min-width: 920px) {
  .sec04 .sec04layout p {
    font-size: 18px;
  }
}

.sec05 {
  padding-top: 16vw;
  padding-bottom: 16vw;
}
@media (min-width: 920px) {
  .sec05 {
    padding-top: 118px;
    padding-bottom: 118px;
  }
}
.sec05 .inner-layout {
  width: 90.4%;
  margin: 0 auto;
}
@media (min-width: 920px) {
  .sec05 .inner-layout {
    width: 880px;
  }
}
@media (min-width: 920px) {
  .sec05 .ttl-large br {
    display: none;
  }
}
.sec05 .sec05layout {
  text-align: center;
}
.sec05 .sec05layout .sec05layout_li {
  margin-top: 19.2vw;
  list-style-type: none;
}
@media (min-width: 920px) {
  .sec05 .sec05layout .sec05layout_li {
    margin-top: 100px;
  }
}
.sec05 .sec05layout .sec05layout_li h3 {
  font-size: 5.3333333333vw;
  margin-bottom: 1em;
}
@media (min-width: 920px) {
  .sec05 .sec05layout .sec05layout_li h3 {
    font-size: 20px;
  }
}
.sec05 .sec05layout .sec05layout_li h3 .number {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.03em;
  font-size: 5.6vw;
  margin-bottom: 0.85em;
}
@media (min-width: 920px) {
  .sec05 .sec05layout .sec05layout_li h3 .number {
    font-size: 21px;
  }
}
.sec05 .sec05layout .sec05layout_li h3 .number .small {
  letter-spacing: -0.03em;
  margin-bottom: 0.3em;
}
.sec05 .sec05layout .sec05layout_li h3 .number .large {
  font-size: 19.2vw;
}
@media (min-width: 920px) {
  .sec05 .sec05layout .sec05layout_li h3 .number .large {
    font-size: 72px;
  }
}
.sec05 .sec05layout .sec05layout_li h3 .text {
  letter-spacing: -0.03em;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 6.9333333333vw;
}
@media (min-width: 920px) {
  .sec05 .sec05layout .sec05layout_li h3 .text {
    margin-bottom: 26px;
  }
}
.sec05 .sec05layout .nth-1 .btnslayout {
  list-style: none;
  display: flex;
  justify-content: center;
}
@media (min-width: 920px) {
  .sec05 .sec05layout .nth-1 .btnslayout {
    width: 313px;
    margin-left: auto;
    margin-right: auto;
  }
}
.sec05 .sec05layout .nth-1 .btnslayout li img {
  display: block;
  width: 100%;
}
.sec05 .sec05layout .nth-1 .btnslayout li:nth-of-type(1) {
  width: 39.4666666667vw;
  margin-right: 1.8666666667vw;
}
@media (min-width: 920px) {
  .sec05 .sec05layout .nth-1 .btnslayout li:nth-of-type(1) {
    width: 143px;
    margin-right: 7px;
  }
}
.sec05 .sec05layout .nth-1 .btnslayout li:nth-of-type(2) {
  width: 42.9333333333vw;
}
@media (min-width: 920px) {
  .sec05 .sec05layout .nth-1 .btnslayout li:nth-of-type(2) {
    width: 161px;
  }
}
.sec05 .last-text {
  font-size: 3.2vw;
  text-align: center;
  margin-top: 16.5333333333vw;
}
@media (min-width: 920px) {
  .sec05 .last-text {
    font-size: 13px;
    margin-top: 120px;
  }
}

.ttl-large {
  font-size: 8.5333333333vw;
  line-height: 1.343;
  text-align: center;
  color: #004578;
  font-weight: bold;
  letter-spacing: -0.03em;
}
@media (min-width: 920px) {
  .ttl-large {
    font-size: 42px;
    line-height: 1;
  }
}

.ttl-middle {
  font-size: 6.9333333333vw;
  text-align: center;
  color: #004578;
  font-weight: bold;
  position: relative;
  margin-bottom: 14.1333333333vw;
}
@media (min-width: 920px) {
  .ttl-middle {
    font-size: 34px;
    margin-bottom: 90px;
  }
}
.ttl-middle:after {
  content: "";
  display: block;
  width: 7.4666666667vw;
  height: 1.0666666667vw;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.5em;
  margin: auto;
  background: #004578;
}
@media (min-width: 920px) {
  .ttl-middle:after {
    width: 28px;
    height: 4px;
  }
}

@media (min-width: 920px) {
  .btn-normal {
    width: 418px;
    margin-left: auto;
    margin-right: auto;
  }
}
.btn-normal a {
  font-size: 4.8vw;
  color: #FFF;
  font-weight: bold;
  letter-spacing: -0.03em;
  display: block;
  text-align: center;
  border-radius: 100px;
  padding: 1em 0;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.28));
}
@media (min-width: 920px) {
  .btn-normal a {
    font-size: 18px;
    padding: 1.25em 0;
  }
}
.btn-normal.blue-strong a {
  background: #00A9BD;
}

.swiper {
  padding-bottom: 8.5333333333vw;
}
@media (min-width: 920px) {
  .swiper {
    width: 420px;
    padding-bottom: 52px;
  }
}
.swiper .swiper-wrapper .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.swiper .swiper-wrapper .swiper-slide .img {
  width: 44.8vw;
}
@media (min-width: 920px) {
  .swiper .swiper-wrapper .swiper-slide .img {
    width: 198px;
  }
}
.swiper .swiper-wrapper .swiper-slide .img img {
  display: block;
  width: 100%;
}
.swiper .swiper-wrapper .swiper-slide p {
  margin-top: 1.4em;
  font-size: 3.7333333333vw;
  line-height: 1.4;
}
@media (min-width: 920px) {
  .swiper .swiper-wrapper .swiper-slide p {
    font-size: 16px;
    line-height: 1.8;
  }
}

.swiper-button-next:after, .swiper-button-prev:after {
  transform: scale(0.85);
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 0;
}

.swiper-button-next, .swiper-button-prev {
  top: 40%;
  color: #004578;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 6px);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 10px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 10px));
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 10px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 10px));
  display: inline-block;
  border-radius: 50%;
  background: #004578;
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.3);
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: #004578;
}

body.os-ios .fv .fvbtn a.block-ios {
  display: block;
}
body.os-ios .footer .btn-fixedcontact a.block-ios {
  display: flex;
}

body.os-android .fv .fvbtn a.block-android {
  display: block;
}
body.os-android .footer .btn-fixedcontact a.block-android {
  display: flex;
}

.cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 90.4%;
  margin: 0 auto;
  background: #EAEFF7;
  padding: 8.2666666667vw 5.0666666667vw;
  position: relative;
}
@media (min-width: 920px) {
  .cta {
    width: 880px;
    padding: 44px 0;
  }
}
.cta h2 {
  font-size: 5.3333333333vw;
  line-height: 1.5;
  color: #004578;
  text-align: center;
  font-weight: bold;
  letter-spacing: -0.03em;
}
@media (min-width: 920px) {
  .cta h2 {
    font-size: 28px;
    line-height: 1;
  }
}
@media (min-width: 920px) {
  .cta h2 br {
    display: none;
  }
}
.cta p {
  text-align: center;
  margin-top: 3.4666666667vw;
  background: #00A9BD;
  font-size: 3.4666666667vw;
  font-weight: bold;
  padding: 0.4em 0;
  color: #FFF;
  letter-spacing: -0.05em;
  border-radius: 100px;
}
@media (min-width: 920px) {
  .cta p {
    margin-top: 18px;
    font-size: 17px;
    width: 404px;
    margin-left: auto;
    margin-right: auto;
  }
}
.cta ul {
  text-align: center;
  list-style: none;
}
@media (min-width: 920px) {
  .cta ul {
    text-align: left;
    display: flex;
    justify-content: space-between;
    margin-top: 38px;
    width: 712px;
    margin-left: auto;
    margin-right: auto;
  }
}
.cta ul li {
  letter-spacing: -0.03em;
  margin-top: 5.3333333333vw;
}
@media (min-width: 920px) {
  .cta ul li {
    margin-top: 0;
  }
}
.cta ul li a {
  display: block;
  font-size: 4.2666666667vw;
  font-weight: bold;
}
@media (min-width: 920px) {
  .cta ul li a {
    font-size: 22px;
  }
}
.cta ul li span {
  display: block;
  font-size: 2.9333333333vw;
  margin-top: 1.8666666667vw;
}
@media (min-width: 920px) {
  .cta ul li span {
    font-size: 13px;
    margin-top: 11px;
  }
}
.cta .undertext {
  display: block;
  width: 100%;
  font-size: 2.6666666667vw;
  position: absolute;
  bottom: -1.65em;
  right: -0.6em;
  text-align: right;
}
@media (min-width: 920px) {
  .cta .undertext {
    bottom: -3em;
    font-size: 10px;
  }
}/*# sourceMappingURL=style.css.map */