@charset "utf-8";
audio:not([controls]),
[hidden] {
  display: none;
}
input,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
input:focus,
textarea:focus {
  outline: none;
}
select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
select::-ms-expand {
  display: none;
}
select:focus {
  outline: none;
}
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@import url("http://fonts.googleapis.com/earlyaccess/notosansjp.css");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: inherit;
  font-style: inherit;
  vertical-align: baseline;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
table {
  border-collapse: separate;
  border-spacing: 0;
  vertical-align: middle;
}
caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}
a img {
  border: none;
}
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
main {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
}
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  position: relative;
  min-height: 100vh;
  width: 100%;
}
a {
  cursor: pointer;
}
a:link,
a:active {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.item--pc {
  display: none;
}
@media screen and (min-width: 769px) {
  .item--pc {
    display: block;
  }
}
.item--sp {
  display: block;
}
@media screen and (min-width: 769px) {
  .item--sp {
    display: none;
  }
}
.header {
  background: #0b8ecd;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 999;
  padding: 0 25px;
}
@media screen and (min-width: 769px) {
  .header {
    height: 80px;
    padding: 0;
  }
}
.header__spBtn {
  width: 28px;
  height: 25px;
  position: relative;
}
@media screen and (min-width: 769px) {
  .header__spBtn {
    display: none;
  }
}
.header__spBtn span {
  width: 100%;
  height: 3px;
  background: #fff;
  position: absolute;
  left: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.header__spBtn span:before,
.header__spBtn span:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background: #fff;
  left: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.header__spBtn span:before {
  top: 10px;
}
.header__spBtn span:after {
  top: 20px;
}
.header__spBtn.is-active span {
  top: 10px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.header__spBtn.is-active span:before {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  top: 0;
}
.header__spBtn.is-active span:after {
  display: none;
}
.header__logo {
  width: 160px;
}
@media screen and (min-width: 769px) {
  .header__logo {
    width: 240px;
    margin-left: 40px;
  }
}
@media screen and (min-width: 834px) and (max-width: 1024px) {
  .header__logo {
    width: 150px;
    margin-left: 0;
  }
}
.header__logo img {
  width: 100%;
}
.header__spMenu {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc(100% - 60px);
  background: #fff;
}
.header__spMenu__list {
  margin-top: 30px;
}
.header__spMenu__item {
  display: block;
  padding: 20px 0;
  text-align: center;
  color: #333;
  font-size: 16px;
  border-bottom: 1px solid #20b4ce;
}
.header__spMenu__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #333;
  font-size: 16px;
  font-weight: bold;
  width: 100%;
  height: 70px;
  max-width: 325px;
  background: #ffd84d;
  margin: 20px auto 0;
}
.header__pcMenu {
  display: none;
}
@media screen and (min-width: 769px) {
  .header__pcMenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.header__pcMenu__item {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  margin-right: 40px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__pcMenu__item:hover {
  opacity: 0.8;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .header__pcMenu__item {
    margin-right: 10px;
  }
}
@media screen and (min-width: 834px) and (max-width: 1024px) {
  .header__pcMenu__item {
    font-size: 14px;
  }
}
.header__pcMenu__contact {
  width: 176px;
  height: 80px;
  background: #ffd84d;
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-weight: bold;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__pcMenu__contact:hover {
  opacity: 0.8;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer {
  background: #3d7780;
  text-align: center;
  padding: 40px 0;
}
@media screen and (min-width: 769px) {
  .footer {
    padding: 60px 0;
  }
}
.footer__inner {
  padding: 0 20px;
}
@media screen and (min-width: 769px) {
  .footer__inner {
    max-width: 1250px;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer__logo {
  width: 140px;
}
.footer__box {
  text-align: left;
}
.footer__address {
  font-size: 14px;
  margin-top: 20px;
  color: #fff;
  line-height: 1.8;
}
@media screen and (min-width: 769px) {
  .footer__address {
    font-size: 16px;
  }
}
.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 20px;
}
@media screen and (min-width: 769px) {
  .footer__list {
    margin-top: 0;
  }
}
.footer__item {
  font-size: 14px;
  color: #fff;
  margin-top: 20px;
  padding: 3px 15px;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer__item:hover {
  opacity: 0.8;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer__item:not(:last-of-type):before {
  content: "";
  position: absolute;
  height: 100%;
  width: 1px;
  background: #fff;
  right: 0;
  top: 0;
  opacity: 1 !important;
}
.copyright {
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background: #20b4ce;
  padding: 6px 0;
}
.c-btn,
.c-btn--secondaly {
  text-align: center;
  margin-top: 30px;
  display: inline-block;
  width: 100%;
}
.c-btn__inner {
  position: relative;
  display: inline-block;
  text-align: center;
  background: #fff;
  width: 230px;
  height: 40px;
  line-height: 40px;
  border: 1px solid #1d91ff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 32px;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, .5);
          box-shadow: 0 5px 20px rgba(0, 0, 0, .5);
  text-decoration: none !important;
}
@media screen and (min-width: 769px) {
  .c-btn__inner {
    width: 300px;
    height: 50px;
  }
}
.c-btn__inner:before {
  content: '';
  position: absolute;
  background: -webkit-gradient(linear, right top, left top, from(#5574f7), to(#389eff));
  background: linear-gradient(to left, #5574f7, #389eff);
  width: 230px;
  height: 40px;
  right: -1px;
  top: -1px;
  border-radius: 32px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (min-width: 769px) {
  .c-btn__inner:before {
    width: 300px;
    height: 50px;
  }
}
.c-btn__inner:hover:before {
  width: 50px;
}
.c-btn__inner:hover .c-btn__txt {
  color: #1d91ff;
}
.c-btn--secondaly .c-btn__inner:before {
  background: -webkit-gradient(linear, right top, left top, from(#389eff), to(#55d2f7));
  background: linear-gradient(to left, #389eff, #55d2f7);
}
.c-btn__arw {
  position: absolute;
  right: 17px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 13px !important;
}
.c-btn__txt {
  position: absolute;
  color: #fff;
  font-size: 15px !important;
  width: 100%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (min-width: 769px) {
  .c-btn__txt {
    font-size: 18px !important;
  }
}
.c-arw {
  position: relative;
  text-align: center;
  display: inline-block;
  height: 30px;
  width: 150px;
  margin-top: 30px;
  line-height: 1;
}
@media screen and (min-width: 769px) {
  .c-arw {
    margin-top: 40px;
  }
}
.c-arw:hover .c-arw__txt {
  opacity: 0.5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.c-arw:hover .c-arw__icon {
  margin-left: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.c-arw:hover .c-arw__icon:before,
.c-arw:hover .c-arw__icon:after {
  opacity: 0.5;
}
.c-arw__txt {
  font-size: 20px;
  color: #000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  letter-spacing: 2px;
}
@media screen and (min-width: 769px) {
  .c-arw__txt {
    font-size: 28px;
  }
}
.c-arw__icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
}
.c-arw__icon:before,
.c-arw__icon:after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.c-arw__icon:before {
  left: -60px;
  width: 120px;
  height: 2px;
  background: #000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (min-width: 769px) {
  .c-arw__icon:before {
    width: 180px;
    left: -90px;
  }
}
.c-arw__icon:after {
  right: -60px;
  width: 20px;
  bottom: 10px;
  height: 4px;
  border-top: 2px solid #000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (min-width: 769px) {
  .c-arw__icon:after {
    right: -90px;
  }
}
.c-arrow,
.c-arrow--r,
.c-arrow--l {
  width: 8px;
  height: 8px;
  border: 0px;
  border-top: solid 2.3px #222;
  border-right: solid 2.3px #222;
  position: absolute;
  top: 50%;
  margin-top: -4px;
}
.c-arrow--r {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  left: 0;
}
.c-arrow--l {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  right: 0;
}
@font-face {
  font-family: 'icomoon';
  font-display: swap;
  src: url("../img/fonts/icomoon.eot?816ycz");
  src: url("../img/fonts/icomoon.eot?816ycz#iefix") format('embedded-opentype'), url("../img/fonts/icomoon.ttf?816ycz") format('truetype'), url("../img/fonts/icomoon.woff?816ycz") format('woff'), url("../img/fonts/icomoon.svg?816ycz#icomoon") format('svg');
  font-weight: normal;
  font-style: normal;
}
[class^="c-ico--"]:before,
[class*=" c-ico--"]:before {
/* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
/* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.c-ico--menu:before {
  content: "\e902";
}
.c-ico--close:before {
  content: "\e903";
}
.c-ico--arrow--r:before {
  content: "\e904";
}
.c-ico--arrow--u:before {
  content: "\e905";
}
.c-ico--arrow--l:before {
  content: "\e906";
}
.c-ico--arrow--d:before {
  content: "\e907";
}
.c-ico--search:before {
  content: "\e908";
}
.c-ico--tag:before {
  content: "\e909";
}
.c-ico--feedly--01:before {
  content: "\e90c";
}
.c-ico--instagram--01:before {
  content: "\e90d";
}
.c-ico--facebook:before {
  content: "\e90e";
}
.c-ico--twitter:before {
  content: "\e90f";
}
.next-arrow,
.prev-arrow {
  position: absolute;
  top: 15%;
  width: 40px;
  height: 40px;
  z-index: 10;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .next-arrow,
  .prev-arrow {
    top: 40%;
  }
}
.next-arrow {
  right: -30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.next-arrow:hover {
  opacity: 0.8;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 769px) {
  .next-arrow {
    right: -50px;
  }
}
.prev-arrow {
  left: -30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.prev-arrow:hover {
  opacity: 0.8;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 769px) {
  .prev-arrow {
    left: -50px;
  }
}
.slick-slide img {
  display: inline;
}
.slide-dots {
  text-align: center;
  margin-top: 20px;
}
@media screen and (min-width: 769px) {
  .slide-dots {
    margin-top: 30px;
  }
}
.slide-dots li {
  display: inline-block;
  margin: 0 15px;
}
@media screen and (min-width: 769px) {
  .slide-dots li {
    margin: 0 20px;
  }
}
.slide-dots li button {
  position: relative;
  text-indent: -9999px;
}
.slide-dots li button:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #999;
  position: absolute;
  top: 0;
  left: 0;
}
.slide-dots li.slick-active button:before {
  background: #20b4ce;
}
.contact {
  margin-top: 100px;
  text-align: center;
  padding: 0 16px 80px;
}
@media screen and (min-width: 769px) {
  .contact {
    max-width: 750px;
    margin: 180px auto 0;
  }
}
.contact form:not(.custom-wpcf7c-confirmed) .contact__item:nth-of-type(1) {
  background: #20b4ce;
  color: #fff;
}
.contact form:not(.custom-wpcf7c-confirmed) .contact__item:nth-of-type(1):before {
  content: "";
  position: absolute;
  right: -15px;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 34px 0 34px 16px;
  border-color: transparent transparent transparent #20b4ce;
  z-index: 11;
}
@media screen and (min-width: 769px) {
  .contact form:not(.custom-wpcf7c-confirmed) .contact__item:nth-of-type(1):before {
    border-width: 40px 0 40px 20px;
    right: -19px;
  }
}
.contact .custom-wpcf7c-confirmed .contact__item:nth-of-type(2) {
  background: #20b4ce;
  color: #fff;
}
.contact .custom-wpcf7c-confirmed .contact__item:nth-of-type(2):before {
  content: "";
  position: absolute;
  right: -15px;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 34px 0 34px 16px;
  border-color: transparent transparent transparent #20b4ce;
  z-index: 11;
}
@media screen and (min-width: 769px) {
  .contact .custom-wpcf7c-confirmed .contact__item:nth-of-type(2):before {
    border-width: 40px 0 40px 20px;
    right: -19px;
  }
}
.contact .custom-wpcf7c-confirmed .contact__form__item input {
  background: none !important;
  font-weight: bold;
}
.contact .custom-wpcf7c-confirmed .contact__form__item input :focus {
  background: none !important;
  outline: none;
}
.contact .custom-wpcf7c-confirmed .contact__form__item input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}
.contact .wpcf7-response-output {
  display: none !important;
}
.contact__logo {
  width: 240px;
}
@media screen and (min-width: 769px) {
  .contact__logo {
    width: 280px;
  }
}
.contact__head {
  font-size: 20px;
  font-weight: bold;
  margin-top: 10px;
}
@media screen and (min-width: 769px) {
  .contact__head {
    font-size: 32px;
    margin-top: 15px;
  }
}
.contact__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 276px;
  margin: 20px auto 0;
}
@media screen and (min-width: 769px) {
  .contact__list {
    width: 396px;
    margin: 40px auto 0;
  }
}
.contact__list:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 34px 0 34px 16px;
  border-color: transparent transparent transparent #fff;
  z-index: 10;
}
@media screen and (min-width: 769px) {
  .contact__list:before {
    border-width: 40px 0 40px 20px;
  }
}
.contact__list:after {
  content: "";
  position: absolute;
  right: -16px;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 34px 0 34px 16px;
  border-color: transparent transparent transparent #eaf3f5;
}
@media screen and (min-width: 769px) {
  .contact__list:after {
    border-width: 40px 0 40px 20px;
    right: -20px;
  }
}
.contact__item {
  width: 92px;
  height: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #eaf3f5;
  font-size: 16px;
  font-weight: bold;
  color: #868686;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
@media screen and (min-width: 769px) {
  .contact__item {
    width: 132px;
    height: 80px;
  }
}
.contact__item:not(:last-of-type):before {
  content: "";
  position: absolute;
  right: -16px;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 34px 0 34px 16px;
  border-color: transparent transparent transparent #20b4ce;
  z-index: 10;
}
@media screen and (min-width: 769px) {
  .contact__item:not(:last-of-type):before {
    border-width: 40px 0 40px 20px;
    right: -20px;
  }
}
.contact__item:after {
  content: "";
  position: absolute;
  right: -15px;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 34px 0 34px 16px;
  border-color: transparent transparent transparent #eaf3f5;
  z-index: 10;
}
@media screen and (min-width: 769px) {
  .contact__item:after {
    border-width: 40px 0 40px 20px;
    right: -19px;
  }
}
.contact__item.is-active {
  background: #20b4ce;
  color: #fff;
}
.contact__item.is-active:before {
  content: "";
  position: absolute;
  right: -15px;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 34px 0 34px 16px;
  border-color: transparent transparent transparent #20b4ce;
  z-index: 11;
}
@media screen and (min-width: 769px) {
  .contact__item.is-active:before {
    border-width: 40px 0 40px 20px;
    right: -19px;
  }
}
.contact__form {
  margin-top: 30px;
}
@media screen and (min-width: 769px) {
  .contact__form {
    margin-top: 40px;
  }
}
.contact__form .wpcf7-not-valid-tip {
  text-align: left;
  margin-top: 5px;
  font-size: 14px;
}
.contact__form__item:not(:first-of-type) {
  margin-top: 30px;
}
.contact__form__item input {
  width: 100%;
  height: 52px;
  border: none;
  background: #eee;
  border-radius: 4px;
  font-size: 14px;
  padding-left: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 10px;
}
@media screen and (min-width: 769px) {
  .contact__form__item input {
    height: 56px;
    font-size: 16px;
  }
}
.contact__form__item textarea {
  width: 100%;
  height: 100px;
  border: none;
  background: #eee;
  border-radius: 4px;
  font-size: 14px;
  padding-left: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 10px;
}
@media screen and (min-width: 769px) {
  .contact__form__item textarea {
    height: 150px;
    font-size: 16px;
  }
}
.contact__form__item__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .contact__form__item__head {
    font-size: 20px;
  }
}
.contact__form__item__head span {
  background: #ffd84d;
  font-size: 12px;
  padding: 3px 8px;
  margin-left: 10px;
}
.contact__form__button__confirm {
  width: 240px;
  height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #707070;
  border-radius: 40px;
  color: #707070;
  font-size: 14px;
  margin: 40px auto 0;
  background: #fff;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.contact__form__button__confirm:hover {
  opacity: 0.8;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 769px) {
  .contact__form__button__confirm {
    width: 320px;
    height: 80px;
    font-size: 16px;
  }
}
.contact__form__button__submit {
  width: 240px;
  height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #20b4ce;
  border-radius: 40px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  margin: 40px auto 0;
  background-color: #20b4ce !important;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.contact__form__button__submit:hover {
  opacity: 0.8;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 769px) {
  .contact__form__button__submit {
    width: 320px;
    height: 80px;
    font-size: 22px;
  }
}
.contact__desc {
  font-size: 14px;
  text-align: left;
  margin-top: 30px;
  line-height: 1.8;
}
@media screen and (min-width: 769px) {
  .contact__desc {
    text-align: center;
    margin-top: 60px;
    font-size: 18px;
  }
}
.contact__back {
  text-align: center;
  color: #20b4ce;
  text-decoration: underline !important;
  font-size: 18px;
  font-weight: bold;
  margin-top: 40px;
  display: inline-block;
}
@media screen and (min-width: 769px) {
  .contact__back {
    font-size: 20px;
  }
}
.contentMv {
  background-image: url("../img/mv_bg_sp.png");
  background-size: cover;
  padding: 40px 0;
  margin-top: 60px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .contentMv {
    background-image: url("../img/mv_bg_pc.png");
    margin-top: 80px;
    position: relative;
    padding: 9vw 0 10vw;
  }
}
.contentMv__inner {
  padding: 0 25px;
}
@media screen and (min-width: 769px) {
  .contentMv__inner {
    max-width: 1000px;
    margin: auto;
  }
}
@media screen and (min-width: 769px) {
  .contentMv__box {
    text-align: left;
  }
}
.contentMv__title {
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.5;
  position: relative;
}
@media screen and (min-width: 769px) {
  .contentMv__title {
    font-size: 55px;
  }
}
@media screen and (max-width: 370px) {
  .contentMv__title {
    font-size: 30px;
  }
}
@media screen and (min-width: 834px) and (max-width: 1024px) {
  .contentMv__title {
    font-size: 45px;
  }
}
.contentMv__title span {
  position: relative;
}
.contentMv__title span:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -15px;
  margin: auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}
.contentMv__foot {
  font-size: 22px;
  color: #fff;
  font-weight: bold;
  margin-top: 15px;
}
@media screen and (min-width: 769px) {
  .contentMv__foot {
    font-size: 28px;
    margin-top: 25px;
  }
}
@media screen and (max-width: 370px) {
  .contentMv__foot {
    font-size: 18px;
  }
}
.contentMv__img {
  width: 100%;
  margin-top: 15px;
}
@media screen and (min-width: 769px) {
  .contentMv__img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 40vw;
  }
}
.contentMv__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 280px;
  height: 56px;
  background: #ffd84d;
  border-radius: 45px;
  color: #333;
  margin: 15px auto 0;
  font-size: 18px;
  font-weight: bold;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.contentMv__btn:hover {
  opacity: 0.8;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 769px) {
  .contentMv__btn {
    width: 340px;
    height: 64px;
    margin: 0;
    margin-top: 60px;
    font-size: 22px;
  }
}
.contentMv__btn img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 10px;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .contentMv__btn img {
    width: 16px;
  }
}
.contentAbout {
  text-align: center;
  padding: 40px 0;
}
@media screen and (min-width: 769px) {
  .contentAbout {
    padding: 80px 0;
  }
}
.contentAbout__inner {
  padding: 0 24px;
}
@media screen and (min-width: 769px) {
  .contentAbout__inner {
    max-width: 1100px;
    margin: auto;
  }
}
.contentAbout__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 22px;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .contentAbout__title {
    font-size: 28px;
  }
}
.contentAbout__title img {
  width: 240px;
}
@media screen and (min-width: 769px) {
  .contentAbout__title img {
    width: 280px;
  }
}
@media screen and (max-width: 370px) {
  .contentAbout__title img {
    width: 200px;
  }
}
.contentAbout__desc {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 30px;
}
@media screen and (min-width: 769px) {
  .contentAbout__desc {
    font-size: 18px;
    margin-top: 40px;
  }
}
.contentAbout__desc strong {
  background: #fff5b3;
  font-weight: bold;
}
.contentAbout__desc strong.blue {
  color: #006bcf;
}
.contentAbout__img {
  width: 100%;
  margin-top: 30px;
}
@media screen and (min-width: 769px) {
  .contentAbout__img {
    margin-top: 60px;
  }
}
.contentReco {
  background-image: url("../img/reco_bg_sp.png");
  background-size: cover;
  padding: 40px 0;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .contentReco {
    background-image: url("../img/reco_bg_pc.png");
    padding: 80px 0;
  }
}
.contentReco__inner {
  padding: 0 25px;
}
@media screen and (min-width: 769px) {
  .contentReco__inner {
    max-width: 900px;
    margin: auto;
  }
}
.contentReco__title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.8;
}
@media screen and (min-width: 769px) {
  .contentReco__title {
    font-size: 32px;
  }
}
.contentReco__list {
  margin-top: 20px;
}
@media screen and (min-width: 769px) {
  .contentReco__list {
    margin-top: 40px;
  }
}
.contentReco__item {
  background: #fff;
  -webkit-box-shadow: 0 0 10px rgba(20, 40, 128, .3);
          box-shadow: 0 0 10px rgba(20, 40, 128, .3);
  border-radius: 20px;
  padding: 20px;
}
@media screen and (min-width: 769px) {
  .contentReco__item {
    padding: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.contentReco__item:not(:first-of-type) {
  margin-top: 40px;
}
@media screen and (min-width: 769px) {
  .contentReco__item:not(:first-of-type) {
    margin-top: 20px;
  }
}
@media screen and (min-width: 769px) {
  .contentReco__left {
    width: 300px;
  }
}
.contentReco__left__head {
  background: #20b4ce;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 0;
  position: relative;
}
@media screen and (min-width: 769px) {
  .contentReco__left__head {
    font-size: 24px;
    padding: 15px 0;
  }
}
.contentReco__left__head:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -14px;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 12px 0 12px;
  border-color: #20b4ce transparent transparent transparent;
}
.contentReco__left__img {
  width: 140px;
  margin-top: 30px;
}
@media screen and (min-width: 769px) {
  .contentReco__left__img {
    width: 230px;
  }
}
@media screen and (min-width: 769px) {
  .contentReco__right {
    width: calc(100% - 320px);
  }
}
.contentReco__right__worries {
  margin-top: 16px;
}
@media screen and (min-width: 769px) {
  .contentReco__right__worries {
    margin-top: 0;
    text-align: left;
  }
}
.contentReco__right__worries__head {
  background: #e2e2e2;
  padding: 14px 0;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .contentReco__right__worries__head {
    display: inline-block;
    padding: 18px;
  }
}
.contentReco__right__worries__text {
  font-size: 14px;
  text-align: left;
  margin-top: 10px;
  line-height: 1.8;
}
@media screen and (min-width: 769px) {
  .contentReco__right__worries__text {
    font-size: 16px;
    margin-top: 15px;
  }
}
.contentReco__right__solution {
  margin-top: 16px;
}
@media screen and (min-width: 769px) {
  .contentReco__right__solution {
    margin-top: 20px;
    text-align: left;
  }
}
.contentReco__right__solution__head {
  background: #ffd84d;
  padding: 14px 0;
  font-size: 16px;
  font-weight: bold;
  position: relative;
}
@media screen and (min-width: 769px) {
  .contentReco__right__solution__head {
    display: inline-block;
    padding: 18px;
  }
}
.contentReco__right__solution__head img {
  display: none;
}
@media screen and (min-width: 769px) {
  .contentReco__right__solution__head img {
    display: block;
    position: absolute;
    width: 30px;
    top: 0;
    bottom: 0;
    right: -35px;
    margin: auto;
  }
}
.contentReco__right__solution__text {
  text-align: left;
  font-size: 14px;
  line-height: 1.8;
  margin-top: 10px;
}
@media screen and (min-width: 769px) {
  .contentReco__right__solution__text {
    font-size: 16px;
    margin-top: 20px;
  }
}
.contentReco__right__solution__text strong {
  font-size: 18px;
  font-weight: bold;
  background: #fff5b3;
}
@media screen and (min-width: 769px) {
  .contentReco__right__solution__text strong {
    font-size: 20px;
  }
}
.contentFeature {
  padding: 40px 0 100px;
  background-image: url("../img/feature_bg_sp.png");
  background-size: cover;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .contentFeature {
    background-image: url("../img/feature_bg_pc.png");
    padding: 80px 0 100px;
  }
}
.contentFeature__inner {
  padding: 0 23px;
}
@media screen and (min-width: 769px) {
  .contentFeature__inner {
    max-width: 1050px;
    margin: auto;
  }
}
.contentFeature__title {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  line-height: 1.3;
}
.contentFeature__title span {
  font-size: 28px;
  margin-bottom: -30px;
}
.contentFeature__title .three {
  display: inline;
  text-stroke: 2px #fff;
  -webkit-text-stroke: 2px #fff;
  color: #ffd84d;
  font-size: 63px;
  font-weight: bold;
  margin-right: 5px;
}
.contentFeature__title .logo {
  width: 220px;
  margin-bottom: -15px;
}
.contentFeature__list {
  margin-top: 20px;
}
@media screen and (min-width: 769px) {
  .contentFeature__list {
    margin-top: 80px;
  }
}
.contentFeature__item,
.contentFeature__item--sec {
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 769px) {
  .contentFeature__item,
  .contentFeature__item--sec {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.contentFeature__item:not(:first-of-type),
.contentFeature__item--sec:not(:first-of-type) {
  margin-top: 110px;
}
@media screen and (min-width: 769px) {
  .contentFeature__item--sec {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width: 769px) {
  .contentFeature__item--sec .contentFeature__item__bg {
    right: 50px;
    left: auto;
  }
}
.contentFeature__item__bg {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 300px;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .contentFeature__item__bg {
    max-width: 330px;
    top: 120px;
    left: 50px;
  }
}
.contentFeature__item__img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .contentFeature__item__img {
    width: 50%;
    margin-top: 58px;
  }
}
.contentFeature__item__box {
  margin-top: -55px;
}
@media screen and (min-width: 769px) {
  .contentFeature__item__box {
    width: 45%;
  }
}
.contentFeature__item__num {
  font-size: 80px;
  font-weight: bold;
  text-stroke: 2px #20b4ce;
  -webkit-text-stroke: 2px #20b4ce;
  color: #fff;
  text-align: left;
}
@media screen and (min-width: 769px) {
  .contentFeature__item__num {
    font-size: 120px;
    text-stroke: inherit;
    -webkit-text-stroke: inherit;
    position: relative;
    z-index: 10;
  }
}
.contentFeature__item__head {
  background: #fff;
  color: #188699;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.8;
  padding: 10px 0;
  -webkit-box-shadow: 0 0 10px rgba(20, 40, 128, .3);
          box-shadow: 0 0 10px rgba(20, 40, 128, .3);
  margin-top: -8px;
  position: relative;
}
@media screen and (min-width: 769px) {
  .contentFeature__item__head {
    font-size: 28px;
  }
}
.contentFeature__item__desc {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.8;
  text-align: left;
  color: #fff;
  margin-top: 30px;
}
@media screen and (min-width: 769px) {
  .contentFeature__item__desc {
    font-size: 16px;
  }
}
.contentFeature__item__desc span {
  font-size: 12px;
}
@media screen and (min-width: 769px) {
  .contentFeature__item__desc span {
    font-size: 14px;
  }
}
.contentVoice {
  background-image: url("../img/voice_bg_sp.png");
  background-size: cover;
  padding: 40px 0;
}
@media screen and (min-width: 769px) {
  .contentVoice {
    background-image: url("../img/voice_bg_pc.png");
    padding: 80px 0;
  }
}
.contentVoice__inner {
  padding: 0 13vw;
}
@media screen and (min-width: 769px) {
  .contentVoice__inner {
    max-width: 850px;
    margin: auto;
    padding: 0;
  }
}
.contentVoice__title {
  font-size: 24px;
  color: #188699;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .contentVoice__title {
    font-size: 32px;
  }
}
.contentVoice__list {
  margin-top: 30px;
}
@media screen and (min-width: 769px) {
  .contentVoice__list {
    margin-top: 40px;
  }
}
@media screen and (min-width: 769px) {
  .contentVoice__item__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.contentVoice__item__img {
  width: 100%;
  height: 55vw;
  display: block !important;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 769px) {
  .contentVoice__item__img {
    width: 350px;
    height: 350px;
  }
}
.contentVoice__item__box {
  background: #fff;
  padding-bottom: 40px;
}
@media screen and (min-width: 769px) {
  .contentVoice__item__box {
    width: calc(100% - 350px);
  }
}
.contentVoice__item__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .contentVoice__item__tag {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin: 0 20px;
  }
}
.contentVoice__item__tag__item {
  background: #20b4ce;
  border-radius: 0 0 10px 10px;
  color: #fff;
  width: 49%;
  text-align: center;
  padding: 4px 0;
  font-size: 12px;
}
@media screen and (min-width: 769px) {
  .contentVoice__item__tag__item {
    width: 170px;
    margin-right: 10px;
    font-size: 14px;
    padding: 8px 0;
  }
}
.contentVoice__item__head {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin: 20px 10px 0;
}
@media screen and (min-width: 769px) {
  .contentVoice__item__head {
    font-size: 28px;
    text-align: left;
    margin: 40px 20px 0;
  }
}
.contentVoice__item__desc {
  font-size: 14px;
  text-align: left;
  line-height: 1.8;
  margin: 15px 10px 0;
  min-height: 200px;
}
@media screen and (min-width: 769px) {
  .contentVoice__item__desc {
    font-size: 16px;
    margin: 20px 20px 0;
    min-height: 157px;
  }
}
.contentVoice__item__logo {
  text-align: right;
  margin-top: 10px;
  margin-right: 10px;
}
.contentVoice__item__logo img {
  height: 25px;
}
.contentFlow {
  background: #fffdf7;
  padding: 40px 0;
}
@media screen and (min-width: 769px) {
  .contentFlow {
    padding: 80px 0;
  }
}
.contentFlow__inner {
  padding: 0 25px;
}
@media screen and (min-width: 769px) {
  .contentFlow__inner {
    max-width: 900px;
    margin: auto;
  }
}
.contentFlow__title {
  font-size: 24px;
  font-weight: bold;
  color: #20b4ce;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .contentFlow__title {
    font-size: 32px;
  }
}
.contentFlow__list {
  margin-top: 30px;
}
.contentFlow__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 16px;
  background: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 10px rgba(20, 40, 128, .3);
          box-shadow: 0 0 10px rgba(20, 40, 128, .3);
  position: relative;
}
@media screen and (min-width: 769px) {
  .contentFlow__item {
    padding: 15px 40px;
  }
}
.contentFlow__item:not(:first-of-type) {
  margin-top: 30px;
}
@media screen and (min-width: 769px) {
  .contentFlow__item:not(:first-of-type) {
    margin-top: 45px;
  }
}
.contentFlow__item__num,
.contentFlow__item__num--sec {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #20b4ce;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 10px;
  font-weight: bold;
  padding-top: 5px;
}
@media screen and (min-width: 769px) {
  .contentFlow__item__num,
  .contentFlow__item__num--sec {
    width: 64px;
    height: 64px;
    font-size: 14px;
    padding-top: 2px;
  }
}
.contentFlow__item__num span,
.contentFlow__item__num--sec span {
  font-size: 20px;
}
@media screen and (min-width: 769px) {
  .contentFlow__item__num span,
  .contentFlow__item__num--sec span {
    font-size: 22px;
  }
}
.contentFlow__item__num--sec {
  background: #ffd84d;
  color: #333;
}
.contentFlow__item__text {
  font-size: 16px;
  font-weight: bold;
  margin-left: 10px;
  width: calc(100% - 60px);
  line-height: 1.8;
}
@media screen and (min-width: 769px) {
  .contentFlow__item__text {
    font-size: 20px;
    margin-left: 20px;
  }
}
.contentFlow__item__text span {
  position: relative;
  padding-left: 13px;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.7;
  margin-top: 5px;
  display: block;
}
@media screen and (min-width: 769px) {
  .contentFlow__item__text span {
    font-size: 14px;
  }
}
.contentFlow__item__text span:before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 12px;
}
.contentFlow__item__arw {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -22px;
  margin: auto;
  width: 24px;
}
@media screen and (min-width: 769px) {
  .contentFlow__item__arw {
    bottom: -29px;
  }
}
.contentFee {
  background: #f2fbfc;
  padding: 40px 0;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .contentFee {
    padding: 80px 0;
  }
}
.contentFee__inner {
  padding: 0 25px;
}
@media screen and (min-width: 769px) {
  .contentFee__inner {
    max-width: 900px;
    margin: auto;
  }
}
.contentFee__title {
  color: #20b4ce;
  font-size: 24px;
  font-weight: bold;
}
.contentFee__box {
  margin-top: 30px;
}
.contentFee__box__item {
  border: 1px solid #188699;
}
@media screen and (min-width: 769px) {
  .contentFee__box__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 75px;
  }
}
.contentFee__box__head {
  background: #20b4ce;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 0;
  border-bottom: 1px solid #188699;
}
@media screen and (min-width: 769px) {
  .contentFee__box__head {
    font-size: 20px;
    width: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
  }
}
.contentFee__box__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  padding: 12px 0;
}
@media screen and (min-width: 769px) {
  .contentFee__box__text {
    width: 70%;
  }
}
.contentFee__box__text span {
  font-size: 28px;
  font-weight: bold;
  color: #006bcf;
  background: #fff5b3;
  padding: 5px;
}
@media screen and (min-width: 769px) {
  .contentFee__box__text span {
    font-size: 36px;
  }
}
.contentFee__box__foot {
  font-size: 14px;
  margin-top: 20px;
  text-align: center;
  line-height: 1.8;
}
@media screen and (min-width: 769px) {
  .contentFee__box__foot {
    font-size: 16px;
  }
}
.contentFee__box__foot strong {
  font-weight: bold;
  background: #fff5b3;
}
.contentFee__spList {
  margin-top: 40px;
}
@media screen and (min-width: 769px) {
  .contentFee__spList {
    display: none;
  }
}
.contentFee__spList__title {
  background: #20b4ce;
  border: 1px solid #188699;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.8;
  padding: 10px 0;
}
.contentFee__spList__box {
  margin-top: 20px;
  border: 1px solid #188699;
  border-top: none;
}
.contentFee__spList__head {
  background: #1d9cb3;
  border-top: 1px solid #188699;
  border-bottom: 1px solid #188699;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 0;
}
.contentFee__spList__text,
.contentFee__spList__text--sec {
  background: #fff;
  padding: 18px 0;
  font-size: 14px;
}
.contentFee__spList__text--sec {
  background: #c6f2f7;
  font-weight: bold;
}
.contentFee__pcList {
  border: 1px solid #178599;
  width: 100%;
  margin-top: 60px;
}
.contentFee__pcList td {
  border: 1px solid #178599;
}
.contentFee__pcList td[colspan='3'] {
  background: #20b4ce;
  color: #fff;
  text-align: center;
  padding: 25px 0;
  font-size: 20px;
  font-weight: bold;
  border: 1px solid #178599;
}
.contentFee__pcList th {
  background: #1d9cb3;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  padding: 20px 0;
  border: 1px solid #178599;
}
.contentFee__pcList tr:not(:first-of-type) td {
  background: #fff;
  font-size: 16px;
  text-align: center;
  padding: 18px 0;
}
.contentFee__pcList tr:not(:first-of-type) td:first-of-type {
  background: #c6f2f7;
  font-size: 16px;
  font-weight: bold;
  border: 1px solid #178599;
  width: 35%;
}
.contentFee__pcList tr:not(:first-of-type) td:nth-of-type(2) {
  width: 25%;
}
.contentFee__pcList tr:not(:first-of-type) td:nth-of-type(3) {
  width: 40%;
}
.contentFaq {
  background: #f7f7f7;
  padding: 40px 0;
}
@media screen and (min-width: 769px) {
  .contentFaq {
    padding: 73px 0 80px;
  }
}
.contentFaq__inner {
  padding: 0 25px;
}
@media screen and (min-width: 769px) {
  .contentFaq__inner {
    max-width: 1000px;
    margin: auto;
  }
}
.contentFaq__title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .contentFaq__title {
    font-size: 32px;
  }
}
.contentFaq__list {
  margin-top: 30px;
}
@media screen and (min-width: 769px) {
  .contentFaq__list {
    margin-top: 50px;
  }
}
.contentFaq__item {
  background: #fff;
  border-radius: 10px;
  padding: 16px 12px;
}
.contentFaq__item:not(:first-of-type) {
  margin-top: 10px;
}
.contentFaq__item__q {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  cursor: pointer;
}
.contentFaq__item__q.is-active .contentFaq__item__q__plus:before {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.contentFaq__item__q__icon {
  width: 32px;
  height: 32px;
}
@media screen and (min-width: 769px) {
  .contentFaq__item__q__icon {
    width: 60px;
    height: 60px;
  }
}
.contentFaq__item__q__text {
  font-size: 16px;
  line-height: 1.8;
  padding-top: 2px;
  margin-left: 10px;
  width: calc(100% - 90px);
}
@media screen and (min-width: 769px) {
  .contentFaq__item__q__text {
    font-size: 18px;
    margin-left: 20px;
    padding-top: 13px;
  }
}
.contentFaq__item__a {
  display: none;
}
.contentFaq__item__a__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
}
@media screen and (min-width: 769px) {
  .contentFaq__item__a__inner {
    margin-top: 40px;
  }
}
.contentFaq__item__a__icon {
  width: 32px;
  height: 32px;
}
@media screen and (min-width: 769px) {
  .contentFaq__item__a__icon {
    width: 60px;
    height: 60px;
  }
}
.contentFaq__item__a__text {
  font-size: 14px;
  line-height: 1.8;
  margin-left: 10px;
  padding-top: 2px;
}
@media screen and (min-width: 769px) {
  .contentFaq__item__a__text {
    font-size: 16px;
    margin-left: 20px;
    padding-top: 2px;
  }
}
.contentFaq__item__q__plus {
  display: inline-block;
  position: absolute;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .contentFaq__item__q__plus {
    width: 24px;
    height: 24px;
  }
}
.contentFaq__item__q__plus:before,
.contentFaq__item__q__plus:after {
  display: block;
  content: '';
  background-color: #20b4ce;
  border-radius: 10px;
  position: absolute;
  width: 12px;
  height: 3px;
  top: 7px;
  left: 0;
}
@media screen and (min-width: 769px) {
  .contentFaq__item__q__plus:before,
  .contentFaq__item__q__plus:after {
    width: 24px;
    height: 5px;
  }
}
.contentFaq__item__q__plus:before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.contentCta {
  background-image: url("../img/cta_bg_sp.png");
  background-size: cover;
  padding: 40px 0 60px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .contentCta {
    background-image: url("../img/cta_bg_pc.png");
    padding: 60px 0 80px;
  }
}
@media screen and (min-width: 769px) {
  .contentCta__inner {
    max-width: 1000px;
    margin: auto;
    position: relative;
    text-align: left;
  }
}
.contentCta__title {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
}
@media screen and (min-width: 769px) {
  .contentCta__title {
    font-size: 36px;
  }
}
@media screen and (min-width: 834px) and (max-width: 1024px) {
  .contentCta__title {
    font-size: 30px;
  }
}
.contentCta__logo {
  width: 280px;
  margin-top: 10px;
}
@media screen and (min-width: 769px) {
  .contentCta__logo {
    width: 320px;
    margin-top: 20px;
  }
}
.contentCta__img {
  width: 100%;
  max-width: 300px;
  margin: 25px auto 0;
}
@media screen and (min-width: 769px) {
  .contentCta__img {
    position: absolute;
    right: 0;
    top: 0;
    max-width: 550px;
    margin-top: 0;
    margin-right: -50px;
  }
}
.contentCta__btn {
  width: 280px;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ffd84d;
  border-radius: 45px;
  -webkit-box-shadow: 0, 0, 20px rgba(20, 40, 128, .3);
          box-shadow: 0, 0, 20px rgba(20, 40, 128, .3);
  margin: 30px auto 0;
  color: #333;
  font-size: 18px;
  font-weight: bold;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.contentCta__btn:hover {
  opacity: 0.8;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 769px) {
  .contentCta__btn {
    margin: 0;
    margin-top: 30px;
    width: 340px;
    height: 64px;
  }
}
.contentCta__btn img {
  width: 10px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
}
.u-mt5 {
  margin-top: 5px;
}
.u-mt25--sp {
  margin-top: 25px;
}
@media screen and (min-width: 769px) {
  .u-mt25--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt25--pc {
    margin-top: 25px;
  }
}
.u-mb5 {
  margin-bottom: 5px;
}
.u-mr5 {
  margin-right: 5px;
}
.u-ml5 {
  margin-left: 5px;
}
.u-mt10 {
  margin-top: 10px;
}
.u-mt50--sp {
  margin-top: 50px;
}
@media screen and (min-width: 769px) {
  .u-mt50--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt50--pc {
    margin-top: 50px;
  }
}
.u-mb10 {
  margin-bottom: 10px;
}
.u-mr10 {
  margin-right: 10px;
}
.u-ml10 {
  margin-left: 10px;
}
.u-mt15 {
  margin-top: 15px;
}
.u-mt75--sp {
  margin-top: 75px;
}
@media screen and (min-width: 769px) {
  .u-mt75--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt75--pc {
    margin-top: 75px;
  }
}
.u-mb15 {
  margin-bottom: 15px;
}
.u-mr15 {
  margin-right: 15px;
}
.u-ml15 {
  margin-left: 15px;
}
.u-mt20 {
  margin-top: 20px;
}
.u-mt100--sp {
  margin-top: 100px;
}
@media screen and (min-width: 769px) {
  .u-mt100--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt100--pc {
    margin-top: 100px;
  }
}
.u-mb20 {
  margin-bottom: 20px;
}
.u-mr20 {
  margin-right: 20px;
}
.u-ml20 {
  margin-left: 20px;
}
.u-mt25 {
  margin-top: 25px;
}
.u-mt125--sp {
  margin-top: 125px;
}
@media screen and (min-width: 769px) {
  .u-mt125--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt125--pc {
    margin-top: 125px;
  }
}
.u-mb25 {
  margin-bottom: 25px;
}
.u-mr25 {
  margin-right: 25px;
}
.u-ml25 {
  margin-left: 25px;
}
.u-mt30 {
  margin-top: 30px;
}
.u-mt150--sp {
  margin-top: 150px;
}
@media screen and (min-width: 769px) {
  .u-mt150--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt150--pc {
    margin-top: 150px;
  }
}
.u-mb30 {
  margin-bottom: 30px;
}
.u-mr30 {
  margin-right: 30px;
}
.u-ml30 {
  margin-left: 30px;
}
.u-mt35 {
  margin-top: 35px;
}
.u-mt175--sp {
  margin-top: 175px;
}
@media screen and (min-width: 769px) {
  .u-mt175--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt175--pc {
    margin-top: 175px;
  }
}
.u-mb35 {
  margin-bottom: 35px;
}
.u-mr35 {
  margin-right: 35px;
}
.u-ml35 {
  margin-left: 35px;
}
.u-mt40 {
  margin-top: 40px;
}
.u-mt200--sp {
  margin-top: 200px;
}
@media screen and (min-width: 769px) {
  .u-mt200--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt200--pc {
    margin-top: 200px;
  }
}
.u-mb40 {
  margin-bottom: 40px;
}
.u-mr40 {
  margin-right: 40px;
}
.u-ml40 {
  margin-left: 40px;
}
.u-mt45 {
  margin-top: 45px;
}
.u-mt225--sp {
  margin-top: 225px;
}
@media screen and (min-width: 769px) {
  .u-mt225--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt225--pc {
    margin-top: 225px;
  }
}
.u-mb45 {
  margin-bottom: 45px;
}
.u-mr45 {
  margin-right: 45px;
}
.u-ml45 {
  margin-left: 45px;
}
.u-mt50 {
  margin-top: 50px;
}
.u-mt250--sp {
  margin-top: 250px;
}
@media screen and (min-width: 769px) {
  .u-mt250--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt250--pc {
    margin-top: 250px;
  }
}
.u-mb50 {
  margin-bottom: 50px;
}
.u-mr50 {
  margin-right: 50px;
}
.u-ml50 {
  margin-left: 50px;
}
.u-mt55 {
  margin-top: 55px;
}
.u-mt275--sp {
  margin-top: 275px;
}
@media screen and (min-width: 769px) {
  .u-mt275--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt275--pc {
    margin-top: 275px;
  }
}
.u-mb55 {
  margin-bottom: 55px;
}
.u-mr55 {
  margin-right: 55px;
}
.u-ml55 {
  margin-left: 55px;
}
.u-mt60 {
  margin-top: 60px;
}
.u-mt300--sp {
  margin-top: 300px;
}
@media screen and (min-width: 769px) {
  .u-mt300--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt300--pc {
    margin-top: 300px;
  }
}
.u-mb60 {
  margin-bottom: 60px;
}
.u-mr60 {
  margin-right: 60px;
}
.u-ml60 {
  margin-left: 60px;
}
.u-mt65 {
  margin-top: 65px;
}
.u-mt325--sp {
  margin-top: 325px;
}
@media screen and (min-width: 769px) {
  .u-mt325--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt325--pc {
    margin-top: 325px;
  }
}
.u-mb65 {
  margin-bottom: 65px;
}
.u-mr65 {
  margin-right: 65px;
}
.u-ml65 {
  margin-left: 65px;
}
.u-mt70 {
  margin-top: 70px;
}
.u-mt350--sp {
  margin-top: 350px;
}
@media screen and (min-width: 769px) {
  .u-mt350--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt350--pc {
    margin-top: 350px;
  }
}
.u-mb70 {
  margin-bottom: 70px;
}
.u-mr70 {
  margin-right: 70px;
}
.u-ml70 {
  margin-left: 70px;
}
.u-mt75 {
  margin-top: 75px;
}
.u-mt375--sp {
  margin-top: 375px;
}
@media screen and (min-width: 769px) {
  .u-mt375--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt375--pc {
    margin-top: 375px;
  }
}
.u-mb75 {
  margin-bottom: 75px;
}
.u-mr75 {
  margin-right: 75px;
}
.u-ml75 {
  margin-left: 75px;
}
.u-mt80 {
  margin-top: 80px;
}
.u-mt400--sp {
  margin-top: 400px;
}
@media screen and (min-width: 769px) {
  .u-mt400--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt400--pc {
    margin-top: 400px;
  }
}
.u-mb80 {
  margin-bottom: 80px;
}
.u-mr80 {
  margin-right: 80px;
}
.u-ml80 {
  margin-left: 80px;
}
.u-mt85 {
  margin-top: 85px;
}
.u-mt425--sp {
  margin-top: 425px;
}
@media screen and (min-width: 769px) {
  .u-mt425--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt425--pc {
    margin-top: 425px;
  }
}
.u-mb85 {
  margin-bottom: 85px;
}
.u-mr85 {
  margin-right: 85px;
}
.u-ml85 {
  margin-left: 85px;
}
.u-mt90 {
  margin-top: 90px;
}
.u-mt450--sp {
  margin-top: 450px;
}
@media screen and (min-width: 769px) {
  .u-mt450--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt450--pc {
    margin-top: 450px;
  }
}
.u-mb90 {
  margin-bottom: 90px;
}
.u-mr90 {
  margin-right: 90px;
}
.u-ml90 {
  margin-left: 90px;
}
.u-mt95 {
  margin-top: 95px;
}
.u-mt475--sp {
  margin-top: 475px;
}
@media screen and (min-width: 769px) {
  .u-mt475--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt475--pc {
    margin-top: 475px;
  }
}
.u-mb95 {
  margin-bottom: 95px;
}
.u-mr95 {
  margin-right: 95px;
}
.u-ml95 {
  margin-left: 95px;
}
.u-mt100 {
  margin-top: 100px;
}
.u-mt500--sp {
  margin-top: 500px;
}
@media screen and (min-width: 769px) {
  .u-mt500--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt500--pc {
    margin-top: 500px;
  }
}
.u-mb100 {
  margin-bottom: 100px;
}
.u-mr100 {
  margin-right: 100px;
}
.u-ml100 {
  margin-left: 100px;
}
.u-mt105 {
  margin-top: 105px;
}
.u-mt525--sp {
  margin-top: 525px;
}
@media screen and (min-width: 769px) {
  .u-mt525--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt525--pc {
    margin-top: 525px;
  }
}
.u-mb105 {
  margin-bottom: 105px;
}
.u-mr105 {
  margin-right: 105px;
}
.u-ml105 {
  margin-left: 105px;
}
.u-mt110 {
  margin-top: 110px;
}
.u-mt550--sp {
  margin-top: 550px;
}
@media screen and (min-width: 769px) {
  .u-mt550--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt550--pc {
    margin-top: 550px;
  }
}
.u-mb110 {
  margin-bottom: 110px;
}
.u-mr110 {
  margin-right: 110px;
}
.u-ml110 {
  margin-left: 110px;
}
.u-mt115 {
  margin-top: 115px;
}
.u-mt575--sp {
  margin-top: 575px;
}
@media screen and (min-width: 769px) {
  .u-mt575--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt575--pc {
    margin-top: 575px;
  }
}
.u-mb115 {
  margin-bottom: 115px;
}
.u-mr115 {
  margin-right: 115px;
}
.u-ml115 {
  margin-left: 115px;
}
.u-mt120 {
  margin-top: 120px;
}
.u-mt600--sp {
  margin-top: 600px;
}
@media screen and (min-width: 769px) {
  .u-mt600--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt600--pc {
    margin-top: 600px;
  }
}
.u-mb120 {
  margin-bottom: 120px;
}
.u-mr120 {
  margin-right: 120px;
}
.u-ml120 {
  margin-left: 120px;
}
.u-mt125 {
  margin-top: 125px;
}
.u-mt625--sp {
  margin-top: 625px;
}
@media screen and (min-width: 769px) {
  .u-mt625--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt625--pc {
    margin-top: 625px;
  }
}
.u-mb125 {
  margin-bottom: 125px;
}
.u-mr125 {
  margin-right: 125px;
}
.u-ml125 {
  margin-left: 125px;
}
.u-mt130 {
  margin-top: 130px;
}
.u-mt650--sp {
  margin-top: 650px;
}
@media screen and (min-width: 769px) {
  .u-mt650--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt650--pc {
    margin-top: 650px;
  }
}
.u-mb130 {
  margin-bottom: 130px;
}
.u-mr130 {
  margin-right: 130px;
}
.u-ml130 {
  margin-left: 130px;
}
.u-mt135 {
  margin-top: 135px;
}
.u-mt675--sp {
  margin-top: 675px;
}
@media screen and (min-width: 769px) {
  .u-mt675--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt675--pc {
    margin-top: 675px;
  }
}
.u-mb135 {
  margin-bottom: 135px;
}
.u-mr135 {
  margin-right: 135px;
}
.u-ml135 {
  margin-left: 135px;
}
.u-mt140 {
  margin-top: 140px;
}
.u-mt700--sp {
  margin-top: 700px;
}
@media screen and (min-width: 769px) {
  .u-mt700--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt700--pc {
    margin-top: 700px;
  }
}
.u-mb140 {
  margin-bottom: 140px;
}
.u-mr140 {
  margin-right: 140px;
}
.u-ml140 {
  margin-left: 140px;
}
.u-mt145 {
  margin-top: 145px;
}
.u-mt725--sp {
  margin-top: 725px;
}
@media screen and (min-width: 769px) {
  .u-mt725--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt725--pc {
    margin-top: 725px;
  }
}
.u-mb145 {
  margin-bottom: 145px;
}
.u-mr145 {
  margin-right: 145px;
}
.u-ml145 {
  margin-left: 145px;
}
.u-mt150 {
  margin-top: 150px;
}
.u-mt750--sp {
  margin-top: 750px;
}
@media screen and (min-width: 769px) {
  .u-mt750--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt750--pc {
    margin-top: 750px;
  }
}
.u-mb150 {
  margin-bottom: 150px;
}
.u-mr150 {
  margin-right: 150px;
}
.u-ml150 {
  margin-left: 150px;
}
.u-mt155 {
  margin-top: 155px;
}
.u-mt775--sp {
  margin-top: 775px;
}
@media screen and (min-width: 769px) {
  .u-mt775--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt775--pc {
    margin-top: 775px;
  }
}
.u-mb155 {
  margin-bottom: 155px;
}
.u-mr155 {
  margin-right: 155px;
}
.u-ml155 {
  margin-left: 155px;
}
.u-mt160 {
  margin-top: 160px;
}
.u-mt800--sp {
  margin-top: 800px;
}
@media screen and (min-width: 769px) {
  .u-mt800--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt800--pc {
    margin-top: 800px;
  }
}
.u-mb160 {
  margin-bottom: 160px;
}
.u-mr160 {
  margin-right: 160px;
}
.u-ml160 {
  margin-left: 160px;
}
.u-mt165 {
  margin-top: 165px;
}
.u-mt825--sp {
  margin-top: 825px;
}
@media screen and (min-width: 769px) {
  .u-mt825--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt825--pc {
    margin-top: 825px;
  }
}
.u-mb165 {
  margin-bottom: 165px;
}
.u-mr165 {
  margin-right: 165px;
}
.u-ml165 {
  margin-left: 165px;
}
.u-mt170 {
  margin-top: 170px;
}
.u-mt850--sp {
  margin-top: 850px;
}
@media screen and (min-width: 769px) {
  .u-mt850--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt850--pc {
    margin-top: 850px;
  }
}
.u-mb170 {
  margin-bottom: 170px;
}
.u-mr170 {
  margin-right: 170px;
}
.u-ml170 {
  margin-left: 170px;
}
.u-mt175 {
  margin-top: 175px;
}
.u-mt875--sp {
  margin-top: 875px;
}
@media screen and (min-width: 769px) {
  .u-mt875--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt875--pc {
    margin-top: 875px;
  }
}
.u-mb175 {
  margin-bottom: 175px;
}
.u-mr175 {
  margin-right: 175px;
}
.u-ml175 {
  margin-left: 175px;
}
.u-mt180 {
  margin-top: 180px;
}
.u-mt900--sp {
  margin-top: 900px;
}
@media screen and (min-width: 769px) {
  .u-mt900--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt900--pc {
    margin-top: 900px;
  }
}
.u-mb180 {
  margin-bottom: 180px;
}
.u-mr180 {
  margin-right: 180px;
}
.u-ml180 {
  margin-left: 180px;
}
.u-mt185 {
  margin-top: 185px;
}
.u-mt925--sp {
  margin-top: 925px;
}
@media screen and (min-width: 769px) {
  .u-mt925--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt925--pc {
    margin-top: 925px;
  }
}
.u-mb185 {
  margin-bottom: 185px;
}
.u-mr185 {
  margin-right: 185px;
}
.u-ml185 {
  margin-left: 185px;
}
.u-mt190 {
  margin-top: 190px;
}
.u-mt950--sp {
  margin-top: 950px;
}
@media screen and (min-width: 769px) {
  .u-mt950--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt950--pc {
    margin-top: 950px;
  }
}
.u-mb190 {
  margin-bottom: 190px;
}
.u-mr190 {
  margin-right: 190px;
}
.u-ml190 {
  margin-left: 190px;
}
.u-mt195 {
  margin-top: 195px;
}
.u-mt975--sp {
  margin-top: 975px;
}
@media screen and (min-width: 769px) {
  .u-mt975--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt975--pc {
    margin-top: 975px;
  }
}
.u-mb195 {
  margin-bottom: 195px;
}
.u-mr195 {
  margin-right: 195px;
}
.u-ml195 {
  margin-left: 195px;
}
.u-mt200 {
  margin-top: 200px;
}
.u-mt1000--sp {
  margin-top: 1000px;
}
@media screen and (min-width: 769px) {
  .u-mt1000--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt1000--pc {
    margin-top: 1000px;
  }
}
.u-mb200 {
  margin-bottom: 200px;
}
.u-mr200 {
  margin-right: 200px;
}
.u-ml200 {
  margin-left: 200px;
}
.u-mt205 {
  margin-top: 205px;
}
.u-mt1025--sp {
  margin-top: 1025px;
}
@media screen and (min-width: 769px) {
  .u-mt1025--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt1025--pc {
    margin-top: 1025px;
  }
}
.u-mb205 {
  margin-bottom: 205px;
}
.u-mr205 {
  margin-right: 205px;
}
.u-ml205 {
  margin-left: 205px;
}
.u-mt210 {
  margin-top: 210px;
}
.u-mt1050--sp {
  margin-top: 1050px;
}
@media screen and (min-width: 769px) {
  .u-mt1050--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt1050--pc {
    margin-top: 1050px;
  }
}
.u-mb210 {
  margin-bottom: 210px;
}
.u-mr210 {
  margin-right: 210px;
}
.u-ml210 {
  margin-left: 210px;
}
.u-mt215 {
  margin-top: 215px;
}
.u-mt1075--sp {
  margin-top: 1075px;
}
@media screen and (min-width: 769px) {
  .u-mt1075--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt1075--pc {
    margin-top: 1075px;
  }
}
.u-mb215 {
  margin-bottom: 215px;
}
.u-mr215 {
  margin-right: 215px;
}
.u-ml215 {
  margin-left: 215px;
}
.u-mt220 {
  margin-top: 220px;
}
.u-mt1100--sp {
  margin-top: 1100px;
}
@media screen and (min-width: 769px) {
  .u-mt1100--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt1100--pc {
    margin-top: 1100px;
  }
}
.u-mb220 {
  margin-bottom: 220px;
}
.u-mr220 {
  margin-right: 220px;
}
.u-ml220 {
  margin-left: 220px;
}
.u-mt225 {
  margin-top: 225px;
}
.u-mt1125--sp {
  margin-top: 1125px;
}
@media screen and (min-width: 769px) {
  .u-mt1125--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt1125--pc {
    margin-top: 1125px;
  }
}
.u-mb225 {
  margin-bottom: 225px;
}
.u-mr225 {
  margin-right: 225px;
}
.u-ml225 {
  margin-left: 225px;
}
.u-mt230 {
  margin-top: 230px;
}
.u-mt1150--sp {
  margin-top: 1150px;
}
@media screen and (min-width: 769px) {
  .u-mt1150--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt1150--pc {
    margin-top: 1150px;
  }
}
.u-mb230 {
  margin-bottom: 230px;
}
.u-mr230 {
  margin-right: 230px;
}
.u-ml230 {
  margin-left: 230px;
}
.u-mt235 {
  margin-top: 235px;
}
.u-mt1175--sp {
  margin-top: 1175px;
}
@media screen and (min-width: 769px) {
  .u-mt1175--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt1175--pc {
    margin-top: 1175px;
  }
}
.u-mb235 {
  margin-bottom: 235px;
}
.u-mr235 {
  margin-right: 235px;
}
.u-ml235 {
  margin-left: 235px;
}
.u-mt240 {
  margin-top: 240px;
}
.u-mt1200--sp {
  margin-top: 1200px;
}
@media screen and (min-width: 769px) {
  .u-mt1200--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt1200--pc {
    margin-top: 1200px;
  }
}
.u-mb240 {
  margin-bottom: 240px;
}
.u-mr240 {
  margin-right: 240px;
}
.u-ml240 {
  margin-left: 240px;
}
.u-mt245 {
  margin-top: 245px;
}
.u-mt1225--sp {
  margin-top: 1225px;
}
@media screen and (min-width: 769px) {
  .u-mt1225--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt1225--pc {
    margin-top: 1225px;
  }
}
.u-mb245 {
  margin-bottom: 245px;
}
.u-mr245 {
  margin-right: 245px;
}
.u-ml245 {
  margin-left: 245px;
}
.u-mt250 {
  margin-top: 250px;
}
.u-mt1250--sp {
  margin-top: 1250px;
}
@media screen and (min-width: 769px) {
  .u-mt1250--sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-mt1250--pc {
    margin-top: 1250px;
  }
}
.u-mb250 {
  margin-bottom: 250px;
}
.u-mr250 {
  margin-right: 250px;
}
.u-ml250 {
  margin-left: 250px;
}
.scroll-prevent {
  overflow: hidden;
}
.u-fs5 {
  font-size: 5px;
}
.u-fs10 {
  font-size: 10px;
}
.u-fs15 {
  font-size: 15px;
}
.u-fs20 {
  font-size: 20px;
}
.u-fs25 {
  font-size: 25px;
}
.u-fs30 {
  font-size: 30px;
}
.u-fs35 {
  font-size: 35px;
}
.u-fs40 {
  font-size: 40px;
}
.u-fs45 {
  font-size: 45px;
}
.u-fs50 {
  font-size: 50px;
}
.u-fs55 {
  font-size: 55px;
}
.u-fs60 {
  font-size: 60px;
}
.u-fs65 {
  font-size: 65px;
}
.u-fs70 {
  font-size: 70px;
}
.u-fs75 {
  font-size: 75px;
}
.u-fs80 {
  font-size: 80px;
}
.u-fs85 {
  font-size: 85px;
}
.u-fs90 {
  font-size: 90px;
}
.u-fs95 {
  font-size: 95px;
}
.u-fs100 {
  font-size: 100px;
}
.u-fs105 {
  font-size: 105px;
}
.u-fs110 {
  font-size: 110px;
}
.u-fs115 {
  font-size: 115px;
}
.u-fs120 {
  font-size: 120px;
}
.u-fs125 {
  font-size: 125px;
}
.u-fs130 {
  font-size: 130px;
}
.u-fs135 {
  font-size: 135px;
}
.u-fs140 {
  font-size: 140px;
}
.u-fs145 {
  font-size: 145px;
}
.u-fs150 {
  font-size: 150px;
}
.u-fs155 {
  font-size: 155px;
}
.u-fs160 {
  font-size: 160px;
}
.u-fs165 {
  font-size: 165px;
}
.u-fs170 {
  font-size: 170px;
}
.u-fs175 {
  font-size: 175px;
}
.u-fs180 {
  font-size: 180px;
}
.u-fs185 {
  font-size: 185px;
}
.u-fs190 {
  font-size: 190px;
}
.u-fs195 {
  font-size: 195px;
}
.u-fs200 {
  font-size: 200px;
}
.u-fs205 {
  font-size: 205px;
}
.u-fs210 {
  font-size: 210px;
}
.u-fs215 {
  font-size: 215px;
}
.u-fs220 {
  font-size: 220px;
}
.u-fs225 {
  font-size: 225px;
}
.u-fs230 {
  font-size: 230px;
}
.u-fs235 {
  font-size: 235px;
}
.u-fs240 {
  font-size: 240px;
}
.u-fs245 {
  font-size: 245px;
}
.u-fs250 {
  font-size: 250px;
}
.u-tac {
  text-align: center;
}
