@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.common--supportpage {
  width: 100%;
}
.wrap.common--supportpage .main {
  width: 100%;
  padding-top: 13.8666666667vw;
  position: relative;
  z-index: 1;
}
@media (min-width: 920px) {
  .wrap.common--supportpage .main {
    padding-top: 80px;
  }
}
.wrap.common--supportpage .fv {
  width: 100%;
  background: #76C7DD;
}
@media (min-width: 920px) {
  .wrap.common--supportpage .fv {
    height: 255px;
  }
}
.wrap.common--supportpage .fv .inner-layout {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4.5333333333vw;
}
@media (min-width: 920px) {
  .wrap.common--supportpage .fv .inner-layout {
    padding-top: 0;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    height: 100%;
    width: 880px;
    margin: 0 auto;
  }
}
.wrap.common--supportpage .fv .ttl {
  width: 85.0666666667vw;
}
@media (min-width: 920px) {
  .wrap.common--supportpage .fv .ttl {
    width: 371px;
    align-self: center;
  }
}
.wrap.common--supportpage .fv .ttl img {
  display: block;
  width: 100%;
}
.wrap.common--supportpage .fv .img {
  width: 63.7333333333vw;
  margin-top: 2.6666666667vw;
}
@media (min-width: 920px) {
  .wrap.common--supportpage .fv .img {
    width: 398px;
    margin-top: 0;
    margin-left: 48px;
  }
}
.wrap.common--supportpage .fv .img img {
  display: block;
  width: 100%;
}
.wrap.common--supportpage .sec01 {
  padding: 16.5333333333vw 0;
}
@media (min-width: 920px) {
  .wrap.common--supportpage .sec01 {
    padding: 90px 0;
  }
}
.wrap.common--supportpage .sec01 .inner-layout {
  width: 90.4%;
  margin: 0 auto;
}
@media (min-width: 920px) {
  .wrap.common--supportpage .sec01 .inner-layout {
    width: 100%;
  }
}
.wrap.common--supportpage .sec01 p {
  font-size: 4.2666666667vw;
  line-height: 2;
  letter-spacing: -0.03em;
}
@media (min-width: 920px) {
  .wrap.common--supportpage .sec01 p {
    font-size: 18px;
    line-height: 2.111;
    text-align: center;
  }
}
.wrap.common--supportpage .sec02 {
  background: #EAEFF7;
  padding: 16.5333333333vw 0;
}
@media (min-width: 920px) {
  .wrap.common--supportpage .sec02 {
    padding: 83px 0 124px;
  }
}
.wrap.common--supportpage .sec02 .inner-layout {
  width: 90.4%;
  margin: 0 auto;
}
@media (min-width: 920px) {
  .wrap.common--supportpage .sec02 .inner-layout {
    width: 880px;
  }
}
.wrap.common--supportpage .sec02 .ttl-large {
  margin-bottom: 1em;
}
@media (min-width: 920px) {
  .wrap.common--supportpage .sec02 .ttl-large {
    margin-bottom: 64px;
  }
}
.wrap.common--supportpage .sec02 .newslayout {
  list-style: none;
  width: 100%;
}
.wrap.common--supportpage .sec02 .newslayoutbox {
  background: #FFF;
  border-radius: 30px;
  padding: 5.8666666667vw;
  margin-bottom: 6.4vw;
  border: solid 1px #E2E8F2;
}
@media (min-width: 920px) {
  .wrap.common--supportpage .sec02 .newslayoutbox {
    padding: 30px;
    margin-bottom: 40px;
  }
}
.wrap.common--supportpage .sec02 .newslayoutbox:last-of-type {
  margin-bottom: 0;
}
.wrap.common--supportpage .sec02 .newslayoutbox.is--open .acbtn:before {
  opacity: 0;
}
.wrap.common--supportpage .sec02 .newslayoutbox.is--open .acbtn:after {
  opacity: 1;
}
.wrap.common--supportpage .sec02 .acbtn {
  position: relative;
  cursor: pointer;
}
.wrap.common--supportpage .sec02 .acbtn .tagandtime {
  display: flex;
  align-items: center;
}
.wrap.common--supportpage .sec02 .acbtn .tagandtime .tag {
  font-size: 2.9333333333vw;
  background: #004578;
  color: #FFF;
  font-weight: bold;
  text-align: center;
  letter-spacing: -0.03em;
  padding: 0.4em;
  min-width: 5.4em;
  margin-right: 0.8em;
}
@media (min-width: 920px) {
  .wrap.common--supportpage .sec02 .acbtn .tagandtime .tag {
    font-size: 12px;
  }
}
.wrap.common--supportpage .sec02 .acbtn .tagandtime .time {
  font-size: 2.9333333333vw;
}
@media (min-width: 920px) {
  .wrap.common--supportpage .sec02 .acbtn .tagandtime .time {
    font-size: 11px;
  }
}
.wrap.common--supportpage .sec02 .acbtn .ttl {
  font-size: 4.2666666667vw;
  font-weight: bold;
  color: #00A9BD;
  line-height: 1.5;
  margin-top: 0.5em;
  width: calc(100% - 15.4666666667vw);
}
@media (min-width: 920px) {
  .wrap.common--supportpage .sec02 .acbtn .ttl {
    font-size: 20px;
    width: 740px;
  }
}
.wrap.common--supportpage .sec02 .acbtn:before {
  content: "";
  width: 8.8vw;
  height: 8.8vw;
  background-image: url(/assets/img/common/icon-plas.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: 0.3s;
  opacity: 1;
}
@media (min-width: 920px) {
  .wrap.common--supportpage .sec02 .acbtn:before {
    width: 42px;
    height: 42px;
  }
}
.wrap.common--supportpage .sec02 .acbtn:after {
  content: "";
  width: 8.8vw;
  height: 8.8vw;
  background-image: url(/assets/img/common/icon-minus.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: 0.3s;
  opacity: 0;
}
@media (min-width: 920px) {
  .wrap.common--supportpage .sec02 .acbtn:after {
    width: 42px;
    height: 42px;
  }
}
.wrap.common--supportpage .sec02 .accontents {
  display: none;
}
.wrap.common--supportpage .sec02 .accontents p {
  font-size: 3.7333333333vw;
  margin-bottom: 1em;
  line-height: 2;
  letter-spacing: -0.03em;
}
@media (min-width: 920px) {
  .wrap.common--supportpage .sec02 .accontents p {
    font-size: 16px;
  }
}
.wrap.common--supportpage .sec02 .accontents p:first-of-type {
  padding-top: 1.35em;
  margin-top: 1.35em;
  border-top: solid 2px #E2E8F2;
}
.wrap.common--supportpage .sec02 .accontents p:last-of-type {
  margin-bottom: 0;
}
.wrap.common--supportpage .btn-layout {
  padding: 16.5333333333vw 0;
}
@media (min-width: 920px) {
  .wrap.common--supportpage .btn-layout {
    padding: 124px 0;
  }
}
.wrap.common--supportpage .btn-layout .inner-layout {
  width: 90.4%;
  margin: 0 auto;
}
.wrap.common--supportpage footer ul {
  justify-content: center;
}
.wrap.common--supportpage footer ul li {
  margin-right: 1em;
  margin-left: 1em;
}

body#qa nav#page-link {
  margin-bottom: 21.3333333333vw;
  background-color: #ffffff;
  border-radius: 5px;
  position: relative;
  z-index: 1;
}
@media (min-width: 920px) {
  body#qa nav#page-link {
    margin-bottom: 0;
    background-color: transparent;
  }
}
body#qa nav#page-link p {
  padding: 1em;
  font-size: 3.7333333333vw;
  display: flex;
  justify-content: space-between;
  transition: 0.5s;
  /*
  &.active {
    padding:0 1em;
    height:0;
    opacity:0;
    //font-size:0;
    //transform:rotate(180deg);
    //border-bottom:1px solid #eeeeee;
    transform:translate(0, 20px);
  }
  */
}
@media (min-width: 920px) {
  body#qa nav#page-link p {
    display: none;
  }
}
body#qa nav#page-link p::after {
  content: "";
  margin: auto;
  width: 0.5em;
  height: 0.5em;
  border-top: solid 1px #3B3938;
  border-right: solid 1px #3B3938;
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1em;
  z-index: 1;
  transform: rotate(135deg);
  transition: 0.5s;
}
body#qa nav#page-link p.active::after {
  transform: rotate(-45deg);
}
body#qa nav#page-link ul {
  width: 100%;
  background-color: #ffffff;
  display: none;
  position: absolute;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
}
@media (min-width: 920px) {
  body#qa nav#page-link ul {
    margin: auto auto 100px 10px;
    width: 880px;
    background-color: transparent;
    position: static;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}
