@charset "UTF-8";

/* ==========================================================================
    common style
============================================================================= */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  background: -webkit-gradient(linear, left top, right top, from(#cbe2f5), color-stop(110%, rgba(203,226,245,0)));
  background: -webkit-linear-gradient(left, #cbe2f5 0%, rgba(203,226,245,0) 110%);
  background: linear-gradient(90deg, #cbe2f5 0%, rgba(203,226,245,0) 110%);
  color: #666;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  position: relative;
}
.trigger.in {
  opacity: 0;
}
.trigger.in.is-active {
  -webkit-animation-name: fade-in;
          animation-name: fade-in;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.trigger.up {
  opacity: 0;
}
.trigger.up.is-active {
  -webkit-animation-name: slid-in-up;
          animation-name: slid-in-up;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes slid-in-up {
  0% {
    -webkit-transform: translate3d(0, 20%, 0);
            transform: translate3d(0, 20%, 0);
    visibility: visible;
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes slid-in-up {
  0% {
    -webkit-transform: translate3d(0, 20%, 0);
            transform: translate3d(0, 20%, 0);
    visibility: visible;
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.l-header {
  background-color: #fff;
  padding: 10px 30px;
  position: relative;
}
.l-header.is-fixed {
  position: fixed;
  top: 0;
  width: calc(100% - 60px);
  max-width: 330px;
  z-index: 999;
}
.l-header__inner {
  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;
}
.l-header__nav {
  background: url("../images/closing_bg.webp") no-repeat 0 0/cover;
  background-color: #fff;
  display: none;
  position: absolute;
  top: 58px;
  left: 0;
  padding: 30px 30px 60px;
  width: calc(100% - 60px);
  z-index: 999;
}
.l-header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.l-header__menu > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l-header__menu > li::before {
  background: -webkit-gradient(linear, left top, right top, from(#f7c4c7), to(#f6a6ab));
  background: -webkit-linear-gradient(left, #f7c4c7 0%, #f6a6ab 100%);
  background: linear-gradient(90deg, #f7c4c7 0%, #f6a6ab 100%);
  border-radius: 4px;
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin: 4px 8px 0 0;
}
.l-header__menu a {
  color: #25435a;
  font-family: "Kiwi Maru", serif;
  font-size: 1.8rem;
}
.l-header__trigger {
  cursor: pointer;
  width: 30px;
  height: 30px;
}
.l-header__trigger .trigger {
  padding-top: 10px;
}
.l-header__trigger .trigger span {
  background-color: #4d9ede;
  display: block;
  height: 1px;
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.l-header__trigger .trigger span:nth-of-type(2) {
  margin-top: 10px;
}
.l-header__trigger.is-active .trigger span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-top: 5px;
}
.l-header__trigger.is-active .trigger span:nth-of-type(2) {
  margin-top: -1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.l-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: wrap;
      -ms-flex: wrap;
          flex: wrap;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .l-column.col-2 > * {
    -ms-flex-preferred-size: calc(50% - 15px);
        flex-basis: calc(50% - 15px);
  }
  .l-column.col-3 > * {
    -ms-flex-preferred-size: calc(33.333% - 20px);
        flex-basis: calc(33.333% - 20px);
  }
  .l-column.col-4 > * {
    -ms-flex-preferred-size: calc(25% - 22.5px);
        flex-basis: calc(25% - 22.5px);
  }
}
@media screen and (max-width: 767.98px) {
  .l-column.col-2 > *,
  .l-column.col-3 > *,
  .l-column.col-4 > * {
    -ms-flex-preferred-size: calc(50% - 15px);
        flex-basis: calc(50% - 15px);
  }
}
@media screen and (max-width: 566.98px) {
  .l-column.col-2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  .l-column.col-2 > * {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .l-column.col-3,
  .l-column.col-4 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  .l-column.col-3 > *,
  .l-column.col-4 > * {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.l-footer {
  background-color: #4d9ede;
  color: #fff;
  padding-top: 60px;
  text-align: center;
}
.l-footer .l-container {
  max-width: 328px;
  margin-inline: auto;
}
.l-footer__logo {
  margin-bottom: 20px;
}
.l-footer__logo img {
  width: 100%;
}
.l-footer__label {
  background-color: rgba(255,255,255,0.1);
  border-radius: 46px;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 20px;
  padding: 10px 16px;
}
.l-footer__ttl {
  line-height: 1.4;
  margin-bottom: 8px;
}
.l-footer address.txt {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 8px;
}
.l-footer__table {
  margin-top: 50px;
  font-size: 1.4rem;
}
.l-footer__table table {
  margin-bottom: 30px;
  width: 100%;
}
.l-footer__table tr {
  border-bottom: solid 1px rgba(255,255,255,0.3);
}
.l-footer__table th {
  font-weight: bold;
  width: 90px;
  padding: 10px 5px 10px 0;
  text-align: left;
}
.l-footer__table td {
  padding: 10px 5px;
  vertical-align: middle;
}
.l-footer .copyright {
  font-size: 1.2rem;
  padding-bottom: 25px;
}
@media screen and (max-width: 767.98px) {
  .l-footer {
    margin-bottom: 84px;
  }
}
.txt {
  color: #666;
  line-height: 2;
}
.txt + .txt {
  margin-top: 20px;
}
.txt-cont {
  max-width: 700px;
  margin: 0 auto 60px;
}
.note {
  font-size: 1.2rem;
  line-height: 1.833;
  padding-left: 1em;
  position: relative;
}
.note::before {
  content: "※";
  position: absolute;
  left: 0;
}
.note__list {
  counter-reset: item;
}
.note__list > li {
  font-size: 1.2rem;
  line-height: 1.833;
  padding-left: 2.3em;
  position: relative;
}
.note__list > li + li {
  margin-top: 2px;
}
.note__list > li::before {
  counter-increment: item;
  content: '※' counter(item);
  font-size: 1.1rem;
  position: absolute;
  left: 0;
}
.d-ib {
  display: inline-block;
}
sup {
  font-size: 1.1rem;
  vertical-align: super;
}
@media screen and (max-width: 767.98px) {
  .txt-cont {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 699.98px) {
  .txt-cont {
    padding-inline: 15px;
  }
  .l-container .txt-cont {
    padding-inline: 0;
  }
}
.btn {
  background: -webkit-gradient(linear, left top, right top, from(#90caf9), to(#4d9ede));
  background: -webkit-linear-gradient(left, #90caf9 0%, #4d9ede 100%);
  background: linear-gradient(90deg, #90caf9 0%, #4d9ede 100%);
  border-radius: 60px;
  -webkit-box-shadow: 0 4px 10px rgba(77,158,222,0.2);
          box-shadow: 0 4px 10px rgba(77,158,222,0.2);
  color: #fff;
  display: inline-block;
  font-family: "Kiwi Maru", serif;
  font-size: 1.6rem;
  line-height: 2;
  padding: 12px 50px;
}
.btn.white {
  background: #fff;
  border: solid 1px #4d9ede;
  color: #4d9ede;
  font-family: "Noto Sans JP", sans-serif;
}
.btn2 {
  color: #fff;
  display: inline-block;
  padding: 10px 20px 10px 10px;
  position: relative;
}
.btn2::after {
  content: '';
  width: 100%;
  height: 10px;
  position: absolute;
  right: 0;
  bottom: 0;
  border: solid 1px #fff;
  border-width: 0 1px 1px 0;
  transform: skewX(45deg);
}
.ta-c {
  text-align: center !important;
}
.ta-r {
  text-align: right !important;
}
.ta-l {
  text-align: left !important;
}
.fw-bold {
  font-weight: bold !important;
}
.fw-normal {
  font-weight: normal !important;
}
.fs-12 {
  font-size: 1.2rem !important;
}
.fs-14 {
  font-size: 1.4rem !important;
}
.fs-16 {
  font-size: 1.6rem !important;
}
.fs-18 {
  font-size: 1.8rem !important;
}
.fs-20 {
  font-size: 2rem !important;
}
.fs-26 {
  font-size: 2.6rem !important;
}
@media screen and (min-width: 768px) {
  .sp-none {
    display: block !important;
  }
  .pc-none {
    display: none !important;
  }
}
@media screen and (max-width: 767.98px) {
  .sp-none {
    display: none !important;
  }
  .pc-none {
    display: block !important;
  }
}
.mt-0 {
  margin-top: 0px !important;
}
.mr-0 {
  margin-right: 0px !important;
}
.mb-0 {
  margin-bottom: 0px !important;
}
.ml-0 {
  margin-left: 0px !important;
}
.pt-0 {
  padding-top: 0px !important;
}
.pr-0 {
  padding-right: 0px !important;
}
.pb-0 {
  padding-bottom: 0px !important;
}
.pl-0 {
  padding-left: 0px !important;
}
.mt-5 {
  margin-top: 5px !important;
}
.mr-5 {
  margin-right: 5px !important;
}
.mb-5 {
  margin-bottom: 5px !important;
}
.ml-5 {
  margin-left: 5px !important;
}
.pt-5 {
  padding-top: 5px !important;
}
.pr-5 {
  padding-right: 5px !important;
}
.pb-5 {
  padding-bottom: 5px !important;
}
.pl-5 {
  padding-left: 5px !important;
}
.mt-10 {
  margin-top: 10px !important;
}
.mr-10 {
  margin-right: 10px !important;
}
.mb-10 {
  margin-bottom: 10px !important;
}
.ml-10 {
  margin-left: 10px !important;
}
.pt-10 {
  padding-top: 10px !important;
}
.pr-10 {
  padding-right: 10px !important;
}
.pb-10 {
  padding-bottom: 10px !important;
}
.pl-10 {
  padding-left: 10px !important;
}
.mt-15 {
  margin-top: 15px !important;
}
.mr-15 {
  margin-right: 15px !important;
}
.mb-15 {
  margin-bottom: 15px !important;
}
.ml-15 {
  margin-left: 15px !important;
}
.pt-15 {
  padding-top: 15px !important;
}
.pr-15 {
  padding-right: 15px !important;
}
.pb-15 {
  padding-bottom: 15px !important;
}
.pl-15 {
  padding-left: 15px !important;
}
.mt-20 {
  margin-top: 20px !important;
}
.mr-20 {
  margin-right: 20px !important;
}
.mb-20 {
  margin-bottom: 20px !important;
}
.ml-20 {
  margin-left: 20px !important;
}
.pt-20 {
  padding-top: 20px !important;
}
.pr-20 {
  padding-right: 20px !important;
}
.pb-20 {
  padding-bottom: 20px !important;
}
.pl-20 {
  padding-left: 20px !important;
}
.mt-25 {
  margin-top: 25px !important;
}
.mr-25 {
  margin-right: 25px !important;
}
.mb-25 {
  margin-bottom: 25px !important;
}
.ml-25 {
  margin-left: 25px !important;
}
.pt-25 {
  padding-top: 25px !important;
}
.pr-25 {
  padding-right: 25px !important;
}
.pb-25 {
  padding-bottom: 25px !important;
}
.pl-25 {
  padding-left: 25px !important;
}
.mt-30 {
  margin-top: 30px !important;
}
.mr-30 {
  margin-right: 30px !important;
}
.mb-30 {
  margin-bottom: 30px !important;
}
.ml-30 {
  margin-left: 30px !important;
}
.pt-30 {
  padding-top: 30px !important;
}
.pr-30 {
  padding-right: 30px !important;
}
.pb-30 {
  padding-bottom: 30px !important;
}
.pl-30 {
  padding-left: 30px !important;
}
.mt-35 {
  margin-top: 35px !important;
}
.mr-35 {
  margin-right: 35px !important;
}
.mb-35 {
  margin-bottom: 35px !important;
}
.ml-35 {
  margin-left: 35px !important;
}
.pt-35 {
  padding-top: 35px !important;
}
.pr-35 {
  padding-right: 35px !important;
}
.pb-35 {
  padding-bottom: 35px !important;
}
.pl-35 {
  padding-left: 35px !important;
}
.mt-40 {
  margin-top: 40px !important;
}
.mr-40 {
  margin-right: 40px !important;
}
.mb-40 {
  margin-bottom: 40px !important;
}
.ml-40 {
  margin-left: 40px !important;
}
.pt-40 {
  padding-top: 40px !important;
}
.pr-40 {
  padding-right: 40px !important;
}
.pb-40 {
  padding-bottom: 40px !important;
}
.pl-40 {
  padding-left: 40px !important;
}
.mt-45 {
  margin-top: 45px !important;
}
.mr-45 {
  margin-right: 45px !important;
}
.mb-45 {
  margin-bottom: 45px !important;
}
.ml-45 {
  margin-left: 45px !important;
}
.pt-45 {
  padding-top: 45px !important;
}
.pr-45 {
  padding-right: 45px !important;
}
.pb-45 {
  padding-bottom: 45px !important;
}
.pl-45 {
  padding-left: 45px !important;
}
.mt-50 {
  margin-top: 50px !important;
}
.mr-50 {
  margin-right: 50px !important;
}
.mb-50 {
  margin-bottom: 50px !important;
}
.ml-50 {
  margin-left: 50px !important;
}
.pt-50 {
  padding-top: 50px !important;
}
.pr-50 {
  padding-right: 50px !important;
}
.pb-50 {
  padding-bottom: 50px !important;
}
.pl-50 {
  padding-left: 50px !important;
}
.mt-55 {
  margin-top: 55px !important;
}
.mr-55 {
  margin-right: 55px !important;
}
.mb-55 {
  margin-bottom: 55px !important;
}
.ml-55 {
  margin-left: 55px !important;
}
.pt-55 {
  padding-top: 55px !important;
}
.pr-55 {
  padding-right: 55px !important;
}
.pb-55 {
  padding-bottom: 55px !important;
}
.pl-55 {
  padding-left: 55px !important;
}
.mt-60 {
  margin-top: 60px !important;
}
.mr-60 {
  margin-right: 60px !important;
}
.mb-60 {
  margin-bottom: 60px !important;
}
.ml-60 {
  margin-left: 60px !important;
}
.pt-60 {
  padding-top: 60px !important;
}
.pr-60 {
  padding-right: 60px !important;
}
.pb-60 {
  padding-bottom: 60px !important;
}
.pl-60 {
  padding-left: 60px !important;
}
.mt-65 {
  margin-top: 65px !important;
}
.mr-65 {
  margin-right: 65px !important;
}
.mb-65 {
  margin-bottom: 65px !important;
}
.ml-65 {
  margin-left: 65px !important;
}
.pt-65 {
  padding-top: 65px !important;
}
.pr-65 {
  padding-right: 65px !important;
}
.pb-65 {
  padding-bottom: 65px !important;
}
.pl-65 {
  padding-left: 65px !important;
}
.mt-70 {
  margin-top: 70px !important;
}
.mr-70 {
  margin-right: 70px !important;
}
.mb-70 {
  margin-bottom: 70px !important;
}
.ml-70 {
  margin-left: 70px !important;
}
.pt-70 {
  padding-top: 70px !important;
}
.pr-70 {
  padding-right: 70px !important;
}
.pb-70 {
  padding-bottom: 70px !important;
}
.pl-70 {
  padding-left: 70px !important;
}
.mt-75 {
  margin-top: 75px !important;
}
.mr-75 {
  margin-right: 75px !important;
}
.mb-75 {
  margin-bottom: 75px !important;
}
.ml-75 {
  margin-left: 75px !important;
}
.pt-75 {
  padding-top: 75px !important;
}
.pr-75 {
  padding-right: 75px !important;
}
.pb-75 {
  padding-bottom: 75px !important;
}
.pl-75 {
  padding-left: 75px !important;
}
.mt-80 {
  margin-top: 80px !important;
}
.mr-80 {
  margin-right: 80px !important;
}
.mb-80 {
  margin-bottom: 80px !important;
}
.ml-80 {
  margin-left: 80px !important;
}
.pt-80 {
  padding-top: 80px !important;
}
.pr-80 {
  padding-right: 80px !important;
}
.pb-80 {
  padding-bottom: 80px !important;
}
.pl-80 {
  padding-left: 80px !important;
}
.mt-85 {
  margin-top: 85px !important;
}
.mr-85 {
  margin-right: 85px !important;
}
.mb-85 {
  margin-bottom: 85px !important;
}
.ml-85 {
  margin-left: 85px !important;
}
.pt-85 {
  padding-top: 85px !important;
}
.pr-85 {
  padding-right: 85px !important;
}
.pb-85 {
  padding-bottom: 85px !important;
}
.pl-85 {
  padding-left: 85px !important;
}
.mt-90 {
  margin-top: 90px !important;
}
.mr-90 {
  margin-right: 90px !important;
}
.mb-90 {
  margin-bottom: 90px !important;
}
.ml-90 {
  margin-left: 90px !important;
}
.pt-90 {
  padding-top: 90px !important;
}
.pr-90 {
  padding-right: 90px !important;
}
.pb-90 {
  padding-bottom: 90px !important;
}
.pl-90 {
  padding-left: 90px !important;
}
.mt-95 {
  margin-top: 95px !important;
}
.mr-95 {
  margin-right: 95px !important;
}
.mb-95 {
  margin-bottom: 95px !important;
}
.ml-95 {
  margin-left: 95px !important;
}
.pt-95 {
  padding-top: 95px !important;
}
.pr-95 {
  padding-right: 95px !important;
}
.pb-95 {
  padding-bottom: 95px !important;
}
.pl-95 {
  padding-left: 95px !important;
}
.mt-100 {
  margin-top: 100px !important;
}
.mr-100 {
  margin-right: 100px !important;
}
.mb-100 {
  margin-bottom: 100px !important;
}
.ml-100 {
  margin-left: 100px !important;
}
.pt-100 {
  padding-top: 100px !important;
}
.pr-100 {
  padding-right: 100px !important;
}
.pb-100 {
  padding-bottom: 100px !important;
}
.pl-100 {
  padding-left: 100px !important;
}
/*# sourceMappingURL=maps/common.css.map */
