@charset "UTF-8";
html,
body {
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

img,
video {
  max-width: 100%;
  height: auto;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-style: normal;
  color: #262A35;
}
.futura {
  font-family: "futura-pt", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
  cursor: pointer;
  transition: background-color 0.3s;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  transition: transform 0.3s;
  color: #319FF4;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.5s ease-in-out;
  transition: max-height 0.1s ease;
  color: #4a4a4a;
}

.faq-item.active .faq-answer {
  opacity: 1;
  max-height: 600px;
  margin-top: 0.5rem;
}

header {
  z-index: 10;
  position: fixed;
  width: 100%;
}

.navbar {
  width: 100%;
}
@media (max-width: 1023px) {
  .navbar .navbar-item img {
    width: 150px;
  }
}

@media (max-width: 1500px) {
  .navbar-menu {
    zoom: 0.8;
  }
}
@media (max-width: 810px) {
  .navbar-menu {
    zoom: 1;
  }
}
.navbar-menu .navbar-end .navbar-item {
  font-size: 20px;
  font-weight: bold;
}

.fukidashi01 {
  display: inline-block;
  background-color: #319FF4;
  color: #fff;
  font-weight: bold;
  padding: 10px 30px;
  position: relative;
  font-size: 30px;
  margin: 0 auto;
}
@media (max-width: 810px) {
  .fukidashi01 {
    font-size: 15px;
    padding: 6px 18px;
  }
}
.fukidashi01::after {
  position: absolute;
  left: 50%;
  right: 50%;
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-left: -29px;
  border-top: 26px solid #319FF4;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
}
@media (max-width: 810px) {
  .fukidashi01::after {
    left: 58%;
    border-top: 14px solid #319FF4;
    border-left: 17px solid transparent;
    border-right: 17px solid transparent;
  }
}

@media (max-width: 810px) {
  #plan {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 810px) {
  #plan .plan_comment {
    text-align: left !important;
  }
}

.lp-title {
  display: flex;
  flex-flow: column;
  width: auto;
  margin-bottom: 12px !important;
  padding-bottom: 30px;
  letter-spacing: 0.02em;
  font-size: 46px;
}
@media (max-width: 810px) {
  .lp-title {
    font-size: 24px;
    margin-bottom: 0px !important;
    padding-bottom: 5px;
  }
}
.lp-title.title-plan {
  position: relative;
  max-width: 530px;
  margin: 0 auto 64px !important;
}
@media (max-width: 810px) {
  .lp-title.title-plan {
    max-width: 300px;
    padding-bottom: 30px;
    font-size: 24px;
    margin-bottom: 33px !important;
  }
}
.lp-title.title-plan::before {
  position: absolute;
  left: -160px;
  top: 45px;
  content: "";
  background-image: url(../img/sec02_img_before.svg);
  width: 182px;
  height: 88px;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 810px) {
  .lp-title.title-plan::before {
    width: 74px;
    height: 36px;
    left: -30px;
    z-index: 1;
    top: 55px;
  }
}
.lp-title.title-plan::after {
  position: absolute;
  top: -10px;
  right: -160px;
  content: "";
  background-image: url(../img/sec02_img_after.svg);
  width: 187px;
  height: 216px;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 810px) {
  .lp-title.title-plan::after {
    width: 77px;
    height: 89px;
    right: -30px;
    top: 25px;
  }
}
.lp-title .fukidashi02 {
  display: inline-block;
  background-color: #319FF4;
  color: #fff;
  padding: 22px 60px;
  margin: 12px auto 0;
  position: relative;
  font-size: 58px;
}
.lp-title .fukidashi02 span {
  font-size: 48px;
}
@media (max-width: 810px) {
  .lp-title .fukidashi02 span {
    font-size: 20px;
  }
}
@media (max-width: 810px) {
  .lp-title .fukidashi02 {
    padding: 10px 10px;
    font-size: 28px;
    margin-top: 4px;
    min-width: 278px;
  }
}
.lp-title .fukidashi02::after {
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -20px;
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-left: -20px;
  border-top: 20px solid #319FF4;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
}
@media (max-width: 810px) {
  .lp-title .fukidashi02::after {
    zoom: 0.5;
  }
}

nav .lp_button {
  background-color: #48B50D;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
}
nav .lp_button:hover {
  opacity: 0.8;
}
nav .lp_button i {
  margin-right: 5px;
}

@media (max-width: 810px) {
  .mainimg01 {
    text-align: center;
  }
}
@media (max-width: 810px) {
  .mainimg01 img {
    max-width: 350px;
    margin: 0 auto;
  }
}

