@charset "UTF-8";
a,
button {
  cursor: pointer;
}

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

@media screen and (min-width: 768px) {
  .hidden-md {
    display: none;
    opacity: 0;
  }
}

.inner {
  padding-inline: 30px;
}
@media screen and (min-width: 768px) {
  .inner {
    padding-inline: 40px;
    max-width: 1200px;
    margin-inline: auto;
  }
}

.heading {
  text-align: center;
}

.heading__title-en {
  font-family: "zen Kaku Gothic New", sans-serif;
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 3.8px;
}
@media screen and (min-width: 768px) {
  .heading__title-en {
    font-size: 50px;
    letter-spacing: 5px;
  }
}

.heading__title-ja {
  margin-top: 14px;
  font-family: "zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1.12px;
}
@media screen and (min-width: 768px) {
  .heading__title-ja {
    font-size: 16px;
    letter-spacing: 1.28px;
  }
}

body {
  font-family: "zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #111;
  background: #fafafa;
}

.button {
  font-weight: 500;
  letter-spacing: 0.48px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 60px;
  border: 2px solid currentColor;
  background: #fff;
  font-size: 16px;
  line-height: 1.7;
  color: #111;
  min-width: 150px;
  text-align: center;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.button:hover {
  background-color: #9ed0e0;
}
.button--type2 {
  background: #111;
  color: #fff;
}
.button--type2:hover {
  background: #fff;
  color: #111;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 22px 30px;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding-block: 21px;
    max-width: calc(1140px + 30px);
    margin-inline: auto;
  }
}

.header__logo img {
  width: 150px;
  display: block;
}
@media screen and (min-width: 768px) {
  .header__logo img {
    width: 135px;
    padding-top: 8px;
  }
}

.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
}

