@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.03em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #f4fbfd;
}
body.is-fixed {
  overflow-y: hidden;
}

.wrapper {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.section {
  padding-block: 40px;
  padding-inline: 14px;
}
@media screen and (min-width: 600px) {
  .section {
    padding-inline: 20px;
  }
}
@media screen and (min-width: 768px) {
  .section {
    padding-block: 80px;
    padding-inline: 40px;
  }
}

.section-title {
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding-inline: 1.1em;
  position: relative;
}
.section-title.bubble::before, .section-title.bubble::after {
  position: absolute;
  content: "";
  background: url(../img/section-title_icon.webp) no-repeat center center/contain;
  width: 24px;
  height: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .section-title.bubble::before, .section-title.bubble::after {
    width: 33px;
    height: 53px;
  }
}
.section-title.bubble::before {
  left: 0;
}
.section-title.bubble::after {
  right: 0;
  -webkit-transform: translateY(-50%) scale(-1, 1);
          transform: translateY(-50%) scale(-1, 1);
}
@media screen and (min-width: 768px) {
  .section-title {
    font-size: 4rem;
    padding-inline: 1.2em;
  }
}

.inner {
  margin: 0 auto;
}

/* ======================================================
header
======================================================= */
.header {
  background-color: #fff;
  padding-inline: 20px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .header {
    padding-inline: 40px;
  }
}

.header__inner {
  max-width: 1360px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 60px;
}
@media screen and (min-width: 1400px) {
  .header__inner {
    height: 104px;
  }
}

.header__logo {
  width: 151px;
}
@media screen and (min-width: 1400px) {
  .header__logo {
    width: 187px;
  }
}

.header__right-sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}

.header__application.header__button {
  display: none;
}
@media screen and (min-width: 600px) {
  .header__application.header__button {
    display: block;
  }
}
.header__application.header__button.is-active {
  display: none;
}
@media screen and (min-width: 1400px) {
  .header__application.header__button {
    display: none;
  }
}
.header__application.header__button a {
  padding: 9px 24px;
}