.main-images {
  max-height: 697px;
  overflow: hidden;
  padding-top: 146px;
  padding-bottom: 0;
}
@media (max-width: 810px) {
  .main-images {
    padding-top: 94px;
    padding-bottom: 0;
    padding-left: 20px;
  }
}
@media (max-width: 1500px) {
  .main-images {
    max-height: 100vh;
  }
}
@media (max-width: 810px) {
  .main-images .container .columns .title01 .title {
    text-align: center;
  }
}
@media (max-width: 810px) {
  .main-images .container .columns {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: space-between;
  }
}
@media (max-width: 810px) {
  .main-images .container .columns .column {
    padding: 0;
  }
}
.main-images .title {
  color: #224199;
  font-weight: 900;
}
.main-images .title .text01 {
  font-weight: 900;
  font-size: 74px;
}
@media (max-width: 810px) {
  .main-images .title .text01 {
    font-size: 37px;
  }
}
.main-images .title .text02 {
  font-size: 81px;
}
@media (max-width: 810px) {
  .main-images .title .text02 {
    font-size: 46px;
  }
}
.main-images .title .text03 {
  font-size: 63px;
}
@media (max-width: 810px) {
  .main-images .title .text03 {
    font-size: 30px;
  }
}
.main-images .subtitle {
  line-height: normal;
  font-size: 25px;
  font-weight: bold;
  color: #262A35;
}

.lp_btn {
  display: block;
  width: 720px;
  padding: 55px 20px;
  line-height: 60px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #48B50D;
  box-shadow: 10px 10px 0px #057E1D;
  transition: 0.3s;
  border-radius: 100px;
  font-size: 48px;
  font-weight: bold;
}
@media (max-width: 810px) {
  .lp_btn {
    width: auto;
    font-size: 24px;
    padding: 10px 15px;
  }
}
.lp_btn:hover {
  box-shadow: unset;
  color: #fff;
  transform: translate(9px, 9px);
}

.lp_btn_top {
  display: block;
  width: 100%;
  max-width: 467px;
  padding: 20px 10px;
  /* line-height: 60px; */
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #262A35;
  box-shadow: 5px 5px 0px #18191C;
  transition: 0.3s;
  border-radius: 100px;
  font-size: 26px;
  font-weight: bold;
  position: relative;
}
@media (max-width: 810px) {
  .lp_btn_top {
    font-size: 22px;
    position: absolute;
    bottom: 30px;
    z-index: 100;
  }
}
.lp_btn_top::after {
  position: absolute;
  right: 7px;
  top: -9px;
  background-repeat: no-repeat;
  display: block;
  content: "";
  background-image: url(../img/Group222.svg);
  width: 46px;
  height: 55px;
  background-size: contain;
}
.lp_btn_top:hover {
  box-shadow: unset;
  color: #fff;
  transform: translate(4px, 4px);
}

.cap-contents02 {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}
.cap-contents02 .caption {
  font-size: 48px;
}
@media (max-width: 810px) {
  .cap-contents02 .caption {
    font-size: 24px;
  }
}
.cap-contents02 .caption strong {
  color: #319FF4;
  font-size: 60px;
}
@media (max-width: 810px) {
  .cap-contents02 .caption strong {
    font-size: 30px;
    display: flex;
    justify-content: center;
  }
  .cap-contents02 .caption strong::before {
    background-repeat: no-repeat;
    display: block;
    content: "";
    background-image: url(../img/title_img_before.svg);
    width: 24px;
    height: 31px;
    background-size: contain;
  }
  .cap-contents02 .caption strong::after {
    background-repeat: no-repeat;
    display: block;
    content: "";
    background-image: url(../img/title_img_after.svg);
    width: 24px;
    height: 31px;
    background-size: contain;
  }
}
.cap-contents02::before {
  background-repeat: no-repeat;
  display: block;
  content: "";
  background-image: url(../img/title_img_before.svg);
  width: 75px;
  height: 92px;
  background-size: contain;
}
@media (max-width: 810px) {
  .cap-contents02::before {
    display: none;
  }
}
.cap-contents02::after {
  background-repeat: no-repeat;
  display: block;
  content: "";
  background-image: url(../img/title_img_after.svg);
  width: 75px;
  height: 92px;
  background-size: contain;
}
@media (max-width: 810px) {
  .cap-contents02::after {
    display: none;
  }
}