.header__link {
  font-weight: 700;
  letter-spacing: 0.48px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.header__link:hover {
  color: #00bcd4;
}

.header__open {
  margin-top: 3px;
}
@media screen and (min-width: 768px) {
  .header__open {
    display: none;
  }
}

.drawer-icon {
  width: 36px;
  height: 21px;
  position: relative;
  z-index: 51;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 3px;
  border-radius: 6px;
  background: #111;
  -webkit-transition: linear, top 0.3s, linear, -webkit-transform 0.3s;
  transition: linear, top 0.3s, linear, -webkit-transform 0.3s;
  transition: transform 0.3s, linear, top 0.3s, linear;
  transition: transform 0.3s, linear, top 0.3s, linear, -webkit-transform 0.3s;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 9px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 18px;
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #9ed0e0;
  z-index: 50;
  padding: 86px 40px 40px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear; /*アニメーションの設定*/
}
.drawer-content.is-checked {
  opacity: 1;
  pointer-events: auto;
}

.drawer-nav__link {
  display: block;
  padding-block: 14px;
  text-align: right;
  font-weight: 700;
  letter-spacing: 0.48px;
}

.drawer-nav__button {
  margin-top: 14px;
  text-align: right;
}

.mv {
  margin-bottom: 150px;
  max-width: calc(100% - 30px);
  margin-inline: auto;
  border-radius: 20px;
  background: -webkit-gradient(linear, left top, left bottom, from(#5dd4fb), to(#a1e1f7));
  background: linear-gradient(180deg, #5dd4fb 0%, #a1e1f7 100%);
}
@media screen and (min-width: 768px) {
  .mv {
    border-radius: 30px;
    max-width: calc(100% - 60px);
    margin-bottom: 210px;
  }
}

.mv__inner {
  padding: 50px 20px 210px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .mv__inner {
    padding-top: 110px;
    padding-bottom: 109px;
    padding-inline: 30px;
    max-width: 1100px;
    margin-inline: auto;
  }
}

.mv__lead1,
.mv__lead2 {
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2.2px;
  border-radius: 5px;
  background: #fff;
  padding: 10px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .mv__lead1,
  .mv__lead2 {
    margin-inline: 0;
    color: #111;
    font-size: 38px;
    letter-spacing: 3.8px;
    padding: 12px 15px;
  }
}

.mv__lead2 {
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .mv__lead2 {
    margin-top: 14px;
  }
}

.mv__description {
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.48px;
  text-align: center;
  margin-top: 26px;
}
@media screen and (min-width: 768px) {
  .mv__description {
    text-align: left;
    margin-top: 20px;
    font-size: 18px;
    letter-spacing: 0.54px;
  }
}

.mv__button {
  position: relative;
  margin-top: 22px;
  text-align: center;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .mv__button {
    text-align: left;
    margin-top: 32px;
  }
}
.mv__img {
  position: absolute;
  left: 0px;
  bottom: -60px;
  width: 100%;
  text-align: center;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .mv__img {
    text-align: right;
    bottom: -90px;
    left: -31px;
  }
}
.mv__img img {
  width: 345px;
}
@media screen and (min-width: 768px) {
  .mv__img img {
    width: 54.5454545455%;
  }
}

.about {
  margin-block: 60px;
}
@media screen and (min-width: 768px) {
  .about {
    margin-top: 100px;
    margin-bottom: 97px;
  }
}

.about__inner {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .about__inner {
    padding-inline: 0px;
  }
}

.about__boxes {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .about__boxes {
    margin-top: 60px;
    gap: 40px;
  }
}

.about-box {
  border-radius: 20px;
  background: #fff;
  padding: 10px 30px 24px;
}
@media screen and (min-width: 768px) {
  .about-box {
    padding: 20px 18px;
  }
}
@media screen and (min-width: 768px) {
  .about-box.is-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media screen and (min-width: 768px) {
  .about-box__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
    max-width: 920px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .is-reverse .about-box__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.about-box__image {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about-box__image {
    width: 38.0434782609%; /*画面幅に合わせて幅を変更*/
  }
}
.about-box__image img {
  width: 200px;
}
@media screen and (min-width: 768px) {
  .about-box__image img {
    width: 350px;
  }
}

.about-box__body {
  margin-top: 18px;
  max-width: 520px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .about-box__body {
    margin-top: 0;
    width: 56.5217391304%; /*画面幅に合わせて幅を変更*/
  }
}

.about-box__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .about-box__head {
    gap: 28px;
  }
}

.about-box__number {
  font-family: "zen Kaku Gothic New", sans-serif;
  color: #9ed0e0;
  font-size: 70px;
  font-weight: 600;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .about-box__number {
    font-size: 110px;
  }
}

.about-box__title {
  font-family: "zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 768px) {
  .about-box__title {
    font-size: 20px;
    line-height: 1.7;
    letter-spacing: 2px;
  }
}

.about-box__text {
  margin-top: 10px;
  font-size: 14px;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .about-box__text {
    margin-top: 16px;
    font-size: 15px;
  }
}

.about__table {
  width: 100%;
  border-collapse: collapse;
}

.about-table {
  width: 100%;
}

.about__tbody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 11px;
}
@media screen and (min-width: 768px) {
  .about__tbody {
    gap: 14px;
  }
}

.about-table__row {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--LP-Dark-Gray, #ccc);
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  gap: 8px;
}
.about-table__row:last-child {
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .about-table__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    text-align: left;
    padding-right: 45px;
    padding-bottom: 10px;
  }
}

.about-table__header {
  padding-left: 16px;
  font-size: 14px;
  font-weight: 700;
  position: relative;
}
@media screen and (min-width: 768px) {
  .about-table__header {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    width: 188px;
    font-size: 16px;
    padding-left: 33px;
  }
}
.about-table__header::before {
  content: "";
  position: absolute;
  top: 52%;
  left: 0;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  width: 8px;
  height: 8px;
  background-color: #00bcd4;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .about-table__header::before {
    top: 44%;
    left: 16px;
    -webkit-transform: translate(0%, -50%);
            transform: translate(0%, -50%);
  }
}

.about-table__date {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .about-table__date {
    text-align: left;
    width: calc(100% - 240px);
    font-size: 16px;
  }
}
.about-table__date ul {
  margin-top: -18px;
}
@media screen and (min-width: 768px) {
  .about-table__date ul {
    margin-top: -28px;
  }
}
.about-table__date li {
  margin-top: -1px;
  position: relative;
  padding-left: 1.5em;
}
.about-table__date li::before {
  content: "・";
  position: absolute;
  top: 0.1em;
  left: 0.2em;
}
@media screen and (min-width: 768px) {
  .about-table__date li {
    margin-top: 1px;
  }
}

.gallery {
  padding-block: 60px;
}
@media screen and (min-width: 768px) {
  .gallery {
    padding-block: 100px;
  }
}

.gallery__inner {
  position: relative;
  text-align: center;
  max-width: 1084px;
  padding-inline: 30px;
  margin-inline: auto;
}

.gallery__slider {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .gallery__slider {
    margin-top: 60px;
  }
}

.gallery__swiper {
  padding-bottom: 26px;
  padding-inline: 5px;
  margin-inline: -5px;
}
@media screen and (min-width: 768px) {
  .gallery__swiper {
    padding-inline: 95px;
    margin-inline: 0;
  }
}

.gallery-card {
  border-radius: 20px;
  background: #ffffff;
  -webkit-box-shadow: 0px 9px 30px 0px #f4f4f4;
          box-shadow: 0px 9px 30px 0px #f4f4f4;
  padding: 12px 12px 9px 12px;
  overflow: hidden;
  -webkit-transition: border 0.2s linear;
  transition: border 0.2s linear;
}
@media screen and (min-width: 768px) {
  .gallery-card {
    border-radius: 30px;
    padding: 22px 17px 15px 17px;
  }
}

@media screen and (min-width: 768px) {
  .gallerys-card__button {
    margin-inline: 35px;
  }
}

.gallery-card__img {
  aspect-ratio: 16/9;
  display: block;
  margin-inline: auto;
  border-radius: 5px;
}
.gallery-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 374px) {
  .gallery-card__img {
    height: auto;
  }
}
@media screen and (min-width: 768px) {
  .gallery-card__img {
    aspect-ratio: 16/9;
    width: calc(100% + 66px);
    margin-left: -33px;
  }
}

.gallery-card__text {
  margin-top: 13px;
  text-align: center;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .gallery-card__text {
    margin-top: 18px;
    font-size: 16px;
  }
}

.gallery__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  bottom: 0 !important;
}
.gallery__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin-inline: 0 !important;
  background: #bcbcbc;
  opacity: 1;
}
.gallery__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #9ed0e0;
}

