* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

@media (min-width:768px) and (hover: hover){
  a[href^="tel:"]{
    pointer-events: none;
    cursor: default;
  }
}

@font-face {
  font-family: "A-OTF Maru Folk Pro";
  src: url("./src/fonts/A-OTF Maru Folk Pro M.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Hiragino Kaku Gothic Pro";
  src: url("./src/fonts/Hiragino Kaku Gothic Pro W3.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
html {
  font-family: "Noto Sans", sans-serif;
  font-size: 10px;
  color: #000;
  scroll-behavior: smooth;
}
:target {
  scroll-margin-top: 70px;
}

.anchor {
  display: block;
  position: relative;
  top: -80px;
  visibility: hidden;
}
@media screen and (max-width: 1024px) {
  .anchor {
    top: 0;
  }
}
.anchor--service {
  top: -130px;
}
@media screen and (max-width: 1024px) {
  .anchor--service {
    top: 0;
  }
}

.banner {
  margin-top: 68px;
}
@media screen and (max-width: 1024px) {
  .banner {
    margin-top: 0;
  }
}

.image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.image--100 {
  height: 100%;
}
.image--auto {
  width: auto;
}
.image--contain {
  -o-object-fit: contain;
     object-fit: contain;
}

/* =================================
　　　　Header
================================= */

.header {
  width: 100%;
  background-color: #fff;
  padding-inline: 2.5%;
  position: relative;
  z-index: 999;
}
@media screen and (max-width: 1024px) {
  .header {
    padding-inline: 20px 0;
    margin-bottom: 40px;
  }
}
.header.fixed {
  -webkit-animation: fade 0.3s ease;
          animation: fade 0.3s ease;
  border-bottom: 2px solid #c6c6c6;
  position: fixed;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .header.fixed {
    position: unset;
  }
}
.header.fixed .header__container {
  height: 80px;
}
.header.fixed .header__logo {
  width: 184px;
  height: 34px;
}
.header__container {
  height: 105px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .header__container {
    height: 50px;
  }
}
.header__logo {
  width: 235px;
  height: 43px;
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  .header__logo {
    width: 184px;
    height: 34px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .header__nav {
    width: 100%;
    max-width: 210px;
    background-color: #0075c1;
    padding: 57px 15px 42px 25px;
    position: fixed;
    top: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
    z-index: 8;
  }
}
.header__nav.active {
  opacity: 1;
  visibility: visible;
}
.header__nav-link {
  font-size: 1.4rem;
  position: relative;
  padding-left: 22px;
}
@media screen and (max-width: 1024px) {
  .header__nav-link {
    color: #fff;
    display: block;
  }
}
.header__nav-link::before {
  content: "";
  width: 16px;
  height: 16px;
  background: #0075c1;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .header__nav-link::before {
    background-color: #fff;
  }
}
.header__nav-link:not(:last-child) {
  margin-right: 27px;
}
@media screen and (max-width: 1024px) {
  .header__nav-link:not(:last-child) {
    margin: 0 0 16px;
  }
}
.header__nav-link:hover::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(38, 214, 205)), to(rgb(2, 154, 236)));
  background: linear-gradient(180deg, rgb(38, 214, 205) 0%, rgb(2, 154, 236) 100%);
}
.header__hamburger {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header__hamburger {
    width: 50px;
    height: 50px;
    background-color: #0075c1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9;
  }
}
.header__hamburger > span {
  width: 30px;
  height: 1px;
  background-color: #fff;
  display: block;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__hamburger > span:not(:last-child) {
  margin-inline: auto;
}
.header__hamburger.close > span {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__hamburger.close > span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(6px, 4px);
          transform: rotate(45deg) translate(6px, 4px);
}
.header__hamburger.close > span:nth-child(2) {
  display: none;
}
.header__hamburger.close > span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(4px, -2px);
          transform: rotate(-45deg) translate(4px, -2px);
}

/* =================================
　　　　Footer
================================= */