.flow {
  padding-top: 42px;
}
@media (max-width: 1435px) {
  .flow {
    zoom: 0.8;
  }
}
@media (max-width: 810px) {
  .flow {
    zoom: 1;
  }
}
.flow .flow-contents .flow-step {
  position: relative;
  margin-bottom: 40px;
}
.flow .flow-contents .flow-step::after {
  position: absolute;
  top: -25px;
  left: 78px;
  content: "";
  display: block;
  width: 3px;
  height: 244px;
  background-color: #319FF4;
  z-index: -1;
}
@media (max-width: 810px) {
  .flow .flow-contents .flow-step::after {
    top: -10px;
    bottom: auto;
    left: 24px;
    width: 2px;
    height: 180px;
  }
}
.flow .flow-contents .flow-step:last-child::after {
  display: none;
}
.flow .flow-contents .flow-step:first-child::before {
  content: "";
  width: 15px;
  height: 15px;
  background-color: #319FF4;
  border-radius: 100%;
  display: block;
  position: absolute;
  left: 72px;
  top: -30px;
}
@media (max-width: 810px) {
  .flow .flow-contents .flow-step:first-child::before {
    width: 10px;
    height: 10px;
    left: 20px;
    top: -15px;
  }
}
.flow .flow-contents .flow-step .flow-icon {
  background-color: #319FF4;
  border: 2px solid #fff;
  border-radius: 100%;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 810px) {
  .flow .flow-contents .flow-step .flow-icon {
    width: 51px;
    height: 51px;
  }
  .flow .flow-contents .flow-step .flow-icon img {
    width: 50%;
    height: 50%;
  }
}
.flow .flow-contents .flow-step .contents {
  display: flex;
  align-items: center;
  border-radius: 20px;
  flex: 1;
  background-color: #EEF7FB;
  margin-left: -20px;
  z-index: -1;
}
@media (max-width: 810px) {
  .flow .flow-contents .flow-step .contents {
    flex-flow: column;
    align-items: flex-start;
    padding: 15px 15px 15px 30px;
    width: 92%;
  }
}
.flow .flow-contents .flow-step .contents .title {
  border-right: 1px solid #C9EBF7;
  width: 273px;
  padding: 20px 20px 20px 35px;
  margin-bottom: 0;
}
@media (max-width: 810px) {
  .flow .flow-contents .flow-step .contents .title {
    border: none;
    padding: 0;
    margin-bottom: 10px;
    text-align: left;
  }
}
.flow .flow-contents .flow-step .contents .title span {
  display: block;
}
@media (max-width: 810px) {
  .flow .flow-contents .flow-step .contents .title span {
    display: inline;
  }
}
.flow .flow-contents .flow-step .contents .caption {
  font-weight: bold;
  flex: 1;
  padding: 20px 20px 20px 47px;
  line-height: 1.8;
}
@media (max-width: 810px) {
  .flow .flow-contents .flow-step .contents .caption {
    padding: 0;
  }
}

.section.bg-col03 {
  position: relative;
}
.section.bg-col03::before {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  content: "";
  display: block;
  border-bottom: 50px solid #EEF7FB;
  border-left: 100vw solid transparent;
}
.section.bg-col03::after {
  position: absolute;
  bottom: -50px;
  right: 0;
  content: "";
  display: block;
  border-top: 50px solid #EEF7FB;
  border-right: 100vw solid transparent;
}

