@charset "UTF-8";
/* reset
============================================================================= */
/* http://meyerweb.com/eric/tools/css/reset/
License: none (public domain)*/
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;
  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: "";
  content: none;
}

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

input::-webkit-input-placeholder,
input:-ms-input-placeholder,
input::-moz-placeholder {
  color: #666;
  font-weight: normal;
}

/* base
============================================================================= */
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  font-family: "ryo-gothic-plusn", sans-serif;
  font-style: normal;
  font-display: swap;
}
@media screen and (max-width: 767px) {
  html {
    overflow-x: hidden;
  }
}

body {
  position: relative;
  color: #222;
  font-size: 1.3rem;
  font-weight: 600;
  font-feature-settings: "palt";
  overflow-x: hidden;
  letter-spacing: 0.06em;
}

a {
  color: #222;
  text-decoration: none;
}
@media (any-hover: hover) {
  a {
    transition: all 0.3s;
    backface-visibility: hidden;
  }
  a:hover {
    opacity: 0.8;
    backface-visibility: hidden;
  }
  a:hover {
    opacity: 0.8;
  }
}
img {
  max-width: 100%;
  vertical-align: bottom;
}

.material-symbols-outlined {
  font-variation-settings: "wght" 200;
}

/* セクションタイトル　*/
.cmn-sectionTitle {
  position: relative;
  width: 100vw;
  margin: auto;
  padding: 0 20px 24px;
  border-bottom: 1px solid #222;
  font-size: clamp(2.5rem, 3.8vw, 3.8rem);
  font-weight: 800;
  text-align: center;
  line-height: 1;
}
.cmn-sectionTitle::after {
  position: absolute;
  bottom: -13px;
  left: 0;
  right: 0;
  width: 1px;
  height: 25px;
  margin: auto;
  background-color: #222;
  content: "";
}
.cmn-sectionTitle b {
  position: relative;
  top: 2px;
  padding: 0 5px;
}
@media screen and (max-width: 767px) {
  .cmn-sectionTitle {
    width: 100%;
    padding: 0 16px 16px;
  }
  .cmn-sectionTitle::after {
    bottom: -8px;
    height: 16px;
  }
  .cmn-sectionTitle b {
    padding: 0 3px;
  }
}

