@charset "UTF-8";
/* Initial Setup */
@import url("https://fonts.googleapis.com/css2?family=Marcellus&family=Noto+Sans+JP:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
.yakuhanjp {
  font-family: "YakuHanJP", sans-serif;
}

/* CSS Document */
/*
  ------------------------------------
  ####################################
   #Common style
  ####################################
  ------------------------------------
*/
/* Reset */
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, b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

/*  HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* clearfix */
.clearfix {
  overflow: hidden;
}

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

* html .clearfix {
  zoom: 1;
}

*:first-child + html .clearfix {
  zoom: 1;
}

* {
  box-sizing: border-box;
  word-break: break-word;
  font-family: "YakuHanJP", sans-serif;
}

html {
  background: #fff;
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  line-height: 1.6;
  font-size: 1.4rem;
  color: #222222;
  letter-spacing: 1px;
  touch-action: manipulation;
  touch-action: pan-x pan-y;
}
body.is-hidden {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  body {
    min-width: inherit;
    width: 100%;
  }
}

.error {
  color: red;
  margin: 10px 0;
}

.wrap {
  overflow: hidden;
  width: 100%;
  transition: opacity 0.3s;
}
.wrap.js-load {
  opacity: 1;
}

.single-head {
  width: 100%;
  transition: opacity 0.3s;
}
.single-head.js-load {
  opacity: 1;
}

a {
  text-decoration: none;
  color: #222222;
  transition: 0.3s opacity;
}
a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
}

small {
  font-size: 85%;
}

.no_post {
  text-align: center;
  width: 100%;
}

.is-pc {
  display: block;
}

.is-pc-flex {
  display: flex;
}

.is-pc-ib {
  display: inline-block;
}

.is-sp,
.is-sp-flex,
.is-sp-flex,
.is-sp-ib {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .is-sp {
    display: block !important;
  }
  .is-sp-flex {
    display: flex !important;
  }
  .is-sp-ib {
    display: inline-block !important;
  }
  .is-pc,
  .is-pc-flex,
  .is-pc-ib {
    display: none !important;
  }
}
#wpadminbar {
  position: fixed !important;
}

/* Layout Components */
.footer {
  display: flex;
  width: 100%;
  padding: 80px 120px 10px 120px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #101827;
}
@media (max-width: 900px) {
  .footer {
    padding: 60px 15px 10px 15px;
  }
}
.footer--maxcont {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 48px;
  width: 100%;
  max-width: 1200px;
}
@media (max-width: 425px) {
  .footer--maxcont {
    gap: 40px;
  }
}
.footer--maxcont .flexbox {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 900px) {
  .footer--maxcont .flexbox {
    flex-direction: column;
    gap: 24px;
  }
}
.footer--maxcont .flexbox .content {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.footer--maxcont .flexbox .content--logo img {
  width: 100%;
  height: 100%;
}
.footer--maxcont .flexbox .content--description {
  color: #B3B3B3;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 28px */
  letter-spacing: 0.56px;
}
@media (max-width: 425px) {
  .footer--maxcont .flexbox .content--description {
    font-size: 12px;
  }
}
.footer--maxcont .flexbox .linkbox {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  align-self: stretch;
}
@media (max-width: 425px) {
  .footer--maxcont .flexbox .linkbox {
    flex-direction: column;
    gap: 24px;
  }
}
.footer--maxcont .flexbox .linkbox--list {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 24px;
  align-self: stretch;
}
@media (max-width: 425px) {
  .footer--maxcont .flexbox .linkbox--list.min {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer--maxcont .flexbox .linkbox--list .item .link {
  color: #FFF;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 14px */
}
.footer--maxcont .flexbox .linkbox--list .item .link.min {
  font-size: 12px;
}
.footer--maxcont .copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-top: 1px solid #4B4B4B;
  padding: 20px;
}
@media (max-width: 425px) {
  .footer--maxcont .copyright {
    flex-direction: column-reverse;
    gap: 12px;
  }
}
.footer--maxcont .copyright--text {
  color: #B3B3B3;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 10px */
  letter-spacing: 0.4px;
}
.footer--maxcont .copyright--list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
}
@media (max-width: 425px) {
  .footer--maxcont .copyright--list {
    gap: 12px;
  }
}
.footer--maxcont .copyright--list .item .link {
  color: #B3B3B3;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 12px */
}
@media (max-width: 425px) {
  .footer--maxcont .copyright--list .item .link {
    font-size: 10px;
  }
}

.sticky-footer-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-top: 1px solid rgba(229, 229, 229, 0.8);
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
  padding: 16px 24px;
  z-index: 1000;
}
.sticky-footer-bar .sticky-footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .sticky-footer-bar .sticky-footer-content {
    flex-direction: column;
    gap: 12px;
  }
}
.sticky-footer-bar .apply-button {
  background: linear-gradient(135deg, #ff0f6b, #ff4593);
  color: white;
  padding: 12px 32px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 15, 107, 0.3);
}
.sticky-footer-bar .apply-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 15, 107, 0.4);
}
.sticky-footer-bar .apply-button:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .sticky-footer-bar .apply-button {
    width: 100%;
    max-width: 300px;
    padding: 14px 24px;
  }
}
.sticky-footer-bar .back-button {
  background: transparent;
  color: #666666;
  padding: 12px 24px;
  border: 2px solid #e5e5e5;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.sticky-footer-bar .back-button:hover {
  border-color: #ff0f6b;
  color: #ff0f6b;
  background: rgba(255, 15, 107, 0.05);
}
@media (max-width: 768px) {
  .sticky-footer-bar .back-button {
    width: 100%;
    max-width: 200px;
    padding: 12px 20px;
  }
}