.faq {
  padding-top: 27px;
  max-width: 1200px;
  margin: 0 auto 109px;
}
@media (max-width: 810px) {
  .faq {
    margin: 0 auto -20px;
  }
}
.faq .faq-item {
  background-color: #fff;
  padding: 11px 20px 11px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
}
@media (max-width: 810px) {
  .faq .faq-item {
    padding: 5px 8px 10px;
    margin-bottom: 7px;
  }
}
.faq .faq-item .faq-question {
  display: flex;
  padding-bottom: 8px;
  padding-right: 50px;
}
@media (max-width: 810px) {
  .faq .faq-item .faq-question {
    padding-right: 4px;
    padding-bottom: 1px;
    padding-top: 3px;
  }
}
.faq .faq-item .faq-question .title {
  flex: 1;
  text-align: left;
  margin-bottom: 0;
  padding: 5px 10px 0;
}
@media (max-width: 810px) {
  .faq .faq-item .faq-question .title {
    padding: 5px 7px 0;
  }
}
.faq .faq-item .faq-question .title span {
  display: block;
}
.faq .faq-item .faq-question::before {
  color: #319FF4;
  content: "Q";
  line-height: normal;
  font-size: 60px;
  padding-right: 45px;
  padding-left: 20px;
  font-weight: bold;
  display: block;
}
@media (max-width: 810px) {
  .faq .faq-item .faq-question::before {
    font-size: 27px;
    padding-right: 6px;
    padding-left: 6px;
  }
}
.faq .faq-item .faq-answer {
  display: flex;
  border-top: 1px solid #D9D9D9;
}
.faq .faq-item .faq-answer p {
  padding-top: 30px;
  padding-left: 10px;
  padding-bottom: 20px;
  width: 100%;
}
@media (max-width: 810px) {
  .faq .faq-item .faq-answer p {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.faq .faq-item .faq-answer::before {
  color: #319FF4;
  content: "A";
  line-height: normal;
  font-size: 60px;
  padding-right: 30px;
  padding-left: 20px;
  font-weight: bold;
  display: block;
}
@media (max-width: 810px) {
  .faq .faq-item .faq-answer::before {
    font-size: 27px;
    padding-right: 6px;
    padding-left: 6px;
  }
}

br.inline-showsp {
  display: none;
}
@media (max-width: 810px) {
  br.inline-showsp {
    display: inline;
  }
}

br.inline-showpc {
  display: inline;
}
@media (max-width: 810px) {
  br.inline-showpc {
    display: none;
  }
}

.flex1 {
  flex: 1.6;
}

.flex2 {
  flex: 2;
}

@media (max-width: 1435px) {
  .form {
    zoom: 0.8;
  }
}
@media (max-width: 810px) {
  .form {
    zoom: 1;
  }
}
@media (max-width: 810px) {
  .form {
    padding-top: 15px;
  }
}
.form form .field {
  display: flex;
  margin-bottom: 20px;
}
.form form .field.privacy_policy {
  margin-top: 63px;
  margin-bottom: 25px;
}
@media (max-width: 810px) {
  .form form .field.privacy_policy {
    margin-top: 25px;
    margin-bottom: 7px;
  }
}
@media (max-width: 810px) {
  .form form .field {
    flex-flow: column;
    margin-bottom: 6px;
    margin-top: 5px;
  }
}
.form form .field .label {
  width: 30%;
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 30px;
  margin-bottom: 0;
}
@media (max-width: 810px) {
  .form form .field .label {
    margin-bottom: 3px;
  }
}
.form form .field .label span {
  padding-left: 10px;
}
@media (max-width: 810px) {
  .form form .field .label span {
    margin-bottom: 0;
  }
}
@media (max-width: 810px) {
  .form form .field .label {
    width: 100%;
    justify-content: flex-start;
    font-size: 12px;
  }
}
.form form .field .label span {
  font-size: 19px;
  color: #9c9c9c;
}
@media (max-width: 810px) {
  .form form .field .label span {
    font-size: 10px;
  }
}
.form form .field .label span.red {
  color: #FF3A3A;
}
.form form .field .control {
  width: 70%;
}
.form form .field .control a {
  text-decoration: underline;
  color: #000;
}
@media (max-width: 810px) {
  .form form .field .control {
    width: 100%;
  }
}
.form form .field .control textarea {
  font-size: 23px;
  min-height: 220px;
}
@media (max-width: 810px) {
  .form form .field .control textarea {
    font-size: 12px;
    min-height: 110px;
  }
}
.form form .field .control .input {
  width: 100%;
  font-size: 23px;
  height: 75px;
}
@media (max-width: 810px) {
  .form form .field .control .input {
    font-size: 12px;
    height: 35px;
  }
}
.form form .field .control.control-radio {
  padding: 22px 0px;
}
@media (max-width: 810px) {
  .form form .field .control.control-radio {
    padding: 0px 0px 10px;
  }
}
.form form .field .control .radio {
  font-size: 25px;
}
.form form .field .control .radio input {
  accent-color: #000;
  zoom: 1.5;
  margin-left: 10px;
}
@media (max-width: 810px) {
  .form form .field .control .radio input {
    zoom: 1;
  }
}
@media (max-width: 810px) {
  .form form .field .control .radio {
    font-size: 12px;
  }
}
.form form .field .control .checkbox {
  font-size: 25px;
}
.form form .field .control .checkbox input {
  accent-color: #000;
  zoom: 1.5;
  margin-left: 10px;
}
@media (max-width: 810px) {
  .form form .field .control .checkbox input {
    zoom: 1;
  }
}
@media (max-width: 810px) {
  .form form .field .control .checkbox {
    font-size: 12px;
  }
}
.form form .field .control .select {
  font-size: 22px;
  margin-bottom: 12px;
  margin-top: 8px;
}
.form form .field .control .select select {
  min-width: 325px;
  height: 59px;
}
@media (max-width: 810px) {
  .form form .field .control .select select {
    min-width: 163px;
    height: 30px;
  }
}
@media (max-width: 810px) {
  .form form .field .control .select {
    font-size: 12px;
    margin: 0 0 4px;
  }
}
.form form .field .control .button {
  display: block;
  width: 464px;
  padding: 30px 15px 35px;
  height: 104px;
}
.form form .field .control .button:hover {
  opacity: 0.8;
}
@media (max-width: 810px) {
  .form form .field .control .button {
    width: 100%;
    width: 232px;
    height: 51px;
  }
}
.form form .field.is-grouped {
  display: block;
  width: 100%;
}
.form form .field.is-grouped .control {
  width: 100%;
}
.form form .field.is-grouped .control button {
  display: flex;
  margin: 0 auto;
  background-color: #48B50D;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
}
@media (max-width: 810px) {
  .form form .field.is-grouped .control button {
    padding: 10px 20px 15px;
  }
}
.form form .field.is-grouped .control button i {
  margin-right: 5px;
}

footer {
  border-top: 1px solid #E6E6E6;
  padding-top: 32px;
}
@media (max-width: 810px) {
  footer {
    padding-top: 0;
  }
}
@media (max-width: 810px) {
  footer .container {
    padding-bottom: 5px !important;
  }
}
footer .container .image {
  width: 235px;
}
@media (max-width: 810px) {
  footer .container .image {
    width: 117px;
  }
}
footer .container p {
  font-size: 22px;
}
@media (max-width: 810px) {
  footer .container p {
    font-size: 11px;
  }
}
footer .copy {
  background-color: #262A35 !important;
}

.bold {
  font-weight: bold;
}

.bb01 {
  border-bottom: 1px solid #E6E6E6;
}

.flex01 {
  flex: 1;
}

.text-col01 {
  color: #319FF4;
}

.text-col00 {
  color: #231815;
}

@media (max-width: 810px) {
  .responsive-img-sp {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 810px) {
  .allow01 img {
    width: 34px;
  }
}

.bg-col00 {
  background-color: #fff;
}

.bg-col00 {
  background-color: #fff;
}

.bg-col03 {
  background-color: #EEF7FB;
}

@media (max-width: 810px) {
  .sp-carousel {
    margin-bottom: 7px;
  }
}
.sp-carousel .slick-track {
  display: flex;
}
.sp-carousel .column {
  margin: 10px;
  border-top: 11px solid #ccc;
  margin-top: 22px;
  margin-bottom: 0;
  border-radius: 0 0 10px 10px;
  min-height: 385px;
  padding: 40px 20px;
}
@media (max-width: 810px) {
  .sp-carousel .column {
    zoom: 0.8;
    padding: 20px;
    min-height: 340px;
  }
}
.sp-carousel .column.std {
  box-sizing: border-box;
  margin-top: 0;
  margin-bottom: 0;
  border-top: 11px solid #319FF4;
  border-bottom: 2px solid #319FF4;
  border-left: 2px solid #319FF4;
  border-right: 2px solid #319FF4;
}
@media (max-width: 1435px) {
  .sp-carousel .column .tit {
    zoom: 0.8;
  }
}
@media (max-width: 810px) {
  .sp-carousel .column .tit {
    zoom: 1;
    display: flex;
    flex-flow: column;
    align-items: center;
  }
}
.sp-carousel .column .tit .price {
  margin-top: -15px;
  padding-bottom: 21px;
  padding-bottom: 34px !important;
  font-size: 67px;
  position: relative;
}
.sp-carousel .column .tit .price.sell::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 35%;
  width: 100%;
  height: 10px;
  border-top: 3px solid #262A35;
  border-bottom: 3px solid #262A35;
}
@media (max-width: 1435px) {
  .sp-carousel .column .tit .price {
    font-size: 42px;
  }
}
@media (max-width: 810px) {
  .sp-carousel .column .tit .price {
    margin-top: -10px;
    padding-bottom: 12px !important;
  }
}
@media (max-width: 1435px) {
  .sp-carousel .column ul {
    zoom: 0.8;
  }
}
@media (max-width: 810px) {
  .sp-carousel .column ul {
    zoom: 1;
  }
}
.sp-carousel .column ul li {
  position: relative;
  padding-left: 27px;
  margin-bottom: 5px;
  font-size: 23px;
}
@media (max-width: 810px) {
  .sp-carousel .column ul li {
    font-size: 16px;
  }
}
.sp-carousel .column ul li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 5px;
  display: block;
  background-image: url(../img/check.svg);
  width: 25px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 810px) {
  .sp-carousel .column ul li::before {
    width: 22px;
    height: 17px;
  }
}
.sp-carousel .column ul.blue li::before {
  background-image: url(../img/check_b.svg);
}

.menu-sp {
  float: right;
  display: flex;
  position: relative;
}
.menu-sp .menu-list {
  position: fixed;
  background-color: #224199;
  bottom: -50px;
  width: 100%;
  padding: 30px;
}
.menu-sp .menu-list ul {
  margin-bottom: 30px;
}
.menu-sp .menu-list ul li {
  margin-bottom: 10px;
}
.menu-sp .menu-list ul li a {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}
.menu-sp .menu-list .lp_button {
  font-size: 18px;
  max-width: 268px;
  margin: 0 auto;
  padding: 30px 20px;
  text-align: center;
}
.menu-sp .menu-contact {
  background-color: #48B50D;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 100%;
  margin: 0;
}
.menu-sp .menu-contact a {
  height: 19px;
}
.menu-sp .menu-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 100%;
  margin: 0;
}