/* CTA */
.ctaCont {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  text-align: center;
}
.ctaCont:not(.is-mv) {
  padding: clamp(40px, 4%, 80px) clamp(15px, 2%, 30px);
  background-size: auto auto;
  background-color: rgb(251, 214, 180);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 12px, rgb(253, 235, 218) 12px, rgb(253, 235, 218) 17px);
}
.ctaCont.is-mv {
  padding: 0 clamp(15px, 2%, 15px) clamp(40px, 3.5%, 64px);
  background-color: #ed6c00;
}
.ctaCont_box {
  width: min(100%, 1040px);
  margin: auto;
  padding: 0 15px clamp(24px, 3.8%, 50px);
  border-radius: 20px;
  background-color: #fff;
  overflow-x: hidden;
}
.ctaCont_box_title {
  display: block;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: clamp(18px, 3.2%, 32px) 15px clamp(13px, 2.6%, 29px);
  border-radius: 20px 20px 0 0;
  background-color: #222;
  color: #fff;
  font-size: clamp(1.7rem, 2.7vw, 2.7rem);
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.08em;
}
.ctaCont_box_title::after {
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -10px;
  border: solid transparent;
  border-color: rgba(34, 34, 34, 0);
  border-top-color: #222;
  border-width: 12px 8px;
  content: "";
}
.ctaCont_box_lead {
  margin-top: clamp(24px, 4.7%, 48px);
  color: #555;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  font-weight: 700;
  line-height: 1.35;
}
.ctaCont_box_btn {
  display: -webkit-box;
  display: flex;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  justify-content: center;
  margin-top: clamp(15px, 2%, 32px);
}
.ctaCont_box_btn a {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  flex-direction: column;
  position: relative;
  width: min(435px, 98%);
  height: clamp(96px, 15vw, 140px);
  padding: 3px 40px 0;
  border-radius: 50vh;
  color: #fff;
  font-size: clamp(2rem, 2.6vw, 2.6rem);
  font-weight: 800;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
  letter-spacing: 0.06em;
}
.ctaCont_box_btn a span {
  display: block;
  font-size: 0.6em;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.ctaCont_box_btn a::after {
  position: absolute;
  right: 0.3em;
  height: 1em;
  margin: auto;
  font-family: "Material Symbols Outlined";
  font-size: clamp(3rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1;
  content: "\e5cc";
  font-variation-settings: "wght" 200;
}
.ctaCont_box_btn a.is-document {
  background-color: #6ab1e7;
  box-shadow: 0 5px 0 #559cd1;
  text-shadow: 1px 1px 0 #559cd1;
}
.ctaCont_box_btn a.is-tel {
  background-color: #0071bc;
  box-shadow: 0 5px 0 #005d9b;
}
.ctaCont_box_btn a.is-tel b {
  position: relative;
  bottom: 1px;
  font-family: "barlow", sans-serif;
  font-weight: 700;
  font-size: 1.2em;
  line-height: 0.8;
}
.ctaCont_box_btn a.is-tel b i {
  position: relative;
  top: -2.5px;
  margin-right: 0.2em;
  font-size: 0.85em;
  vertical-align: middle;
  font-variation-settings: "FILL" 1;
}
.ctaCont_box_note {
  margin-top: 28px;
  text-align: center;
}
.ctaCont_box_note li {
  display: inline-block;
  position: relative;
  font-size: clamp(1.1rem, 1.3vw, 1.3rem);
  font-weight: 400;
  line-height: 1.5;
}
.ctaCont_box_note li::before {
  position: absolute;
  top: 0;
  left: -1.2em;
  content: "※";
}
@media screen and (min-width: 768px) {
  .ctaCont_box_btn a.is-tel {
    margin-left: clamp(16px, 2.4%, 24px);
  }
}
@media screen and (max-width: 767px) {
  .ctaCont {
    padding-bottom: 20px;
  }
  .ctaCont_box_title {
    line-height: 1.4;
  }
  .ctaCont_box_btn {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
  }
  .ctaCont_box_btn a {
    height: unset;
    padding: 13px 24px 11px;
  }
  .ctaCont_box_btn a::after {
    font-size: 3rem;
  }
  .ctaCont_box_btn a.is-tel {
    margin-top: 18px;
  }
  .ctaCont_box_note {
    margin-top: 20px;
    padding-left: 15px;
    text-align: left;
  }
}

/* 共通notes */
.cmn-notes {
  text-align: left;
}
.cmn-notes li {
  padding-left: 0.5em;
  font-size: clamp(1.25rem, 1.3vw, 1.3rem);
  font-weight: 400;
  line-height: 1.6;
}
.cmn-notes li::before {
  display: inline-block;
  width: 1.3em;
  margin-left: -1.3em;
}
.cmn-notes li:not(:first-child) {
  margin-top: 3px;
}
.cmn-notes.is-asterisk li {
  padding-left: 1.3em;
}
.cmn-notes.is-asterisk li::before {
  content: "※";
}
.cmn-notes.is-asteriskNo li {
  padding-left: 2em;
}
.cmn-notes.is-asteriskNo li::before {
  width: 2em;
  margin-left: -2em;
}
.cmn-notes.is-asteriskNo li:first-of-type::before {
  content: "※1";
}
.cmn-notes.is-asteriskNo li:nth-of-type(2)::before {
  content: "※2";
}
.cmn-notes.is-asteriskNo li:nth-of-type(3)::before {
  content: "※3";
}
@media screen and (max-width: 767px) {
  .cmn-notes li {
    line-height: 1.7;
  }
  .cmn-notes li:not(:first-child) {
    margin-top: 2px;
  }
}

/* table横スクロール */
.js-scrollable + .cmn-notes {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .js-scrollable {
    overflow: auto;
    white-space: nowrap;
  }
  .js-scrollable::-webkit-scrollbar {
    height: 5px;
  }
  .js-scrollable::-webkit-scrollbar-track {
    background-color: #ececec;
  }
  .js-scrollable::-webkit-scrollbar-thumb {
    background-color: #999;
  }
  .js-scrollable + .cmn-notes {
    margin-top: 20px;
  }
}

/* header
============================================================================= */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 64px;
  background-color: #fff;
  text-align: center;
}
@media screen and (max-width: 959px) {
  .l-header {
    height: 50px;
  }
}

.headerCont {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  width: min(1100px, 100%);
  height: 100%;
  margin: auto;
}
.headerCont_logo a {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  padding: 2px 24px 0;
}
.headerCont_logo img {
  width: 92.16px;
  height: auto;
  margin-right: 5px;
}
.headerCont_nav_list li {
  display: inline-block;
  position: relative;
  font-size: 1.4rem;
  font-weight: 500;
}
.headerCont_nav_list li a {
  display: block;
  width: 100%;
  height: 100%;
}
.headerCont_nav_btn {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  height: 30px;
  margin-right: 24px;
  padding: 1px 20px 0;
  border-radius: 50vh;
  background-color: #ed6c00;
  color: #fff;
  font-size: clamp(1.4rem, 1.6vw, 1.5rem);
  font-weight: 700;
  cursor: pointer;
}
@media screen and (min-width: 960px) {
  .headerCont_nav {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    align-items: center;
  }
  .headerCont_nav_burger {
    display: none;
  }
  .headerCont_nav_list {
    margin-right: 16px;
  }
  .headerCont_nav_list li a {
    padding: 0 12px;
    color: #222;
  }
  .headerCont_nav_list li a:hover {
    color: #ed6c00;
    opacity: 1;
  }
}
@media screen and (max-width: 959px) {
  .headerCont {
    padding-right: 48px;
  }
  .headerCont_logo a {
    padding: 2px 16px 0;
  }
  .headerCont_logo img {
    width: 74.88px;
  }
  .headerCont_nav_burger {
    display: block;
    position: fixed;
    top: 16px;
    right: 0;
    width: 48px;
    height: 16px;
    cursor: pointer;
    transition: all 0.3s;
  }
  .headerCont_nav_burger::before {
    display: block;
    position: absolute;
    z-index: -1;
    top: -16px;
    right: 0;
    width: 50px;
    height: 50px;
    background-color: #222;
    content: "";
  }
  .headerCont_nav_burger span {
    display: block;
    position: absolute;
    left: 2px;
    right: 0;
    width: 20px;
    height: 2px;
    margin: auto;
    background-color: #fff;
    transition: all 0.3s;
  }
  .headerCont_nav_burger span:nth-of-type(1) {
    top: 0;
  }
  .headerCont_nav_burger span:nth-of-type(2) {
    top: 7px;
  }
  .headerCont_nav_burger span:nth-of-type(3) {
    bottom: 0;
  }
  .headerCont_nav_burger.close span:nth-of-type(1) {
    transform: translateY(7px) rotate(-315deg);
  }
  .headerCont_nav_burger.close span:nth-of-type(2) {
    opacity: 0;
  }
  .headerCont_nav_burger.close span:nth-of-type(3) {
    transform: translateY(-7px) rotate(315deg);
  }
  .headerCont_nav_list {
    display: none;
    width: 100%;
    padding: 24px 16px;
    background-color: #222;
    text-align: center;
  }
  .headerCont_nav_list:not(.headerCont_nav_list.is-secondLevel) {
    position: absolute;
    top: 48px;
    right: unset;
    bottom: unset;
    left: 0;
  }
  .headerCont_nav_list li {
    display: block;
    text-align: left;
    font-size: 1.4rem;
    font-weight: 700;
  }
  .headerCont_nav_list li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
  .headerCont_nav_list li a {
    padding: 15px 0 15px 10px;
    color: #fff;
  }
  .headerCont_nav_list li a::after {
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 12px;
    width: 1em;
    height: 1em;
    margin: auto;
    font-family: "Material Symbols Outlined";
    font-size: 3rem;
    content: "\e313";
    font-variation-settings: "wght" 200;
  }
  .headerCont_nav_btn {
    margin-right: 20px;
  }
}

/* footer
============================================================================= */
.l-footer {
  position: sticky;
  top: 100vh;
  width: 100%;
  text-align: center;
}
.l-footer a {
  color: #fff;
}

.footerTop {
  display: -webkit-box;
  display: flex;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  position: relative;
  width: min(100%, 1100px);
  margin: auto;
  padding: clamp(48px, 4.2%, 56px) clamp(24px, 2.4%, 32px);
  background-color: #222;
}
.footerTop::before, .footerTop::after {
  display: block;
  position: absolute;
  top: 0;
  width: 50vw;
  z-index: -1;
  height: 100%;
  background-color: #222;
  content: "";
}
.footerTop::before {
  left: -50vw;
}
.footerTop::after {
  right: -50vw;
}
.footerTop_title {
  width: 360px;
  color: #fff;
  font-size: clamp(1.9rem, 2.1vw, 2.1rem);
  font-weight: 700;
  text-align: left;
  line-height: 1.6666666667;
}
.footerTop_nav {
  display: -webkit-box;
  display: flex;
  flex-wrap: nowrap;
  -webkit-box-pack: end;
  justify-content: flex-end;
  width: calc(100% - 360px);
}
.footerTop_nav_list {
  width: fit-content;
  text-align: left;
}
.footerTop_nav_list > li {
  width: fit-content;
  color: #fff;
  font-size: clamp(1.3rem, 1.4vw, 1.4rem);
  font-weight: 700;
  line-height: 1.9285714286;
}
.footerTop_nav_list > li .footerTop_nav_list.is-secondLevel li {
  margin-top: 5px;
  margin-left: 1.5em;
  font-size: clamp(1.1rem, 1.15vw, 1.15rem);
  font-weight: 400;
  text-indent: -0.7em;
}
.footerTop_nav_list > li .footerTop_nav_list.is-secondLevel li::before {
  position: relative;
  left: 0;
  content: "- ";
}
.footerTop_nav_list > li:not(:first-of-type) {
  margin-top: 5px;
}
@media screen and (max-width: 959px) {
  .footerTop {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    justify-content: center;
    padding: 48px 24px;
  }
  .footerTop_title {
    text-align: center;
  }
  .footerTop_nav {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    flex-direction: column;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
  }
  .footerTop_nav_list > li .footerTop_nav_list.is-secondLevel li {
    margin-top: 4px;
  }
  .footerTop_nav_list > li:not(:first-of-type) {
    margin-top: 4px;
  }
}

.footerCont {
  display: -webkit-box;
  display: flex;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
  width: min(100%, 1100px);
  margin: auto;
  padding: clamp(32px, 3.45%, 48px) clamp(24px, 2.4%, 32px);
  background-color: #222;
}
.footerCont::before, .footerCont::after {
  display: block;
  position: absolute;
  top: 0;
  width: 50vw;
  z-index: -1;
  height: 100%;
  background-color: #222;
  content: "";
}
.footerCont::before {
  left: -50vw;
}
.footerCont::after {
  right: -50vw;
}
.footerCont_author {
  color: #fff;
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 600;
  text-align: left;
  line-height: 1.8;
  letter-spacing: 0.06em;
}
.footerCont_author span {
  display: block;
  font-size: 0.65em;
  font-weight: 400;
}
.footerCont_nav_list li {
  display: inline-block;
  position: relative;
  color: #fff;
  font-size: clamp(1.1rem, 1.2vw, 1.2rem);
  font-weight: 400;
  letter-spacing: 0.06em;
}
.footerCont_nav_list li a {
  display: inline-block;
  padding: 5px 12px;
}
.footerCont_nav_list li:not(:first-of-type)::before {
  display: block;
  position: absolute;
  top: 0;
  right: unset;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 8px;
  margin: auto;
  background-color: #ccc;
  content: "";
}
@media screen and (max-width: 959px) {
  .footerCont {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    justify-content: center;
    padding: 32px 24px;
  }
  .footerCont_author {
    width: 100%;
    text-align: center;
  }
  .footerCont_nav {
    margin-top: 16px;
  }
  .footerCont_nav li a {
    padding: 5px 8px;
  }
}

/* レイアウト
============================================================================= */
/* main wrap */
.container {
  display: block;
  position: relative;
  padding-top: 64px;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  .container .sm-max {
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
  }
  .container .md-max {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 959px) {
  .container {
    padding-top: 50px;
  }
}

/* セクションレイアウト */
.l-section {
  width: 100%;
  padding-top: clamp(48px, 7%, 100px);
  text-align: center;
}
@media screen and (max-width: 1099px) {
  .l-section {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .l-section {
    padding-top: 48px;
  }
}

/* コンテンツレイアウト */
.l-cont {
  position: relative;
  width: min(100%, 1040px);
  margin: auto;
  margin-top: clamp(32px, 4.5%, 60px);
  padding-bottom: clamp(24px, 3%, 40px);
}
.l-cont:has(> .ctaCont) {
  margin-top: 48px;
  padding-bottom: 48px;
}
#applySec .l-cont:has(> .ctaCont) {
  margin-top: 0;
  padding-top: 48px;
}
@media screen and (max-width: 767px) {
  .l-cont {
    margin-top: 32px;
    padding-bottom: 24px;
  }
  .l-cont:has(> .ctaCont) {
    margin-top: 30px;
    padding-bottom: 30px;
  }
  #applySec .l-cont:has(> .ctaCont) {
    margin-top: 0;
    padding-top: 30px;
  }
}

/* Flexレイアウト */
.l-flex {
  display: -webkit-box;
  display: flex;
}
.l-flex.is-wrap {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}
.l-flex.is-nowrap {
  display: -webkit-box;
  display: flex;
  flex-wrap: nowrap;
}
.l-flex.is-justify-center {
  -webkit-box-pack: center;
  justify-content: center;
}
.l-flex.is-justify-between {
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.l-flex.is-align-center {
  -webkit-box-align: center;
  align-items: center;
}
.l-flex.is-column {
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  flex-direction: column;
}

/* TOP
============================================================================= */
/* mv */
.mvCont {
  background-color: #ed6c00;
  text-align: center;
}
.mvCont_inner {
  position: relative;
  width: min(100%, 1200px);
  height: clamp(300px, 43vw, 600px);
  margin: auto;
  text-align: left;
}
.mvCont_inner::before {
  position: absolute;
  top: 45px;
  right: -70px;
  width: 776px;
  height: 890px;
  background: url("../img/bg_mv.png") no-repeat right top/contain;
  content: "";
}
.mvCont_inner > * {
  position: relative;
  z-index: 1;
}
.mvCont_inner_lead {
  width: fit-content;
  padding: clamp(16px, 3.2%, 32px) clamp(16px, 4.3%, 40px) clamp(14px, 3.15%, 30px);
  border-radius: 0 0 30px 0;
  background-color: #fff;
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.08em;
}
.mvCont_inner_lead::before {
  display: block;
  position: absolute;
  left: -50vw;
  top: 0;
  width: 50vw;
  height: 100%;
  background-color: #fff;
  content: "";
}
.mvCont_inner_lead strong {
  padding: 0 6px;
  color: #ed6c00;
  font-weight: 800;
}
.mvCont_inner_title {
  margin-top: clamp(32px, 4%, 64px);
  margin-left: clamp(20px, 3.5%, 54px);
}
.mvCont_inner_title img {
  width: clamp(340px, 75vw, 610px);
  height: auto;
}
@media screen and (max-width: 1199px) {
  .mvCont_inner::before {
    right: 0;
  }
}
@media screen and (max-width: 1099px) {
  .mvCont_inner {
    background: url("../img/bg_mv.png") no-repeat;
    background-position: right 0 top 85px;
    background-size: 70vw;
  }
  .mvCont_inner::before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .mvCont_inner {
    background-size: 75vw;
  }
  .mvCont_inner_lead {
    max-width: 92%;
    padding: 15px 16px 13px;
    border-radius: 0 0 15px 0;
    font-size: 1.9rem;
    line-height: 1.3;
  }
  .mvCont_inner_lead strong {
    padding: 0 4px;
  }
}

/* メリット */
.benefitCont_catch {
  display: inline-block;
  position: relative;
  color: #5d7687;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.benefitCont_catch::before, .benefitCont_catch::after {
  position: absolute;
  bottom: 0;
  width: 3px;
  height: 64px;
  background-color: #222;
  content: "";
}
.benefitCont_catch::before {
  left: -40px;
  transform: rotate(-20deg);
}
.benefitCont_catch::after {
  right: -40px;
  transform: rotate(20deg);
}
.benefitCont_catch strong {
  color: #539ddf;
  font-size: 1.35em;
}
.benefitCont_list {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  margin-top: clamp(20px, 3%, 32px);
}
.benefitCont_list_item {
  display: inline-block;
  width: 192px;
  height: 192px;
  margin: 0 8px;
  padding-top: 48px;
  border-radius: 50%;
  background-color: #dfeffa;
}
.benefitCont_list_item p {
  font-size: clamp(1.6rem, 2.7vw, 2.7rem);
  font-weight: 700;
}
.benefitCont_list_item img {
  margin-top: 16px;
}
.benefitCont_list_item.is-01 img {
  width: 53px;
  height: 57px;
}
.benefitCont_list_item.is-02 img {
  width: 93px;
  height: 41px;
}
.benefitCont_list_item.is-03 img {
  width: 54px;
  height: 58px;
}
.benefitCont_list_item.is-04 img {
  width: 78px;
  height: 62px;
}
.benefitCont_list_item.is-05 img {
  width: 49px;
  height: 60px;
}
@media screen and (max-width: 767px) {
  .benefitCont_catch {
    line-height: 1.4;
    letter-spacing: 0.06em;
  }
  .benefitCont_catch::before, .benefitCont_catch::after {
    width: 2px;
    height: 50px;
  }
  .benefitCont_catch::before {
    left: 8px;
  }
  .benefitCont_catch::after {
    right: 8px;
  }
  .benefitCont_list {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
  }
  .benefitCont_list_item {
    width: 108px;
    height: 108px;
    margin: 0 3px;
    padding-top: 26px;
  }
  .benefitCont_list_item img {
    margin-top: 8px;
  }
  .benefitCont_list_item.is-01 img {
    width: 31.8px;
    height: 34.2px;
  }
  .benefitCont_list_item.is-02 img {
    width: 55.8px;
    height: 24.6px;
  }
  .benefitCont_list_item.is-03 img {
    width: 32.4px;
    height: 34.8px;
  }
  .benefitCont_list_item.is-04 img {
    width: 46.8px;
    height: 37.2px;
  }
  .benefitCont_list_item.is-05 img {
    width: 29.4px;
    height: 36px;
  }
}

/* おすすめポイント */
#featureSec {
  margin-top: clamp(24px, 6.5%, 88px);
  padding-top: clamp(40px, 5.8%, 80px);
  padding-bottom: clamp(40px, 5.8%, 80px);
  background-color: #a3d2f1;
}
.featureCont {
  position: relative;
  width: min(100%, 1040px);
  padding: clamp(32px, 3.8%, 48px) clamp(24px, 9%, 120px) clamp(30px, 3.5%, 45px);
  border-radius: 10px;
  background-color: #fff;
}
.featureCont::before {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  position: absolute;
  top: 25px;
  left: -10px;
  width: clamp(45px, 8vw, 100px);
  height: 80px;
  padding-bottom: 5px;
  background-color: #5d7687;
  color: #fff;
  font-family: "barlow", sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 4.8vw, 4.8rem);
  box-sizing: border-box;
}
.featureCont::after {
  position: absolute;
  top: 105px;
  left: -10px;
  border-style: solid;
  height: 0;
  width: 0;
  border-color: transparent #3f5a6d transparent transparent;
  border-width: 0 10px 10px 0;
  content: "";
}
.featureCont_title {
  color: #5d7687;
  font-size: clamp(1.88rem, 3.3vw, 3.3rem);
  font-weight: 800;
  text-align: left;
  letter-spacing: 0.08em;
}
.featureCont_title b {
  position: relative;
  bottom: -1px;
  font-size: 1.2em;
  font-weight: 800;
}
.featureCont_text {
  margin-top: 24px;
  font-size: clamp(1.5rem, 1.8vw, 1.8rem);
  font-weight: 500;
  text-align: left;
  line-height: 1.6666666667;
}
.featureCont .cmn-notes {
  margin-top: 16px;
}
.featureCont_box {
  margin-top: 32px;
  padding: 40px;
}
.featureCont_box_title {
  font-size: clamp(1.7rem, 2.2vw, 2.2rem);
  font-weight: 800;
  letter-spacing: 0.08em;
}
.featureCont_box.is-hikari .featureCont_box_title {
  color: #ed6c00;
}
.featureCont_box_img {
  position: relative;
  margin-top: 40px;
}
.featureCont_box_img figcaption {
  display: inline-block;
  position: absolute;
  top: 30px;
  left: 0;
  width: 280px;
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  font-weight: 500;
  text-align: left;
  line-height: 1.8666666667;
}
.featureCont_box.is-hikari {
  background-color: #ffeedf;
}
.featureCont_box.is-general {
  background-color: #ececec;
}
.featureCont_box:first-of-type {
  margin-top: 40px;
}
.featureCont.is-01::before {
  content: "1";
}
.featureCont.is-02::before {
  content: "2";
}
.featureCont.is-03::before {
  content: "3";
}
.featureCont:not(:first-of-type) {
  margin-top: clamp(20px, 3.5%, 40px);
}
@media screen and (max-width: 767px) {
  .featureCont {
    padding: 26px 20px;
  }
  .featureCont::before {
    top: 15px;
    left: -8px;
    width: 45px;
    height: 50px;
    padding-bottom: 2.5px;
  }
  .featureCont::after {
    top: 65px;
    left: -8px;
    border-style: solid;
    height: 0;
    width: 0;
    border-color: transparent #3f5a6d transparent transparent;
    border-width: 0 8px 8px 0;
  }
  .featureCont_title {
    margin-left: 30px;
    line-height: 1.2;
    letter-spacing: 0.06em;
  }
  .featureCont_text {
    margin-top: 15px;
  }
  .featureCont .cmn-notes {
    margin-top: 10px;
  }
  .featureCont_box {
    margin-top: 16px;
    padding: 20px 18px;
  }
  .featureCont_box_title {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  .featureCont_box_img {
    margin-top: 18px;
  }
  .featureCont_box_img figcaption {
    position: relative;
    top: unset;
    width: 100%;
    margin-top: 12px;
    line-height: 1.7;
  }
  .featureCont_box:first-of-type {
    margin-top: 20px;
  }
}

/* 流れ */
.flowCont dl.flowCont_item {
  position: relative;
  width: min(100%, 1040px);
  padding: clamp(24px, 3.5%, 32px) clamp(16px, 4%, 40px) clamp(16px, 2.2%, 22px);
}
.flowCont dl.flowCont_item::before {
  position: absolute;
  top: -5px;
  left: -5px;
  border-style: solid;
  height: 0;
  width: 0;
  border-color: #5d7687 transparent transparent transparent;
  border-width: clamp(65px, 10vw, 100px) clamp(65px, 10vw, 100px) 0 0;
  content: "";
}
.flowCont dl.flowCont_item::after {
  position: absolute;
  top: -5px;
  left: -5px;
  z-index: -1;
  width: clamp(65px, 10vw, 100px);
  height: clamp(65px, 10vw, 100px);
  background-color: #3f5a6d;
  content: "";
}
.flowCont dl.flowCont_item dt {
  position: relative;
  padding-left: 1.5em;
  font-size: clamp(1.8rem, 2.9vw, 2.9rem);
  font-weight: 700;
  text-align: left;
}
.flowCont dl.flowCont_item dt::before {
  position: absolute;
  top: -0.7em;
  left: -0.75em;
  color: #fff;
  font-family: "barlow", sans-serif;
  font-weight: 600;
  font-size: clamp(2.5rem, 3.5vw, 3.5rem);
}
.flowCont dl.flowCont_item dd {
  position: relative;
  margin-top: clamp(14px, 2.2%, 24px);
  padding: clamp(20px, 2.9%, 30px) clamp(16px, 18%, 200px) clamp(18px, 2.5%, 27px) clamp(16px, 3.9%, 40px);
  background-color: #fff;
  font-size: clamp(1.45rem, 1.8vw, 1.8rem);
  font-weight: 500;
  text-align: left;
  line-height: 1.6666666667;
}
.flowCont dl.flowCont_item dd::before {
  position: absolute;
  right: 30px;
  bottom: 15px;
  content: "";
}
.flowCont dl.flowCont_item dd::after {
  display: inline-block;
  position: absolute;
  bottom: -47px;
  left: 0;
  right: 0;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-width: 25px 65px 0 65px;
  border-color: #222 transparent transparent transparent;
  content: "";
}
.flowCont dl.flowCont_item dd strong.is-attn {
  color: #539ddf;
  font-size: 1.5em;
}
.flowCont dl.flowCont_item dd figure {
  margin-top: 16px;
  text-align: center;
}
.flowCont dl.flowCont_item.is-resident {
  background-color: #ffeedf;
}
.flowCont dl.flowCont_item.is-resident::before {
  border-style: solid;
  height: 0;
  width: 0;
  border-color: #ed6c00 transparent transparent transparent;
  border-width: clamp(65px, 10vw, 100px) clamp(65px, 10vw, 100px) 0 0;
}
.flowCont dl.flowCont_item.is-resident::after {
  background-color: #ce5e00;
}
.flowCont dl.flowCont_item:not(.is-resident) {
  background-color: #dfeffa;
}
.flowCont dl.flowCont_item:not(:first-of-type) {
  margin-top: clamp(26px, 4.5%, 50px);
}
.flowCont dl.flowCont_item.is-01 dt::before {
  content: "1";
}
.flowCont dl.flowCont_item.is-01 dd::before {
  width: 75.24px;
  height: 82.365px;
  background: url("../img/img_flow01.png") no-repeat right top/contain;
}
.flowCont dl.flowCont_item.is-02 dt::before {
  content: "2";
}
.flowCont dl.flowCont_item.is-02 dd::before {
  width: 96.6px;
  height: 81.3px;
  background: url("../img/img_flow02.png") no-repeat right top/contain;
}
.flowCont dl.flowCont_item.is-03 dt::before {
  content: "3";
}
.flowCont dl.flowCont_item.is-03 dd::before {
  top: 20px;
  bottom: unset;
  width: 84px;
  height: 68.1px;
  background: url("../img/img_flow03.png") no-repeat right top/contain;
}
.flowCont dl.flowCont_item.is-04 dt::before {
  content: "4";
}
.flowCont dl.flowCont_item.is-04 dd::before {
  width: 84.93px;
  height: 85.5px;
  background: url("../img/img_flow04.png") no-repeat right top/contain;
}
.flowCont dl.flowCont_item.is-05 dt::before {
  content: "5";
}
.flowCont dl.flowCont_item.is-05 dd::before {
  width: 105.26px;
  height: 78.755px;
  background: url("../img/img_flow05.png") no-repeat right top/contain;
}
.flowCont p.flowCont_item {
  position: relative;
  margin-top: clamp(26px, 4.5%, 50px);
  padding: clamp(20px, 3%, 32px) clamp(20px, 3.8%, 40px) clamp(18px, 2.5%, 27px);
  background-color: #ececec;
  font-size: clamp(1.8rem, 2.9vw, 2.9rem);
  font-weight: 700;
  text-align: center;
}
.flowCont p.flowCont_item::before {
  position: absolute;
  right: 70px;
  bottom: 15px;
  width: 106.92px;
  height: 82.53px;
  background: url("../img/img_flow06.png") no-repeat right top/contain;
  content: "";
}
@media screen and (min-width: 768px) {
  .flowCont dl.flowCont_item dd figure {
    margin-right: -135px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .flowCont dl.flowCont_item dd::after {
    bottom: -39px;
    border-width: 20px 50px 0 50px;
  }
}
@media screen and (max-width: 767px) {
  .flowCont dl.flowCont_item {
    padding: 24px 16px 16px;
  }
  .flowCont dl.flowCont_item::before {
    border-style: solid;
    height: 0;
    width: 0;
    border-color: #5d7687 transparent transparent transparent;
    border-width: 65px 65px 0 0;
  }
  .flowCont dl.flowCont_item::after {
    width: 65px;
    height: 65px;
  }
  .flowCont dl.flowCont_item dt {
    padding-left: 1.35em;
    padding-right: 45px;
    line-height: 1.35;
  }
  .flowCont dl.flowCont_item dt::before {
    top: -0.9em;
    left: -0.5em;
  }
  .flowCont dl.flowCont_item dd {
    margin-top: 14px;
    padding: 20px 16px 18px;
  }
  .flowCont dl.flowCont_item dd::before {
    right: 0;
    top: -45px;
    bottom: unset;
  }
  .flowCont dl.flowCont_item dd::after {
    bottom: -31px;
    border-width: 15px 35px 0px 35px;
  }
  .flowCont dl.flowCont_item dd strong.is-attn {
    display: inline-block;
    margin-top: 5px;
    line-height: 1.3;
  }
  .flowCont dl.flowCont_item.is-resident::before {
    border-style: solid;
    height: 0;
    width: 0;
    border-color: #ed6c00 transparent transparent transparent;
    border-width: 65px 65px 0 0;
  }
  .flowCont dl.flowCont_item:not(:first-of-type) {
    margin-top: 26px;
  }
  .flowCont dl.flowCont_item.is-01 dd::before {
    width: 51.48px;
    height: 56.355px;
  }
  .flowCont dl.flowCont_item.is-02 dd::before {
    right: -10px;
    width: 62.79px;
    height: 52.845px;
  }
  .flowCont dl.flowCont_item.is-03 dd::before {
    top: -45px;
    width: 58.8px;
    height: 47.67px;
  }
  .flowCont dl.flowCont_item.is-04 dd::before {
    width: 58.11px;
    height: 58.5px;
  }
  .flowCont dl.flowCont_item.is-05 dd:before {
    right: -20px;
    width: 66.48px;
    height: 49.74px;
  }
  .flowCont p.flowCont_item {
    margin-top: 30px;
    padding: 20px 20px 16px;
  }
  .flowCont p.flowCont_item::before {
    right: 15px;
    bottom: 10px;
    width: 71.28px;
    height: 55.02px;
  }
}

/* よくあるご質問 */
#faqSec {
  margin-top: clamp(24px, 6.5%, 88px);
  padding-top: clamp(40px, 5.8%, 80px);
  padding-bottom: clamp(40px, 5.8%, 80px);
  background-color: #a3d2f1;
}
.faqCont {
  width: min(100%, 1040px);
  margin-top: clamp(30px, 4.6%, 48px);
  padding: clamp(24px, 5%, 56px) clamp(20px, 6%, 64px) clamp(20px, 5%, 52px);
  border-radius: 10px;
  background-color: #fff;
  text-align: center;
}
.faqCont_title {
  display: inline-block;
  position: absolute;
  top: clamp(-15px, -2%, -20px);
  left: 0;
  right: 0;
  width: fit-content;
  margin: auto;
  padding: clamp(13px, 1.8%, 20px) clamp(30px, 6%, 64px) clamp(9px, 1.6%, 18px);
  border-radius: 50vh;
  background-color: #5d7687;
  color: #fff;
  font-size: clamp(1.7rem, 2.8vw, 2.8rem);
}
.faqCont_item {
  padding: clamp(18px, 2.8%, 30px) 0 clamp(12px, 1.8%, 20px) clamp(50px, 7%, 80px);
  text-align: left;
}
.faqCont_item dt, .faqCont_item dd {
  position: relative;
}
.faqCont_item dt::before, .faqCont_item dd::before {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  position: absolute;
  left: -65px;
  width: 50px;
  height: 30px;
  margin-right: 15px;
  padding-bottom: 2px;
  border-radius: 8px;
  color: #fff;
  font-family: "barlow", sans-serif;
  font-weight: 500;
  font-size: clamp(1.7rem, 2.2vw, 2.2rem);
  box-sizing: border-box;
}
.faqCont_item dt {
  color: #ed6c00;
  font-size: clamp(1.7rem, 2.3vw, 2.3rem);
  font-weight: 600;
  line-height: 1.35;
}
.faqCont_item dt::before {
  top: 0;
  background-color: #ed6c00;
}
.faqCont_item dd {
  margin-top: clamp(8px, 1.4%, 15px);
  font-size: clamp(1.4rem, 1.7vw, 1.7rem);
  font-weight: 500;
  line-height: 1.7058823529;
}
.faqCont_item dd::before {
  top: -2px;
  background-color: #222;
}
.faqCont_item:first-of-type {
  margin-top: clamp(10px, 1.5%, 20px);
}
.faqCont_item:not(:first-of-type) {
  border-top: 1px dashed #222;
}
.faqCont_item.is-01 dt::before {
  content: "Q1";
}
.faqCont_item.is-01 dd::before {
  content: "A1";
}
.faqCont_item.is-02 dt::before {
  content: "Q2";
}
.faqCont_item.is-02 dd::before {
  content: "A2";
}
.faqCont_item.is-03 dt::before {
  content: "Q3";
}
.faqCont_item.is-03 dd::before {
  content: "A3";
}
.faqCont_item.is-04 dt::before {
  content: "Q4";
}
.faqCont_item.is-04 dd::before {
  content: "A4";
}
.faqCont_item.is-05 dt::before {
  content: "Q5";
}
.faqCont_item.is-05 dd::before {
  content: "A5";
}
.faqCont_item.is-06 dt::before {
  content: "Q6";
}
.faqCont_item.is-06 dd::before {
  content: "A6";
}
.faqCont_item.is-07 dt::before {
  content: "Q7";
}
.faqCont_item.is-07 dd::before {
  content: "A7";
}
.faqCont_item.is-08 dt::before {
  content: "Q8";
}
.faqCont_item.is-08 dd::before {
  content: "A8";
}
.faqCont_item.is-09 dt::before {
  content: "Q9";
}
.faqCont_item.is-09 dd::before {
  content: "A9";
}
.faqCont:first-of-type {
  margin-top: clamp(48px, 5%, 80px);
}
@media screen and (max-width: 767px) {
  .faqCont_item dt::before, .faqCont_item dd::before {
    left: -50px;
    width: 40px;
    height: 24px;
    border-radius: 5px;
  }
  .faqCont_item dt::before {
    top: -2px;
  }
  .faqCont_item dd::before {
    top: -1px;
  }
}

/* screen size */
@media screen and (min-width: 1100px) {
  .is-lg {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
/* margin */
.mgt0 {
  margin-top: 0px;
}

.mgt5 {
  margin-top: 5px;
}

.mgt10 {
  margin-top: 10px;
}

.mgt15 {
  margin-top: 15px;
}

.mgt20 {
  margin-top: 20px;
}

.mgt25 {
  margin-top: 25px;
}

.mgt30 {
  margin-top: 30px;
}

.mgt35 {
  margin-top: 35px;
}

.mgt40 {
  margin-top: 40px;
}

.mgt45 {
  margin-top: 45px;
}

.mgt50 {
  margin-top: 50px;
}

.mgt55 {
  margin-top: 55px;
}

.mgt60 {
  margin-top: 60px;
}

.mgt65 {
  margin-top: 65px;
}

.mgt70 {
  margin-top: 70px;
}

.mgt75 {
  margin-top: 75px;
}

.mgt80 {
  margin-top: 80px;
}

.mgt85 {
  margin-top: 85px;
}

.mgt90 {
  margin-top: 90px;
}

.mgt95 {
  margin-top: 95px;
}

.mgt100 {
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .mgt20 {
    margin-top: calc((20px) - 8px);
  }
  .mgt25 {
    margin-top: calc((25px) - 8px);
  }
  .mgt30 {
    margin-top: calc((30px) - 8px);
  }
  .mgt35 {
    margin-top: calc((35px) - 8px);
  }
  .mgt40 {
    margin-top: calc((40px) - 8px);
  }
  .mgt45 {
    margin-top: calc((45px) - 8px);
  }
  .mgt50 {
    margin-top: calc((50px) - 8px);
  }
}
.mgb0 {
  margin-bottom: 0px;
}

.mgb5 {
  margin-bottom: 5px;
}

.mgb10 {
  margin-bottom: 10px;
}

.mgb15 {
  margin-bottom: 15px;
}

.mgb20 {
  margin-bottom: 20px;
}

.mgb25 {
  margin-bottom: 25px;
}

.mgb30 {
  margin-bottom: 30px;
}

.mgb35 {
  margin-bottom: 35px;
}

.mgb40 {
  margin-bottom: 40px;
}

.mgb45 {
  margin-bottom: 45px;
}

.mgb50 {
  margin-bottom: 50px;
}

.mgb55 {
  margin-bottom: 55px;
}

.mgb60 {
  margin-bottom: 60px;
}

.mgb65 {
  margin-bottom: 65px;
}

.mgb70 {
  margin-bottom: 70px;
}

.mgb75 {
  margin-bottom: 75px;
}

.mgb80 {
  margin-bottom: 80px;
}

.mgb85 {
  margin-bottom: 85px;
}

.mgb90 {
  margin-bottom: 90px;
}

.mgb95 {
  margin-bottom: 95px;
}

.mgb100 {
  margin-bottom: 100px;
}

.mgb8 {
  margin-bottom: 8px;
}

.mgb16 {
  margin-bottom: 16px;
}

.mgb24 {
  margin-bottom: 24px;
}

.mgb32 {
  margin-bottom: 32px;
}

.mgb40 {
  margin-bottom: 40px;
}

.mgb48 {
  margin-bottom: 48px;
}

.mgb56 {
  margin-bottom: 56px;
}

.mgb64 {
  margin-bottom: 64px;
}

.mgb72 {
  margin-bottom: 72px;
}

@media screen and (max-width: 767px) {
  .mgb20 {
    margin-bottom: calc((20px) - 8px);
  }
  .mgb25 {
    margin-bottom: calc((25px) - 8px);
  }
  .mgb30 {
    margin-bottom: calc((30px) - 8px);
  }
  .mgb35 {
    margin-bottom: calc((35px) - 8px);
  }
  .mgb40 {
    margin-bottom: calc((40px) - 8px);
  }
  .mgb45 {
    margin-bottom: calc((45px) - 8px);
  }
  .mgb50 {
    margin-bottom: calc((50px) - 8px);
  }
}
.mgl0 {
  margin-left: 0px;
}

.mgl5 {
  margin-left: 5px;
}

.mgl10 {
  margin-left: 10px;
}

.mgl15 {
  margin-left: 15px;
}

.mgl20 {
  margin-left: 20px;
}

.mgl25 {
  margin-left: 25px;
}

.mgl30 {
  margin-left: 30px;
}

.mgl35 {
  margin-left: 35px;
}

.mgl40 {
  margin-left: 40px;
}

.mgl45 {
  margin-left: 45px;
}

.mgl50 {
  margin-left: 50px;
}

.mgr0 {
  margin-right: 0px;
}

.mgr5 {
  margin-right: 5px;
}

.mgr10 {
  margin-right: 10px;
}

.mgr15 {
  margin-right: 15px;
}

.mgr20 {
  margin-right: 20px;
}

.mgr25 {
  margin-right: 25px;
}

.mgr30 {
  margin-right: 30px;
}

.mgr35 {
  margin-right: 35px;
}

.mgr40 {
  margin-right: 40px;
}

.mgr45 {
  margin-right: 45px;
}

.mgr50 {
  margin-right: 50px;
}

/* padding */
.pdt0 {
  padding-top: 0px;
}

.pdt5 {
  padding-top: 5px;
}

.pdt10 {
  padding-top: 10px;
}

.pdt15 {
  padding-top: 15px;
}

.pdt20 {
  padding-top: 20px;
}

.pdt25 {
  padding-top: 25px;
}

.pdt30 {
  padding-top: 30px;
}

.pdb0 {
  padding-bottom: 0px;
}

.pdb5 {
  padding-bottom: 5px;
}

.pdb10 {
  padding-bottom: 10px;
}

.pdb15 {
  padding-bottom: 15px;
}

.pdb20 {
  padding-bottom: 20px;
}

.pdb25 {
  padding-bottom: 25px;
}

.pdb30 {
  padding-bottom: 30px;
}

.pdl0 {
  padding-left: 0px;
}

.pdl5 {
  padding-left: 5px;
}

.pdl10 {
  padding-left: 10px;
}

.pdl15 {
  padding-left: 15px;
}

.pdl20 {
  padding-left: 20px;
}

.pdl25 {
  padding-left: 25px;
}

.pdl30 {
  padding-left: 30px;
}

.pdr0 {
  padding-right: 0px;
}

.pdr5 {
  padding-right: 5px;
}

.pdr10 {
  padding-right: 10px;
}

.pdr15 {
  padding-right: 15px;
}

.pdr20 {
  padding-right: 20px;
}

.pdr25 {
  padding-right: 25px;
}

.pdr30 {
  padding-right: 30px;
}

/* layout */
.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.disp-block {
  display: block;
}

.disp-inline-block {
  display: inline-block;
}

.disp-flex {
  display: flex;
}

.disp-inline-flex {
  display: inline-flex;
}

.disp-table {
  display: table;
}

.disp-none {
  display: none;
}

/* font size */
.fs8 {
  font-size: 8px;
}

.fs9 {
  font-size: 9px;
}

.fs10 {
  font-size: 10px;
}

.fs11 {
  font-size: 11px;
}

.fs12 {
  font-size: 12px;
}

.fs13 {
  font-size: 13px;
}

.fs14 {
  font-size: 14px;
}

.fs15 {
  font-size: 15px;
}

.is-fnt17 {
  font-size: 1.7em;
}

.is-fnt16 {
  font-size: 1.6em;
}

.is-fnt15 {
  font-size: 1.5em;
}

.is-fnt14 {
  font-size: 1.4em;
}

.is-fnt13 {
  font-size: 1.3em;
}

.is-fnt12 {
  font-size: 1.2em;
}

.is-fnt11 {
  font-size: 1.1em;
}

.is-fnt095 {
  font-size: 0.95em;
}

.is-fnt09 {
  font-size: 0.9em;
}

.is-fnt085 {
  font-size: 0.85em;
}

.is-fnt08 {
  font-size: 0.8em;
}

.is-fnt075 {
  font-size: 0.75em;
}

.is-fnt07 {
  font-size: 0.7em;
}

.is-fnt065 {
  font-size: 0.65em;
}

.is-fnt06 {
  font-size: 0.6em;
}

.is-fnt055 {
  font-size: 0.55em;
}

.is-fnt05 {
  font-size: 0.5em;
}

.is-scale-xs {
  transform: scale(0.7);
}

.is-scale-sm {
  transform: scale(0.8);
}

.is-scale-md {
  transform: scale(0.9);
}

.is-scale-lg {
  transform: scale(1.1);
}

/* font weight */
.is-w400 {
  font-weight: 400;
}

.is-w500 {
  font-weight: 500;
}

.is-w600 {
  font-weight: 600;
}

.is-w700 {
  font-weight: 700;
}

.is-w800 {
  font-weight: 800;
}

.is-w900 {
  font-weight: 900;
}

/* position */
.relt5 {
  position: relative;
  top: 5px;
}

.relb5 {
  position: relative;
  bottom: 5px;
}

.relr5 {
  position: relative;
  right: 5px;
}

.rell5 {
  position: relative;
  left: 5px;
}

/* letter spacing */
.is-ls0 {
  letter-spacing: 0em;
}

.is-ls20 {
  letter-spacing: 0.02em;
}

.is-ls40 {
  letter-spacing: 0.04em;
}

.is-ls60 {
  letter-spacing: 0.06em;
}

.is-ls80 {
  letter-spacing: 0.08em;
}

.is-ls100 {
  letter-spacing: 0.1em;
}

/* other */
.is-accent {
  color: #ed6c00;
}

.is-baseColor {
  color: #222;
}

.is-baseFont {
  font-family: "ryo-gothic-plusn", sans-serif;
}

.is-widthFull {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

@keyframes scroll-hint-appear {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    transform: translateX(-40px);
    opacity: 0;
  }
}
.scroll-hint.is-right-scrollable {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-right-scrollable.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0)), linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint-icon {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 60px);
  box-sizing: border-box;
  width: 120px;
  height: 80px;
  border-radius: 5px;
  transition: opacity 0.3s;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 20px 10px 10px 10px;
}

.scroll-hint-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  pointer-events: none;
}