.header__drawer {
  height: 60px;
  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;
  cursor: pointer;
}
@media screen and (min-width: 1400px) {
  .header__drawer {
    display: none;
  }
}
.header__drawer .drawer-icon {
  position: relative;
  width: 27px;
  height: 20px;
}
.header__drawer .drawer-icon .drawer-icon__bar {
  position: absolute;
  content: "";
  background-color: #333;
  width: 27px;
  height: 2px;
  left: 0;
}
.header__drawer .drawer-icon .drawer-icon__bar:nth-child(1) {
  top: 0;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.header__drawer .drawer-icon .drawer-icon__bar:nth-child(1).is-active {
  top: 50%;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
}
.header__drawer .drawer-icon .drawer-icon__bar:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.header__drawer .drawer-icon .drawer-icon__bar:nth-child(2).is-active {
  display: none;
}
.header__drawer .drawer-icon .drawer-icon__bar:nth-child(3) {
  bottom: 0;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.header__drawer .drawer-icon .drawer-icon__bar:nth-child(3).is-active {
  top: 50%;
  -webkit-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
}

.header__right {
  display: none;
}
@media screen and (min-width: 1400px) {
  .header__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 50px;
}

.header__nav-item {
  font-weight: 500;
  color: #6c6e6f;
  position: relative;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.header__nav-item:not(:first-child) {
  padding-left: 16px;
}
.header__nav-item:not(:first-child)::before {
  position: absolute;
  content: "";
  background-color: #6c6e6f;
  width: 1px;
  height: 31px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header__nav-item:not(:last-child) {
  padding-right: 16px;
}
.header__nav-item a {
  display: block;
  line-height: 104px;
}
@media screen and (min-width: 768px) {
  .header__nav-item:hover {
    opacity: 0.7;
  }
}

.header__tel {
  margin-right: 24px;
}
.header__tel img {
  display: block;
}
.header__tel span {
  font-size: 1.2rem;
}

.header__button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.header__button {
  background-color: #ff8b71;
  color: #fff;
  border-radius: 40px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__button a {
  display: block;
  padding: 13px 24px;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .header__button:hover {
    background-color: #fff;
    color: #ff8b71;
    -webkit-box-shadow: 0px 0px 4px 0px rgba(83, 46, 37, 0.25);
            box-shadow: 0px 0px 4px 0px rgba(83, 46, 37, 0.25);
  }
}

/* ======================================================
drawer
======================================================= */
.drawer-content {
  position: fixed;
  width: 100%;
  height: calc(100vh - 60px);
  margin-top: 60px;
  z-index: 20;
  background-color: #fff;
  display: none;
}

.drawer-content__nav {
  background: var(--gradation, linear-gradient(0deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%), linear-gradient(180deg, #007adf 0%, #00ecbc 100%));
  padding-block: 5vh 7vh;
}

.drawer-content__list {
  margin: 0 auto;
  width: 80vw;
}

.drawer-content__item {
  color: #6c6e6f;
  font-size: 2rem;
  border-bottom: 1px solid #fff;
  padding-inline: 45px;
  position: relative;
}
.drawer-content__item a {
  display: inline-block;
  width: 100%;
  padding-block: 3vh 1vh;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .drawer-content__item a:hover {
    opacity: 0.7;
  }
}
.drawer-content__item::before {
  position: absolute;
  content: "";
  background: url(../img/drawer-content__arrow.webp) no-repeat center center/contain;
  width: 9px;
  height: 15px;
  bottom: 16px;
  right: 45px;
}

.drawer-content__tel {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: 6vh;
}

.drawer-content__button-wrap {
  margin-top: 3vh;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.main {
  margin-top: 60px;
}
@media screen and (min-width: 1400px) {
  .main {
    margin-top: 104px;
  }
}

/* ======================================================
fv
======================================================= */
.fv {
  background: url(../img/fv_bg_1.webp) no-repeat center center/cover;
  position: relative;
  padding-inline: 20px;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .fv {
    padding-inline: 40px;
  }
}
.fv::before {
  position: absolute;
  content: "";
  background: url(../img/sp/fv_bg_2.webp) no-repeat center center/contain;
  bottom: 0;
  right: 0;
  width: 319px;
  height: 378px;
}
@media screen and (min-width: 1000px) {
  .fv::before {
    background: url(../img/fv_bg_2.webp) no-repeat center center/contain;
    width: 409px;
  }
}
@media screen and (min-width: 1400px) {
  .fv::before {
    width: 692px;
    height: 640px;
  }
}
.fv::after {
  position: absolute;
  content: "";
  background: url(../img/sp/fv_bg_3.webp) no-repeat center center/contain;
  width: 30px;
  height: 312px;
  right: 2vw;
  top: 6%;
}
@media screen and (min-width: 1000px) {
  .fv::after {
    background: url(../img/fv_bg_3.webp) no-repeat center center/contain;
    width: 29px;
    height: 481px;
    right: 2vw;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media screen and (min-width: 1400px) {
  .fv::after {
    right: 5vw;
  }
}

.fv__inner {
  max-width: 1360px;
  position: relative;
  height: 510px;
  margin: 0 auto;
  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;
}
@media screen and (min-width: 600px) {
  .fv__inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
@media screen and (min-width: 1400px) {
  .fv__inner {
    height: calc(100vh - 104px);
  }
}

@media screen and (min-width: 600px) {
  .fv__left {
    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;
    gap: 100px;
  }
}
@media screen and (min-width: 1000px) {
  .fv__left {
    gap: 0;
  }
}

.fv__left-top {
  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;
  gap: 20px;
}
@media screen and (min-width: 1400px) {
  .fv__left-top {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    gap: 50px;
    padding-left: 100px;
  }
}

.fv__img {
  display: none;
}
@media screen and (min-width: 600px) {
  .fv__img {
    display: block;
  }
}
.fv__img img {
  width: 100px;
  height: 200px;
}
@media screen and (min-width: 1400px) {
  .fv__img img {
    width: 172px;
    height: 302px;
  }
}

.fv__title {
  font-family: "Noto Serif JP", serif;
  color: #6c6e6f;
  font-size: 2.5rem;
  line-height: 1.5;
}
@media screen and (min-width: 1000px) {
  .fv__title {
    font-size: 4.8rem;
  }
}
.fv__title strong {
  font-size: 3rem;
  font-weight: 400;
}
@media screen and (min-width: 1000px) {
  .fv__title strong {
    font-size: 6.4rem;
  }
}

.fv__left-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 9px;
}
@media screen and (min-width: 600px) {
  .fv__left-bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

/* ======================================================
banner-campaign
======================================================= */
.banner-campaign {
  padding-block: 24px;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #f8f5f2), to(#f3f0ec));
  background: linear-gradient(to right, #f8f5f2 50%, #f3f0ec);
}
@media screen and (min-width: 900px) {
  .banner-campaign {
    padding-block: 40px;
  }
}

.banner-campaign__inner {
  max-width: 500px;
}
@media screen and (min-width: 900px) {
  .banner-campaign__inner {
    max-width: 856px;
  }
}

.banner-campaign__banner {
  background-image: url(../img/banner-campaign_bg.webp);
  border-radius: 16px;
  padding-block: 24px 14px;
  height: 195px;
  cursor: pointer;
  position: relative;
}
@media screen and (min-width: 900px) {
  .banner-campaign__banner {
    height: 327px;
    padding-block: 30px 14px;
    padding-block: 49px 16px;
  }
}
@media screen and (min-width: 768px) {
  .banner-campaign__banner:hover .banner__button a {
    background-color: #fff;
    color: #ff8b71;
  }
  .banner-campaign__banner:hover .banner__button a span::before {
    background: url(../img/banner-campaign_arrow_orange.webp) no-repeat center center/contain;
  }
}
.banner-campaign__banner .banner__img {
  position: absolute;
  left: 2.2222222222%;
}
@media screen and (min-width: 900px) {
  .banner-campaign__banner .banner__img {
    left: 5.8411214953%;
  }
}
.banner-campaign__banner .banner__img img {
  width: 77px;
  height: 135px;
}
@media screen and (min-width: 900px) {
  .banner-campaign__banner .banner__img img {
    width: 151px;
    height: 265px;
  }
}
.banner-campaign__banner .banner__text {
  text-align: center;
}
.banner-campaign__banner .banner__text-head {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  display: inline-block;
  padding-left: 2em;
}
@media screen and (min-width: 900px) {
  .banner-campaign__banner .banner__text-head {
    font-size: 2.4rem;
    padding-left: 0;
  }
}
.banner-campaign__banner .banner__text-head::before {
  content: "\\ ";
}
.banner-campaign__banner .banner__text-head::after {
  content: " /";
}
.banner-campaign__banner .banner__text-middle {
  margin-top: 6px;
  line-height: 1.2;
}
@media screen and (min-width: 900px) {
  .banner-campaign__banner .banner__text-middle {
    margin-top: 8px;
  }
}
.banner-campaign__banner .banner__text-middle--head {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px dotted #fff;
}
@media screen and (min-width: 900px) {
  .banner-campaign__banner .banner__text-middle--head {
    border-bottom: 3px dotted #fff;
  }
}
.banner-campaign__banner .banner__text-middle--head span {
  font-size: 1.9rem;
  font-weight: 500;
  -webkit-text-emphasis: dot #fff;
          text-emphasis: dot #fff;
}
@media screen and (min-width: 900px) {
  .banner-campaign__banner .banner__text-middle--head span {
    font-size: 4rem;
  }
}
.banner-campaign__banner .banner__text-middle--head strong {
  font-size: 4rem;
  font-weight: 700;
  margin-left: 8px;
}
@media screen and (min-width: 900px) {
  .banner-campaign__banner .banner__text-middle--head strong {
    font-size: 6.4rem;
  }
}
.banner-campaign__banner .banner__text-middle--foot {
  margin-top: 8px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 900px) {
  .banner-campaign__banner .banner__text-middle--foot {
    font-size: 3.2rem;
  }
}
.banner-campaign__banner .banner__text-foot {
  background-color: #fff;
  padding-block: 2px;
  color: #6c6e6f;
  font-weight: 700;
  margin-top: 24px;
  font-size: 1.3rem;
}
@media screen and (min-width: 900px) {
  .banner-campaign__banner .banner__text-foot {
    margin-top: 53px;
    padding-block: 5px;
    font-size: 1.4rem;
  }
}
.banner-campaign__banner .banner__button {
  width: 71px;
  text-align: center;
  position: absolute;
  right: 2.2222222222%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 900px) {
  .banner-campaign__banner .banner__button {
    width: 152px;
    right: 5.8411214953%;
  }
}
.banner-campaign__banner .banner__button a {
  border-radius: 50%;
  background-color: #ff8b71;
  display: block;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 1.4rem;
  padding-block: 19px;
  line-height: 1.2;
}
@media screen and (min-width: 900px) {
  .banner-campaign__banner .banner__button a {
    padding-block: 65px;
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 900px) {
  .banner-campaign__banner .banner__button a span {
    padding-right: 1em;
    position: relative;
  }
  .banner-campaign__banner .banner__button a span::before {
    position: absolute;
    content: "";
    background: url(../img/banner-campaign_arrow_white.webp) no-repeat center center/contain;
    width: 10px;
    height: 20px;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
@media screen and (min-width: 900px) {
  .banner-campaign__banner .banner__button a span br {
    display: none;
  }
}

/* ======================================================
concern
======================================================= */
.concern {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #ecf2f6), to(#e6ebef));
  background: linear-gradient(to right, #ecf2f6 50%, #e6ebef);
  padding-block: 40px 0;
  padding-inline: 0;
}
@media screen and (min-width: 768px) {
  .concern {
    padding-block: 80px 0;
  }
}

.concern__inner {
  max-width: 1072px;
  padding-inline: 0 15px;
}
@media screen and (min-width: 600px) {
  .concern__inner {
    padding-inline: 20px;
  }
}
@media screen and (min-width: 1100px) {
  .concern__inner {
    padding-inline: 40px;
  }
}

.concern__head {
  margin-top: 20px;
  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;
  position: relative;
}
@media screen and (min-width: 600px) {
  .concern__head {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
  }
}
@media screen and (min-width: 768px) {
  .concern__head {
    margin-top: 25px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.concern__list {
  position: absolute;
  right: 0;
}
@media screen and (min-width: 600px) {
  .concern__list {
    position: static;
  }
}

.concern__item {
  padding: 9px 8px;
  background-color: #fff;
  border: 1px solid #6c6e6f;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .concern__item {
    padding: 20px 30px 20px 30px;
    border-radius: 16px;
  }
}
@media screen and (min-width: 900px) {
  .concern__item {
    padding: 20px 30px 20px 72px;
  }
}
.concern__item:not(:first-child) {
  margin-top: 29px;
}
.concern__item span {
  background: url(../img/icon_check.webp) no-repeat center center/contain;
  width: 10px;
  height: 10px;
  margin-top: 9px;
}
@media screen and (min-width: 768px) {
  .concern__item span {
    display: block;
    width: 24px;
    height: 24px;
    margin-top: 10px;
  }
}
.concern__item p {
  padding-left: 0.4em;
}
@media screen and (min-width: 768px) {
  .concern__item p {
    font-size: 2.4rem;
    padding-left: 1em;
  }
}
@media screen and (min-width: 768px) {
  .concern__item p br {
    display: none;
  }
}

.concern__foot {
  background-color: rgba(130, 191, 237, 0.4);
  padding-block: 17px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .concern__foot {
    padding-block: 25px;
  }
}
.concern__foot::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(180deg);
          transform: translateX(-50%) rotate(180deg);
  -webkit-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  border-bottom: 25px solid rgba(130, 191, 237, 0.5);
  border-top: 0;
}
@media screen and (min-width: 768px) {
  .concern__foot::after {
    border-right: 45px solid transparent;
    border-left: 45px solid transparent;
    border-bottom: 50px solid rgba(130, 191, 237, 0.5);
  }
}

.concern__foot-text {
  font-size: 1.7rem;
  line-height: 1.7;
  text-align: center;
  letter-spacing: -0.03em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .concern__foot-text {
    font-size: 3.2rem;
    -webkit-font-feature-settings: normal;
            font-feature-settings: normal;
    letter-spacing: 0.03em;
  }
}

/* ======================================================
solution
======================================================= */
.solution {
  background: url(../img/solution_bg.webp) no-repeat center center/cover;
  padding-block: 65px 40px;
  padding-inline: 9px;
}
@media screen and (min-width: 768px) {
  .solution {
    padding-block: 98px 82px;
    padding-inline: 40px;
  }
}

.solution__inner {
  max-width: 992px;
}

.solution__title {
  text-align: center;
}
.solution__title img {
  display: inline-block;
  margin-right: 0.2em;
  max-width: 150px;
}
@media screen and (min-width: 768px) {
  .solution__title img {
    max-width: 187px;
  }
}

.solution__title-head {
  padding-left: 0.5em;
}
@media screen and (min-width: 1100px) {
  .solution__title-head {
    padding-left: 0;
  }
}

.solution__title-foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1100px) {
  .solution__title-foot {
    display: inline;
  }
}

.solution__read {
  display: block;
  text-align: center;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .solution__read {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 768px) {
  .solution__read br {
    display: none;
  }
}

.solution__list {
  margin-top: 30px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 358px;
}
@media screen and (min-width: 768px) {
  .solution__list {
    margin-top: 80px;
    max-width: 992px;
  }
}

.solution__item {
  background: url(../img/solution_icon.webp) no-repeat center center/contain;
  width: 32.2156815642%;
  height: 118px;
  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;
}
@media screen and (min-width: 768px) {
  .solution__item {
    width: 29.3007419355%;
    height: 236px;
  }
}
.solution__item span {
  text-align: center;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .solution__item span {
    font-size: 2.4rem;
  }
}

.solution__description {
  margin-top: 38px;
  padding: 18px 6px 0px;
  border-radius: 40px;
}
@media screen and (min-width: 768px) {
  .solution__description {
    background-color: #fff;
    margin-top: 80px;
    padding: 40px 32px;
  }
}

.description__title {
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 42px;
}
@media screen and (min-width: 768px) {
  .description__title {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 768px) {
  .description__title br {
    display: none;
  }
}

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

.talk__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.talk__item:not(:first-child) {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .talk__item:not(:first-child) {
    margin-top: 28px;
  }
}
.talk__item.talk__right {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.talk__item img {
  width: 50px;
  height: 50px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .talk__item img {
    width: 90px;
    height: 90px;
  }
}

.talk__empty {
  width: 50px;
  height: 50px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .talk__empty {
    width: 90px;
    height: 90px;
  }
}

.talk-text {
  border-radius: 24px;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 29, 104, 0.25);
          box-shadow: 0px 0px 4px 0px rgba(0, 29, 104, 0.25);
  padding: 16px;
  color: #333;
  background-color: #fff;
  max-width: 734px;
  font-size: 1.5rem;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .talk-text {
    font-size: 2rem;
  }
}
.talk-text mark {
  background-color: #c6ecec;
  font-weight: 700;
  padding-inline: 0.2em;
}

.description__img {
  border-radius: 24px;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 29, 104, 0.25);
          box-shadow: 0px 0px 4px 0px rgba(0, 29, 104, 0.25);
  max-width: 810px;
  margin-inline: auto;
  margin-top: 16px;
  padding: 21px 7px 3px 7px;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .description__img {
    padding: 33px 8px 16px 8px;
    margin-top: 28px;
  }
}

.description__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 722px;
  margin-inline: auto;
}

.description__item {
  text-align: center;
  width: 32.5645081652%;
}
@media screen and (min-width: 768px) {
  .description__item {
    width: 30.3568095238%;
  }
}

.description__item-title span {
  font-size: 1.3rem;
  background-color: #c6ecec;
  border-radius: 32px;
  padding: 4px 12px;
  margin: 0 -20px;
}
@media screen and (min-width: 768px) {
  .description__item-title span {
    font-size: 2rem;
    padding: 6px 24px;
  }
}
@media screen and (min-width: 900px) {
  .description__item-title span {
    font-size: 2.4rem;
  }
}
.description__item-title.nanobubble span {
  background-color: #ff8b71;
  color: #fff;
}

.description__item-img {
  margin-top: 16px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .description__item-img {
    margin-top: 60px;
  }
}
.description__item-img figcaption {
  margin-top: 16px;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .description__item-img figcaption {
    font-size: 1.6rem;
  }
}

.description__notes {
  font-size: 10px;
  text-align: right;
  display: block;
  margin-top: 2px;
}

/* ======================================================
feature
======================================================= */
.feature {
  background-color: #fff;
}

.feature__inner {
  max-width: 992px;
}

.feature__title {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .feature__title br {
    display: none;
  }
}

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

.feature__item {
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .feature__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.feature__item:not(:first-child) {
  margin-top: 40px;
}
@media screen and (min-width: 600px) {
  .feature__item:not(:first-child) {
    margin-top: 60px;
  }
}
@media screen and (min-width: 768px) {
  .feature__item:nth-child(2n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.feature__img {
  margin-top: 70px;
}
@media screen and (min-width: 768px) {
  .feature__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 310px;
            flex: 0 0 310px;
    margin-top: 0;
  }
}
.feature__img img {
  width: 360px;
}
@media screen and (min-width: 768px) {
  .feature__img img {
    width: 310px;
  }
}

.feature__content-number {
  position: absolute;
  top: 0;
  left: 0;
  width: 77px;
  height: 75px;
}
@media screen and (min-width: 768px) {
  .feature__content-number {
    position: static;
  }
}

.feature__content-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2273ae;
}
@media screen and (min-width: 768px) {
  .feature__content-title {
    font-size: 2.4rem;
  }
}

.feature__content-text {
  margin-top: 16px;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .feature__content-text {
    margin-top: 24px;
    font-size: 1.8rem;
  }
}
.feature__content-text span {
  color: #6c6e6f;
}

/* ======================================================
start
======================================================= */
.start {
  background-color: #c6ecec;
  margin-top: 45px;
  padding-block: 34px 94px;
  padding-inline: 8px;
  position: relative;
}
.start::before {
  position: absolute;
  content: "";
  background: url(../img/start_bg.webp) no-repeat center center/cover;
  width: 100%;
  height: 50px;
  top: -50px;
  left: 0;
}

.start__inner {
  max-width: 849px;
  position: relative;
}
.start__inner::after {
  position: absolute;
  content: "";
  background: url(../img/suisopot.webp) no-repeat center center/contain;
  width: 77px;
  height: 136px;
  bottom: -160px;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
@media screen and (min-width: 768px) {
  .start__inner::after {
    width: 165px;
    height: 291px;
    right: -210px;
  }
}

.start__title {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .start__title {
    font-size: 3.2rem;
    letter-spacing: 0.03em;
    line-height: 1.7;
  }
}
@media screen and (min-width: 1000px) {
  .start__title br {
    display: none;
  }
}

.start__content {
  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;
  margin-top: 64px;
}
@media screen and (min-width: 900px) {
  .start__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 42px;
  }
}

.start__button-wrap {
  text-align: center;
}
.start__button-wrap:not(:first-child) {
  margin-top: 42px;
}
@media screen and (min-width: 900px) {
  .start__button-wrap:not(:first-child) {
    margin-top: 0;
  }
}
@media screen and (min-width: 900px) {
  .start__button-wrap {
    width: 47.0588235294%;
  }
}

.start__text {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .start__text {
    font-size: 2.4rem;
  }
}

.start__button {
  background-color: #ff8b71;
  color: #fff;
  border-radius: 52px;
  margin-top: 12px;
  padding-block: 12px;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 300px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .start__button {
    width: 400px;
    padding-block: 16px;
  }
}
@media screen and (min-width: 900px) {
  .start__button {
    width: 100%;
  }
}
.start__button span {
  font-size: 2rem;
  font-weight: 700;
  padding-inline: 1.2em;
  position: relative;
}
@media screen and (min-width: 768px) {
  .start__button span {
    font-size: 2.8rem;
  }
}
.start__button span::after {
  position: absolute;
  content: "";
  background: url(../img/icon_button-arrow.webp) no-repeat center center/contain;
  width: 20px;
  height: 20px;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.start__button span strong {
  font-weight: 700;
  font-size: 2.2rem;
}
@media screen and (min-width: 768px) {
  .start__button span strong {
    font-size: 3rem;
  }
}
@media screen and (min-width: 768px) {
  .start__button:hover {
    background-color: #fff;
    color: #ff8b71;
    -webkit-box-shadow: 0px 0px 3px 0px rgba(83, 46, 37, 0.25);
            box-shadow: 0px 0px 3px 0px rgba(83, 46, 37, 0.25);
  }
}

/* ======================================================
room-fit
======================================================= */
.room-fit {
  background-color: #fff;
  padding-top: 90px;
}
@media screen and (min-width: 768px) {
  .room-fit {
    padding-block: 80px;
  }
}

.room-fit__inner {
  max-width: 1280px;
}

.room-fit__read {
  display: block;
  text-align: center;
  margin-top: 33px;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .room-fit__read {
    margin-top: 40px;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1000px) {
  .room-fit__read br {
    display: none;
  }
}

.room-fit__swiper-container {
  margin-top: 40px;
  margin-inline: calc(50% - 50vw);
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .room-fit__swiper-container {
    margin-inline: 0;
    width: auto;
  }
}

@media screen and (min-width: 768px) {
  .room-fit__list {
    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;
    gap: 6.25%;
  }
}

@media screen and (min-width: 768px) {
  .room-fit__item {
    width: auto;
    -ms-flex-negative: unset;
        flex-shrink: unset;
  }
}
.room-fit__item img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .room-fit__item:nth-child(4), .room-fit__item:nth-child(5), .room-fit__item:nth-child(6) {
    display: none;
  }
}

/* ======================================================
how-to
======================================================= */
.how-to {
  padding-block: 56px;
}
@media screen and (min-width: 768px) {
  .how-to {
    padding-block: 40px;
  }
}

.how-to__inner {
  background-color: #fff;
  max-width: 1280px;
  padding-block: 40px 85px;
  padding-inline: 15px;
  border-radius: 24px;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 768px) {
  .how-to__inner {
    padding-block: 40px 94px;
    padding-inline: 59px;
  }
}

.how-to__read {
  display: block;
  margin-top: 25px;
  text-align: center;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .how-to__read {
    font-size: 1.8rem;
    margin-top: 40px;
  }
}

.how-to__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.how-to__item-img img {
  width: 100%;
}
.how-to__item-img figcaption {
  margin-top: 24px;
  text-align: center;
}

.how-to__swiper-container {
  max-width: 992px;
  margin-top: 40px;
  margin-inline: auto;
  padding-inline: 30px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .how-to__swiper-container {
    margin-top: 48px;
    padding-inline: 0;
  }
}

.how-to__swiper-pagination {
  bottom: -52px !important;
}
.how-to__swiper-button-prev {
  left: -10px;
}
@media screen and (min-width: 768px) {
  .how-to__swiper-button-prev {
    left: -60px;
  }
}

.how-to__swiper-button-next {
  right: -10px;
}
@media screen and (min-width: 768px) {
  .how-to__swiper-button-next {
    right: -60px;
  }
}

/* swiper共通
--------------------------------------------------------*/
.swiper-pagination-bullet {
  background-color: #6c6e6f;
  width: 12px;
  height: 12px;
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 8px) !important;
}

.swiper-button-prev::after {
  content: "";
  background: url(../img/arrow_prev.png) no-repeat center center/contain;
  height: 29px;
  margin: auto;
  width: 29px;
}

.swiper-button-next::after {
  content: "";
  background: url(../img/arrow_next.png) no-repeat center center/contain;
  height: 29px;
  margin: auto;
  width: 29px;
}

/* ======================================================
reason
======================================================= */
.reason {
  background-color: #fff;
}

.reason__inner {
  max-width: 992px;
}

.reason__title {
  text-align: center;
}
@media screen and (min-width: 600px) {
  .reason__title br {
    display: none;
  }
}

.reason__list {
  margin-top: 33px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .reason__list {
    margin-top: 80px;
  }
}

.reason__item {
  position: relative;
}
@media screen and (min-width: 600px) {
  .reason__item {
    width: 47.3790322581%;
  }
}
@media screen and (min-width: 768px) {
  .reason__item {
    width: 29.8383763441%;
  }
}
.reason__item:not(:first-child) {
  margin-top: 56px;
}
@media screen and (min-width: 600px) {
  .reason__item:not(:first-child) {
    margin-top: 0;
  }
}
@media screen and (min-width: 600px) {
  .reason__item:nth-child(n+3) {
    margin-top: 56px;
  }
}
@media screen and (min-width: 768px) {
  .reason__item:nth-child(n+3) {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .reason__item:nth-child(n+4) {
    margin-top: 33px;
  }
}

.reason__item-number {
  position: absolute;
  top: 10px;
  left: 10px;
}
@media screen and (min-width: 768px) {
  .reason__item-number {
    top: -10px;
    left: -10px;
  }
}

.reason__item-img img {
  width: 100%;
}

.reason__item-title {
  margin-top: 24px;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .reason__item-title {
    font-size: 2.4rem;
  }
}

.reason__item-text {
  margin-top: 2px;
}

/* ======================================================
development
======================================================= */
.development {
  background-color: #f4fbfd;
  padding-block: 56px 40px;
}
@media screen and (min-width: 768px) {
  .development {
    padding-block: 40px;
  }
}

.development__inner {
  background-color: #fff;
  max-width: 992px;
  padding-block: 40px;
  border-radius: 40px;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 29, 104, 0.25);
          box-shadow: 0px 0px 4px 0px rgba(0, 29, 104, 0.25);
}
@media screen and (min-width: 768px) {
  .development__inner {
    padding-block: 48px 32px;
  }
}

.development__title {
  text-align: center;
}

.development__read {
  font-family: "Noto Serif JP", serif;
  text-align: center;
  display: block;
  font-size: 1.5rem;
  color: #6c6e6f;
}
@media screen and (min-width: 768px) {
  .development__read {
    font-size: 3rem;
  }
}

.development__talk {
  padding-inline: 12px;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .development__talk {
    padding-inline: 82px;
    margin-top: 60px;
  }
}

/* ======================================================
banner-new-price
======================================================= */
.banner-new-price {
  padding-block: 40px;
  background-color: #fff;
}

.banner-new-price__inner {
  max-width: 1281px;
}

.banner-new-price__img img {
  width: 100%;
}

/* ======================================================
compare
======================================================= */
.compare {
  padding-inline: 40px 0;
}

.compare__inner {
  margin-inline: auto;
}

.compare__table {
  margin-top: 40px;
  overflow-x: auto;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .compare__table {
    margin-top: 50px;
  }
}
.compare__table img {
  max-width: none;
}

/* ======================================================
voice
======================================================= */
.voice {
  background-color: #f4fbfd;
  padding-block: 40px 90px;
}
@media screen and (min-width: 768px) {
  .voice {
    padding-block: 40px 130px;
  }
}

.voice__inner {
  max-width: 1072px;
  padding-inline: 40px;
}

.voice__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.voice__item {
  border-radius: 16px;
  overflow: hidden;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 63, 104, 0.25);
          box-shadow: 0px 2px 4px 0px rgba(0, 63, 104, 0.25);
  margin-bottom: 4px;
}

.voice__item-img img {
  width: 100%;
}

.voice__item-content {
  background-color: #fff;
  padding: 16px;
  cursor: pointer;
}
.voice__item-content.is-active .voice__item-button {
  background: url(../img/voice_cross.webp) center center/contain;
}

.voice__item-title {
  font-size: 1.8rem;
  font-weight: 700;
}

.voice__item-text {
  margin-top: 32px;
  text-align: justify;
  display: none;
}

.voice__item-foot {
  margin-top: 32px;
  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;
}

.voice__item-button {
  background: url(../img/voice_arrow.webp) center center/contain;
  width: 22px;
  height: 22px;
}

.voice__swiper-container {
  position: relative;
  margin-top: 49px;
}
@media screen and (min-width: 768px) {
  .voice__swiper-container {
    margin-top: 80px;
  }
}

.voice__swiper-pagination {
  bottom: -60px !important;
}

.voice__swiper-button-prev {
  top: 180px;
  left: -40px;
}
@media screen and (min-width: 768px) {
  .voice__swiper-button-prev {
    left: -60px;
  }
}

.voice__swiper-button-next {
  top: 180px;
  right: -40px;
}
@media screen and (min-width: 768px) {
  .voice__swiper-button-next {
    right: -60px;
  }
}

/* ======================================================
three-step
======================================================= */
.three-step {
  background-color: #fff;
  padding-block: 40px 70px;
}

.three-step__inner {
  max-width: 764px;
}

.three-step__list {
  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;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .three-step__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 54px;
  }
}
@media screen and (min-width: 768px) {
  .three-step__list .step-item {
    width: 30.7151989529%;
  }
}
/* step-item共通
--------------------------------------------------------*/
.step-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.step-item:not(:first-child) {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .step-item:not(:first-child) {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .step-item {
    -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: start;
    text-align: center;
    position: relative;
  }
}

.step-item__img {
  margin-right: 10%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 118px;
          flex: 0 0 118px;
}
@media screen and (min-width: 768px) {
  .step-item__img {
    margin-right: 0;
    margin-top: 50px;
  }
}

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

.step-item__span {
  display: inline-block;
  font-size: 1.5rem;
  font-family: "Yomogi", cursive;
  letter-spacing: -0.09em;
}
@media screen and (min-width: 768px) {
  .step-item__span {
    font-size: 2.3rem;
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% + 100px);
    margin: 0 -50px;
  }
}

.step-item__title {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 3px;
}
@media screen and (min-width: 768px) {
  .step-item__title {
    font-size: 2.4rem;
    margin-top: 23px;
  }
}

.step-item__text {
  margin-top: 8px;
}

/* ======================================================
four-step
======================================================= */
.four-step {
  background-color: #f4fbfd;
  position: relative;
}
.four-step::before {
  position: absolute;
  content: "";
  background: url(../img/four-step_bg.webp) no-repeat center center/cover;
  top: -33px;
  left: 0;
  width: 100%;
  height: 33px;
}

.four-step__inner {
  max-width: 1033px;
}

.four-step__list {
  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;
  margin-top: 28px;
}
@media screen and (min-width: 768px) {
  .four-step__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 54px;
  }
}
@media screen and (min-width: 768px) {
  .four-step__list .step-item {
    width: 22.7492739593%;
  }
}

/* ======================================================
movie
======================================================= */
.movie {
  padding-block: 40px;
  background-color: #fff;
}

.movie__inner {
  max-width: 1030px;
}

.movie__list {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media screen and (min-width: 900px) {
  .movie__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
  }
}

.movie__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (min-width: 900px) {
  .movie__item {
    width: 45.9223300971%;
    cursor: pointer;
  }
}
@media screen and (min-width: 768px) {
  .movie__item:hover .movie__img::before {
    -webkit-transform: translate(-50%, -50%) scale(1.25);
            transform: translate(-50%, -50%) scale(1.25);
  }
  .movie__item:hover .movie__content {
    border-top: 2px solid #c6ecec;
    border-right: 2px solid #c6ecec;
    border-bottom: 2px solid #c6ecec;
  }
  .movie__item:hover .movie__content::before {
    opacity: 0;
  }
  .movie__item:hover .movie__content .movie__content-title {
    background: var(--gradation, linear-gradient(177deg, #50bfcb -29.45%, rgba(80, 191, 203, 0.42) 127.88%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
.movie__item .icon__1 {
  background-image: url(../img/movie_icon_hover_1.webp);
}
.movie__item .icon__2 {
  background-image: url(../img/movie_icon_hover_2.webp);
}

.movie__img {
  position: relative;
}
.movie__img::before {
  position: absolute;
  content: "";
  background: url(../img/movie_start.webp) no-repeat center center/contain;
  width: 64px;
  height: 64px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.movie__content {
  padding-inline: 0em;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 0 16px 16px 0;
  overflow: hidden;
  z-index: 0;
  position: relative;
  width: 260px;
}
@media screen and (min-width: 900px) {
  .movie__content {
    padding-inline: 1.2em;
    width: 52.4210526316%;
  }
}
.movie__content::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: var(--gradation, linear-gradient(177deg, #50bfcb -29.45%, rgba(80, 191, 203, 0.42) 127.88%));
}
.movie__content::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  left: 0;
  background: #fff;
}

.movie__content-title {
  font-size: 2rem;
  letter-spacing: -0.09em;
  color: #fff;
  font-family: "Yomogi", cursive;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .movie__content-title {
    font-size: 2.5rem;
  }
}

/* ======================================================
labo
======================================================= */
.labo {
  background-color: #fff;
  margin-top: 40px;
}

.labo__inner {
  max-width: 980px;
}

.labo__title {
  font-family: "Yomogi", cursive;
  letter-spacing: -0.05em;
  color: #00c2cb;
  padding-inline: 1.4em;
}
@media screen and (min-width: 768px) {
  .labo__title {
    padding-inline: 1.1em;
  }
}

.labo__read {
  display: block;
  text-align: center;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .labo__read {
    font-size: 1.6rem;
  }
}

.labo__list {
  margin-top: 40px;
  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;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .labo__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 80px;
    gap: 0;
  }
}

.labo__item {
  max-width: 360px;
  margin: 0 auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .labo__item {
    max-width: 100%;
    width: 32.1085102041%;
  }
}
@media screen and (min-width: 768px) {
  .labo__item:hover {
    opacity: 0.7;
  }
}

.labo__img img {
  width: 100%;
}

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

.more-button {
  font-weight: 700;
  display: inline-block;
  line-height: 56px;
  padding-inline: 24px;
  border-radius: 32px;
  border: 2px solid #c6ecec;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.more-button span {
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .more-button:hover::before {
    opacity: 0;
  }
  .more-button:hover span {
    background: var(--gradation, linear-gradient(177deg, #50bfcb -29.45%, rgba(80, 191, 203, 0.42) 127.88%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
.more-button::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: var(--gradation, linear-gradient(177deg, #50bfcb -29.45%, rgba(80, 191, 203, 0.42) 127.88%));
}
.more-button::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  left: 0;
  background: #fff;
}

/* ======================================================
faq
======================================================= */
.faq {
  background-color: #fff;
  margin-top: 40px;
  padding-block: 40px 60px;
}
@media screen and (min-width: 768px) {
  .faq {
    padding-block: 40px 80px;
  }
}

.faq__inner {
  max-width: 768px;
}

.faq__list {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .faq__list {
    margin-top: 80px;
  }
}

.faq__item {
  border-bottom: 1px solid #b6b7b7;
}
.faq__item:not(:first-child) .faq__question {
  padding-top: 28px;
}

.faq__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 24px;
  cursor: pointer;
}
.faq__question.is-active .faq__question-toggle {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.faq__question-icon {
  background: url(../img/faq_q.webp) no-repeat center center/contain;
  width: 33px;
  height: 33px;
  margin-right: 17px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.faq__question-toggle {
  background: url(../img/faq_arrow.webp) no-repeat center center/contain;
  width: 24px;
  height: 24px;
  margin-left: auto;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.faq__answer {
  padding-bottom: 24px;
  display: none;
}

.faq__answer-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.faq__answer-icon {
  background: url(../img/faq_a.webp) no-repeat center center/contain;
  width: 33px;
  height: 33px;
  margin-right: 17px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.faq__answer-text {
  text-align: justify;
}

/* ======================================================
guide
======================================================= */
.guide {
  padding-block: 40px 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .guide {
    padding-block: 40px;
  }
}
.guide::before {
  position: absolute;
  content: "";
  background: url(../img/guide_bg.webp) no-repeat center center/cover;
  width: 100%;
  height: 33px;
  top: -33px;
  left: 0;
}
.guide::after {
  position: absolute;
  content: "";
  background: url(../img/guide_bg.webp) no-repeat center center/cover;
  width: 100%;
  height: 33px;
  bottom: -32px;
  left: 0;
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1);
}

.guide__inner {
  max-width: 800px;
}

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

.guide__item:not(:first-child) {
  margin-top: 40px;
}

.guide__term {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.guide__term-icon {
  background: url(../img/guide_circle.webp) no-repeat center center/contain;
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.guide__term-text {
  font-size: 2rem;
  font-weight: 400;
}

.guide__description {
  margin-top: 8px;
  text-align: justify;
}

.gude__description-price {
  border-top: 1px dashed #6c6e6f;
  border-bottom: 1px dashed #6c6e6f;
  display: inline-block;
  padding-block: 16px;
  padding-right: 26px;
  margin-top: 9px;
}

.gude__description-customer {
  margin-top: 40px;
}

.guide__description-cancel {
  font-weight: 400;
}

.guide__description-exchange {
  margin-top: 24px;
  font-weight: 400;
}

/* ======================================================
news
======================================================= */
.news {
  margin-top: 33px;
  background-color: #fff;
}

.news__inner {
  max-width: 768px;
}

.news__title {
  text-align: center;
}
@media screen and (min-width: 600px) {
  .news__title br {
    display: none;
  }
}

.news__list {
  margin-top: 47px;
}

.news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 6px;
  border-bottom: 1px solid #b6b7b7;
}
@media screen and (min-width: 768px) {
  .news__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-bottom: 23px;
  }
}
.news__item:not(:first-child) {
  margin-top: 31px;
}

.news__item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.news__item-date {
  font-weight: 400;
  font-family: "Lato", sans-serif;
  margin-right: 24px;
}

.news__item-category {
  margin-right: 24px;
  font-size: 1.2rem;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  border: 1px solid #6c6e6f;
  padding-inline: 0.6em;
  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;
}

.news__button {
  margin-top: 40px;
  text-align: center;
}
.news__button .more-button {
  padding-inline: 89px;
}

/* ======================================================
spec
======================================================= */
.spec__inner {
  max-width: 924px;
}

.spec__content {
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .spec__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 80px;
  }
}

.spec__img {
  height: auto;
  width: 150px;
}
@media screen and (min-width: 768px) {
  .spec__img {
    width: 225px;
    -ms-flex-negative: 1;
        flex-shrink: 1;
    margin-right: 5.6277056277%;
  }
}

.spec__list {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .spec__list {
    margin-top: 0;
    width: 69.9134199134%;
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }
}

.spec__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.spec__item:not(:first-child) {
  margin-top: 19px;
}

.spec__term {
  width: 100px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 24px;
}

/* ======================================================
footer
======================================================= */
.footer {
  padding-block: 68px 30px;
  padding-inline: 40px;
  position: relative;
  background: url(../img/footer_bg.webp) no-repeat #fff left bottom/100% 101px;
}

.footer__inner {
  max-width: 792px;
  margin: 0 auto;
}

.footer__nav-list {
  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 (min-width: 900px) {
  .footer__nav-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.footer__nav-item {
  font-weight: 500;
  text-align: center;
  padding-block: 12px;
}
@media screen and (min-width: 900px) {
  .footer__nav-item {
    padding-block: 0;
  }
}
.footer__nav-item.act a {
  text-decoration-line: underline;
  text-decoration-color: #6c6e6f;
  text-underline-offset: 4px;
}
.footer__nav-item a {
  padding-block: 12px;
  padding-inline: 12px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 900px) {
  .footer__nav-item a {
    padding-inline: 0;
  }
}
@media screen and (min-width: 900px) {
  .footer__nav-item:not(:last-child) {
    border-right: 1px solid #6c6e6f;
  }
  .footer__nav-item:not(:last-child) a {
    padding-right: 1.6rem;
  }
}
@media screen and (min-width: 900px) {
  .footer__nav-item:not(:first-child) a {
    padding-left: 1.6rem;
  }
}
.footer__nav-item a {
  color: #6c6e6f;
}
@media screen and (min-width: 768px) {
  .footer__nav-item a:hover {
    opacity: 0.7;
  }
}

.footer__logo {
  margin-top: 48px;
  text-align: center;
}

.notes {
  margin-top: 48px;
  font-weight: 500;
  color: #6c6e6f;
  letter-spacing: 0;
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  .notes {
    font-size: 1.6rem;
  }
}

.footer__copy {
  text-align: center;
  margin-top: 71px;
}
.footer__copy small {
  font-size: 0.7rem;
  color: #6c6e6f;
}
@media screen and (min-width: 768px) {
  .footer__copy small {
    font-size: 1.4rem;
  }
}