body#qa nav#page-link ul li {
  padding: 0 0 0 4vw;
  width: auto;
  border-bottom: 1px solid #eeeeee;
}
@media (min-width: 920px) {
  body#qa nav#page-link ul li {
    margin: 0 2em 1.5em 0;
    padding: 0;
    border-bottom: 0;
  }
}
body#qa nav#page-link ul li:last-child {
  border-bottom: 0;
}
body#qa nav#page-link ul li a {
  padding: 1em 1em 1em 0;
  align-items: center;
  font-size: 3.7333333333vw;
  display: block;
  position: relative;
}
body#qa nav#page-link ul li a:before {
  content: "";
  margin-right: 0.5em;
  width: 0.4em;
  height: 0.4em;
  border-top: solid 1px #3B3938;
  border-right: solid 1px #3B3938;
  display: inline-block;
  position: relative;
  top: -0.1em;
  z-index: 1;
  transform: rotate(45deg);
}
@media (min-width: 920px) {
  body#qa nav#page-link ul li a:before {
    transform: rotate(135deg);
  }
}
@media (min-width: 920px) {
  body#qa nav#page-link ul li a:after {
    content: "";
    width: 1em;
    height: 1em;
    background-color: #ffffff;
    border: 1px solid #3B3938;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    left: -0.3em;
    z-index: 0;
  }
}
@media (min-width: 920px) {
  body#qa nav#page-link ul li a {
    padding: 0;
    border-bottom: 0;
    display: flex;
    font-size: 18px;
  }
}
body#qa .qa {
  margin: -100px auto 100px;
  padding-top: 100px;
}
body#qa .qa > h3 {
  margin: auto auto 1em;
  text-align: center;
  font-weight: bold;
  font-size: 6.9333333333vw;
}
@media (min-width: 920px) {
  body#qa .qa > h3 {
    font-size: 32px;
  }
}
body#qa .qa > h3:after {
  content: "";
  margin: 0.5em auto auto;
  width: 7.4666666667vw;
  height: 0.5333333333vw;
  background-color: #3B3938;
  display: block;
}
@media (min-width: 920px) {
  body#qa .qa > h3:after {
    width: 28px;
    height: 2px;
  }
}
body#qa .qa .accontents li {
  line-height: 2;
  font-size: 3.7333333333vw;
}
@media (min-width: 920px) {
  body#qa .qa .accontents li {
    font-size: 16px;
  }
}
body#qa .qa .accontents p.mb1em {
  margin-bottom: 1em !important;
}
body#qa .qa .accontents ul.disc > li {
  margin: 0 0 2em 1em;
  list-style: disc;
}
body#qa .qa .accontents ul.square > li {
  margin: 0 0 2em 1em;
  list-style: square;
}
body#qa .qa .accontents ul.square > li a {
  text-decoration: underline;
}
body#qa .qa .accontents ul.gallery {
  padding-top: 30px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