.gallery__prev,
.gallery__next {
  display: none;
  width: 30px;
  height: 30px;
}
@media screen and (min-width: 768px) {
  .gallery__prev,
  .gallery__next {
    display: block;
    width: 40px;
    height: 40px;
  }
}
.gallery__prev::after,
.gallery__next::after {
  display: none;
}

@media screen and (min-width: 768px) {
  .gallery__prev {
    left: 1%;
    background: url(../img/arrow-left.svg) no-repeat center center/contain;
  }
}
@media screen and (min-width: 900px) {
  .gallery__prev {
    left: 5%;
  }
}
.gallery__prev:hover {
  left: 0;
  outline: none;
}
@media screen and (min-width: 900px) {
  .gallery__prev:hover {
    left: 4%;
  }
}

.gallery__next:hover {
  left: 92%;
  outline: none;
}
@media screen and (min-width: 768px) {
  .gallery__next {
    left: 91%;
    background: url(../img/arrow-right.svg) no-repeat center center/contain;
  }
}

.gallery-modal {
  position: fixed;
  inset: 0;
  margin: auto;
  width: calc(100% - 20px);
  overflow: auto;
  z-index: 100;
  padding: 0px 0px 52px;
  border-radius: 10px;
  background: #fff;
  border: none;
  overscroll-behavior-y: none;
}
.gallery-modal::-ms-backdrop {
  background: #000;
  opacity: 0.7;
}
.gallery-modal::backdrop {
  background: #000;
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .gallery-modal {
    max-width: 600px;
  }
}
@media screen and (min-width: 768px) {
  .gallery-modal {
    width: 600px;
    padding: 0px 0px 40px;
  }
}
@media screen and (min-width: 900px) {
  .gallery-modal {
    width: 1000px;
  }
}

.gallery-modal__inner {
  text-align: center;
  overflow: hidden;
  border-radius: 10px;
  min-width: 336px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .gallery-modal__inner {
    width: 600px;
  }
}
@media screen and (min-width: 900px) {
  .gallery-modal__inner {
    width: 800px;
  }
}

.gallery-modal__img {
  min-width: 336px;
  margin-top: -1px;
}
.gallery-modal__img img {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .gallery-modal__img {
    margin-top: 70px;
  }
}