.footer {
  border-top: 2px solid #c6c6c6;
  padding-block: 75px 40px;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-block: 50px 70px;
  }
}
.footer__row, .footer__wrap, .footer__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer__wrap, .footer__phone {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__row {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .footer__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer__logo {
  width: 235px;
  height: 43px;
  display: inline-block;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer__logo {
    width: 180px;
    height: 33px;
  }
}
@media screen and (max-width: 767px) {
  .footer__logo {
    margin-bottom: 30px;
  }
}
.footer__content {
  width: calc(100% - 298px);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer__content {
    width: calc(100% - 230px);
  }
}
@media screen and (max-width: 767px) {
  .footer__content {
    width: 100%;
  }
}
.footer__wrap--phone {
  padding-bottom: 35px;
}
.footer__wrap--toto {
  padding-block: 30px;
}
@media screen and (max-width: 767px) {
  .footer__wrap--toto {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}
.footer__wrap--sched {
  padding-top: 23px;
}
@media screen and (max-width: 767px) {
  .footer__wrap--sched {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer__wrap:not(:last-child) {
  border-bottom: 2px solid #fde844;
}
.footer__text {
  font-size: 1.9rem;
}
@media screen and (max-width: 1024px) {
  .footer__text {
    font-size: 17px;
  }
}
.footer__phone {
  margin-left: 19px;
  -webkit-transform: 0.3s ease;
          transform: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .footer__phone {
    margin-inline: auto;
  }
}
.footer__phone:hover {
  opacity: 0.7;
}
.footer__phone-icon {
  width: 51px;
  height: 51px;
  background: #fde844 url("./src/img/icons/phone.svg") center/25px no-repeat;
  border-radius: 50%;
  margin-right: 15px;
}
.footer__phone-num {
  font: 600 3.1rem "Jost", sans-serif;
}
.footer__img {
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
}
@media screen and (max-width: 767px) {
  .footer__img {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    margin-bottom: 46px;
  }
}
.footer__details {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0075c1;
  line-height: 1.375em;
  margin-left: 12px;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer__details {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .footer__details {
    margin-left: 0;
  }
}
.footer__details::after {
  content: "";
  width: 41px;
  height: 22px;
  background: url("./src/img/icons/sparkle.svg") center/cover no-repeat;
  position: absolute;
  right: -15px;
  bottom: 31px;
  -webkit-transform: rotate(36deg);
          transform: rotate(36deg);
}
@media screen and (max-width: 767px) {
  .footer__details::after {
    top: -30px;
    left: 50%;
    right: unset;
    -webkit-transform: translateX(-50%) rotate(0);
            transform: translateX(-50%) rotate(0);
  }
}
.footer__sched {
  font-size: 1.5rem;
}
.footer__copyright {
  font-size: 1.3rem;
  text-align: right;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    margin-top: 23px;
  }
}
.footer__sched, .footer__copyright {
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .footer__sched, .footer__copyright {
    text-align: center;
  }
}

.fab {
  position: fixed;
  top: 144px;
  right: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 406px;
  width: 60px;
  background-color: #0075c1;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .fab {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: 52px;
    top: unset;
    bottom: 0;
    left: 0;
    right: 0;
    width: 320px;
    margin-inline: auto;
    border-bottom-left-radius: 0;
    border-top-right-radius: 12px;
  }
}
.fab:hover {
  opacity: 0.7;
}
.fab span {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .fab span {
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    text-orientation: unset;
  }
}
.fab__banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .fab__banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.fab__icon {
  height: 38px;
  aspect-ratio: 1;
  margin-block: 8.5px;
}
@media screen and (max-width: 767px) {
  .fab__icon {
    margin-block: 0;
    margin-inline: 8.5px;
  }
}
.fab__text {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .fab__text {
    font-size: 12px;
  }
}
.fab__num {
  font: 700 2rem "Jost", sans-serif;
  line-height: 1;
  letter-spacing: -0.5em;
  white-space: nowrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .fab__num {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    line-height: unset;
    letter-spacing: unset;
  }
}
.fab__num span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.fab__num span:not(:first-of-type) {
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .fab__num span:not(:first-of-type) {
    margin-top: 0;
    margin-left: 12px;
  }
}
.fab__num span:not(:first-of-type)::before {
  content: "";
  height: 5px;
  aspect-ratio: 1;
  background-color: #fff;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: -4px;
  right: 5px;
}
@media screen and (max-width: 767px) {
  .fab__num span:not(:first-of-type)::before {
    top: unset;
    right: unset;
    left: -8px;
  }
}

.title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
}
@media screen and (max-width: 767px) {
  .title {
    gap: 16.5px;
  }
}
@media screen and (max-width: 767px) {
  .title--b {
    gap: 18px;
  }
}
.title__deco {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .title__deco {
    gap: 13.7px;
  }
}
@media screen and (max-width: 767px) {
  .title__deco--b {
    gap: 15px;
  }
}
.title__deco span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .title__deco span {
    width: 9.16px;
    height: 9.16px;
  }
}
.title__deco span:nth-child(1) {
  background-color: #28d6cd;
}
.title__deco span:nth-child(2) {
  background-color: #009aeb;
}
.title__deco span:nth-child(3) {
  background-color: #0075c1;
}
.title__heading {
  font-size: 3rem;
  line-height: 1.4333333333em;
  color: #0075c1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .title__heading {
    font-size: 26px;
    line-height: 1.4230769231em;
  }
}
@media screen and (max-width: 767px) {
  .title__heading--b {
    font-size: 30px;
    line-height: 1.4333333333em;
  }
}

.table__row {
  display: grid;
  grid-template-columns: 144px 1fr;
}
@media screen and (max-width: 767px) {
  .table__row {
    grid-template-columns: 1fr;
    padding-block: 10px;
    gap: 5px;
  }
}
.table__row:not(:last-child) {
  border-bottom: 2px solid #fde844;
}
@media screen and (max-width: 767px) {
  .table__row--modal:not(:last-child) {
    border-bottom: 1px solid #fde844;
  }
}
.table__dt, .table__dd {
  font-size: 1.5rem;
  line-height: 1.7333333333em;
  padding-block: 13px;
}
@media screen and (max-width: 767px) {
  .table__dt, .table__dd {
    padding-block: 0;
  }
}
.table__dt {
  color: #0075c1;
}

/* =================================
　　　　Article
================================= */

.article {
  position: relative;
  padding-block: 60px 70px;
}
@media screen and (max-width: 767px) {
  .article {
    padding-block: 50px;
  }
}
.article--news::after {
  content: "";
  width: 76px;
  height: 100%;
  background: url("./src/img/bubble-deco-md.svg") center/cover no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .article--news::after {
    display: none;
  }
}
.article--const {
  overflow: hidden;
}
.article--const::after {
  content: "";
  width: 1237px;
  height: 242px;
  background: url("./src/img/bubble-deco.svg") center/cover no-repeat;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .article--const::after {
    width: 180px;
    height: 111px;
    background: url("./src/img/bubble-deco-xs.svg") center/cover no-repeat;
    top: -15px;
    left: unset;
    right: -56px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.article__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 27px 43px;
  margin-block: 41px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .article__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .article__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-block: 33px 29px;
  }
}
.article__link {
  display: block;
  width: 100%;
  height: 100%;
}
.article__item {
  width: 100%;
  max-width: 218px;
  display: block;
}
@media screen and (max-width: 767px) {
  .article__item {
    max-width: 281px;
  }
}
.article__img {
  width: 100%;
  height: 164px;
  background-color: #bfbfbf;
  margin-bottom: 7px;
}
@media screen and (max-width: 767px) {
  .article__img {
    height: 211px;
  }
}
.article__date {
  font: 400 1.4rem "Jost", sans-serif;
  color: #0075c1;
}
.article__title, .article__desc {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5333333333em;
}
.article__btn {
  width: 126px;
  height: 30px;
  background-color: #525252;
  font-size: 1.5rem;
  color: #fff;
  margin: 0 auto;
  position: inherit;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.article__btn::after {
  content: "";
  width: 19px;
  height: 9px;
  background: url("./src/img/icons/white-arrow.svg") center/cover no-repeat;
  margin-left: 10px;
}
.article__btn:hover {
  background-color: #0075c1;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .pagination {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 14px;
  }
}
.pagination__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .pagination__wrap {
    gap: 43px;
  }
}
.pagination__btn-prev, .pagination__btn-next {
  font-size: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.pagination__btn-prev::before {
  content: "";
  width: 10px;
  height: 20px;
  background: url("./src/img/icons/prev.svg") no-repeat center/contain;
  display: block;
}
.pagination__btn-next::after {
  content: "";
  width: 10px;
  height: 20px;
  background: url("./src/img/icons/next.svg") no-repeat center/contain;
  display: block;
}
.pagination__btn-list {
  font-size: 1.6rem;
  width: 98px;
  padding-block: 2px 3px;
  color: #fff;
  background-color: #0075c1;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  padding: 46px 0 30px 10px;
  background-color: rgba(0, 0, 0, 0.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  overflow-y: auto;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.modal.is-active {
  opacity: 1;
  visibility: visible;
}
.modal__ctr {
  width: 1000px;
  background-color: #fff;
  padding: 20px 20px 60px;
  overflow-y: auto;
}
@media screen and (max-width: 767px) {
  .modal__ctr {
    padding: 60px 20px;
  }
}
.modal__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 17px;
}
.modal__close {
  width: 23px;
  height: 23px;
  background-color: #000;
  -ms-flex-item-align: end;
      align-self: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .modal__close {
    position: fixed;
    top: 65px;
  }
}
.modal__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 16px;
  background-color: #fff;
  border-radius: 1px;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.modal__close span:first-child {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.modal__close span:last-child {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.modal__content {
  width: 810px;
  margin: 0 auto;
}
.modal__content--800 {
  width: 800px;
}
.modal__content--table {
  width: 800px;
}
@media screen and (max-width: 767px) {
  .modal__content--table {
    width: 100%;
  }
}
.modal__item:not(:last-child) {
  margin-bottom: 52px;
}
.modal__heading-wrap {
  border-bottom: 1px solid #0075c1;
}
.modal__heading {
  width: 220px;
  height: 30px;
  -webkit-mask: url("./src/img/icons/modal-title.svg") top left / cover no-repeat;
          mask: url("./src/img/icons/modal-title.svg") top left / cover no-repeat;
  background-color: #0075c1;
  padding: 6px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal__title {
  font-size: 1.6rem;
  color: #fff;
}
.modal__wrap {
  width: 800px;
  margin: 0 auto;
}
.modal__row {
  display: grid;
  grid-template-columns: 193px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 13px 14px;
  border-bottom: 1px solid #cdcdcd;
}
.modal__row-title {
  font-size: 1.4rem;
  font-weight: 500;
  color: #0075c1;
  letter-spacing: -0.036em;
}
.modal__row-parags {
  font-size: 1.4rem;
  letter-spacing: -0.036em;
}
.modal__row-parags.multi:first-child {
  padding-bottom: 14px;
}
.modal__row-parags.multi:nth-child(even) {
  padding-top: 13px;
  padding-bottom: 14px;
}
.modal__row-parags.multi:not(:last-child) {
  border-bottom: 1px solid #cdcdcd;
}
.modal__row-parags.bullet {
  position: relative;
  padding-left: 14px;
}
.modal__row-parags.bullet::before {
  content: "";
  width: 12.61px;
  height: 12.61px;
  border-radius: 50%;
  background-color: #28d6cd;
  position: absolute;
  top: 5px;
  left: 0;
}
.modal__row-parags.bullet:not(:first-child)::before {
  top: 18px;
}
.modal__row-info:has(.modal__row-parags.multi:nth-of-type(2):last-child) .modal__row-parags.multi:last-child {
  padding-top: 13px;
  padding-bottom: 0;
}
.modal__row-info:has(.modal__row-parags.multi:nth-of-type(3):last-child) .modal__row-parags.multi:last-child {
  padding-top: 13px;
}
.modal__renov-item {
  display: grid;
  grid-template-columns: 198px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #707070;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.modal__renov-item:not(:last-child) {
  margin-bottom: 40px;
}
.modal__renov-item:not(:last-child) .modal__renov-title:not(:last-of-type)::after {
  content: "";
  width: 35.18px;
  height: 13px;
  background: url("./src/img/icons/triangle.svg") no-repeat center/100% 100%;
  position: absolute;
  bottom: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.modal__renov-title {
  color: #fff;
  padding: 17px 19.4px;
  height: 70px;
  position: relative;
  background-color: #0075c1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modal__renov-text {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.036em;
}
.modal__renov-info {
  height: 70px;
  padding: 17px 0 17px 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal__renov-parags {
  font-size: 1.4rem;
  letter-spacing: -0.036em;
  line-height: 1.5714285714em;
}

.button {
  width: 100%;
  max-width: 434px;
  height: 120px;
  background-color: #fff;
  border: 4px solid #0075c1;
  border-radius: 60px;
  font: 700 2.4rem "Noto Sans", sans-serif;
  color: #0075c1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 40px;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .button {
    max-width: 280px;
    height: 77px;
    border-radius: 38px;
    font-size: 15px;
    padding-inline: 40px 20px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
  }
}
.button--w343 {
  max-width: 343px;
  gap: 0 30px;
}
@media screen and (max-width: 1024px) {
  .button--w343 {
    max-width: 221px;
    height: 77px;
    border-radius: 38px;
    gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .button--w343 {
    margin: 0 auto;
  }
}
.button:hover {
  background-color: #fdf6da;
}
.button__arrow {
  width: 58px;
  height: 58px;
  display: inline-block;
  background: #fde844 url("./src/img/icons/blue-arrow.svg") center/36px 16px no-repeat;
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .button__arrow {
    width: 37px;
    height: 37px;
    background-size: 23px 10px;
  }
}

/* =================================
　　　　TOP - MV Section
================================= */

.mv {
  width: 100%;
  padding-inline: 2.3%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .mv {
    padding: 0 0 37px;
  }
}
.mv__wrapper {
  width: 100%;
  height: 665px;
  background: url("./src/img/mv-img.jpg") center/cover no-repeat;
  position: relative;
  overflow: hidden;
  padding: 3% 0 0 8%;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .mv__wrapper {
    padding-left: 5%;
  }
}
@media screen and (max-width: 767px) {
  .mv__wrapper {
    background: url("./src/img/mv-img-sp.jpg") top 136px center/contain no-repeat;
  }
}
.mv__wrapper::before {
  content: "";
  width: 138px;
  height: 186px;
  background: url("./src/img/mv-deco.svg") center/cover no-repeat;
  position: absolute;
  top: -40px;
  left: 28%;
}
@media screen and (max-width: 767px) {
  .mv__wrapper::before {
    width: 113px;
    height: 152px;
    background: url("./src/img/mv-deco-sp.svg") center/cover no-repeat;
    top: unset;
    left: unset;
    right: -23px;
    bottom: 26.9%;
  }
}
.mv__row {
  width: 95%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .mv__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.mv__banner {
  width: 183px;
  height: 173px;
  pointer-events: none;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .mv__banner {
    width: 150px;
    height: 142px;
  }
}
@media screen and (max-width: 767px) {
  .mv__banner {
    margin-bottom: 263px;
  }
}
.mv__content {
  padding-top: 10px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .mv__content {
    width: 60%;
  }
}
.mv__heading, .mv__desc {
  font-family: "A-OTF Maru Folk Pro", sans-serif;
  font-weight: 500;
  color: #01619f;
}
.mv__heading {
  font-size: 2rem;
  line-height: 1.3em;
}
.mv__desc {
  font-size: 1.4rem;
  line-height: 1.7857142857em;
  margin-top: 10px;
}

/* =================================
　　　　TOP - Club Section
================================= */

.toto-club {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 68px 75px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .toto-club {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    padding-block: 96px 63px;
  }
}
.toto-club::after {
  content: "";
  width: 182px;
  height: 354px;
  background: url("./src/img/bubble-deco-sm.svg") center/cover no-repeat;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .toto-club::after {
    width: 100%;
    height: 50px;
    background: url("./src/img/bubble-deco-sp.svg") center/cover no-repeat;
    top: 0;
    left: 0;
    right: unset;
    bottom: unset;
  }
}
.toto-club__logo {
  width: 120px;
  height: 120px;
}
@media screen and (max-width: 767px) {
  .toto-club__logo {
    margin-bottom: 46px;
  }
}
.toto-club__text {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0075c1;
  line-height: 1.375em;
  margin-left: 12px;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .toto-club__text {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .toto-club__text {
    margin-left: 0;
  }
}
.toto-club__text::after {
  content: "";
  width: 41px;
  height: 22px;
  background: url("./src/img/icons/sparkle.svg") center/cover no-repeat;
  position: absolute;
  right: -15px;
  bottom: 31px;
  -webkit-transform: rotate(36deg);
          transform: rotate(36deg);
}
@media screen and (max-width: 767px) {
  .toto-club__text::after {
    top: -30px;
    left: 50%;
    right: unset;
    -webkit-transform: translateX(-50%) rotate(0);
            transform: translateX(-50%) rotate(0);
  }
}

/* =================================
　　　　TOP - Service Section
================================= */

.service {
  padding-block: 80px 100px;
}
@media screen and (max-width: 767px) {
  .service {
    padding-block: 60px 76px;
  }
}
.service__desc {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 2em;
  text-align: center;
  margin-block: 20px 66px;
}
@media screen and (max-width: 767px) {
  .service__desc {
    margin-bottom: 50px;
  }
}
.service__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .service__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 56px 0;
  }
}
.service__col {
  width: 47%;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .service__col {
    width: 500px;
  }
}
@media screen and (max-width: 767px) {
  .service__col {
    width: 100%;
  }
}
.service__col--column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .service__col--column {
    gap: 56px 0;
  }
}
.service__wrap {
  width: 100%;
  min-height: 246px;
  -webkit-box-shadow: 4px 6px 12px rgba(0, 0, 0, 0.16);
          box-shadow: 4px 6px 12px rgba(0, 0, 0, 0.16);
  border: 2px solid #0075c1;
  border-radius: 20px;
  position: relative;
}
.service__wrap--01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 543px;
  padding: 40px 40px 0;
}
@media screen and (max-width: 767px) {
  .service__wrap--01 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 37px 4% 17px;
  }
}
.service__wrap--02 {
  padding: 20px 69px 0 54px;
}
@media screen and (max-width: 767px) {
  .service__wrap--02 {
    padding: 30px 4% 44px;
  }
}
.service__wrap--03 {
  padding: 32px 45px 0 22px;
}
@media screen and (max-width: 767px) {
  .service__wrap--03 {
    padding: 26px 4% 43px;
  }
}
.service__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .service__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px 0;
  }
}
.service__list--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 34px 0;
}
@media screen and (max-width: 767px) {
  .service__list--column {
    gap: 20px 0;
  }
}
.service__list--column:not(:last-child) {
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  .service__list--column:not(:last-child) {
    margin: 0 0 20px;
  }
}
.service__list--center {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .service__list--center {
    gap: 13px 0;
  }
}
.service__item--y20 {
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}
@media screen and (max-width: 767px) {
  .service__item--y20 {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.service__img {
  width: 150px;
  height: auto;
}
.service__img--w210 {
  width: 210px;
}
.service__img--w125 {
  width: 125px;
}
.service__img--w211 {
  width: 211px;
}
.service__img--w175 {
  width: 175px;
}
.service__title {
  font-size: 1.6rem;
  font-weight: 500;
  color: #0075c1;
  text-align: center;
  display: block;
}
.service__title--y18 {
  transform: translateY(18px);
}
@media screen and (max-width: 767px) {
  .service__title--y18 {
    transform: translateY(0);
  }
}
.service__btn-wrap {
  width: 313px;
  position: absolute;
  left: 50%;
  bottom: -18px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .service__btn-wrap {
    width: 280px;
  }
}
.service__btn {
  width: 100%;
  max-width: 313px;
  height: 36px;
  background-color: #0075c1;
  border-radius: 18px;
  font: 500 1.5rem "Noto Sans", sans-serif;
  color: #fff;
  line-height: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  border: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  padding-left: 18px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .service__btn {
    font-size: 14px;
    max-width: 280px;
  }
}
.service__btn::after {
  content: "";
  width: 56px;
  height: 100%;
  background: #fde844 url("./src/img/icons/blue-arrow.svg") center/24px 11px no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .service__btn::after {
    width: 45px;
  }
}
.service__btn:hover::after {
  background: #28d6cd url("./src/img/icons/yellow-arrow.svg") center/24px 11px no-repeat;
}

/* =================================
　　　　TOP - Concern Section
================================= */

.concern {
  background: #fff3c3 url("./src/img/dotted-deco.svg") center/1366px 100% no-repeat;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .concern {
    background-size: cover;
  }
}
@media screen and (max-width: 767px) {
  .concern {
    background: #fff3c3 url("./src/img/dotted-deco-sp.svg") top/cover no-repeat;
  }
}
.concern figure {
  margin: 0;
}
.concern__img {
  width: 100%;
  max-width: 839px;
  height: 393px;
  display: block;
  margin: 25px auto 0;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .concern__img {
    max-width: 700px;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .concern__img {
    max-width: 355px;
    height: 767px;
  }
}

/* =================================
　　　　TOP - Banner Section
================================= */

.banner-tel {
  width: 100%;
  height: 180px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(38, 214, 205)), to(rgb(2, 154, 236)));
  background: linear-gradient(90deg, rgb(38, 214, 205) 0%, rgb(2, 154, 236) 100%);
  margin-top: 112px;
}
@media screen and (max-width: 767px) {
  .banner-tel {
    height: 343px;
    margin-block: 0 129px;
  }
}
.banner-tel figure {
  margin: 0;
}
.banner-tel__wrap {
  width: 100%;
  max-width: 816px;
  margin: 0 auto;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .banner-tel__wrap {
    max-width: unset;
  }
}
.banner-tel__img {
  width: 274px;
  height: 268px;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .banner-tel__img {
    width: 274px;
    height: 268px;
    left: 50%;
    bottom: -79px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.banner-tel__content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 294px;
}
@media screen and (max-width: 767px) {
  .banner-tel__content {
    padding: 27px 0 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.banner-tel__desc, .banner-tel__num {
  display: block;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .banner-tel__desc, .banner-tel__num {
    text-align: center;
  }
}
.banner-tel__desc {
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .banner-tel__desc {
    font-size: 20px;
  }
}
.banner-tel__num {
  font: 700 3.9rem "Jost", sans-serif;
}
@media screen and (max-width: 767px) {
  .banner-tel__num {
    font-size: 34px;
  }
}

/* =================================
　　　　TOP - Flow Section
================================= */

.flow {
  width: 100%;
  height: 400px;
  background: url("./src/img/flow-img.jpg") left/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .flow {
    height: 374px;
    background: url("./src/img/flow-img-sp.jpg") top center/contain no-repeat;
    padding-bottom: 60px;
  }
}
.flow__container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 13% !important;
}
@media screen and (max-width: 767px) {
  .flow__container {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-right: 0 !important;
  }
}

/* =================================
　　　　TOP - Company Section
================================= */

.company {
  padding-block: 109px 100px;
}
@media screen and (max-width: 767px) {
  .company {
    padding-block: 60px 30px;
  }
}
.company__container {
  max-width: calc(800px + 8%) !important;
}
.company__table {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .company__table {
    margin-top: 12px;
  }
}
.company__map {
  width: 100%;
  height: 469px;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .company__map {
    height: 188px;
    margin-top: 20px;
  }
}
.company__map > iframe {
  width: 100%;
  height: 100%;
}

/* =================================
　　　　TOP - Maker Section
================================= */

.maker {
  padding-block: 30px 130px;
}
@media screen and (max-width: 767px) {
  .maker {
    padding-bottom: 60px;
  }
}
.maker__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px 30px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .maker__list {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .maker__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.maker__list--mt40 {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .maker__list--mt40 {
    margin-top: 30px;
  }
}
.maker__list:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .maker__list:not(:last-child) {
    margin-bottom: 20px;
  }
}
.maker__item {
  width: 226px;
  height: 71px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .maker__item {
    width: 150px;
    height: 47px;
  }
}

/* =================================
　　　　TOP - Recruit Section
================================= */

.recruit {
  padding-top: 60px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .recruit {
    padding-top: 50px;
  }
}
.recruit::after {
  content: "";
  width: 1237px;
  height: 242px;
  background: url("./src/img/bubble-deco.svg") center/cover no-repeat;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .recruit::after {
    width: 180px;
    height: 111px;
    background: url("./src/img/bubble-deco-xs.svg") center/cover no-repeat;
    top: -15px;
    left: unset;
    right: -56px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.recruit__container {
  min-height: 470px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .recruit__container {
    min-height: 594px;
    padding-inline: 4% !important;
  }
}
.recruit__container::after {
  content: "";
  width: 473px;
  height: 332px;
  background: url("./src/img/illus.svg") center/cover no-repeat;
  position: absolute;
  right: calc(8% - 50px);
  bottom: 0;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .recruit__container::after {
    width: 329px;
    height: 231px;
  }
}
@media screen and (max-width: 767px) {
  .recruit__container::after {
    width: 329px;
    height: 231px;
    left: 50%;
    right: unset;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 0;
  }
}
.recruit__content {
  margin-top: 45px;
  padding-left: 94px;
}
@media screen and (max-width: 767px) {
  .recruit__content {
    padding-left: 0;
    margin-top: 23px;
  }
}
.recruit__desc {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 2em;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .recruit__desc {
    text-align: center;
  }
}

/* =================================
　　　　TOP - SNS Section
================================= */

.sns {
  padding-block: 100px;
}
@media screen and (max-width: 767px) {
  .sns {
    padding-block: 64px 70px;
  }
}
.sns__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
    -ms-flex-pack: center;
        justify-content: center;
  gap: 60px 100px;
  max-width: calc(894px + 8%) !important;
}
@media screen and (max-width: 1024px) {
  .sns__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 100% !important;
  }
}
.sns__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.sns__title {
  font: 500 3.4rem "Jost", sans-serif;
  color: #0075c1;
  text-align: center;
  margin-bottom: 17px;
}
@media screen and (max-width: 767px) {
  .sns__title {
    font-size: 30px;
    margin-bottom: 15px;
  }
}
.sns__img-ig {
  width: 456px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .sns__img-ig {
    width: 320px;
  }
}
.sns__btn {
  width: 125px;
  height: 62px;
  background-color: #fde844;
  -webkit-box-shadow: 4px 6px 12px rgba(0, 0, 0, 0.16);
          box-shadow: 4px 6px 12px rgba(0, 0, 0, 0.16);
  border: 4px solid #0075c1;
  border-radius: 31px;
  font-size: 2.4rem;
  font-weight: 700;
  color: #0075c1;
  margin: 28px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .sns__btn {
    margin-top: 20px;
  }
}
.sns__btn:hover {
  opacity: 0.7;
}

/* =================================
　　　　TOP - Construction Section
================================= */

.cons {
  position: relative;
}
.cons__tags {
  margin-block: 14px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  gap: 10px;
}
.cons__tags--dt {
  margin-block: 50px 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cons__tags--dt .cons__tag {
  font-size: 1.8rem;
  padding: 2px 52px;
  height: 31px;
}
@media screen and (max-width: 767px) {
  .cons__tags--dt .cons__tag {
    padding-inline: 10px;
  }
}
.cons__tag {
  background-color: #0075c1;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  padding-inline: 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 20px;
  text-align: center;
  display: block;
  border-radius: 4px;
}
.cons__tag--min {
  padding-inline: 10px;
}
.cons__subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  background-color: #0075c1;
  height: 30px;
  width: 155px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 10px 8px;
}

.cons-li {
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .cons-li {
    padding-bottom: 64px;
  }
}
.cons-li__nav-list {
  margin-block: 47px 60px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .cons-li__nav-list {
    gap: 20px;
    margin-block: 40px 50px;
  }
}
.cons-li__nav-item {
  height: 42px;
  width: 145px;
  border-radius: 4px;
  border: 1px solid #0075c1;
}
@media screen and (max-width: 767px) {
  .cons-li__nav-item {
    width: 140px;
  }
}
.cons-li__nav-item.active {
  background: -webkit-gradient(linear, left top, left bottom, from(#26d6cd), to(#029aec));
  background: linear-gradient(to bottom, #26d6cd, #029aec);
  border: none;
}
.cons-li__nav-item.active .cons-li__nav-link {
  color: #fff;
}
.cons-li__nav-link {
  font-size: 1.5rem;
  font-weight: 500;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cons-li__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 61px 50px;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .cons-li__content {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 31px;
  }
}
.cons-li__img {
  width: 100%;
  height: auto;
  max-width: 300px;
  max-height: 229px;
  aspect-ratio: 300 / 229;
  border: 1px solid #bfbfbf;
  position: relative;
}
.cons-li__img img {
  display: block;
}
@media screen and (max-width: 767px) {
  .cons-li__img {
    max-width: 430px;
  }
}
.cons-li__desc {
  font-size: 1.5rem;
  line-height: 1.6em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
  .cons-li__container {
    padding-inline: 9.87% !important;
  }
}

.cons-dt {
  padding-bottom: 100px !important;
  max-width: calc(800px + 8%) !important;
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1000px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .cons-dt {
    max-width: 100%;
    padding-inline: 28px;
  }
}
@media screen and (max-width: 767px) {
  .cons-dt {
    padding-inline: 7.34% !important;
    padding-bottom: 64px !important;
  }
}
.cons-dt__modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.8);
}
.cons-dt__modal-content {
  margin: auto;
  width: 80%;
  height: 100%;
  opacity: 1 !important;
  max-width: 1200px;
  padding-block: 40px;
  -webkit-animation: zoom 0.5s;
          animation: zoom 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cons-dt__modal-close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cons-dt__modal-close:hover, .cons-dt__modal-close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}
.cons-dt__before-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  max-width: 640px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .cons-dt__before-images {
    gap: 20px;
  }
}
.cons-dt__before-item {
  max-height: 220px;
  max-width: 300px;
  border: 1px solid #909090;
  width: 100%;
  aspect-ratio: 4/3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
/* .cons-dt__before-item img {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.cons-dt__before-item:hover {
  cursor: pointer;
}
.cons-dt__before-item:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
} */
.cons-dt__title {
  font-size: 2.4rem;
  text-align: center;
  line-height: 1.6666666667em;
}
@media screen and (max-width: 767px) {
  .cons-dt__title {
    font-size: 22px;
    line-height: 1.4545454545em;
  }
}
.cons-dt__row {
  max-width: 800px;
  margin-inline: auto;
}
.cons-dt__row-title {
  font-size: 2rem;
  color: #fff;
  height: 40px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  margin-block: 50px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .cons-dt__row-title {
    margin-block: 20px;
  }
}
.cons-dt__row-title--before {
  background-color: #909090;
}
.cons-dt__row-title--after {
  background: -webkit-gradient(linear, left top, left bottom, from(#26d6cd), to(#029aec));
  background: linear-gradient(to bottom, #26d6cd, #029aec);
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .cons-dt__row-title--after {
    margin-block: 40px 20px;
  }
}
.cons-dt__after-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .cons-dt__after-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 320px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-inline: auto;
    gap: 20px;
    margin-top: 20px;
  }
}
.cons-dt__after-thumb {
  max-height: 130px;
  max-width: 178px;
  width: 100%;
  aspect-ratio: 4/3;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 767px) {
  .cons-dt__after-thumb {
    max-height: 110px;
  }
}
.cons-dt__after-thumb:hover {
  cursor: pointer;
  opacity: 0.5;
}
.cons-dt__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px 60px;
  margin-block: 60px;
}
@media screen and (max-width: 767px) {
  .cons-dt__info {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-block: 40px;
  }
}
.cons-dt__info-title {
  border-bottom: 3px solid #0075c1;
  margin-bottom: 12px;
}
.cons-dt__info-title span {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.cons-dt__info-text {
  font-size: 1.5rem;
  line-height: 1.7333333333em;
}
.cons-dt__banner {
  background-color: #fdf6da;
  border: 3px solid #0075c1;
  border-radius: 33px;
  position: relative;
  min-height: 135px;
  margin-bottom: 78px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .cons-dt__banner {
    margin-bottom: 33px;
    padding: 30px;
  }
}
.cons-dt__banner-title {
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  margin-inline: auto;
  border-radius: 15px;
  padding: 10px 10px 11px;
}
.cons-dt__banner-text {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 2em;
}
.cons-dt__after-img {
  border: 1px solid #0075c1;
}

/* =================================
　　　　TOP - News Section
================================= */

.news {
  padding-bottom: 60px;
}
.news__list {
  max-width: 800px;
  margin: 48px auto 48.6px;
}
@media screen and (max-width: 767px) {
  .news__list {
    margin: 30px auto 43.4px;
  }
}
.news__row {
  display: grid;
  grid-template-columns: 71px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 41px;
  padding: 15px 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .news__row {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px 0;
  }
}
.news__row:first-child {
  padding: 0 0 15px;
}
@media screen and (max-width: 767px) {
  .news__row:first-child {
    padding: 0 0 9.2px;
  }
}
.news__row:not(:last-child) {
  border-bottom: 2px solid #fde844;
}
.news__row:hover {
  opacity: 0.7;
}
.news__date {
  font-family: "Jost", sans-serif;
  font-size: 1.4rem;
  color: #0075c1;
  line-height: 2em;
}
.news__info {
  font-size: 1.5rem;
  line-height: 2em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news__details {
  max-width: 800px;
  margin: 51px auto 71px;
}
@media screen and (max-width: 767px) {
  .news__details {
    margin: 41px auto 49px;
  }
}
.news__date-heading {
  text-align: center;
  padding-bottom: 25px;
  border-bottom: 4px solid #fde844;
  margin-bottom: 30px;
}
.news__title {
  font-size: 2.4rem;
  line-height: 1.6666666667em;
  text-align: center;
  margin-bottom: 51px;
}
@media screen and (max-width: 767px) {
  .news__title {
    margin-bottom: 31px;
  }
}
.news__detail-image {
  aspect-ratio: 600/450;
  max-width: 600px;
  margin: 0 auto;
}
.news__detail-image > img {
  border: 1px solid #bfbfbf;
}
.news__detail-text {
  font-size: 1.5rem;
  line-height: 2.4em;
  text-align: justify;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .news__detail-text {
    margin-top: 30px;
  }
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-150px);
            transform: translateY(-150px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fade {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-150px);
            transform: translateY(-150px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.overflow {
  overflow: hidden;
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.pc-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .pc-flex {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.sp-flex {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.tablet {
  display: none;
}
@media screen and (max-width: 1024px) {
  .tablet {
    display: block;
  }
}

.container {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1000px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 100%;
    padding-inline: 28px;
  }
}

.bg-gradient {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(232, 247, 252)), to(rgb(213, 244, 255)));
  background: linear-gradient(180deg, rgb(232, 247, 252) 0%, rgb(213, 244, 255) 100%);
  -webkit-box-shadow: 0 0 29px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 29px rgba(0, 0, 0, 0.16);
}

.empty-post__message {
  font-size: 1.6rem;
  text-align: center;
}

.text-trim {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.error-404 {
  text-align: center;
  padding-block: 40px 100px;
}
.error-404__num {
  font: 500 18rem "Jost", sans-serif;
  line-height: 1em;
}
@media screen and (max-width: 767px) {
  .error-404__num {
    font-size: 100px;
  }
}
.error-404__text {
  font-size: 3rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .error-404__text {
    font-size: 24px;
  }
}
.error-404__num, .error-404__text {
  display: block;
  color: #0075c1;
}
.error-404__desc {
  font-size: 1.6rem;
  line-height: 2em;
  margin-block: 40px;
}
.error-404__btn {
  width: 280px;
  height: 60px;
  border-radius: 30px;
  font-size: 1.8rem;
  gap: 0 20px;
  padding: 0 20px;
  margin: 0 auto;
}
.error-404__btn .button__arrow {
  width: 37px;
  height: 37px;
  background-size: 23px 10px;
}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoom {
  from {
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
.wp-pagenavi {
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wp-pagenavi .page,
.wp-pagenavi .current {
  font-family: "Jost", sans-serif;
  font-size: 1.6rem;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid #0075c1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wp-pagenavi .current {
  border: 1px solid transparent;
  background-color: #0075c1;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi .page:hover {
    background-color: #0075c1;
    border: 1px solid transparent;
    color: #fff;
  }
}
.wp-pagenavi .extend {
  font-size: 1.4rem;
  width: 14px;
  height: 20px;
  border: 0;
  -ms-flex-item-align: start;
      align-self: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  width: 28px;
  height: 28px;
  border: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wp-pagenavi .previouspostslink::before,
.wp-pagenavi .nextpostslink::before {
  content: "";
  width: 10px;
  height: 100%;
  background: url("./src/img/icons/prev.svg") no-repeat center/contain;
  display: block;
}
.wp-pagenavi .nextpostslink::before {
  background: url("./src/img/icons/next.svg") no-repeat center/contain;
}

.const__slider {
  margin-block: 40px 48px;
}
@media screen and (max-width: 767px) {
  .const__slider {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .const__slider .splide__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.const__slider .splide__arrows {
  width: 1140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  top: 62px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .const__slider .splide__arrows {
    width: calc(100% + 40px);
    z-index: 2;
  }
}
.const__slider .splide__arrow {
  width: 40px;
  height: 40px;
  background: #28d6cd url("./src/img/icons/caret.svg") center left 13px/10px 19px no-repeat;
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.const__slider .splide__arrow > svg {
  display: none;
}
.const__slider .splide__arrow--next {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.scroll-hint-icon {
  display: none;
}
@media screen and (max-width: 100px) {
  .scroll-hint-icon {
    display: block;
  }
}