body#qa .qa .accontents ul.gallery li {
  margin-bottom: 2em;
  margin-right: 0;
  width: 100%;
}
@media (min-width: 920px) {
  body#qa .qa .accontents ul.gallery li {
    margin-bottom: 0;
    margin-right: 25px;
    max-width: 330px;
  }
}
body#qa .qa .accontents ul.gallery li:last-child {
  margin-bottom: 0;
  margin-right: 0;
}

body.underlayer .wrap main {
  width: 100%;
  padding-top: 13.8666666667vw;
  position: relative;
  z-index: 1;
}
@media (min-width: 920px) {
  body.underlayer .wrap main {
    padding-top: 80px;
  }
}
body.underlayer .wrap .fv {
  width: 100%;
  height: auto;
  background: #76C7DD;
}
@media (min-width: 920px) {
  body.underlayer .wrap .fv {
    height: 255px;
  }
}
body.underlayer .wrap .fv .inner-layout {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4.5333333333vw;
}
@media (min-width: 920px) {
  body.underlayer .wrap .fv .inner-layout {
    padding-top: 0;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    height: 100%;
    width: 880px;
    margin: 0 auto;
  }
}
body.underlayer .wrap .fv .ttl {
  width: 85.0666666667vw;
}
@media (min-width: 920px) {
  body.underlayer .wrap .fv .ttl {
    width: 371px;
    align-self: center;
  }
}
body.underlayer .wrap .fv .ttl img {
  display: block;
  width: 100%;
}
body.underlayer .wrap .fv .img {
  width: 63.7333333333vw;
  margin-top: 2.6666666667vw;
}
@media (min-width: 920px) {
  body.underlayer .wrap .fv .img {
    width: 398px;
    margin-top: 0;
    margin-left: 48px;
  }
}
body.underlayer .wrap .fv .img img {
  display: block;
  width: 100%;
}
body.underlayer .wp-block-gallery.has-nested-images figure.wp-block-image img {
  margin: auto;
  max-width: 100%;
  border: 1px solid #eeeeee;
}
body.underlayer .wp-block-image.size-full.is-style-default {
  text-align: center;
}
@media (min-width: 920px) {
  body.underlayer .wp-block-image.size-full.is-style-default {
    padding: 20px 0 0 0;
  }
}
body.underlayer .wp-block-image.size-full.is-style-default img {
  max-width: 100%;
}
@media (min-width: 920px) {
  body.underlayer .wp-block-gallery {
    padding: 20px 0 0 0;
  }
}
body.underlayer .wp-block-gallery img {
  max-width: 100%;
}
.wp-pagenavi {
  padding: 40px 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}