.front-body .header {
  width: 100%;
  background-color: #FFFFFF;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  z-index: 10000;
  top: 0;
  left: 0;
}
.front-body .header--maxcont {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  padding: 0 32px;
  position: relative;
}
@media (max-width: 425px) {
  .front-body .header--maxcont {
    padding: 0 12px;
  }
}
.front-body .header--logo {
  width: 153px;
  height: 42px;
}
.front-body .header--linkbox {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 900px) {
  .front-body .header--linkbox {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    background: #FFF;
    padding: 54px 24px;
    width: 229px;
    gap: 0;
    transition: 0.3s;
  }
}
@media (max-width: 900px) {
  .front-body .header--linkbox .link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #EEE;
    padding: 20px 0;
  }
}
.front-body .header--linkbox .link .text {
  color: #182346;
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 1.4px;
  text-wrap: nowrap;
}
.front-body .header--linkbox .link .spicon {
  display: none;
}
@media (max-width: 900px) {
  .front-body .header--linkbox .link .spicon {
    display: block;
  }
}
.front-body .header--linkbox .splink {
  display: none;
}
@media (max-width: 900px) {
  .front-body .header--linkbox .splink {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #EEE;
    padding: 20px 0;
  }
}
.front-body .header--linkbox .splink .text {
  color: #222;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 12px */
}
.front-body .header--linkbox .splink-sns {
  display: none;
}
@media (max-width: 900px) {
  .front-body .header--linkbox .splink-sns {
    display: flex;
    padding: 10px 0;
  }
}
.front-body .header--linkbox .splink-sns .text {
  color: #222;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 12px */
}
.front-body .header--linkbox .header-button {
  border-radius: 37px;
  background: var(--linear-gradient, linear-gradient(281deg, #38D0E4 0%, #3561E4 100%));
  display: flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 900px) {
  .front-body .header--linkbox .header-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 87px;
    background: #222;
  }
}
@media (max-width: 768px) {
  .front-body .header--linkbox .header-button {
    margin-top: auto;
  }
}
.front-body .header--linkbox .header-button .text {
  color: #FFF;
  font-family: "YakuHanJP", "Noto Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 14px */
}
.front-body .header--linkbox .header-button .spicon {
  display: none;
}
@media (max-width: 900px) {
  .front-body .header--linkbox .header-button .spicon {
    display: block;
  }
}
@media (max-width: 900px) {
  .front-body .header--linkbox.active {
    right: 0;
    transition: 0.3s;
  }
}
.front-body .header--hamburger {
  display: none;
}
@media (max-width: 900px) {
  .front-body .header--hamburger {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 22px;
    height: 22px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }
  .front-body .header--hamburger .line {
    width: 100%;
    height: 2px;
    background-color: #222;
    transition: 0.3s;
  }
}
@media (max-width: 900px) {
  .front-body .header--hamburger.active .line {
    transition: 0.3s;
  }
  .front-body .header--hamburger.active .line1 {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .front-body .header--hamburger.active .line2 {
    transform: rotate(-45deg);
  }
  .front-body .header--hamburger.active .line3 {
    transform: rotate(1225deg);
    opacity: 0;
  }
}
@media (max-width: 900px) {
  .front-body .header.active::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
  }
}
.front-body .kv {
  width: 100%;
  height: 620px;
  flex-shrink: 0;
  background: rgb(53, 97, 228);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 64px;
}
@media (max-width: 900px) {
  .front-body .kv {
    height: 487px;
  }
}
.front-body .kv--maxcont {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  position: relative;
  height: 100%;
  padding: 70px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .front-body .kv--maxcont {
    padding: 60px 15px 60px 15px;
  }
}
.front-body .kv--backimg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.front-body .kv--backimg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.front-body .kv--text {
  position: relative;
  z-index: 12;
  height: 100%;
}
.front-body .kv--text .subtitle {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 1.4px;
  font-family: "YakuHanJP", "Noto Sans", sans-serif;
  margin-bottom: 17px;
  width: 173px;
  height: 47px;
}
.front-body .kv--text .title {
  color: #FFFFFF;
  font-size: 72px;
  font-weight: 700;
  font-family: "YakuHanJP", "Noto Sans", sans-serif;
  margin-bottom: 19px;
  line-height: 120%;
}
@media (max-width: 768px) {
  .front-body .kv--text .title {
    color: #FFF;
    text-shadow: 0 4px 12px rgba(41, 92, 244, 0.2);
    font-family: "Noto Sans JP";
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 52.8px */
  }
}
.front-body .kv--text .description {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
  font-family: "YakuHanJP", "Noto Sans", sans-serif;
  margin-bottom: 44px;
}
@media (max-width: 768px) {
  .front-body .kv--text .description {
    color: #FFF;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%; /* 25.2px */
    letter-spacing: 0.56px;
  }
}
.front-body .kv--text .buttons {
  display: flex;
  align-items: center;
  gap: 9px;
}
@media (max-width: 768px) {
  .front-body .kv--text .buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}
.front-body .kv--text .buttons .button-template {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  width: 260px;
  height: 54px;
  flex-shrink: 0;
  border-radius: 27px;
  border: 1px solid #FFF;
  background: rgba(34, 34, 34, 0.4);
  padding-right: 17px;
  position: relative;
  transition: 0.3s;
}
.front-body .kv--text .buttons .button-template .text {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  font-family: "YakuHanJP", "Noto Sans", sans-serif;
  width: 100%;
}
@media (max-width: 425px) {
  .front-body .kv--text .buttons .button-template .text {
    font-size: 13px;
  }
}
.front-body .kv--text .buttons .button-template .icon {
  width: 24px;
  height: 24px;
  display: block;
}
.front-body .kv--text .buttons .button-template .icon-hover {
  width: 24px;
  height: 24px;
  display: none;
}
.front-body .kv--text .buttons .button-template:hover {
  transition: 0.3s;
  background: rgba(34, 34, 34, 0.8);
}
.front-body .kv--text .buttons .button-contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  width: 260px;
  height: 54px;
  flex-shrink: 0;
  border-radius: 27px;
  border: 1px solid #FFF;
  background: rgba(34, 34, 34, 0.4);
  padding-right: 17px;
  position: relative;
  background: #222222;
  transition: 0.3s;
}
.front-body .kv--text .buttons .button-contact .text {
  position: absolute;
  top: 50%;
  text-align: center;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  font-family: "YakuHanJP", "Noto Sans", sans-serif;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 425px) {
  .front-body .kv--text .buttons .button-contact .text {
    font-size: 13px;
  }
}
.front-body .kv--text .buttons .button-contact .icon {
  width: 24px;
  height: 24px;
  display: block;
}
.front-body .kv--text .buttons .button-contact:hover {
  transition: 0.3s;
  opacity: 0.8;
}
.front-body .kv--text .buttons .button-contact:hover .text {
  transition: 0.3s;
  color: #ffffff;
}
.front-body .kv--text .buttons .button-contact:hover .icon {
  transition: 0.3s;
}
.front-body .kv--scroll {
  position: absolute;
  bottom: 0;
  left: 0%;
  transform: translateY(80%);
}
@media (max-width: 900px) {
  .front-body .kv--scroll {
    display: none;
  }
}
.front-body .kv #Kv-Swiper1 {
  transform: translate(60%, -50%);
}
@media (max-width: 900px) {
  .front-body .kv #Kv-Swiper1 {
    transform: translate(90%, -50%);
  }
}
.front-body .kv #Kv-Swiper2 {
  transform: translate(-40%, -50%);
}
@media (max-width: 900px) {
  .front-body .kv #Kv-Swiper2 {
    transform: translate(-10%, -50%);
  }
}
.front-body .kv--swiper {
  width: 454px;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  margin-top: auto;
}
@media (max-width: 768px) {
  .front-body .kv--swiper {
    width: 142px;
  }
}
.front-body .kv--swiper .swiper-wrapper {
  transition-timing-function: linear;
}
.front-body .kv--swiper .swiper-slide {
  padding: 15px;
}
.front-body .kv--swiper .swiper-slide img {
  width: 100%;
  aspect-ratio: 454/252;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .front-body .kv--swiper .swiper-slide img {
    aspect-ratio: 142/78;
  }
}
.front-body .kv::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.3;
  z-index: 11;
  background: linear-gradient(281deg, #38D0E4 0%, #3561E4 100%);
}
.front-body .template {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 80px;
}
@media (max-width: 425px) {
  .front-body .template {
    padding: 40px 24px 80px;
  }
}
.front-body .template--maxcont {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  max-width: 1440px;
}
.front-body .template--maxcont .title-cont {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-bottom: 30px;
}
.front-body .template--maxcont .title-cont .description {
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.8px;
  text-align: center;
  background: linear-gradient(281deg, #38D0E4 0%, #3561E4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "YakuHanJP", "Roboto", sans-serif;
}
@media (max-width: 768px) {
  .front-body .template--maxcont .title-cont .description {
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 14px */
    letter-spacing: 0.56px;
  }
}
.front-body .template--maxcont .title-cont .title {
  text-align: center;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.92px;
  font-family: "YakuHanJP", "Noto Sans", sans-serif;
}
@media (max-width: 768px) {
  .front-body .template--maxcont .title-cont .title {
    color: #222;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 33.6px */
  }
}
.front-body .template--maxcont .title-cont .text {
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
.front-body .template--buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
  margin-bottom: 47px;
}
.front-body .template--buttons .btn-cont-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .front-body .template--buttons .btn-cont-top {
    display: contents;
  }
}
.front-body .template--buttons .btn-cont-top .btn {
  text-wrap: nowrap;
  height: 35px;
  padding: 0 24px;
  border-radius: 18px;
  background: #F1F1F1;
  color: #222;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  font-family: "YakuHanJP", "Noto Sans", sans-serif;
  transition: 0.3s;
}
.front-body .template--buttons .btn-cont-top .btn:hover {
  transition: 0.3s;
  background: #3B82F6;
  color: #FFF;
}
.front-body .template--buttons .btn-cont-top .btn.active {
  background: #3B82F6;
  color: #FFF;
}
.front-body .template--buttons .btn-cont-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
@media (max-width: 768px) {
  .front-body .template--buttons .btn-cont-bottom {
    display: contents;
  }
}
.front-body .template--buttons .btn-cont-bottom .btn {
  text-wrap: nowrap;
  height: 35px;
  padding: 0 24px;
  border-radius: 18px;
  background: #F1F1F1;
  color: #222;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  font-family: "YakuHanJP", "Noto Sans", sans-serif;
  transition: 0.3s;
}
.front-body .template--buttons .btn-cont-bottom .btn:hover {
  transition: 0.3s;
  background: #3B82F6;
  color: #FFF;
}
.front-body .template--buttons .btn-cont-bottom .btn.active {
  background: #3B82F6;
  color: #FFF;
}
.front-body .template--buttons .more-btn {
  color: #222;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.front-body .template--cards {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}
.front-body .template--cards .card-cont {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 42px;
  padding-bottom: 15px;
}
@media (max-width: 425px) {
  .front-body .template--cards .card-cont {
    gap: 16px;
    overflow-x: auto;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }
}
.front-body .template--cards .card-cont .card {
  width: calc(100% / 4 - 42px * (4 - 1) / 4);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 768px) {
  .front-body .template--cards .card-cont .card {
    width: calc(100% / 3 - 42px * (3 - 1) / 3);
  }
}
@media (max-width: 425px) {
  .front-body .template--cards .card-cont .card {
    width: calc(100% / 2 - 16px * (2 - 1) / 2);
    min-width: 155px;
  }
}
.front-body .template--cards .card-cont .card .img {
  width: 100%;
  aspect-ratio: 267/384;
  -o-object-fit: cover;
     object-fit: cover;
}
.front-body .template--cards .card-cont .card .title {
  width: 100%;
  color: #222;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  font-family: "YakuHanJP", "Noto Sans", sans-serif;
  text-align: left;
}
@media (max-width: 768px) {
  .front-body .template--cards .card-cont .card .title {
    color: #222;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 19.6px */
  }
}
.front-body .template--cards .card-cont .card .tag {
  border-radius: 18px;
  padding: 8px 16px 9px 16px;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  font-family: "YakuHanJP", "Noto Sans", sans-serif;
}
@media (max-width: 768px) {
  .front-body .template--cards .card-cont .card .tag {
    font-size: 10px;
  }
}
.front-body .template--cards .card-cont .card .tag.all {
  background: #E8F4FD;
  color: #1976D2;
}
.front-body .template--cards .card-cont .card .tag.restaurant {
  background: #FFF3E0;
  color: #F57C00;
}
.front-body .template--cards .card-cont .card .tag.salon {
  background: #F3E5F5;
  color: #7B1FA2;
}
.front-body .template--cards .card-cont .card .tag.clinic {
  background: #E8F5E8;
  color: #388E3C;
}
.front-body .template--cards .card-cont .card .tag.gym {
  background: #FFEBEE;
  color: #D32F2F;
}
.front-body .template--cards .card-cont .card .tag.corporate {
  background: #F5F5F5;
  color: #424242;
}
.front-body .template--cards .card-cont .card .tag.ec-shop {
  background: #E1F5FE;
  color: #0277BD;
}
.front-body .template--cards .card-cont .card .tag.education {
  background: #FFF8E1;
  color: #F9A825;
}
.front-body .template--cards .card-cont .card .tag.travel {
  background: #E0F2F1;
  color: #00695C;
}
.front-body .template--cards .card-cont .card .tag.it-tech {
  background: #EDE7F6;
  color: #512DA8;
}
.front-body .template--cards .card-cont .card .tag.service {
  background: #E8F5E8;
  color: #388E3C;
}
.front-body .template--cards .card-cont .card .tag.portfolio {
  background: #F5F5F5;
  color: #424242;
}
.front-body .template--cards .card-cont .card .tag.real_estate {
  background: #E8F5E8;
  color: #388E3C;
}
.front-body .template--cards .card-cont .card .tag.recruit {
  background: #E8F5E8;
  color: #388E3C;
}
.front-body .template--cards .template-more {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  width: 260px;
  height: 54px;
  flex-shrink: 0;
  border-radius: 27px;
  border: 1px solid #FFF;
  background: rgba(34, 34, 34, 0.4);
  padding-right: 17px;
  position: relative;
  background: #222222;
  transition: 0.3s;
}
.front-body .template--cards .template-more .text {
  position: absolute;
  top: 50%;
  text-align: center;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  font-family: "YakuHanJP", "Noto Sans", sans-serif;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .front-body .template--cards .template-more .text {
    color: #FFF;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 13px */
  }
}
.front-body .template--cards .template-more .icon {
  width: 24px;
  height: 24px;
  display: block;
}
.front-body .template--cards .template-more .icon-hover {
  width: 24px;
  height: 24px;
  display: none;
}
.front-body .template--cards .template-more:hover {
  transition: 0.3s;
  background: #FFFFFF;
  border: 1px solid #222222;
}
.front-body .template--cards .template-more:hover .text {
  transition: 0.3s;
  color: #222222;
}
.front-body .template--cards .template-more:hover .icon {
  display: none;
}
.front-body .template--cards .template-more:hover .icon-hover {
  display: block;
}
.front-body .feature {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 120px;
  background: #222;
}
@media (max-width: 425px) {
  .front-body .feature {
    padding: 60px 15px 60px;
  }
}
.front-body .feature--maxcont {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
}
.front-body .feature--maxcont .title-cont {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-bottom: 30px;
}
.front-body .feature--maxcont .title-cont.left {
  align-items: flex-start;
}
.front-body .feature--maxcont .title-cont .description {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.8px;
  text-align: center;
  background: linear-gradient(281deg, #38D0E4 0%, #3561E4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "YakuHanJP", "Roboto", sans-serif;
}
@media (max-width: 768px) {
  .front-body .feature--maxcont .title-cont .description {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 14px */
    letter-spacing: 0.56px;
  }
}
.front-body .feature--maxcont .title-cont .title {
  text-align: left;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 1.92px;
  font-family: "YakuHanJP", "Noto Sans", sans-serif;
  color: #FFF;
}
@media (max-width: 768px) {
  .front-body .feature--maxcont .title-cont .title {
    color: #FFF;
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 33.6px */
  }
}
@media (max-width: 425px) {
  .front-body .feature--maxcont .title-cont .title {
    font-size: 21px;
  }
}
.front-body .feature--slider {
  width: 100%;
}
.front-body .feature--slider .feature-cont {
  width: 100%;
  position: relative;
}
.front-body .feature--slider .feature-cont--title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 30px;
}
@media (max-width: 425px) {
  .front-body .feature--slider .feature-cont--title {
    margin-bottom: 24px;
  }
}
.front-body .feature--slider .feature-cont--title .title {
  color: #FFF;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 1.28px;
  font-family: "YakuHanJP", "Noto Sans", sans-serif;
}
@media (max-width: 425px) {
  .front-body .feature--slider .feature-cont--title .title {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 28px */
  }
}
.front-body .feature--slider .feature-cont--wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}
@media (max-width: 768px) {
  .front-body .feature--slider .feature-cont--wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    gap: 32px;
  }
}
.front-body .feature--slider .feature-cont--wrapper .feature-item {
  width: calc(100% / 2 - 32px * (2 - 1) / 2);
}
@media (max-width: 768px) {
  .front-body .feature--slider .feature-cont--wrapper .feature-item {
    width: 100% !important;
  }
}
.front-body .feature--slider .feature-cont--wrapper .feature-item .feature-item-icon {
  width: 100%;
  margin-bottom: 18px;
}
.front-body .feature--slider .feature-cont--wrapper .feature-item .feature-item-icon .img {
  width: 100%;
  aspect-ratio: 473/320;
  -o-object-fit: cover;
     object-fit: cover;
}
.front-body .feature--slider .feature-cont--wrapper .feature-item .feature-item-title {
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.8px;
  font-family: "YakuHanJP", "Noto Sans", sans-serif;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .front-body .feature--slider .feature-cont--wrapper .feature-item .feature-item-title {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 16px */
    letter-spacing: 0.64px;
  }
}
.front-body .feature--slider .feature-cont--wrapper .feature-item .feature-item-description {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.64px;
  font-family: "YakuHanJP", "Noto Sans", sans-serif;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .front-body .feature--slider .feature-cont--wrapper .feature-item .feature-item-description {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 19.6px */
    letter-spacing: 0.56px;
  }
}
.front-body .price {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 80px;
  background: #F9FAFB;
}
@media (max-width: 425px) {
  .front-body .price {
    padding: 60px 15px 60px;
  }
}
.front-body .price--maxcont {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 60px;
  width: 100%;
  max-width: 1200px;
}
@media (max-width: 425px) {
  .front-body .price--maxcont {
    gap: 12px;
  }
}
.front-body .price--maxcont .title-cont {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.front-body .price--maxcont .title-cont .description {
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.8px;
  text-align: center;
  background: linear-gradient(281deg, #38D0E4 0%, #3561E4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "YakuHanJP", "Roboto", sans-serif;
}
@media (max-width: 768px) {
  .front-body .price--maxcont .title-cont .description {
    text-align: center;
    font-family: Helvetica;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 14px */
    letter-spacing: 0.56px;
  }
}
.front-body .price--maxcont .title-cont .title {
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.92px;
  font-family: "YakuHanJP", "Noto Sans", sans-serif;
}
@media (max-width: 768px) {
  .front-body .price--maxcont .title-cont .title {
    color: #222;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 24px */
  }
}
.front-body .price--maxcont .title-cont .text {
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
.front-body .price--maxcont .cardbox {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 33px;
}
@media (max-width: 768px) {
  .front-body .price--maxcont .cardbox {
    flex-direction: column;
    gap: 32px;
  }
}
.front-body .price--maxcont .cardbox .card {
  width: calc(100% / 3 - 33px * (3 - 1) / 3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 768px) {
  .front-body .price--maxcont .cardbox .card {
    width: 100%;
  }
}
.front-body .price--maxcont .cardbox .card--titlecont {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  gap: 12px;
  padding: 24px 28px;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(100deg, #202020 0.68%, #606060 105.78%);
}
.front-body .price--maxcont .cardbox .card--titlecont.blue {
  background: linear-gradient(282deg, #38D0E4 -4.93%, #3561E4 71.02%);
}
.front-body .price--maxcont .cardbox .card--titlecont .tag {
  color: #202020;
  font-family: "YakuHanJP", "Roboto", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 14px */
  letter-spacing: 0.42px;
  display: flex;
  height: 24px;
  padding: 2px 16px 1px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 13px;
  background: #FFF;
}
@media (max-width: 768px) {
  .front-body .price--maxcont .cardbox .card--titlecont .tag {
    color: #202020;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 12px */
    letter-spacing: 0.36px;
  }
}
.front-body .price--maxcont .cardbox .card--titlecont .description {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.front-body .price--maxcont .cardbox .card--titlecont .description .price-prefix {
  color: #FFF;
  font-family: "YakuHanJP", "Roboto", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 30px */
  margin-right: 4px;
}
@media (max-width: 768px) {
  .front-body .price--maxcont .cardbox .card--titlecont .description .price-prefix {
    font-size: 20px;
  }
}
.front-body .price--maxcont .cardbox .card--titlecont .description .price-num {
  color: #FFF;
  font-family: "YakuHanJP", "Roboto", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 40px */
  transform: translateY(1px);
  margin-right: 5px;
}
@media (max-width: 768px) {
  .front-body .price--maxcont .cardbox .card--titlecont .description .price-num {
    font-size: 32px;
  }
}
.front-body .price--maxcont .cardbox .card--titlecont .description .price-suffix {
  color: #E1E1E1;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 14px */
  transform: translateY(-6px);
}
@media (max-width: 768px) {
  .front-body .price--maxcont .cardbox .card--titlecont .description .price-suffix {
    font-size: 12px;
  }
}
.front-body .price--maxcont .cardbox .card--titlecont .tax {
  color: #FFF;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 16px */
}
@media (max-width: 768px) {
  .front-body .price--maxcont .cardbox .card--titlecont .tax {
    font-size: 14px;
  }
}
.front-body .price--maxcont .cardbox .card--titlecont .tax .tax-suffix {
  color: #E1E1E1;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 14px */
}
.front-body .price--maxcont .cardbox .card--maincont {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 12px;
  padding: 24px;
  border-radius: 0 0 10px 10px;
  background: #FFF;
  box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.04);
}
.front-body .price--maxcont .cardbox .card--maincont .title {
  color: #222;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 25.2px */
  margin-bottom: 12px;
}
.front-body .price--maxcont .cardbox .card--maincont .title .appeal {
  color: #3B82F6;
}
.front-body .price--maxcont .cardbox .card--maincont .subtitle {
  color: #666;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
}
@media (max-width: 768px) {
  .front-body .price--maxcont .cardbox .card--maincont .subtitle {
    font-size: 14px;
  }
}
.front-body .price--maxcont .cardbox .card--maincont .list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 12px;
  height: 200px;
  overflow-y: auto;
  scrollbar-width: auto; /* Firefox対応: スクロールバーを常に表示 */
  padding-right: 16px;
}
.front-body .price--maxcont .cardbox .card--maincont .list::-webkit-scrollbar {
  width: 8px;
}
.front-body .price--maxcont .cardbox .card--maincont .list::-webkit-scrollbar-thumb {
  background: #e1e1e1;
  border-radius: 8px;
}
.front-body .price--maxcont .cardbox .card--maincont .list::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 8px;
}
.front-body .price--maxcont .cardbox .card--maincont .list .item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
}
.front-body .price--maxcont .cardbox .card--maincont .list .item .icon {
  width: 20px;
  min-width: 20px;
  height: 20px;
}
.front-body .price--maxcont .cardbox .card--maincont .list .item .icon .img {
  width: 20px;
  height: 20px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.front-body .price--maxcont .cardbox .card--maincont .list .item .description {
  color: #222;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
}
@media (max-width: 768px) {
  .front-body .price--maxcont .cardbox .card--maincont .list .item .description {
    font-size: 12px;
  }
}
.front-body .price--maxcont .cardbox .card--maincont .list .item .description .text {
  color: #3B3B3B;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
@media (max-width: 768px) {
  .front-body .price--maxcont .cardbox .card--maincont .list .item .description .text {
    font-size: 10px;
  }
}
.front-body .price--maxcont .cardbox .card--maincont .list .item .description .text .link {
  color: #3B82F6;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
@media (max-width: 768px) {
  .front-body .price--maxcont .cardbox .card--maincont .list .item .description .text .link {
    font-size: 10px;
  }
}
.front-body .price--maxcont .cardbox .card--maincont .text {
  color: #222;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 25.2px */
}
@media (max-width: 768px) {
  .front-body .price--maxcont .cardbox .card--maincont .text {
    font-size: 12px;
  }
}
.front-body .price--maxcont .cardbox .card--maincont .btn {
  width: 204px;
  height: 40px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 27px;
  border: 1px solid #222;
  background: #FFF;
  margin: auto auto 0;
  color: #222;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 16px */
}
.front-body .price--maxcont .cardbox .card--maincont .btn .icon {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
.front-body .price--maxcont .cardbox .card--maincont .btn .icon .img {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.front-body .option {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 24px 100px;
  background: #F9FAFB;
}
@media (max-width: 768px) {
  .front-body .option {
    padding: 0px 16px 60px;
  }
}
.front-body .option--maxcont {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
  gap: 40px;
}
.front-body .option--maxcont .title-cont {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}
.front-body .option--maxcont .title-cont .title {
  color: #222;
  text-align: center;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 32px */
}
@media (max-width: 768px) {
  .front-body .option--maxcont .title-cont .title {
    font-size: 20px;
  }
}
.front-body .option--maxcont .title-cont .description {
  color: #222;
  text-align: center;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 16px */
}
@media (max-width: 768px) {
  .front-body .option--maxcont .title-cont .description {
    font-size: 14px;
  }
}
.front-body .option--maxcont .option-list {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  overflow-x: auto;
}
@media (max-width: 768px) {
  .front-body .option--maxcont .option-list {
    flex-wrap: nowrap;
    padding-bottom: 14px;
  }
}
.front-body .option--maxcont .option-list .item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  padding: 24px 20px;
  width: calc(100% / 4 - 16px * (4 - 1) / 4);
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.04);
  min-width: 288px;
  height: 164px;
}
@media (max-width: 1250px) {
  .front-body .option--maxcont .option-list .item {
    width: calc(100% / 3 - 16px * (3 - 1) / 3);
  }
}
@media (max-width: 950px) {
  .front-body .option--maxcont .option-list .item {
    width: calc(100% / 2 - 16px * (2 - 1) / 2);
  }
}
@media (max-width: 768px) {
  .front-body .option--maxcont .option-list .item {
    width: 228px;
  }
}
.front-body .option--maxcont .option-list .item--title {
  color: #202020;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 22.4px */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  margin-bottom: 8px;
}
.front-body .option--maxcont .option-list .item--title .icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.front-body .option--maxcont .option-list .item--title .icon .img {
  width: 28px;
  height: 28px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.front-body .option--maxcont .option-list .item--description {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}
.front-body .option--maxcont .option-list .item--price {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
.front-body .option--maxcont .option-list .item--price .price-prefix {
  margin-right: 4px;
  color: #202020;
  font-family: "YakuHanJP", "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 16px */
}
.front-body .option--maxcont .option-list .item--price .price-num {
  color: #202020;
  font-family: "YakuHanJP", "Roboto", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 20px */
}
.front-body .option--maxcont .option-list .item--price .price-suffix {
  color: #202020;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 12px */
}
.front-body .flow {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 80px;
  background: #FFFFFF;
}
@media (max-width: 768px) {
  .front-body .flow {
    padding: 60px 16px 60px;
  }
}
.front-body .flow--maxcont {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 64px;
  width: 100%;
  max-width: 800px;
}
@media (max-width: 768px) {
  .front-body .flow--maxcont {
    gap: 0;
  }
}
.front-body .flow--maxcont .title-cont {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-bottom: 30px;
}
.front-body .flow--maxcont .title-cont .description {
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.8px;
  text-align: center;
  background: linear-gradient(281deg, #38D0E4 0%, #3561E4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "YakuHanJP", "Roboto", sans-serif;
}
@media (max-width: 768px) {
  .front-body .flow--maxcont .title-cont .description {
    font-size: 14px;
  }
}
.front-body .flow--maxcont .title-cont .title {
  text-align: center;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.92px;
  font-family: "YakuHanJP", "Noto Sans", sans-serif;
}
@media (max-width: 768px) {
  .front-body .flow--maxcont .title-cont .title {
    font-size: 24px;
  }
}
.front-body .flow--maxcont .flow-list {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
.front-body .flow--maxcont .flow-list .item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border-radius: 14px;
  border: 1px solid #E4E4E4;
  background: #FFF;
  box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.04);
  padding: 32px;
}
.front-body .flow--maxcont .flow-list .item--number {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 2px;
}
.front-body .flow--maxcont .flow-list .item--number .number-prefix {
  color: #3B82F6;
  text-align: center;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 14px */
}
@media (max-width: 768px) {
  .front-body .flow--maxcont .flow-list .item--number .number-prefix {
    font-size: 12px;
  }
}
.front-body .flow--maxcont .flow-list .item--number .number-num {
  color: #3B82F6;
  text-align: center;
  font-family: Roboto;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 48px */
}
.front-body .flow--maxcont .flow-list .item--content {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 8px;
}
.front-body .flow--maxcont .flow-list .item--content .title {
  color: #202020;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 16px */
}
.front-body .flow--maxcont .flow-list .item--content .description {
  color: #202020;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
.front-body .flow--maxcont .flow-list .item--content .description .link {
  text-decoration-line: underline;
}
.front-body .banner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 24px 120px;
}
@media (max-width: 768px) {
  .front-body .banner {
    padding: 0px;
  }
}
.front-body .banner--maxcont {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  position: relative;
  padding: 70px 0 79px;
}
@media (max-width: 768px) {
  .front-body .banner--maxcont {
    padding: 95px 0;
    gap: 40px;
  }
}
.front-body .banner--maxcont .background {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.front-body .banner--maxcont .title-cont {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
@media (max-width: 768px) {
  .front-body .banner--maxcont .title-cont {
    margin-bottom: 0px;
  }
}
.front-body .banner--maxcont .title-cont .description {
  color: #FFF;
  text-align: center;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
}
.front-body .banner--maxcont .title-cont .title {
  color: #FFF;
  text-align: center;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 67.2px */
}
@media (max-width: 768px) {
  .front-body .banner--maxcont .title-cont .title {
    color: #FFF;
    text-align: center;
    font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 50.4px */
  }
}
.front-body .banner--maxcont .title-cont .title br {
  display: none;
}
@media (max-width: 768px) {
  .front-body .banner--maxcont .title-cont .title br {
    display: block;
  }
}
.front-body .banner--maxcont .buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
@media (max-width: 768px) {
  .front-body .banner--maxcont .buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.front-body .banner--maxcont .buttons .btntype1 {
  color: #FFF;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 18px */
  border-radius: 27px;
  border: 1px solid #FFF;
  background: rgba(34, 34, 34, 0.4);
  width: 260px;
  height: 54px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .front-body .banner--maxcont .buttons .btntype1 {
    font-size: 13px;
  }
}
.front-body .banner--maxcont .buttons .btntype1 .icon {
  width: 24px;
  height: 24px;
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}
.front-body .banner--maxcont .buttons .btntype1 .icon .img {
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.front-body .banner--maxcont .buttons .btntype2 {
  color: #FFF;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 18px */
  border-radius: 27px;
  background: #222;
  width: 260px;
  height: 54px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .front-body .banner--maxcont .buttons .btntype2 {
    font-size: 13px;
  }
}
.front-body .banner--maxcont .buttons .btntype2 .icon {
  width: 24px;
  height: 24px;
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}
.front-body .banner--maxcont .buttons .btntype2 .icon .img {
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.front-body .faq {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 100px;
  background: #F9FAFB;
}
@media (max-width: 425px) {
  .front-body .faq {
    padding: 60px 15px 60px;
  }
}
.front-body .faq--maxcont {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
  gap: 40px;
}
.front-body .faq--maxcont .title-flexbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 768px) {
  .front-body .faq--maxcont .title-flexbox {
    display: contents;
  }
}
.front-body .faq--maxcont .title-flexbox--title-cont {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 768px) {
  .front-body .faq--maxcont .title-flexbox--title-cont {
    order: 1;
    align-items: center;
    justify-content: center;
  }
}
.front-body .faq--maxcont .title-flexbox--title-cont .title {
  color: #222;
  text-align: center;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 32px */
}
@media (max-width: 425px) {
  .front-body .faq--maxcont .title-flexbox--title-cont .title {
    font-size: 24px;
  }
}
.front-body .faq--maxcont .title-flexbox--title-cont .description {
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.8px;
  text-align: center;
  background: linear-gradient(281deg, #38D0E4 0%, #3561E4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "YakuHanJP", "Roboto", sans-serif;
}
@media (max-width: 768px) {
  .front-body .faq--maxcont .title-flexbox--title-cont .description {
    font-size: 14px;
  }
}
.front-body .faq--maxcont .title-flexbox--content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}
@media (max-width: 768px) {
  .front-body .faq--maxcont .title-flexbox--content {
    order: 3;
    flex-direction: column;
  }
}
.front-body .faq--maxcont .title-flexbox--content .title {
  color: #222;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
}
.front-body .faq--maxcont .title-flexbox--content .btn {
  width: 260px;
  height: 54px;
  flex-shrink: 0;
  border-radius: 27px;
  border: 1px solid #202020;
  background: #FFF;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.front-body .faq--maxcont .title-flexbox--content .btn .icon {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  border-radius: 21px;
  border: 1px solid #202020;
}
.front-body .faq--maxcont .title-flexbox--content .btn .icon .img {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
}
.front-body .faq--maxcont .accordion-list {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .front-body .faq--maxcont .accordion-list {
    order: 2;
  }
}
.front-body .faq--maxcont .accordion-list .accordion-008 {
  max-width: 100%;
  margin-bottom: 20px;
  border-radius: 14px;
  border-radius: 14px;
  border: 1px solid #E4E4E4;
  background: #FFF;
  box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.04);
  background-color: #fff;
}
.front-body .faq--maxcont .accordion-list .accordion-008 summary {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding: 1em 2em;
  color: #333333;
  font-weight: 600;
  cursor: pointer;
  gap: 10px;
}
.front-body .faq--maxcont .accordion-list .accordion-008 summary .icon-box {
  display: flex;
  gap: 10px;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 22.5px;
  background: #3B82F6;
  color: #FFF;
  font-family: "YakuHanJP", "Roboto", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 24px */
}
.front-body .faq--maxcont .accordion-list .accordion-008 summary::-webkit-details-marker {
  display: none;
}
.front-body .faq--maxcont .accordion-list .accordion-008 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid rgba(51, 51, 51, 0.7019607843);
  border-right: 3px solid rgba(51, 51, 51, 0.7019607843);
  content: "";
  transition: transform 0.3s;
  margin-left: auto;
}
.front-body .faq--maxcont .accordion-list .accordion-008[open] summary::after {
  transform: rotate(225deg);
}
.front-body .faq--maxcont .accordion-list .accordion-008 p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 0.3em 2em 1.5em;
  color: #333333;
  transition: transform 0.5s, opacity 0.5s;
}
.front-body .faq--maxcont .accordion-list .accordion-008[open] p {
  transform: none;
  opacity: 1;
}
.front-body .blogs {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 100px;
  background: #FFF;
}
@media (max-width: 425px) {
  .front-body .blogs {
    padding: 60px 15px 60px;
  }
}
.front-body .blogs--maxcont {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
  gap: 40px;
}
.front-body .blogs--maxcont .title-cont {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}
.front-body .blogs--maxcont .title-cont .title {
  color: #222;
  text-align: center;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 32px */
}
@media (max-width: 425px) {
  .front-body .blogs--maxcont .title-cont .title {
    font-size: 24px;
  }
}
.front-body .blogs--maxcont .title-cont .description {
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.8px;
  text-align: center;
  background: linear-gradient(281deg, #38D0E4 0%, #3561E4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "YakuHanJP", "Roboto", sans-serif;
}
@media (max-width: 768px) {
  .front-body .blogs--maxcont .title-cont .description {
    font-size: 14px;
  }
}
.front-body .blogs--maxcont .blogs-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  width: 100%;
}
@media (max-width: 768px) {
  .front-body .blogs--maxcont .blogs-list {
    flex-wrap: wrap;
    gap: 24px;
  }
}
.front-body .blogs--maxcont .blogs-list .item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  width: calc(100% / 4 - 13px * (4 - 1) / 4);
}
@media (max-width: 768px) {
  .front-body .blogs--maxcont .blogs-list .item {
    width: calc(100% / 2 - 24px * (2 - 1) / 2);
  }
}
@media (max-width: 425px) {
  .front-body .blogs--maxcont .blogs-list .item {
    width: calc(100% / 1 - 24px * (1 - 1) / 1);
  }
}
.front-body .blogs--maxcont .blogs-list .item .img-cont {
  width: 100%;
  margin-bottom: 8px;
}
.front-body .blogs--maxcont .blogs-list .item .img-cont .img {
  width: 100%;
  aspect-ratio: 18/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.front-body .blogs--maxcont .blogs-list .item .date {
  color: #666;
  font-family: "YakuHanJP", "Roboto", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.front-body .blogs--maxcont .blogs-list .item .title {
  color: #222;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}
.front-body .blogs--maxcont .more-btn {
  width: 260px;
  height: 54px;
  flex-shrink: 0;
  border-radius: 27px;
  border: 1px solid #202020;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.front-body .blogs--maxcont .more-btn .icon {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}
.front-body .blogs--maxcont .more-btn .icon .img {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.front-body .contact {
  width: 100%;
  height: 810px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}
@media (max-width: 768px) {
  .front-body .contact {
    height: 890px;
    padding: 0 16px;
  }
}
.front-body .contact .background-pc {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media (max-width: 768px) {
  .front-body .contact .background-pc {
    display: none;
  }
}
.front-body .contact .background-sp {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: none;
}
@media (max-width: 768px) {
  .front-body .contact .background-sp {
    display: block;
  }
}
.front-body .contact--maxcont {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  max-width: 1200px;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .front-body .contact--maxcont {
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
    padding-bottom: 72px;
  }
}
.front-body .contact--maxcont .title-cont {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  width: 50%;
}
@media (max-width: 768px) {
  .front-body .contact--maxcont .title-cont {
    width: 100%;
  }
}
.front-body .contact--maxcont .title-cont .description {
  color: #FFF;
  font-family: "YakuHanJP", "Roboto", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 20px */
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}
.front-body .contact--maxcont .title-cont .title {
  color: #FFF;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.14);
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 67.2px */
  letter-spacing: 1.44px;
  margin-bottom: 16px;
}
@media (max-width: 425px) {
  .front-body .contact--maxcont .title-cont .title {
    color: #FFF;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.14);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 44.8px */
    letter-spacing: 0.96px;
  }
}
.front-body .contact--maxcont .title-cont .text {
  color: #FFF;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 0.72px;
  margin-bottom: 60px;
}
.front-body .contact--maxcont .title-cont .text .highlight {
  color: #FFF;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 0.72px;
}
.front-body .contact--maxcont .title-cont .btn {
  color: #FFF;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 18px */
  border-radius: 27px;
  background: #222;
  width: 260px;
  height: 54px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .front-body .contact--maxcont .title-cont .btn {
    font-size: 13px;
    width: 100%;
  }
}
.front-body .contact--maxcont .title-cont .btn .icon {
  width: 24px;
  height: 24px;
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}
.front-body .contact--maxcont .title-cont .btn .icon .img {
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.front-body .btn {
  transition: 0.3s;
  cursor: pointer;
}
.front-body .btn:hover {
  transition: 0.3s;
  opacity: 0.6;
}
.front-body .more-btn {
  transition: 0.3s;
  cursor: pointer;
}
.front-body .more-btn:hover {
  transition: 0.3s;
  opacity: 0.6;
}
.front-body .btntype1 {
  transition: 0.3s;
  cursor: pointer;
}
.front-body .btntype1:hover {
  transition: 0.3s;
  opacity: 0.6;
}
.front-body .btntype2 {
  transition: 0.3s;
}
.front-body .btntype2:hover {
  transition: 0.3s;
  opacity: 0.6;
}

.contact-page {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
  padding: 125px 24px 0;
}
.contact-page--maxcont {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  max-width: 600px;
}
.contact-page--maxcont.success-message {
  margin-bottom: 204px;
}
.contact-page--maxcont .title-cont {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-bottom: 30px;
}
.contact-page--maxcont .title-cont .description {
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.8px;
  text-align: center;
  background: linear-gradient(281deg, #38D0E4 0%, #3561E4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "YakuHanJP", "Roboto", sans-serif;
}
@media (max-width: 768px) {
  .contact-page--maxcont .title-cont .description {
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 14px */
    letter-spacing: 0.56px;
  }
}
.contact-page--maxcont .title-cont .title {
  text-align: center;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.92px;
  font-family: "YakuHanJP", "Noto Sans", sans-serif;
}
@media (max-width: 768px) {
  .contact-page--maxcont .title-cont .title {
    color: #222;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 33.6px */
  }
}
.contact-page--maxcont .step-cont {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  margin-bottom: 44px;
}
.contact-page--maxcont .step-cont .title {
  color: #222;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 20px */
}
.contact-page--maxcont .step-cont .step-line {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  width: 100%;
  margin-top: 16px;
}
.contact-page--maxcont .step-cont .step-line .line {
  width: calc(100% / 4 - 6px * (4 - 1) / 4);
  height: 4px;
  background: #CCC;
}
.contact-page--maxcont .step-cont .step-line .line.active {
  background: #3B82F6;
}
.contact-page--maxcont .step-cont .description {
  color: #222;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  margin-top: 24px;
}
.contact-page--maxcont form {
  width: 100%;
}
.contact-page--maxcont form .form-group {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  margin-bottom: 32px;
  width: 100%;
}
.contact-page--maxcont form .form-group.section-navigation {
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-bottom: 60px;
  margin-top: 28px;
  gap: 24px;
}
.contact-page--maxcont form .form-group.section-navigation .prev-btn {
  width: 260px;
  height: 54px;
  flex-shrink: 0;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 18px */
  border-radius: 27px;
  border: 1px solid #202020;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.contact-page--maxcont form .form-group.section-navigation .prev-btn img {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
}
.contact-page--maxcont form .form-group.section-navigation .next-btn {
  width: 260px;
  height: 54px;
  flex-shrink: 0;
  color: #FFF;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 18px */
  border-radius: 27px;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.contact-page--maxcont form .form-group.section-navigation .next-btn img {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}
.contact-page--maxcont form .form-group label {
  width: 100%;
  color: #222;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 14px */
}
.contact-page--maxcont form .form-group label .required {
  color: #F00;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 14px */
}
.contact-page--maxcont form .form-group .validation-error {
  color: #F00;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 14px */
  margin-top: 6px;
}
.contact-page--maxcont form .form-group input {
  display: flex;
  height: 48px;
  padding: 16px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  width: 100%;
  border-radius: 7px;
  border: 1px solid #B3B3B3;
  background: #FFF;
  margin-top: 16px;
}
.contact-page--maxcont form .form-group textarea {
  display: flex;
  padding: 8px 16px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  width: 100%;
  border-radius: 7px;
  border: 1px solid #B3B3B3;
  background: #FFF;
  margin-top: 16px;
}
.contact-page--maxcont form .form-group select {
  display: flex;
  padding: 16px;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  border-radius: 7px;
  border: 1px solid #B3B3B3;
  background: #FFF;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.41 0.589844L6 5.16984L10.59 0.589844L12 1.99984L6 7.99984L0 1.99984L1.41 0.589844Z' fill='%23666666'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  color: #666;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 14px */
  margin-top: 16px;
}
.contact-page--maxcont form .form-group select option {
  color: #666;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 14px */
}
.contact-page--maxcont form .form-group .checkbox-group {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 18px 16px;
  margin-top: 16px;
}
.contact-page--maxcont form .form-group .checkbox-group .checkbox-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  width: auto;
}
.contact-page--maxcont form .form-group .checkbox-group .checkbox-item.last {
  width: 100%;
}
.contact-page--maxcont form .form-group .checkbox-group .checkbox-item input {
  width: 16px;
  height: auto;
  margin-top: 0;
}
.contact-page--maxcont form .form-group .checkbox-group .checkbox-item span {
  text-wrap: nowrap;
  color: #222;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 14px */
}
.contact-page--maxcont form .form-group .checkbox-group .checkbox-item .input-text {
  width: 100%;
}
.contact-page--maxcont .confirmation-content {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 29px;
}
.contact-page--maxcont .confirmation-content .confirmation-group {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 29px;
}
.contact-page--maxcont .confirmation-content .confirmation-group .confirmation-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}
.contact-page--maxcont .confirmation-content .confirmation-group .confirmation-item label {
  color: #222;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 14px */
  width: 250px;
  min-width: 250px;
}
.contact-page--maxcont .confirmation-content .confirmation-group .confirmation-item span {
  color: #666;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 14px */
}
.contact-page--maxcont .confirmation-content .section-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-bottom: 60px;
  margin-top: 28px;
  gap: 24px;
}
.contact-page--maxcont .confirmation-content .section-navigation .prev-btn {
  width: 260px;
  height: 54px;
  flex-shrink: 0;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 18px */
  border-radius: 27px;
  border: 1px solid #202020;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.contact-page--maxcont .confirmation-content .section-navigation .prev-btn img {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
}
.contact-page--maxcont .confirmation-content .section-navigation .next-btn {
  width: 260px;
  height: 54px;
  flex-shrink: 0;
  color: #FFF;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 18px */
  border-radius: 27px;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.contact-page--maxcont .confirmation-content .section-navigation .next-btn img {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}

.blog-archive {
  padding-top: 144px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.blog-archive--maxcont {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
}
.blog-archive--maxcont .title-cont {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 12px;
}
.blog-archive--maxcont .title-cont .title {
  color: #222;
  text-align: center;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 32px */
}
@media (max-width: 425px) {
  .blog-archive--maxcont .title-cont .title {
    font-size: 24px;
  }
}
.blog-archive--maxcont .title-cont .description {
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.8px;
  text-align: center;
  background: linear-gradient(281deg, #38D0E4 0%, #3561E4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "YakuHanJP", "Roboto", sans-serif;
}
@media (max-width: 768px) {
  .blog-archive--maxcont .title-cont .description {
    font-size: 14px;
  }
}
.blog-archive--maxcont .blogs-list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  width: 100%;
  margin: 60px 0;
}
.blog-archive--maxcont .blogs-list .item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  width: calc(100% / 4 - 20px * (4 - 1) / 4);
}
.blog-archive--maxcont .blogs-list .item .img-cont {
  width: 100%;
  margin-bottom: 8px;
}
.blog-archive--maxcont .blogs-list .item .img-cont .img {
  width: 100%;
  aspect-ratio: 18/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-archive--maxcont .blogs-list .item .date {
  color: #666;
  font-family: "YakuHanJP", "Roboto", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 16.8px */
}
.blog-archive--maxcont .blogs-list .item .title {
  color: #222;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 19.6px */
}
.blog-archive--maxcont .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 80px;
}

.blog-single {
  padding-top: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.blog-single--maxcont {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
}
.blog-single .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
  margin-bottom: 60px;
}
.blog-single .breadcrumb__list {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
}
.blog-single .breadcrumb__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #222;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 16.8px */
  gap: 14px;
}
.blog-single .breadcrumb__item .link {
  display: flex;
  color: #222;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 16.8px */
}
.blog-single .blog-article {
  width: 1080px;
  padding: 60px 100px;
}
.blog-single .blog-article__header .blog-article-kv {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 24px;
}
.blog-single .blog-article__header .blog-article-kv img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-single .blog-article__date {
  color: #666;
  font-family: "YakuHanJP", "Roboto", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 14px */
  margin-bottom: 8px;
}
.blog-single .blog-article__title {
  color: #222;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 28px */
  margin-bottom: 16px;
}
.blog-single .blog-article__content figure {
  width: 100%;
  margin-bottom: 24px;
}
.blog-single .blog-article__content figure .img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-single .blog-article__content p {
  color: #222;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  letter-spacing: 0.48px;
  margin-bottom: 24px;
}
.blog-single .blog-article__content h2 {
  color: #222;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 24px */
  padding: 16px 0;
  border-bottom: 1px solid #222;
  margin-bottom: 16px;
}
.blog-single .blog-article__content h3 {
  color: #222;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 20px */
  display: flex;
  padding: 16px 0;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  background: #EBF2FE;
  margin-bottom: 16px;
}
.base-theme-single {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  padding: 64px 0px 0px;
}
.base-theme-single .kv-back {
  width: 100%;
  height: 800px;
  position: absolute;
  top: 64px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.base-theme-single--maxcont {
  width: 100%;
  padding: 50px 0px;
}
.base-theme-single--maxcont .content {
  width: 100%;
  height: 100%;
  padding: 0 16px;
}
.base-theme-single--maxcont .content .scroll-box {
  width: 100%;
  height: 700px;
  max-height: 700px;
  overflow-y: scroll;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}
.base-theme-single--maxcont .content .scroll-box--content {
  width: 100%;
}
.base-theme-single--maxcont .content .scroll-box--content img {
  width: 100%;
}
.base-theme-single--maxcont .content .scroll-box--float-menu {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
.base-theme-single--maxcont .content .scroll-box--float-menu .btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  height: 56px;
}
.base-theme-single--maxcont .content .scroll-box--float-menu .btn:hover {
  opacity: 1;
}
.base-theme-single--maxcont .content .scroll-box--float-menu .btn .icon.active {
  display: none;
}
.base-theme-single--maxcont .content .scroll-box--float-menu .btn .text {
  color: #5A5A5A;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
.base-theme-single--maxcont .content .scroll-box--float-menu .btn.pc {
  display: flex;
  width: 80px;
  padding: 10px 18px;
  border-radius: 8px 0 0 8px;
  background: #FFF;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.base-theme-single--maxcont .content .scroll-box--float-menu .btn.sp {
  display: flex;
  width: 80px;
  padding: 10px 18px;
  border-radius: 0 8px 8px 0;
  background: #FFF;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.base-theme-single--maxcont .content .scroll-box--float-menu .btn.active {
  background: #3B82F6;
}
.base-theme-single--maxcont .content .scroll-box--float-menu .btn.active .icon {
  display: none;
}
.base-theme-single--maxcont .content .scroll-box--float-menu .btn.active .icon.active {
  display: block;
}
.base-theme-single--maxcont .content .scroll-box--float-menu .btn.active .text {
  color: #FFF;
}
.base-theme-single--maxcont .content .relative-cont {
  position: absolute;
  width: auto;
  height: 700px;
  max-height: 700px;
  top: 114px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.base-theme-single--maxcont .content .explane-box {
  width: 100%;
  margin: 90px 0px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.base-theme-single--maxcont .content .explane-box .category-name {
  border-radius: 18px;
  padding: 8px 16px 9px 16px;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  font-family: "YakuHanJP", "Noto Sans", sans-serif;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .base-theme-single--maxcont .content .explane-box .category-name {
    font-size: 10px;
  }
}
.base-theme-single--maxcont .content .explane-box .category-name.all {
  background: #E8F4FD;
  color: #1976D2;
}
.base-theme-single--maxcont .content .explane-box .category-name.restaurant {
  background: #FFF3E0;
  color: #F57C00;
}
.base-theme-single--maxcont .content .explane-box .category-name.salon {
  background: #F3E5F5;
  color: #7B1FA2;
}
.base-theme-single--maxcont .content .explane-box .category-name.clinic {
  background: #E8F5E8;
  color: #388E3C;
}
.base-theme-single--maxcont .content .explane-box .category-name.gym {
  background: #FFEBEE;
  color: #D32F2F;
}
.base-theme-single--maxcont .content .explane-box .category-name.corporate {
  background: #F5F5F5;
  color: #424242;
}
.base-theme-single--maxcont .content .explane-box .category-name.ec-shop {
  background: #E1F5FE;
  color: #0277BD;
}
.base-theme-single--maxcont .content .explane-box .category-name.education {
  background: #FFF8E1;
  color: #F9A825;
}
.base-theme-single--maxcont .content .explane-box .category-name.travel {
  background: #E0F2F1;
  color: #00695C;
}
.base-theme-single--maxcont .content .explane-box .category-name.it-tech {
  background: #EDE7F6;
  color: #512DA8;
}
.base-theme-single--maxcont .content .explane-box .scene-text {
  color: #222;
  font-family: "YakuHanJP", "Noto Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  margin-bottom: 40px;
}
.base-theme-single--maxcont .content .explane-box .btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  width: 360px;
  height: 54px;
  flex-shrink: 0;
  border-radius: 27px;
  border: 1px solid #FFF;
  background: rgba(34, 34, 34, 0.4);
  padding-right: 17px;
  position: relative;
  background: #222222;
  transition: 0.3s;
}
.base-theme-single--maxcont .content .explane-box .btn .text {
  position: absolute;
  top: 50%;
  text-align: center;
  width: 100%;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  font-family: "YakuHanJP", "Noto Sans", sans-serif;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 425px) {
  .base-theme-single--maxcont .content .explane-box .btn .text {
    font-size: 13px;
  }
}
.base-theme-single--maxcont .content .explane-box .btn .icon {
  width: 24px;
  height: 24px;
  display: block;
}
.base-theme-single--maxcont .content .explane-box .btn .icon img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.base-theme-single--maxcont .content .explane-box .btn:hover {
  transition: 0.3s;
  opacity: 0.8;
}
.base-theme-single--maxcont .content .explane-box .btn:hover .text {
  transition: 0.3s;
  color: #ffffff;
}
.base-theme-single--maxcont .content .explane-box .btn:hover .icon {
  transition: 0.3s;
}
.base-theme-single--maxcont .content .related-designs {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.base-theme-single--maxcont .content .related-designs .title {
  color: #222;
  text-align: center;
  font-family: "YakuHanJP", "Noto Sans", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 33.6px */
  margin-bottom: 20px;
}
.base-theme-single--maxcont .content .related-designs .card-cont .title {
  margin-bottom: 0px;
}
.base-theme-single--maxcont .content .prev-btn {
  width: 260px;
  height: 54px;
  flex-shrink: 0;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 18px */
  border-radius: 27px;
  border: 1px solid #202020;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 80px auto 30px;
}
.base-theme-single--maxcont .content .prev-btn img {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
}
.base-theme-single--maxcont.is-pc {
  max-width: 1200px;
}
.base-theme-single--maxcont.is-sp .content .scroll-box {
  max-width: 400px;
}

/* Module Components */
/* CSS Document */
.fi,
.fi-mult > * {
  opacity: 0;
  transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: transform, opacity, visibility;
}

.single,
.mult > * {
  opacity: 0.9;
  transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: transform, opacity, visibility;
}

.s-left,
.m-left > *:nth-child(odd) {
  transform: translate3d(-15%, 0, 0);
}

.s-right,
.m-right > *:nth-child(even) {
  transform: translate3d(15%, 0, 0);
}

.s-top,
.m-top > * {
  transform: translate3d(0, -20px, 0);
}

.s-under,
.m-under > * {
  transform: translate3d(0, 20px, 0);
}

.s-rt {
  transform: translate3d(50px, -50px, 0);
}

.s-ru {
  transform: translate3d(50px, 50px, 0);
}

.s-lt {
  transform: translate3d(-50px, -50px, 0);
}

.s-lu {
  transform: translate3d(-50px, 50px, 0);
}

.s-block {
  display: inline-block;
  position: relative;
  overflow: hidden;
  color: transparent;
  transition: color 0.6s 0.3s;
}
.s-block .c-ttlMid__service--icon {
  transition: opacity;
  opacity: 0;
}
.s-block:before {
  content: "";
  position: absolute;
  background: #222222;
  width: 100%;
  height: 100%;
  left: -100%;
  z-index: 1;
}
.s-block.pActive {
  color: unset;
}
.s-block.pActive:before {
  animation: blockAnimation 1s forwards ease;
}
.s-block.pActive .c-ttlMid__service--icon {
  opacity: 1;
}

@keyframes blockAnimation {
  0% {
    left: calc(-100% - 1px);
  }
  100% {
    left: calc(100% + 1px);
  }
}
.rotate {
  transform: rotate(30deg);
}
.rotate.pActive {
  transform: rotate(0deg);
}

.scale {
  transform: scale(0.3);
}
.scale.pActive {
  transform: scale(1);
}

.bound {
  animation: key1 0.3s ease infinite alternate;
}

@keyframes key1 {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-10px);
  }
}
.single.pActive,
.mult > .pActive,
.fi.pActive,
.fi-mult > .pActive {
  opacity: 1;
  --webkit-transform: translate3d(0,0,0);
  transform: translate3d(0, 0, 0);
}

.delay2sec {
  transition: all 2s cubic-bezier(0.4, 0, 0.2, 1);
  animation: all 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.delay4sec {
  transition: all 4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: all 4s cubic-bezier(0.4, 0, 0.2, 1);
}

.delay6sec {
  transition: all 6s cubic-bezier(0.4, 0, 0.2, 1);
  animation: all 6s cubic-bezier(0.4, 0, 0.2, 1);
}

.lg-backdrop {
  background: #181818 !important;
}

.lg-toolbar {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
  background: rgba(0, 0, 0, 0) !important;
}

.lg-prev, .lg-next {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/*!
	Modaal - accessible modals - v0.4.4
	by Humaan, for all humans.
	http://humaan.com
 */
.modaal-noscroll {
  overflow: hidden;
}

.modaal-accessible-hide {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
}

.modaal-wrapper {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: auto;
  opacity: 1;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  transition: all 0.3s ease-in-out;
}
.modaal-wrapper * {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
}
.modaal-wrapper .modaal-close {
  border: none;
  background: transparent;
  padding: 0;
  -webkit-appearance: none;
}
.modaal-wrapper.modaal-start_none {
  display: none;
  opacity: 1;
}
.modaal-wrapper.modaal-start_fade {
  opacity: 0;
}
.modaal-wrapper *[tabindex="0"] {
  outline: none !important;
}
.modaal-wrapper.modaal-fullscreen {
  overflow: hidden;
}

.modaal-outer-wrapper {
  display: table;
  position: relative;
  width: 100%;
  height: 100%;
}
.modaal-fullscreen .modaal-outer-wrapper {
  display: block;
}

.modaal-inner-wrapper {
  display: table-cell;
  width: 100%;
  height: 100%;
  position: relative;
  vertical-align: middle;
  text-align: center;
  padding: 0;
}
.modaal-fullscreen .modaal-inner-wrapper {
  padding: 0;
  display: block;
  vertical-align: top;
}

.modaal-container {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: auto;
  text-align: left;
  color: #000;
  max-width: 1200px;
  border-radius: 0px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: auto;
}
@media screen and (max-width: 768px) {
  .modaal-container {
    width: calc(100% - 40px);
  }
}
.modaal-container.is_loading {
  height: 100px;
  width: 100px;
  overflow: hidden;
}
.modaal-fullscreen .modaal-container {
  max-width: none;
  height: 100%;
  overflow: auto;
}

.modaal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  color: #222222;
  cursor: pointer;
  opacity: 1;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0);
  border-radius: 100%;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 768px) {
  .modaal-close {
    right: 10px;
    top: 3px;
  }
}
.modaal-close span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}
.modaal-close:before, .modaal-close:after {
  content: "";
  position: absolute;
  background: #222222;
  width: 80%;
  height: 2px;
}
.modaal-close:before {
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0) rotate(-45deg) scale(1);
}
.modaal-close:after {
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0) rotate(45deg) scale(1);
}
.modaal-fullscreen .modaal-close {
  background: #afb7bc;
  right: 10px;
  top: 10px;
}

.modaal-content-container {
  padding: 0;
}

.modaal-confirm-wrap {
  padding: 30px 0 0;
  text-align: center;
  font-size: 0;
}

.modaal-confirm-btn {
  font-size: 14px;
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  background: transparent;
}
.modaal-confirm-btn.modaal-ok {
  padding: 10px 15px;
  color: #fff;
  background: #555;
  border-radius: 3px;
  transition: background 0.2s ease-in-out;
}
.modaal-confirm-btn.modaal-ok:hover {
  background: #2f2f2f;
}
.modaal-confirm-btn.modaal-cancel {
  text-decoration: underline;
}
.modaal-confirm-btn.modaal-cancel:hover {
  text-decoration: none;
  color: #2f2f2f;
}

@keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.modaal-instagram .modaal-container {
  width: auto;
  background: transparent;
  box-shadow: none !important;
}
.modaal-instagram .modaal-content-container {
  padding: 0;
  background: transparent;
}
.modaal-instagram .modaal-content-container > blockquote {
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}
.modaal-instagram iframe {
  opacity: 0;
  margin: -6px !important;
  border-radius: 0 !important;
  width: 1000px !important;
  max-width: 800px !important;
  box-shadow: none !important;
  animation: instaReveal 1s linear forwards;
}

.modaal-image .modaal-inner-wrapper {
  padding-left: 140px;
  padding-right: 140px;
}
.modaal-image .modaal-container {
  width: auto;
  max-width: 100%;
}

.modaal-gallery-wrap {
  position: relative;
  color: #fff;
}

.modaal-gallery-item {
  display: none;
}
.modaal-gallery-item img {
  display: block;
}
.modaal-gallery-item.is_active {
  display: block;
}

.modaal-gallery-label {
  position: absolute;
  left: 0;
  width: 100%;
  margin: 20px 0 0;
  font-size: 18px;
  text-align: center;
  color: #fff;
}
.modaal-gallery-label:focus {
  outline: none;
}

.modaal-gallery-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  cursor: pointer;
  color: #fff;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border: none;
  border-radius: 100%;
  transition: all 0.2s ease-in-out;
}
.modaal-gallery-control.is_hidden {
  opacity: 0;
  cursor: default;
}
.modaal-gallery-control:focus, .modaal-gallery-control:hover {
  outline: none;
  background: #fff;
}
.modaal-gallery-control:focus:before, .modaal-gallery-control:focus:after, .modaal-gallery-control:hover:before, .modaal-gallery-control:hover:after {
  background: #afb7bc;
}
.modaal-gallery-control span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}
.modaal-gallery-control:before, .modaal-gallery-control:after {
  display: block;
  content: " ";
  position: absolute;
  top: 16px;
  left: 25px;
  width: 4px;
  height: 18px;
  border-radius: 4px;
  background: #fff;
  transition: background 0.2s ease-in-out;
}
.modaal-gallery-control:before {
  margin: -5px 0 0;
  transform: rotate(-45deg);
}
.modaal-gallery-control:after {
  margin: 5px 0 0;
  transform: rotate(45deg);
}

.modaal-gallery-next-inner {
  left: 100%;
  margin-left: 40px;
}
.modaal-gallery-next-outer {
  right: 45px;
}

.modaal-gallery-prev:before, .modaal-gallery-prev:after {
  left: 22px;
}
.modaal-gallery-prev:before {
  margin: 5px 0 0;
  transform: rotate(-45deg);
}
.modaal-gallery-prev:after {
  margin: -5px 0 0;
  transform: rotate(45deg);
}
.modaal-gallery-prev-inner {
  right: 100%;
  margin-right: 40px;
}
.modaal-gallery-prev-outer {
  left: 45px;
}

.modaal-video-wrap {
  margin: auto 50px;
  position: relative;
}

.modaal-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background: #000;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
.modaal-video-container iframe,
.modaal-video-container object,
.modaal-video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modaal-iframe .modaal-content {
  width: 100%;
  height: 100%;
}

.modaal-iframe-elem {
  width: 100%;
  height: 100%;
  display: block;
}

@media only screen and (min-width: 1400px) {
  .modaal-video-container {
    padding-bottom: 0;
    height: 731px;
  }
}
@media only screen and (max-width: 1140px) {
  .modaal-image .modaal-inner-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }
  .modaal-gallery-control {
    top: auto;
    bottom: 20px;
    transform: none;
    background: rgba(0, 0, 0, 0.7);
  }
  .modaal-gallery-control:before, .modaal-gallery-control:after {
    background: #fff;
  }
  .modaal-gallery-next {
    left: auto;
    right: 20px;
  }
  .modaal-gallery-prev {
    left: 20px;
    right: auto;
  }
}
@media screen and (max-width: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
}
@media screen and (max-height: 1100px) {
  .modaal-instagram iframe {
    width: 700px !important;
  }
}
@media screen and (max-height: 1000px) {
  .modaal-instagram iframe {
    width: 600px !important;
  }
}
@media screen and (max-height: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
  .modaal-video-container {
    max-width: 900px;
    max-height: 510px;
  }
}
@media only screen and (max-width: 600px) {
  .modaal-instagram iframe {
    width: 280px !important;
  }
}
@media only screen and (max-height: 820px) {
  .modaal-gallery-label {
    display: none;
  }
}
.modaal-loading-spinner {
  background: none;
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  margin: -100px 0 0 -100px;
  transform: scale(0.25);
}
@keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    transform: scale(1);
  }
}
.modaal-loading-spinner > div {
  width: 24px;
  height: 24px;
  margin-left: 4px;
  margin-top: 4px;
  position: absolute;
}

.modaal-loading-spinner > div > div {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: #fff;
}

.modaal-loading-spinner > div:nth-of-type(1) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0s;
}

.modaal-loading-spinner > div:nth-of-type(2) > div, .modaal-loading-spinner > div:nth-of-type(3) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(1) {
  transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(2) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.12s;
}

.modaal-loading-spinner > div:nth-of-type(2) {
  transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(3) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.25s;
}

.modaal-loading-spinner > div:nth-of-type(4) > div, .modaal-loading-spinner > div:nth-of-type(5) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(3) {
  transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(4) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.37s;
}

.modaal-loading-spinner > div:nth-of-type(4) {
  transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(5) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.5s;
}

.modaal-loading-spinner > div:nth-of-type(6) > div, .modaal-loading-spinner > div:nth-of-type(7) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(5) {
  transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(6) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.62s;
}

.modaal-loading-spinner > div:nth-of-type(6) {
  transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(7) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.75s;
}

.modaal-loading-spinner > div:nth-of-type(7) {
  transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(8) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.87s;
}

.modaal-loading-spinner > div:nth-of-type(8) {
  transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
}

/**
 * Swiper 9.3.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 15, 2023
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

.swiper, swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide, swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide, .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader, swiper-container:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

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

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

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

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

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

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

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

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet, :host(.swiper-horizontal.swiper-rtl) .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  -ms-touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.swiper .swiper-notification, swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-next + .swiper-slide, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  backface-visibility: hidden;
  overflow: hidden;
}/*# sourceMappingURL=app.css.map */