.gallery-modal__title {
  margin-top: 39px;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .gallery-modal__title {
    margin-top: 32px;
    font-size: 20px;
  }
}
@media screen and (min-width: 900px) {
  .gallery-modal__title {
    margin-top: 40px;
  }
}

.gallery-modal__text {
  text-align: left;
  margin-top: 10px;
  padding-inline: 20px;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .gallery-modal__text {
    font-size: 16px;
    margin-top: 20px;
    padding-inline: 50px;
  }
}
@media screen and (min-width: 900px) {
  .gallery-modal__text {
    margin-top: 40px;
    padding-inline: 150px;
  }
}

.gallery-modal__close-button {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .gallery-modal__close-button {
    margin-top: 40px;
  }
}

.gallery__button {
  margin-top: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .gallery__button {
    margin-top: 40px;
  }
}

.service {
  margin-block: 60px;
}
@media screen and (min-width: 768px) {
  .service {
    margin-top: 100px;
    margin-bottom: 97px;
  }
}

.service__boxes {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .service__boxes {
    margin-top: 60px;
    gap: 40px;
  }
}

.service-box {
  border-radius: 20px;
  background: #fff;
  padding: 10px 20px 24px;
}
@media screen and (min-width: 768px) {
  .service-box {
    padding: 20px 18px;
  }
}
@media screen and (min-width: 768px) {
  .service-box.is-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media screen and (min-width: 768px) {
  .service-box__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 50px;
    max-width: 920px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .is-reverse .service-box__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.service-box__image {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .service-box__image {
    width: 38.0434782609%; /*画面幅に合わせて幅を変更*/
  }
}
.service-box__image img {
  width: 200px;
}
@media screen and (min-width: 768px) {
  .service-box__image img {
    width: 350px;
  }
}

.service-box__body {
  display: grid;
  place-items: center;
  text-align: center;
  margin-top: 18px;
}
@media screen and (min-width: 768px) {
  .service-box__body {
    display: block;
    place-items: normal;
    text-align: left;
    margin-top: 0;
    width: 56.5217391304%; /*画面幅に合わせて幅を変更*/
  }
}

.service-box__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .service-box__head {
    gap: 28px;
  }
}

.service-box__icon {
  width: 70px;
}
.service-box__icon img {
  width: 100%;
}

.service-box__title {
  -ms-flex-line-pack: center;
      align-content: center;
  font-family: "zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 768px) {
  .service-box__title {
    font-size: 20px;
    line-height: 1.7;
    letter-spacing: 2px;
  }
}

.service-box__text {
  -moz-text-align-last: left;
       text-align-last: left;
  margin-top: 10px;
  font-size: 14px;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .service-box__text {
    margin-top: 16px;
    font-size: 15px;
  }
}

.service-box__text + .service-box__text {
  margin-top: 10px;
}

.flow {
  padding-block: 60px;
}
@media screen and (min-width: 768px) {
  .flow {
    padding-block: 100px;
  }
}

.flow__boxes {
  margin-top: 104px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 112px;
}
@media screen and (min-width: 768px) {
  .flow__boxes {
    margin-top: 89px;
    gap: 75px;
  }
}

.flow__box {
  border-radius: 30px;
  background: #fffbf0;
  padding: 54px 40px 48px;
}
@media screen and (min-width: 768px) {
  .flow__box {
    padding: 44px 10px 56px;
    border-radius: 40px;
  }
}

.flow__box-title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 1.8px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .flow__box-title {
    font-size: 22px;
    letter-spacing: 2.2px;
    padding-right: 150px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}
.flow__box-title img {
  width: 150px;
  content: "";
  position: absolute;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  bottom: calc(100% + 16px);
}
@media screen and (min-width: 768px) {
  .flow__box-title img {
    right: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    bottom: -12px;
  }
}
@media screen and (min-width: 768px) {
  .is-type2 .flow__box-title {
    padding-right: 0px;
    padding-left: 150px;
  }
  .is-type2 .flow__box-title img {
    right: auto;
    left: 0;
  }
}

.flow-steps {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .flow-steps {
    margin-top: 40px;
    max-width: 948px;
    margin-inline: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 24px;
  }
}

@media screen and (min-width: 768px) {
  .flow-step {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.step-box {
  padding-top: 45px;
  position: relative;
}

.step-box__head {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #fcd767;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.is-type2 .step-box__head {
  background: #9ed0e0;
}

.step-box__head-text {
  font-family: "zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.3px;
}

.step-box__head-number {
  font-family: "zen Kaku Gothic New", sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 3.4px;
  color: #fff;
  margin-top: 3px;
}

.step-box__body {
  border-radius: 30px;
  background: #fff;
  padding: 47px 10px 23px;
  text-align: center;
}

.step-box__body-img img {
  width: 160px;
}
@media screen and (min-width: 768px) {
  .step-box__body-img img {
    width: 200px;
  }
}

.step-box__body-text {
  font-weight: 700;
  letter-spacing: 0.48px;
  margin-top: 10px;
}

.qa {
  padding-block: 60px;
}
@media screen and (min-width: 768px) {
  .qa {
    padding-block: 100px;
  }
}

@media screen and (min-width: 768px) {
  .qa__inner {
    padding-inline: 30px;
    max-width: 860px;
  }
}

.qa__boxes {
  margin-top: 51px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .qa__boxes {
    margin-top: 74px;
  }
}

.qa-box {
  border-radius: 10px;
  background: #fff;
}
.qa-box.is-open .qa-box__head::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.qa-box__head {
  padding: 30px 37px 17px 12px;
  position: relative;
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .qa-box__head {
    padding: 31px 84px 18px 17px;
  }
}
.qa-box__head::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 9.26px;
  height: 6.834px;
  background: url(../img/qa-arrow.png) no-repeat center center/contain;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  margin-top: 3px;
}
@media screen and (min-width: 768px) {
  .qa-box__head::after {
    right: 18px;
    margin-top: 2px;
  }
}

.qa-box__head-icon {
  position: absolute;
  top: -26px;
  left: 12px;
  font-family: "zen Kaku Gothic New", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #9ed0e0;
}
@media screen and (min-width: 768px) {
  .qa-box__head-icon {
    left: 17px;
  }
}

.qa-box__head-text {
  display: block;
  -moz-text-align-last: left;
       text-align-last: left;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.12px;
}
@media screen and (min-width: 768px) {
  .qa-box__head-text {
    font-size: 16px;
    font-weight: 700;
    line-height: 27px;
    letter-spacing: 1.28px;
  }
}

.qa-box__body {
  padding: 13px 14px 17px 12px;
  display: none;
}
@media screen and (min-width: 768px) {
  .qa-box__body {
    padding: 1px 33px 16px 18px;
  }
}

.qa-box__a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .qa-box__a {
    gap: 10px;
  }
}

.qa-box__a-icon {
  font-family: "zen Kaku Gothic New", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
  background: #fcd767;
  color: #111;
}

.qa-box__a-text {
  font-size: 14px;
  display: block;
  font-weight: 700;
  letter-spacing: 1.12px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-top: 10px;
}
@media screen and (min-width: 768px) {
  .qa-box__a-text {
    font-size: 16px;
    line-height: 27px;
    letter-spacing: 1.28px;
    padding-top: 7px;
  }
}

.contact {
  padding-block: 40px;
}
@media screen and (min-width: 768px) {
  .contact {
    padding-block: 120px;
  }
}

.contact__inner {
  max-width: 640px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .contact__inner {
    max-width: 908px;
    padding-inline: 30px;
  }
}

.contact__box {
  background-color: #ffffff;
  border-radius: 20px;
  margin-top: 30px;
  padding: 20px 20px 20px;
}
@media screen and (min-width: 768px) {
  .contact__box {
    margin-top: 60px;
    padding-block: 40px;
  }
}

.contact__message {
  margin-top: 24px;
  text-align: center;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .contact__message {
    margin-top: 32px;
    font-size: 16px;
  }
}

.contact__form {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .contact__form {
    margin-top: 50px;
    max-width: 612px;
    margin-inline: auto;
  }
}

.contact__fields {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .contact__fields {
    margin-top: 40px;
  }
}

.contact__field {
  margin-top: 24px;
}

@media screen and (min-width: 768px) {
  .form-field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px;
  }
}