.scroll-hint-text {
  font-size: 10px;
  color: #FFF;
  margin-top: 5px;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: 0.8;
}

.scroll-hint-icon:before {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #FFF;
  vertical-align: middle;
  text-align: center;
  content: "";
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon:after {
  content: "";
  width: 34px;
  height: 14px;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -20px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
  opacity: 0;
  transition-delay: 2.4s;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
  opacity: 1;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
  animation: scroll-hint-appear 1.2s linear;
  animation-iteration-count: 2;
}

.scroll-hint-icon-white {
  background-color: #FFF;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
}

.scroll-hint-icon-white:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDQ8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon-white:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDI8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiLz48L2c+PC9nPjwvc3ZnPg==);
}

.scroll-hint-icon-white .scroll-hint-text {
  color: #000;
}

/**
 * Swiper 8.3.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 * Copyright 2014-2022 Vladimir Kharlampidi
 * Released under the MIT License
 * Released on: July 26, 2022
 */
@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") format("woff");
  font-weight: 400;
  font-style: normal;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

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

.swiper-wrapper {
  position: relative;
  width: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

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

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

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

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

/* Auto Height */
.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;
}

/* 3D Effects */
.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 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));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.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-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  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%;
  height: var(--swiper-centered-offset-after);
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

div[class^=swiper-area] {
  position: relative;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

div[class^=swiper-button-prev],
div[class^=swiper-button-next] {
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 100;
  width: 40px;
  height: 40px;
  margin: auto;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: #0071bc;
  color: transparent;
  font-size: 0;
  text-align: center;
  line-height: 0;
  outline: none;
  cursor: pointer;
}
div[class^=swiper-button-prev]::before,
div[class^=swiper-button-next]::before {
  z-index: 10;
  color: #fff;
  font-family: "Material Icons";
  font-size: 25px;
  text-align: center;
  line-height: 40px;
}
.pointChange div[class^=swiper-button-prev],
.pointChange div[class^=swiper-button-next] {
  bottom: 24px;
}

div[class^=swiper-button-prev] {
  left: -20px;
}
div[class^=swiper-button-prev]::before {
  content: "\e5cb";
}

div[class^=swiper-button-next] {
  right: -20px;
}
div[class^=swiper-button-next]::before {
  content: "\e5cc";
}

@media screen and (min-width: 768px) {
  div[class^=swiper-area].disabled .swiper-wrapper {
    transform: translate3d(0px, 0, 0) !important;
  }
  div[class^=swiper-area].disabled div[class^=swiper-button-prev],
  div[class^=swiper-area].disabled div[class^=swiper-button-next] {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  div[class^=swiper-area] {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }
  div[class^=swiper-button-prev],
  div[class^=swiper-button-next] {
    width: 50px;
    height: 50px;
  }
  div[class^=swiper-button-prev]::before,
  div[class^=swiper-button-next]::before {
    font-size: 20px;
    line-height: 50px;
  }
  div[class^=swiper-button-prev] {
    left: -25px;
    text-align: right;
  }
  div[class^=swiper-button-prev]::before {
    margin-right: 5px;
  }
  div[class^=swiper-button-next] {
    right: -25px;
    text-align: left;
  }
  div[class^=swiper-button-next]::before {
    margin-left: 5px;
  }
}