.wp-pagenavi a {
  background-color: #ffffff;
}
.wp-pagenavi a:hover {
  border-color: #00A9BD !important;
}
.wp-pagenavi span {
  background-color: #ffffff;
}
.wp-pagenavi span.current {
  background-color: #00A9BD;
  color: #ffffff;
  border-color: #00A9BD !important;
}
.wp-pagenavi span.pages {
  display: none;
}

main#not-found {
  width: 100%;
  padding-top: 35.2vw;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
@media (min-width: 920px) {
  main#not-found {
    padding-top: 180px;
  }
}
main#not-found .contents {
  padding: 0 5.3333333333vw;
}
main#not-found h2 {
  margin-bottom: 1em;
  text-align: center;
  line-height: 1;
  font-size: 8.5333333333vw;
}
@media (min-width: 920px) {
  main#not-found h2 {
    margin-bottom: 1.5em;
    font-size: 42px;
  }
}
main#not-found p {
  line-height: 1.5;
  font-size: 3.7333333333vw;
}
@media (min-width: 920px) {
  main#not-found p {
    font-size: 14px;
  }
}
main#not-found .btn-block {
  padding: 5.3333333333vw;
  text-align: center;
}
main#not-found .btn-block a {
  font-weight: bold;
}
main#not-found .btn-block a:hover {
  text-decoration: underline;
}

.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=underlayer.css.map */