.form-field__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .form-field__head {
    width: 180px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.form-field__label {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .form-field__label {
    font-size: 16px;
  }
}

.form-field__tag {
  display: inline-block;
  border-radius: 4px;
  background: #fcd767;
  padding: 4px 8px 4px 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.form-field__tag.is-option {
  opacity: 0;
}

.form-field__item {
  margin-top: 8px;
}
.form-field__item ::-webkit-input-placeholder {
  color: #cccccc;
  font-size: 14px;
}
.form-field__item ::-moz-placeholder {
  color: #cccccc;
  font-size: 14px;
}
.form-field__item :-ms-input-placeholder {
  color: #cccccc;
  font-size: 14px;
}
.form-field__item ::-ms-input-placeholder {
  color: #cccccc;
  font-size: 14px;
}
.form-field__item ::placeholder {
  color: #cccccc;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .form-field__item ::-webkit-input-placeholder {
    font-size: 16px;
  }
  .form-field__item ::-moz-placeholder {
    font-size: 16px;
  }
  .form-field__item :-ms-input-placeholder {
    font-size: 16px;
  }
  .form-field__item ::-ms-input-placeholder {
    font-size: 16px;
  }
  .form-field__item ::placeholder {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .form-field__item {
    margin-top: 0px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.form-text {
  width: 100%;
  height: 56px;
  border-radius: 8px;
  background: #f5f5f5;
  padding: 13px 16px 16px 16px;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  border: none;
}
@media screen and (min-width: 768px) {
  .form-text {
    padding: 16px 16px 16px 13px;
  }
}
.form-text:hover, .form-text:focus {
  border: 1px solid #9ed0e0;
  background: #e9f6f8;
  outline: none;
}
.form-text:user-invalid {
  background-color: #fff0f7;
  border: 1px solid #fcd767;
}
.form-text:user-invalid .form-field__item {
  background-color: #fff0f7;
}

.form-select {
  position: relative;
  z-index: 100;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 56px;
  border-radius: 8px;
  font-size: 14px;
  border: none;
  padding: 13px 16px 16px 16px;
  background-image: url(../img/contact-arrow.png), linear-gradient(to left, #9ed0e0 52px, #f5f5f5 52px);
  background-repeat: no-repeat, no-repeat;
  background-position: center right 10px, center center;
  background-size: 32px 32px, cover;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .form-select {
    font-size: 16px;
    padding: 16px 16px 16px 16px;
  }
}
.form-select:hover, .form-select:focus {
  border: 1px solid #9ed0e0;
  background: #e9f6f8;
  outline: none;
}
.form-select:user-invalid {
  background-color: #fff0f7;
  border: 1px solid #fcd767;
}
.form-select.is-error {
  background-image: url(../img/contact-arrow.png), linear-gradient(to left, #fcd767 52px, #fff0f7 52px);
  background-repeat: no-repeat, no-repeat;
  background-position: center right 10px, center center;
  background-size: 32px 32px, cover;
}

.form-field-radio {
  margin-top: -3px;
}

.form-field__radios {
  margin-top: -4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .form-field__radios {
    margin-top: 4px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 25px;
    height: 56px;
  }
}

.form-radio:hover .form-radio__text::before {
  border: 1px solid #9ed0e0;
}

.form-radio__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0); /*表示領域を消す*/
  overflow: hidden;
}
.form-radio__input:checked + .form-radio__text {
  font-weight: 700;
}
.form-radio__input:checked + .form-radio__text::after {
  opacity: 1;
}
.form-radio__input:checked + .form-radio__text::before {
  background-color: #f5f5f5;
}
.form-radio__input:user-invalid {
  background-color: #fff0f7;
  border: 1px solid #fcd767;
}
.form-radio__input:valid {
  background-color: #f5f5f5;
  border: none;
}

.form-radio__text {
  font-size: 14px;
  position: relative;
  padding-left: 32px;
}
@media screen and (min-width: 768px) {
  .form-radio__text {
    font-size: 16px;
  }
}
.form-radio__text::before, .form-radio__text::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}
.form-radio__text::before {
  width: 24px;
  height: 24px;
  left: 0;
  background-color: #f5f5f5;
}
.form-radio__text::after {
  width: 12px;
  height: 12px;
  background: #9ed0e0;
  left: 6px;
  opacity: 0;
}

.form-textarea {
  border-radius: 5px;
  border: 3px solid #111;
  background: #fff;
  width: 100%;
  height: 160px;
  padding: 16px;
  border: none;
  background-color: #f5f5f5;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.form-textarea:hover, .form-textarea:focus {
  border: 1px solid #9ed0e0;
  background: #e9f6f8;
  outline: none;
}
.form-textarea:user-invalid {
  background-color: #fff0f7;
  border: 1px solid #fcd767;
}
.form-textarea:valid {
  background-color: #f5f5f5;
  border: none;
}

.contact__privacy {
  margin-top: 21px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__privacy {
    margin-top: 40px;
  }
}

.form-checkbox {
  position: relative;
}

.form-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-checkbox__input:checked + .form-checkbox__text::after {
  opacity: 1;
  z-index: 6;
  width: 21px;
  height: 22px;
}
.form-checkbox__input:checked + .form-checkbox__text::before {
  outline: 1px solid color-key1;
  z-index: 5;
}
.form-checkbox__input.is-error + .form-checkbox__text::before {
  background-color: #fff0f7;
  border: 1px solid color-key1;
}

.form-checkbox__text {
  font-size: 14px;
  padding-left: 35px;
}
.form-checkbox__text a {
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  text-decoration-line: underline;
  color: #111;
}
.form-checkbox__text a:hover {
  color: #9ed0e0;
}
@media screen and (min-width: 768px) {
  .form-checkbox__text {
    font-size: 16px;
  }
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  left: -1px;
  top: 2px;
}
.form-checkbox__text::before {
  width: 24px;
  height: 24px;
  background: #f5f5f5;
  border-radius: 4px;
}
.form-checkbox__text::after {
  opacity: 0;
  width: 24px;
  height: 24px;
  left: 1.29px;
  background: url(../img/icon-check.svg) center center/contain no-repeat;
}

.contact__button {
  margin-top: 25px;
  margin-bottom: 5px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__button {
    margin-top: 40px;
    font-size: 16px;
  }
}

.footer {
  background: #111;
  padding-block: 10px;
  text-align: center;
}

.footer__copyright {
  color: #f5f5f5;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.96px;
}

.pagetop {
  position: fixed;
  right: 40px;
  bottom: -5px;
  width: min(13.3333333333%, 50px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
@media screen and (min-width: 768px) {
  .pagetop {
    right: 80px;
    bottom: -10px;
  }
}
.pagetop.is-show {
  opacity: 1;
  visibility: visible;
}
.pagetop img {
  width: 100px;
}
@media screen and (min-width: 768px) {
  .pagetop img {
    width: 150px;
  }
}

.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
.fade-in-up.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fade-in-down {
  opacity: 0;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
.fade-in-down.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fade-in {
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
.fade-in.is-in-view {
  opacity: 1;
}

.works {
  padding-top: 10px;
  padding-bottom: 20px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .works {
    margin-top: 30px;
    padding-bottom: 50px;
  }
}

.works-inner {
  margin-inline: auto;
}

.works-contents {
  padding-bottom: 32px;
}
@media screen and (min-width: 900px) {
  .works-contents {
    padding-bottom: 17px;
  }
}

.works__heading {
  position: relative;
}
@media screen and (min-width: 768px) {
  .works__heading {
    margin-bottom: 80px;
  }
}

.works-title-en {
  -moz-text-align-last: left;
       text-align-last: left;
}

.works-title-ja {
  -moz-text-align-last: left;
       text-align-last: left;
}

.works1__heading {
  text-align: left;
  margin-top: 50px;
}

.works1-title-ja {
  font-size: 20px;
  font-weight: 600;
}

.works__cards {
  margin-top: 20px;
  display: grid;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .works__cards {
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 70px;
    grid-column-gap: 50px;
    margin-top: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .works__cards {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 30px;
  }
}

.works__card {
  margin-inline: auto;
  -webkit-transition: scale 1s linear;
  transition: scale 1s linear;
}

.works-card {
  width: 100%;
}

.works-card__inner {
  overflow: hidden;
  position: relative;
  background-color: #f5f5f5;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
.works-card__image-pc {
  overflow: hidden;
  aspect-ratio: 1652/1018;
  -webkit-transition: border 0.3s ease-in, scale 0.5s ease-in;
  transition: border 0.3s ease-in, scale 0.5s ease-in;
}
.works-card__image-pc:hover, .works-card__image-pc:focus {
  border: 2px solid #9ed0e0;
}
.works-card__image-pc:hover .works-card__image-pc img, .works-card__image-pc:focus .works-card__image-pc img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.works-card__image-pc:hover .works-card-link, .works-card__image-pc:focus .works-card-link {
  border-bottom-color: #00bcd4;
}
.works-card__image-pc img {
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
.works-card__image-pc img:hover, .works-card__image-pc img:focus {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.works-card__image-pc img:hover .works-card__image-pc, .works-card__image-pc img:focus .works-card__image-pc {
  border: 1px solid #9ed0e0;
}
@media screen and (max-width: 767px) {
  .works-card__image-pc img:hover, .works-card__image-pc img:focus {
    outline: 1px solid #9ed0e0;
  }
}
@media screen and (min-width: 768px) {
  .works-card__image-pc img:hover, .works-card__image-pc img:focus {
    outline: 1px solid #9ed0e0;
  }
}
@media screen and (max-width: 374px) {
  .works-card__image-pc {
    height: 100%;
  }
}
@media screen and (min-width: 768px) {
  .works-card__image-pc {
    min-height: 168px;
  }
}

.works-card__image-sp {
  width: min(21.3333333333%, 150px);
  aspect-ratio: 80/155.55;
  position: absolute;
  right: 5%;
  bottom: 50px;
}
.works-card__image-sp img {
  width: 100%;
}

.works-card__body {
  text-align: left;
  padding: 10px 15px 30px 0;
  background-color: #fafafa;
}
@media screen and (max-width: 374px) {
  .works-card__body {
    width: auto;
  }
}

.works-card__text {
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 374px) {
  .works-card__text {
    font-size: 10px;
  }
}
@media screen and (min-width: 900px) {
  .works-card__text {
    margin-top: 10px;
    font-size: 16px;
  }
}

.works-card__button {
  position: absolute;
  right: 20px;
  bottom: 0;
}

.works-card-link {
  margin-top: 10px;
  border-bottom: 1px solid #111;
}
.works-card-link:hover {
  -webkit-transition: border-bottom-color 0.2s linear;
  transition: border-bottom-color 0.2s linear;
  border-bottom-color: #00bcd4;
}

.works__bottom-button {
  text-align: center;
  margin-top: 19px;
  margin-bottom: 23px;
}
@media screen and (min-width: 900px) {
  .works__bottom-button {
    margin-top: 40px;
    margin-bottom: 0px;
  }
}

@media screen and (max-width: 374px) {
  .works__bottom__button {
    padding: 5px 18px 5px 18px;
  }
}
@media screen and (min-width: 768px) {
  .works__bottom__button {
    padding: 8px 38px 10px 38px;
    -webkit-box-shadow: 0px 3px 0px 0px;
            box-shadow: 0px 3px 0px 0px;
  }
}

.works-modals {
  position: relative;
}

.works-modal {
  position: fixed;
  inset: 0;
  margin: auto;
  width: 336px;
  height: 480px;
  overflow: hidden;
  z-index: 100;
  padding: 0px 0px 52px;
  border-radius: 24px;
  background: #fff;
  border: none;
  overscroll-behavior-y: none;
}
.works-modal::-ms-backdrop {
  background: #000;
  opacity: 0.7;
}
.works-modal::backdrop {
  background: #000;
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .works-modal {
    width: 480px;
    height: 650px;
    padding: 0px 0px 106px;
  }
}

.works-modal__inner {
  padding-inline: 30px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .works-modal__inner {
    width: 480px;
    height: 650px;
  }
}

.works-modal__img {
  min-width: 336px;
}
.works-modal__img img {
  border-radius: 24px 24px 0 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .works-modal__img img {
    height: 300px;
  }
}

.works-modal__title {
  margin-top: 39px;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .works-modal__title {
    margin-top: 32px;
    font-size: 24px;
  }
}

.gallery-modal__body {
  margin-top: 5px;
  margin-bottom: 20px;
}

.gallery-modal__sub-title {
  margin-top: 40px;
  font-size: 16px;
  font-weight: 600;
}

.works-modal__text {
  margin-top: 12px;
  padding-inline: 20px;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .works-modal__text {
    font-size: 16px;
  }
}

.works-modal__close-button {
  margin-top: 16px;
  margin-bottom: 4px;
}
@media screen and (min-width: 768px) {
  .works-modal__close-button {
    margin-top: 24px;
    margin-bottom: 0;
  }
}

.gallery-work__footer {
  margin-block: 50px;
  display: grid;
  place-items: center;
}

.gallery-work__button {
  margin-inline: auto;
}