.accordion-header {
  background-color: #224199;
}

.accordion-content {
  display: none;
  top: 52px;
  left: 0;
  width: 100vw;
}

.accordion-header.is-active + .accordion-content {
  display: block;
}

.slick-prev,
.slick-next {
  display: block;
  background-color: #ccc;
  opacity: 0.8;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  border: none;
  font-size: 18px;
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.slick-prev {
  left: 10%;
  /* スライドの左側 */
}

.slick-next {
  right: 10%;
  /* スライドの右側 */
}

.slick-prev:hover,
.slick-next:hover {
  color: #f0897f;
  /* ホバー時の色 */
}

@media (min-width: 811px) {
  .mb0 {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 810px) {
  .mb-sp0 {
    margin-bottom: 0 !important;
  }
}
@media (min-width: 811px) {
  .mb5 {
    margin-bottom: 5px !important;
  }
}
@media (max-width: 810px) {
  .mb-sp5 {
    margin-bottom: 5px !important;
  }
}
@media (min-width: 811px) {
  .mb10 {
    margin-bottom: 10px !important;
  }
}
@media (max-width: 810px) {
  .mb-sp10 {
    margin-bottom: 10px !important;
  }
}
@media (min-width: 811px) {
  .mb15 {
    margin-bottom: 15px !important;
  }
}
@media (max-width: 810px) {
  .mb-sp15 {
    margin-bottom: 15px !important;
  }
}
@media (min-width: 811px) {
  .mb20 {
    margin-bottom: 20px !important;
  }
}
@media (max-width: 810px) {
  .mb-sp20 {
    margin-bottom: 20px !important;
  }
}
@media (min-width: 811px) {
  .mb25 {
    margin-bottom: 25px !important;
  }
}
@media (max-width: 810px) {
  .mb-sp25 {
    margin-bottom: 25px !important;
  }
}
@media (min-width: 811px) {
  .mb30 {
    margin-bottom: 30px !important;
  }
}
@media (max-width: 810px) {
  .mb-sp30 {
    margin-bottom: 30px !important;
  }
}
@media (min-width: 811px) {
  .mb35 {
    margin-bottom: 35px !important;
  }
}
@media (max-width: 810px) {
  .mb-sp35 {
    margin-bottom: 35px !important;
  }
}
@media (min-width: 811px) {
  .mb40 {
    margin-bottom: 40px !important;
  }
}
@media (max-width: 810px) {
  .mb-sp40 {
    margin-bottom: 40px !important;
  }
}
@media (min-width: 811px) {
  .mb45 {
    margin-bottom: 45px !important;
  }
}
@media (max-width: 810px) {
  .mb-sp45 {
    margin-bottom: 45px !important;
  }
}
@media (min-width: 811px) {
  .mb50 {
    margin-bottom: 50px !important;
  }
}
@media (max-width: 810px) {
  .mb-sp50 {
    margin-bottom: 50px !important;
  }
}
@media (min-width: 811px) {
  .mb55 {
    margin-bottom: 55px !important;
  }
}
@media (max-width: 810px) {
  .mb-sp55 {
    margin-bottom: 55px !important;
  }
}
@media (min-width: 811px) {
  .mb60 {
    margin-bottom: 60px !important;
  }
}
@media (max-width: 810px) {
  .mb-sp60 {
    margin-bottom: 60px !important;
  }
}
@media (min-width: 811px) {
  .mb65 {
    margin-bottom: 65px !important;
  }
}
@media (max-width: 810px) {
  .mb-sp65 {
    margin-bottom: 65px !important;
  }
}
@media (min-width: 811px) {
  .mb70 {
    margin-bottom: 70px !important;
  }
}
@media (max-width: 810px) {
  .mb-sp70 {
    margin-bottom: 70px !important;
  }
}
@media (min-width: 811px) {
  .mb75 {
    margin-bottom: 75px !important;
  }
}
@media (max-width: 810px) {
  .mb-sp75 {
    margin-bottom: 75px !important;
  }
}
@media (min-width: 811px) {
  .mb80 {
    margin-bottom: 80px !important;
  }
}
@media (max-width: 810px) {
  .mb-sp80 {
    margin-bottom: 80px !important;
  }
}
@media (min-width: 811px) {
  .mb85 {
    margin-bottom: 85px !important;
  }
}
@media (max-width: 810px) {
  .mb-sp85 {
    margin-bottom: 85px !important;
  }
}
@media (min-width: 811px) {
  .mb90 {
    margin-bottom: 90px !important;
  }
}
@media (max-width: 810px) {
  .mb-sp90 {
    margin-bottom: 90px !important;
  }
}
@media (min-width: 811px) {
  .mb95 {
    margin-bottom: 95px !important;
  }
}
@media (max-width: 810px) {
  .mb-sp95 {
    margin-bottom: 95px !important;
  }
}
@media (min-width: 811px) {
  .mb100 {
    margin-bottom: 100px !important;
  }
}
@media (max-width: 810px) {
  .mb-sp100 {
    margin-bottom: 100px !important;
  }
}
.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mt85 {
  margin-top: 85px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mt95 {
  margin-top: 95px !important;
}

.mt100 {
  margin-top: 100px !important;
}

@media (min-width: 811px) {
  .fs-1 {
    font-size: 1px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-1 {
    font-size: 1px !important;
  }
}
@media (min-width: 811px) {
  .fs-2 {
    font-size: 2px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-2 {
    font-size: 2px !important;
  }
}
@media (min-width: 811px) {
  .fs-3 {
    font-size: 3px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-3 {
    font-size: 3px !important;
  }
}
@media (min-width: 811px) {
  .fs-4 {
    font-size: 4px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-4 {
    font-size: 4px !important;
  }
}
@media (min-width: 811px) {
  .fs-5 {
    font-size: 5px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-5 {
    font-size: 5px !important;
  }
}
@media (min-width: 811px) {
  .fs-6 {
    font-size: 6px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-6 {
    font-size: 6px !important;
  }
}
@media (min-width: 811px) {
  .fs-7 {
    font-size: 7px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-7 {
    font-size: 7px !important;
  }
}
@media (min-width: 811px) {
  .fs-8 {
    font-size: 8px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-8 {
    font-size: 8px !important;
  }
}
@media (min-width: 811px) {
  .fs-9 {
    font-size: 9px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-9 {
    font-size: 9px !important;
  }
}
@media (min-width: 811px) {
  .fs-10 {
    font-size: 10px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-10 {
    font-size: 10px !important;
  }
}
@media (min-width: 811px) {
  .fs-11 {
    font-size: 11px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-11 {
    font-size: 11px !important;
  }
}
@media (min-width: 811px) {
  .fs-12 {
    font-size: 12px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-12 {
    font-size: 12px !important;
  }
}
@media (min-width: 811px) {
  .fs-13 {
    font-size: 13px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-13 {
    font-size: 13px !important;
  }
}
@media (min-width: 811px) {
  .fs-14 {
    font-size: 14px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-14 {
    font-size: 14px !important;
  }
}
@media (min-width: 811px) {
  .fs-15 {
    font-size: 15px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-15 {
    font-size: 15px !important;
  }
}
@media (min-width: 811px) {
  .fs-16 {
    font-size: 16px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-16 {
    font-size: 16px !important;
  }
}
@media (min-width: 811px) {
  .fs-17 {
    font-size: 17px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-17 {
    font-size: 17px !important;
  }
}
@media (min-width: 811px) {
  .fs-18 {
    font-size: 18px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-18 {
    font-size: 18px !important;
  }
}
@media (min-width: 811px) {
  .fs-19 {
    font-size: 19px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-19 {
    font-size: 19px !important;
  }
}
@media (min-width: 811px) {
  .fs-20 {
    font-size: 20px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-20 {
    font-size: 20px !important;
  }
}
@media (min-width: 811px) {
  .fs-21 {
    font-size: 21px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-21 {
    font-size: 21px !important;
  }
}
@media (min-width: 811px) {
  .fs-22 {
    font-size: 22px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-22 {
    font-size: 22px !important;
  }
}
@media (min-width: 811px) {
  .fs-23 {
    font-size: 23px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-23 {
    font-size: 23px !important;
  }
}
@media (min-width: 811px) {
  .fs-24 {
    font-size: 24px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-24 {
    font-size: 24px !important;
  }
}
@media (min-width: 811px) {
  .fs-25 {
    font-size: 25px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-25 {
    font-size: 25px !important;
  }
}
@media (min-width: 811px) {
  .fs-26 {
    font-size: 26px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-26 {
    font-size: 26px !important;
  }
}
@media (min-width: 811px) {
  .fs-27 {
    font-size: 27px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-27 {
    font-size: 27px !important;
  }
}
@media (min-width: 811px) {
  .fs-28 {
    font-size: 28px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-28 {
    font-size: 28px !important;
  }
}
@media (min-width: 811px) {
  .fs-29 {
    font-size: 29px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-29 {
    font-size: 29px !important;
  }
}
@media (min-width: 811px) {
  .fs-30 {
    font-size: 30px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-30 {
    font-size: 30px !important;
  }
}
@media (min-width: 811px) {
  .fs-31 {
    font-size: 31px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-31 {
    font-size: 31px !important;
  }
}
@media (min-width: 811px) {
  .fs-32 {
    font-size: 32px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-32 {
    font-size: 32px !important;
  }
}
@media (min-width: 811px) {
  .fs-33 {
    font-size: 33px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-33 {
    font-size: 33px !important;
  }
}
@media (min-width: 811px) {
  .fs-34 {
    font-size: 34px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-34 {
    font-size: 34px !important;
  }
}
@media (min-width: 811px) {
  .fs-35 {
    font-size: 35px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-35 {
    font-size: 35px !important;
  }
}
@media (min-width: 811px) {
  .fs-36 {
    font-size: 36px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-36 {
    font-size: 36px !important;
  }
}
@media (min-width: 811px) {
  .fs-37 {
    font-size: 37px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-37 {
    font-size: 37px !important;
  }
}
@media (min-width: 811px) {
  .fs-38 {
    font-size: 38px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-38 {
    font-size: 38px !important;
  }
}
@media (min-width: 811px) {
  .fs-39 {
    font-size: 39px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-39 {
    font-size: 39px !important;
  }
}
@media (min-width: 811px) {
  .fs-40 {
    font-size: 40px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-40 {
    font-size: 40px !important;
  }
}
@media (min-width: 811px) {
  .fs-41 {
    font-size: 41px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-41 {
    font-size: 41px !important;
  }
}
@media (min-width: 811px) {
  .fs-42 {
    font-size: 42px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-42 {
    font-size: 42px !important;
  }
}
@media (min-width: 811px) {
  .fs-43 {
    font-size: 43px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-43 {
    font-size: 43px !important;
  }
}
@media (min-width: 811px) {
  .fs-44 {
    font-size: 44px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-44 {
    font-size: 44px !important;
  }
}
@media (min-width: 811px) {
  .fs-45 {
    font-size: 45px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-45 {
    font-size: 45px !important;
  }
}
@media (min-width: 811px) {
  .fs-46 {
    font-size: 46px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-46 {
    font-size: 46px !important;
  }
}
@media (min-width: 811px) {
  .fs-47 {
    font-size: 47px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-47 {
    font-size: 47px !important;
  }
}
@media (min-width: 811px) {
  .fs-48 {
    font-size: 48px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-48 {
    font-size: 48px !important;
  }
}
@media (min-width: 811px) {
  .fs-49 {
    font-size: 49px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-49 {
    font-size: 49px !important;
  }
}
@media (min-width: 811px) {
  .fs-50 {
    font-size: 50px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-50 {
    font-size: 50px !important;
  }
}
@media (min-width: 811px) {
  .fs-51 {
    font-size: 51px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-51 {
    font-size: 51px !important;
  }
}
@media (min-width: 811px) {
  .fs-52 {
    font-size: 52px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-52 {
    font-size: 52px !important;
  }
}
@media (min-width: 811px) {
  .fs-53 {
    font-size: 53px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-53 {
    font-size: 53px !important;
  }
}
@media (min-width: 811px) {
  .fs-54 {
    font-size: 54px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-54 {
    font-size: 54px !important;
  }
}
@media (min-width: 811px) {
  .fs-55 {
    font-size: 55px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-55 {
    font-size: 55px !important;
  }
}
@media (min-width: 811px) {
  .fs-56 {
    font-size: 56px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-56 {
    font-size: 56px !important;
  }
}
@media (min-width: 811px) {
  .fs-57 {
    font-size: 57px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-57 {
    font-size: 57px !important;
  }
}
@media (min-width: 811px) {
  .fs-58 {
    font-size: 58px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-58 {
    font-size: 58px !important;
  }
}
@media (min-width: 811px) {
  .fs-59 {
    font-size: 59px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-59 {
    font-size: 59px !important;
  }
}
@media (min-width: 811px) {
  .fs-60 {
    font-size: 60px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-60 {
    font-size: 60px !important;
  }
}
@media (min-width: 811px) {
  .fs-61 {
    font-size: 61px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-61 {
    font-size: 61px !important;
  }
}
@media (min-width: 811px) {
  .fs-62 {
    font-size: 62px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-62 {
    font-size: 62px !important;
  }
}
@media (min-width: 811px) {
  .fs-63 {
    font-size: 63px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-63 {
    font-size: 63px !important;
  }
}
@media (min-width: 811px) {
  .fs-64 {
    font-size: 64px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-64 {
    font-size: 64px !important;
  }
}
@media (min-width: 811px) {
  .fs-65 {
    font-size: 65px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-65 {
    font-size: 65px !important;
  }
}
@media (min-width: 811px) {
  .fs-66 {
    font-size: 66px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-66 {
    font-size: 66px !important;
  }
}
@media (min-width: 811px) {
  .fs-67 {
    font-size: 67px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-67 {
    font-size: 67px !important;
  }
}
@media (min-width: 811px) {
  .fs-68 {
    font-size: 68px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-68 {
    font-size: 68px !important;
  }
}
@media (min-width: 811px) {
  .fs-69 {
    font-size: 69px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-69 {
    font-size: 69px !important;
  }
}
@media (min-width: 811px) {
  .fs-70 {
    font-size: 70px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-70 {
    font-size: 70px !important;
  }
}
@media (min-width: 811px) {
  .fs-71 {
    font-size: 71px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-71 {
    font-size: 71px !important;
  }
}
@media (min-width: 811px) {
  .fs-72 {
    font-size: 72px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-72 {
    font-size: 72px !important;
  }
}
@media (min-width: 811px) {
  .fs-73 {
    font-size: 73px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-73 {
    font-size: 73px !important;
  }
}
@media (min-width: 811px) {
  .fs-74 {
    font-size: 74px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-74 {
    font-size: 74px !important;
  }
}
@media (min-width: 811px) {
  .fs-75 {
    font-size: 75px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-75 {
    font-size: 75px !important;
  }
}
@media (min-width: 811px) {
  .fs-76 {
    font-size: 76px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-76 {
    font-size: 76px !important;
  }
}
@media (min-width: 811px) {
  .fs-77 {
    font-size: 77px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-77 {
    font-size: 77px !important;
  }
}
@media (min-width: 811px) {
  .fs-78 {
    font-size: 78px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-78 {
    font-size: 78px !important;
  }
}
@media (min-width: 811px) {
  .fs-79 {
    font-size: 79px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-79 {
    font-size: 79px !important;
  }
}
@media (min-width: 811px) {
  .fs-80 {
    font-size: 80px !important;
  }
}
@media (max-width: 810px) {
  .fs-sp-80 {
    font-size: 80px !important;
  }
}
.lh59 {
  font-size: 59px;
  line-height: 89px;
}

.w1200 {
  max-width: 1200px;
  margin: 0 auto;
}

.w-max {
  max-width: none !important;
}

.contents05 {
  padding-top: 150px;
}
@media (max-width: 810px) {
  .contents05 {
    padding-top: 62px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 35px;
  }
}

.contents04 {
  padding-top: 75px;
}
@media (max-width: 810px) {
  .contents04 {
    padding-top: 18px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.contents03 {
  padding-top: 109px;
}
@media (max-width: 810px) {
  .contents03 {
    padding-top: 49px;
  }
}

.contents02 {
  padding-top: 60px;
}
@media (max-width: 810px) {
  .contents02 {
    padding: 23px 15px 1px !important;
  }
}

.contents01 {
  padding-top: 42px;
}
@media (max-width: 810px) {
  .contents01 {
    padding: 15px 15px 87px;
  }
}

@media (max-width: 810px) {
  .cap-contents02 {
    margin-bottom: -29px;
    padding-top: 25px !important;
  }
}

@media (max-width: 810px) {
  .cap-tit01 {
    margin-top: -6px;
    margin-bottom: -8px;
  }
}

@media (max-width: 1435px) {
  .text-size1400px {
    zoom: 0.6;
  }
}
@media (max-width: 810px) {
  .text-size1400px {
    zoom: 1;
  }
}

@media (max-width: 1235px) {
  .text-size1200px {
    zoom: 0.6;
  }
}
@media (max-width: 810px) {
  .text-size1200px {
    zoom: 1;
  }
}/*# sourceMappingURL=style.css.map */