@charset "UTF-8";
/* フォント */
:root {
  --main-font: "Zen Kaku Gothic Antique", sans-serif;
  --sub-font01: "Poppins", sans-serif;
}

/* カラー */
:root {
  --black: #303030;
  --orange: #E78122;
  --dark-blue: #045478;
  --green: #4B86A6;
}

.xs,
.sp,
.tab,
.pc,
.xl {
  display: none;
}

@media screen and (max-width: 359px) {
  .xs {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 960px) {
  .tab {
    display: block;
  }
}
@media screen and (min-width: 961px) {
  .pc {
    display: block;
  }
}
@media screen and (min-width: 1440px) {
  .xl {
    display: block;
  }
}
body {
  font-weight: 500;
  font-size: min(1.6rem, 4.3vw);
  font-family: var(--sub-font01), var(--main-font);
  background: #fff;
}
body.no_scroll {
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  a {
    transition: all 0.5s;
  }
  a:hover {
    opacity: 0.6;
  }
}

.atLink {
  text-decoration: underline;
}

.LSnon {
  letter-spacing: 0;
}

.comText {
  font-weight: 500;
  font-size: 16px;
  line-height: 2.1;
  letter-spacing: 0.1em;
}

.mw {
  width: calc(100% - 16vw);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .mw {
    width: min(100% - 60px, 1000px);
  }
}

.btn--orange {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(20px, 5.3vw);
  border-radius: 1rem;
  background: var(--orange);
  width: min(315px, 100%);
  height: 80px;
  font-weight: 900;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  color: #fff;
  box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.25), inset 2px 2px 4px 0 rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 768px) {
  .btn--orange {
    gap: 3rem;
    width: 350px;
  }
}

.btn--mail::before {
  width: 57px;
  height: 37px;
  content: "";
  background: url(../img/icon/mail--white.svg) no-repeat;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .btn--mail::before {
    width: 62px;
    height: 40px;
  }
}

.btn--phone {
  font-weight: 700;
}
.btn--phone::before {
  width: 43px;
  height: 43px;
  content: "";
  background: url(../img/icon/phone--white.svg) no-repeat;
  background-size: cover;
}

.btn--small {
  gap: 1.5rem;
  padding: 0 1.5rem;
  width: -moz-fit-content;
  width: fit-content;
  height: 5rem;
  font-weight: 500;
  font-size: 1.6rem;
  box-shadow: none;
}

.btn--mail--small::before {
  width: 27px;
  height: 18px;
}

.btn--phone--small::before {
  width: 28px;
  height: 28px;
}

.btn--more {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  width: min(300px, 100%);
  height: 60px;
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  color: var(--dark-blue);
  background: #fff;
  box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.25), inset 3px 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.sectionTitle {
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.61;
  letter-spacing: 0.1em;
  color: var(--dark-blue);
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 15px;
  width: min(827px, 100%);
}
@media screen and (min-width: 768px) {
  .sectionTitle {
    font-size: 7rem;
    gap: 40px;
  }
}
.sectionTitle::after {
  width: 130px;
  height: 1px;
  content: "";
  background: var(--dark-blue);
  opacity: 0.7;
  flex: 1;
}
@media screen and (min-width: 768px) {
  .sectionTitle::after {
    width: 396px;
  }
}

.sectionTitle__jp {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .sectionTitle__jp {
    font-size: 16px;
    line-height: 1.44;
  }
}
.sectionTitle__jp.white {
  color: #fff;
}

.aioseo-breadcrumbs {
  margin: 20px auto 0;
  width: min(100% - 16vw);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .aioseo-breadcrumbs {
    margin-top: 40px;
    width: min(100% - 60px, 1000px);
  }
}

.aioseo-breadcrumb-separator {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--black);
}

.notes {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.64;
  color: var(--black);
}

.pagePadding {
  padding-top: 78px;
}
@media screen and (min-width: 768px) {
  .pagePadding {
    padding-top: 128px;
  }
}

.comMV {
  width: 100%;
  height: 200px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .comMV {
    height: 350px;
  }
}
.comMV__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.comMV__titleBox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.comMV__titleBox__inner {
  position: relative;
  width: 180px;
}
@media screen and (min-width: 768px) {
  .comMV__titleBox__inner {
    width: 317px;
  }
}
.comMV__titleBox__inner__pageTitle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  font-size: 24px;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .comMV__titleBox__inner__pageTitle {
    font-size: 45px;
  }
}
.comMV__titleBox__inner__pageTitle.privacy {
  letter-spacing: 0;
}
.comMV__titleBox__inner__pageTitle__span {
  display: block;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .comMV__titleBox__inner__pageTitle__span {
    font-size: 24px;
  }
}
.comMV__titleBox__inner__pageTitle__span.privacy {
  letter-spacing: 0.1em;
}

.CTA {
  padding-bottom: 70px;
}
@media screen and (min-width: 768px) {
  .CTA {
    padding-bottom: 140px;
  }
}
.CTA__desc {
  margin-top: 15px;
  line-height: 1.94;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .CTA__desc {
    margin-top: 40px;
  }
}
.CTA__btnBox {
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: min(770px, 100%);
}
@media screen and (min-width: 768px) {
  .CTA__btnBox {
    margin-top: 40px;
    flex-direction: row;
    justify-content: space-between;
  }
}

/* header */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  height: clamp(70px, 18.7vw, 100px);
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  z-index: 40;
}
@media screen and (min-width: 961px) {
  .header {
    justify-content: space-between;
    height: 100px;
    background: #fff;
  }
}
.header__inner {
  display: flex;
  justify-content: center;
  position: relative;
}
@media screen and (min-width: 961px) {
  .header__inner {
    justify-content: space-between;
  }
}
.header__inner__logo {
  width: clamp(94px, 25.1vw, 149px);
  position: relative;
  z-index: 100;
}
@media screen and (min-width: 961px) {
  .header__inner__logo {
    width: min(149px, 40vw);
  }
}
@media screen and (min-width: 961px) {
  .header__inner__nav {
    display: flex;
    justify-content: end;
    align-items: center;
    align-self: flex-end;
    gap: min(36px, 9.6vw);
  }
}
.header__inner__nav__list {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: auto;
  padding: 150px 0 50px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  transform: translateX(100%);
  transition: transform 0.5s ease-in-out;
}
@media screen and (min-width: 961px) {
  .header__inner__nav__list {
    position: static;
    width: auto;
    padding: 0;
    background: transparent;
    flex-direction: row;
    gap: min(40px, 10.7vw);
    transform: translateX(0);
  }
}
.header__inner__nav__btnBox {
  display: none;
}
@media screen and (min-width: 961px) {
  .header__inner__nav__btnBox {
    display: flex;
    gap: min(44px, 11.8vw);
  }
}
.header__inner__hamBtn {
  position: absolute;
  top: 50%;
  right: min(30px, 8vw);
  transform: translateY(-50%);
  width: 24px;
  height: 16px;
  flex-shrink: 0;
  z-index: 80;
}
.header__inner__hamBtn__span {
  display: block;
  position: absolute;
  left: 0;
  height: 2px;
  background: var(--dark-blue);
  transition: all 0.5s ease-in-out;
}
.header__inner__hamBtn__span:nth-child(1) {
  top: 0;
  width: 100%;
}
.header__inner__hamBtn__span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
}
.header__inner__hamBtn__span:nth-child(3) {
  bottom: 0;
  width: 100%;
}

.top__header {
  position: fixed;
  background: transparent;
}
@media screen and (min-width: 961px) {
  .top__header {
    position: sticky;
    top: 0;
    justify-content: space-between;
    height: 100px;
    background: #fff;
  }
}
.top__header .header__inner__hamBtn__span {
  background: #fff;
}

.js-menu-btn.is-close-btn .header__inner__hamBtn__span {
  background: var(--dark-blue);
}
.js-menu-btn.is-close-btn .header__inner__hamBtn__span:nth-child(1) {
  top: 8px;
  transform: rotate(-34deg);
}
.js-menu-btn.is-close-btn .header__inner__hamBtn__span:nth-child(2) {
  opacity: 0;
}
.js-menu-btn.is-close-btn .header__inner__hamBtn__span:nth-child(3) {
  bottom: 6px;
  transform: rotate(34deg);
}

.js-nav.is-nav {
  transform: translateX(0);
}

.language-switcher {
  position: absolute;
  top: -7px;
  right: 0;
  font-weight: 400;
  font-size: 14px;
  z-index: 100;
}

.language-label {
  width: 120px;
  height: 25px;
  background: #EDEDED;
  border: solid 1px var(--black);
  display: flex;
  justify-content: space-between; 
  align-items: center;
  padding: 0 14px 0 10px;
  cursor: pointer;
}

#labelText {
  margin-right: 5px; 
}

.language-label::after {
  content: "\25BC"; 
  font-size: 14px; 
}

.language-options {
  background: #EDEDED;
  border: solid 1px var(--black); 
  border-top: none; 
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
}

.language-options.open {
    display: block;
}

.language-options__item {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 10px 14px 10px 10px;
    cursor: pointer;
}
.language-options__item::after {
  content: "\25BC"; 
  font-size: 14px; 
  visibility: hidden; 
}

/* footer */
.footer {
  border-top: solid 5px var(--dark-blue);
  padding-top: 56px;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 70px;
  }
}
.footer__inner__container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__inner__container__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 50px;
  font-weight: 700;
  color: var(--dark-blue);
}
@media screen and (min-width: 768px) {
  .footer__inner__container__nav {
    gap: 100px;
  }
}
.footer__inner__container__btnBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .footer__inner__container__btnBox {
    flex-direction: row;
    justify-content: center;
    gap: 100px;
  }
}
.footer__inner__logo {
  display: block;
  margin: 30px auto 0;
  width: min(320px, 100%);
}
@media screen and (min-width: 768px) {
  .footer__inner__logo {
    margin-top: 70px;
  }
}
.footer__inner__company {
  margin-top: 28px;
  font-size: 14px;
  color: var(--dark-blue);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__inner__company {
    margin-top: 26px;
  }
}
.footer__inner__company__tag {
  display: inline-block;
  margin-top: 7px;
  line-height: 20px;
  padding: 0 15px;
  border: solid 0.5px var(--dark-blue);
}
.footer__inner__company__address {
  margin-top: 6px;
  line-height: 1.34;
}
.footer__inner__company__contact {
  margin-top: 20px;
  display: flex;
  gap: 20px 50px;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .footer__inner__company__contact {
    justify-content: center;
  }
}
.footer__inner__company__contact__tel,
.footer__inner__company__contact__fax,
.footer__inner__company__contact__mail {
  display: flex;
  align-items: center;
  gap: 9px;
}
.footer__inner__company__contact__tel::before {
  width: 20px;
  height: 21px;
  content: "";
  background: url(../img/icon/phone.svg) no-repeat;
  background-size: cover;
}
.footer__inner__company__contact__fax::before {
  width: 19px;
  height: 21px;
  content: "";
  background: url(../img/icon/fax.svg) no-repeat;
  background-size: cover;
}
.footer__inner__company__contact__mail::before {
  width: 20px;
  height: 15px;
  content: "";
  background: url(../img/icon/mail.svg) no-repeat;
  background-size: cover;
}
.footer .copyright {
  margin-top: 50px;
  font-size: 12px;
  line-height: 39px;
  text-align: center;
}

/* top */
.top__main {
  overflow-x: hidden;
}

.top__MV {
  position: relative;
}
.top__MV__catch {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  padding-bottom: clamp(2rem, 5.3vw, 2.8rem);
}
@media screen and (min-width: 768px) {
  .top__MV__catch {
    padding-bottom: clamp(2rem, 1.9vw, 2.8rem);
  }
}
@media screen and (min-width: 961px) {
  .top__MV__catch {
    padding-bottom: 1.9vw;
  }
}
.top__MV__catch__subTitle01 {
  display: inline-block;
  font-weight: 700;
  font-size: min(1.8rem, 4.8vw);
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--dark-blue);
  padding: 7px 20px;
  border-radius: 30px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .top__MV__catch__subTitle01 {
    font-size: clamp(1.8rem, 1.7vw, 2.4rem);
  }
}
.top__MV__catch__subTitle02 {
  margin-top: 8px;
  font-size: min(1.6rem, 4.3vw);
  line-height: 1.75;
  letter-spacing: 0.1em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .top__MV__catch__subTitle02 {
    font-size: clamp(1.6rem, 1.7vw, 2.4rem);
  }
}
.top__MV__catch__title {
  margin-top: 8px;
  font-weight: 900;
  font-size: min(2.4rem, 6.4vw);
  line-height: 1.58;
  letter-spacing: 0.1em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .top__MV__catch__title {
    font-size: clamp(2.4rem, 3.2vw, 5rem);
  }
}

.top__introduction {
  padding: 50px 0 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top__introduction {
    padding: 70px 0 40px;
  }
}
.top__introduction__title {
  font-weight: 700;
  font-size: min(4rem, 10.7vw);
  line-height: 1.45;
  letter-spacing: 0.1em;
  color: var(--dark-blue);
  opacity: 0.7;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .top__introduction__title {
    font-size: 7rem;
  }
}
.top__introduction__desc {
  margin-top: 36vw;
  line-height: 2.13;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top__introduction__desc {
    margin-top: 40px;
    font-size: clamp(1.6rem, 1.4vw, 2rem);
    line-height: 2.2;
  }
}
.top__introduction__img {
  position: absolute;
  top: 106px;
  right: 0;
  width: 80%;
}
@media screen and (min-width: 768px) {
  .top__introduction__img {
    top: 96px;
    left: 30%;
    width: 434px;
  }
}

.top__service {
  position: relative;
  padding: 100px 0 128px;
  background: url(../img/top/top-service--sp.webp) no-repeat top center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .top__service {
    padding: 160px 0 86px;
    background: url(../img/top/top-service--pc.webp) no-repeat top center;
    background-size: cover;
  }
}
.top__service__inner__title {
  color: #fff;
  justify-content: end;
  align-items: center;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .top__service__inner__title {
    width: 100%;
  }
}
.top__service__inner__title::before {
  width: 130px;
  height: 1px;
  content: "";
  background: #fff;
  opacity: 0.7;
  flex-shrink: 1;
}
@media screen and (min-width: 768px) {
  .top__service__inner__title::before {
    width: 396px;
  }
}
.top__service__inner__title::after {
  display: none;
}
.top__service__inner__list {
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: min(720px, 100%);
}
@media screen and (min-width: 768px) {
  .top__service__inner__list {
    margin-top: 70px;
  }
}
.top__service__inner__list__item {
  width: min(290px, 100%);
}
.top__service__inner__list__item__imgBox {
  position: relative;
}
.top__service__inner__list__item__imgBox__img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .top__service__inner__list__item__imgBox__img {
    aspect-ratio: 291/294;
  }
}
.top__service__inner__list__item__imgBox__span {
  display: block;
  position: absolute;
  bottom: -12px;
  left: 0;
  font-weight: 700;
  font-size: 3.6rem;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--orange);
}
@media screen and (min-width: 768px) {
  .top__service__inner__list__item__imgBox__span {
    left: -12px;
    font-size: 4.5rem;
  }
}
.top__service__inner__list__item__title {
  margin-top: 18px;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.33;
  letter-spacing: 0.1em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .top__service__inner__list__item__title {
    font-size: 2.4rem;
  }
}
.top__service__inner__list__item:nth-child(even) {
  margin-left: auto;
}
.top__service__inner__btn {
  margin: 37px auto 0;
}
@media screen and (min-width: 768px) {
  .top__service__inner__btn {
    margin-top: 40px;
  }
}

.top__feature {
  padding-top: 30px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .top__feature {
    padding-bottom: 120px;
  }
}
@media screen and (min-width: 768px) {
  .top__feature__title__img {
    max-width: none;
    width: clamp(768px, 97vw, 1084px);
  }
}
.top__feature__desc {
  line-height: 2.06;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top__feature__desc {
    margin-top: 35px;
  }
}
.top__feature__container {
  margin: 40px auto 0;
}
@media screen and (min-width: 961px) {
  .top__feature__container {
    margin-top: 70px;
    position: relative;
  }
}
.top__feature__container__box01 {
  height: 50px;
  background: #5CC1E5;
  border-radius: 30px 30px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 961px) {
  .top__feature__container__box01 {
    display: none;
  }
}
.top__feature__container__box01__img {
  height: 45px;
  width: auto;
}
.top__feature__container__box02 {
  padding: 30px 10px;
  background: #EFEFEF;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 961px) {
  .top__feature__container__box02 {
    position: absolute;
    top: min(87px, 7.4vw);
    left: min(96px, 9.7vw);
    padding: 0;
    text-align: start;
    background: transparent;
  }
}
.top__feature__container__box02__title {
  font-weight: 900;
  font-size: min(4.5rem, 11.8vw);
  line-height: 1.18;
  letter-spacing: 0.1em;
  display: inline-block;
  color: var(--dark-blue);
  text-shadow: 5px 5px 1px #ffffff, -5px 5px 1px #ffffff, 5px -5px 1px #ffffff, -5px -5px 1px #ffffff, 5px 0px 1px #ffffff, 0px 5px 1px #ffffff, -5px 0px 1px #ffffff, 0px -5px 1px #ffffff;
  text-align: center;
}
@media screen and (min-width: 961px) {
  .top__feature__container__box02__title {
    font-size: min(55px, 4.9vw);
  }
}
.top__feature__container__box02__desc {
  margin-top: 25px;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.46;
  letter-spacing: 0.1em;
  color: var(--orange);
}
@media screen and (min-width: 768px) {
  .top__feature__container__box02__desc {
    margin-top: 11px;
    font-size: min(35px, 3.2vw);
  }
}
.top__feature__container__box02__list {
  margin: 25px auto 0;
  padding: 30px 10px;
  background: #d1f1ff;
  color: var(--dark-blue);
  width: min(295px, 100%);
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .top__feature__container__box02__list {
    flex-direction: row;
    justify-content: space-between;
    width: 667px;
    padding: 15px 20px;
  }
}
@media screen and (min-width: 961px) {
  .top__feature__container__box02__list {
    margin-top: 11px;
    width: min(667px, 60.8vw);
  }
}
.top__feature__container__box02__list__item:not(:last-child) {
  position: relative;
}
.top__feature__container__box02__list__item:not(:last-child)::after {
  position: absolute;
  bottom: -32px;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: url(../img/icon/line--thin.svg) no-repeat;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .top__feature__container__box02__list__item:not(:last-child)::after {
    width: 1px;
    height: 100%;
    top: 0;
    right: -9px;
    left: auto;
    background: url(../img/icon/line--thin--vertical.svg) no-repeat;
    background-size: cover;
  }
}
.top__feature__container__box02__list__item:not(:first-child) {
  margin-top: 72px;
}
@media screen and (min-width: 768px) {
  .top__feature__container__box02__list__item:not(:first-child) {
    margin-top: 0;
  }
}
.top__feature__container__box02__list__item__desc01,
.top__feature__container__box02__list__item__desc02,
.top__feature__container__box02__list__item__desc03 {
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
@media screen and (min-width: 961px) {
  .top__feature__container__box02__list__item__desc01,
  .top__feature__container__box02__list__item__desc02,
  .top__feature__container__box02__list__item__desc03 {
    font-size: min(30px, 2.1vw);
  }
}
.top__feature__container__box02__list__item__desc01::before {
  width: 29px;
  height: 29px;
  content: "";
  background: url(../img/icon/bag.svg) no-repeat;
  background-size: cover;
}
.top__feature__container__box02__list__item__desc02::before {
  width: 28px;
  height: 28px;
  content: "";
  background: url(../img/icon/earth.svg) no-repeat;
  background-size: cover;
}
.top__feature__container__box02__list__item__desc03::before {
  width: 29px;
  height: 29px;
  content: "";
  background: url(../img/icon/price.svg) no-repeat;
  background-size: cover;
}
.top__feature__container__box02__list__item__title01 {
  margin-top: 11px;
  font-weight: 900;
  font-size: 50px;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (min-width: 961px) {
  .top__feature__container__box02__list__item__title01 {
    font-size: min(50px, 3.5vw);
  }
}
.top__feature__container__box02__list__item__title02 {
  margin-top: 3px;
  font-weight: 900;
  font-size: 30px;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (min-width: 961px) {
  .top__feature__container__box02__list__item__title02 {
    font-size: 25px;
  }
}
.top__feature__container__box02__list__item__title02__span {
  display: block;
  margin-top: 6px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--black);
}
.top__feature__container__box02__list__item__desc04 {
  margin-top: 6px;
  font-weight: 400;
  text-align: center;
}
.top__feature__container__box02__list__item__desc04__span {
  font-size: 12px;
}
.top__feature__container__box02__list__item__title03 {
  display: block;
  width: 196px;
  margin: 0 auto;
}
.top__feature__container__box02::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 7px;
  content: "";
  background: url(../img/icon/line.svg) no-repeat;
  background-size: cover;
}
@media screen and (min-width: 961px) {
  .top__feature__container__box02::after {
    display: none;
  }
}
.top__feature__container__box03 {
  padding: 30px 10px 10px;
  background: #EFEFEF;
}
@media screen and (min-width: 961px) {
  .top__feature__container__box03 {
    position: absolute;
    bottom: 21px;
    right: 5px;
    padding-top: 10px;
    width: min(222px, 20.4vw);
    background: transparent;
  }
}
.top__feature__container__box03__img {
  display: block;
  width: min(295px, 100%);
  margin: 0 auto;
}
.top__feature__container__box03__text {
  font-weight: 900;
  font-size: 20px;
  line-height: 1.45;
  text-align: center;
}
.top__feature__container__box03__title {
  width: 176px;
  margin: 0 auto;
}
.top__feature__container__box03__desc {
  font-weight: 400;
  text-align: center;
}
@media screen and (min-width: 961px) {
  .top__feature__container__box03__desc {
    font-size: min(16px, 1.4vw);
  }
}
.top__feature__container__box04 {
  height: 50px;
  border-radius: 0 0 30px 30px;
  background: #E85359;
  display: flex;
  justify-content: end;
  align-items: center;
}
@media screen and (min-width: 961px) {
  .top__feature__container__box04 {
    display: none;
  }
}
.top__feature__container__box04__img {
  width: 152px;
  padding-right: 25px;
}
.top__feature__notesBox {
  margin-top: 20px;
  padding: 20px;
  border-radius: 10px;
  background: #EFEFEF;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.top__feature__notesBox__text {
  width: min(815px, 100%);
  margin: 0 auto;
}


/* company */
.company__company__list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  line-height: 1.44;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .company__company__list {
    margin-top: 40px;
    gap: 40px;
  }
}
.company__company__list__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .company__company__list__item {
    flex-direction: row;
    gap: 60px;
  }
}
.company__company__list__item__dt {
  font-weight: 500;
  color: var(--dark-blue);
  width: 124px;
  flex-shrink: 0;
}
.company__company__list__item__dd__span {
  display: block;
  margin-top: 10px;
}

.company__list {
  margin: 70px auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  color: #fff;
}
.company__list__item {
  padding: 40px 10px;
  border-radius: 10px;
  background: var(--dark-blue);
  position: relative;
}
@media screen and (min-width: 768px) {
  .company__list__item {
    padding: 40px 20px;
  }
}
.company__list__item__img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
}
.company__list__item__img.img01 {
  width: min(315px, 100%);
}
@media screen and (min-width: 768px) {
  .company__list__item__img.img01 {
    width: 466px;
  }
}
@media screen and (min-width: 768px) {
  .company__list__item__img.img02 {
    width: 773px;
  }
}
.company__list__item__title {
  color: #fff;
  opacity: 0.7;
  position: relative;
}
.company__list__item__title::after {
  background: #fff;
}
.company__list__item__subTitle {
  margin-top: 20px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.46;
  letter-spacing: 0.1em;
  color: #fff;
  position: relative;
}
@media screen and (min-width: 768px) {
  .company__list__item__subTitle {
    margin-top: 40px;
  }
}
.company__list__item__desc {
  margin-top: 20px;
  font-size: 16px;
  line-height: 2.25;
  letter-spacing: 0.1em;
  position: relative;
}

/* service */
.service__service {
  padding-bottom: 216px;
}
@media screen and (min-width: 768px) {
  .service__service {
    padding-bottom: 130px;
  }
}
.service__service__inner {
  position: relative;
}
.service__service__inner__subTitle {
  margin-top: 20px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.46;
  letter-spacing: 0.1em;
  color: var(--dark-blue);
}
@media screen and (min-width: 768px) {
  .service__service__inner__subTitle {
    font-size: clamp(24px, 2.5vw, 36px);
  }
}
.service__service__inner__desc {
  margin-top: 33px;
  line-height: 2.1;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 961px) {
  .service__service__inner__desc {
    margin-top: 38px;
    width: min(778px, 70vw);
  }
}
.service__service__img {
  position: absolute;
  bottom: min(-220px, -59.5vw);
  right: -8vw;
  width: min(244px, 65%);
}
@media screen and (min-width: 768px) {
  .service__service__img {
    bottom: -213px;
  }
}
@media screen and (min-width: 961px) {
  .service__service__img {
    width: 296px;
    right: -60px;
    bottom: -95px;
  }
}

.service__support__desc {
  margin-top: 22px;
}
@media screen and (min-width: 768px) {
  .service__support__desc {
    margin-top: 53px;
  }
}
.service__support__container {
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.service__support__container__box__label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 137px;
  height: 50px;
  border-radius: 10px 10px 0 0;
  font-size: 24px;
  letter-spacing: 0.1em;
  color: #fff;
}
.service__support__container__box__label.before {
  background: var(--green);
}
.service__support__container__box__label.after {
  background: var(--dark-blue);
}
.service__support__container__box__list {
  margin-top: -1px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 40px 0;
  border-radius: 0 10px 10px 10px;
}
@media screen and (min-width: 768px) {
  .service__support__container__box__list {
    grid-template-columns: repeat(2, 1fr);
    padding-left: calc((100% - 484px) / 2);
    padding-right: calc((100% - 484px) / 2);
  }
}
@media screen and (min-width: 1061px) {
  .service__support__container__box__list {
    grid-template-columns: repeat(4, 1fr);
    padding-left: 40px;
    padding-right: 40px;
    gap: 10px;
  }
}
.service__support__container__box__list.before {
  background: var(--green);
  position: relative;
}
.service__support__container__box__list.before::after {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 30px;
  content: "";
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  background: var(--dark-blue);
}
.service__support__container__box__list.after {
  background: var(--dark-blue);
}
@media screen and (min-width: 1061px) {
  .service__support__container__box__list.after {
    grid-template-columns: repeat(5, 1fr);
  }
}
.service__support__container__box__list__item {
  width: 222px;
  height: 204px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  padding: 30px 23px;
  border-radius: 10px;
  background: #fff;
  margin: 0 auto;
}
.service__support__container__box__list__item__imgBox {
  height: 100px;
  flex-shrink: 0;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
}
.service__support__container__box__list__item__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.44;
  text-align: center;
  height: 46px;
}
.service__support__container__box__list__item__text__span {
  font-weight: bold;
  color: var(--dark-blue);
}
.service__support__container__box__list__item__text__span02 {
  font-size: 14px;
}
@media screen and (min-width: 1061px) {
  .service__support__container__box__list.after .service__support__container__box__list__item {
    width: 100%;
  }
}

.service__plan {
  background: url(../img/service/plan-bg--sp.webp) no-repeat;
  background-size: cover;
  padding: 106px 0 129px;
}
@media screen and (min-width: 768px) {
  .service__plan {
    margin-top: 72px;
    background: url(../img/service/plan-bg--pc.webp) no-repeat top center;
    background-size: cover;
    padding: 123px 0 184px;
  }
}
.service__plan__inner__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.46;
  letter-spacing: 0.1em;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .service__plan__inner__title {
    font-size: 36px;
  }
}
.service__plan__inner__title::before {
  width: 22px;
  height: 22px;
  content: "";
  border-radius: 50%;
  background: var(--orange);
}
.service__plan__inner__label {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 40px;
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.1em;
  border-radius: 10px;
  background: var(--black);
}
.service__plan__inner__desc {
  margin-top: 20px;
  line-height: 1.81;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #fff;
}
.service__plan__inner__list {
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .service__plan__inner__list {
    margin-top: 40px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.service__plan__inner__list__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 16px;
  border-radius: 10px;
  background: #fff;
}
@media screen and (min-width: 961px) {
  .service__plan__inner__list__item {
    flex-direction: row;
  }
}
.service__plan__inner__list__item__label {
  width: 98px;
  height: 98px;
  background: url(../img/service/plan.webp) no-repeat;
  background-size: cover;
  margin: 0 auto;
  flex-shrink: 0;
  position: relative;
}
.service__plan__inner__list__item__label__span01 {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 700;
  font-size: 36px;
  line-height: 54px;
  color: #fff;
}
.service__plan__inner__list__item__label__span02 {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
}
.service__plan__inner__list__item__text__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  color: var(--dark-blue);
  position: relative;
}
.service__plan__inner__list__item__text__title::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: url(../img/icon/line--blue.svg) no-repeat;
  background-size: cover;
}
.service__plan__inner__list__item__text__desc {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.28;
  letter-spacing: 0.1em;
}
.service__plan__inner__list__item__text__desc__span {
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  .service__flow {
    margin-top: 100px;
  }
}
@media screen and (min-width: 1061px) {
  .service__flow {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}
.service__flow__title {
  width: calc(100% - 16vw);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .service__flow__title {
    width: min(827px, (100% - 60px));
    margin-left: 30px;
  }
}
@media screen and (min-width: 1061px) {
  .service__flow__title {
    margin-left: 0;
  }
}
.service__flow__container {
  margin: 50px auto 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .service__flow__container {
    margin-top: 60px;
  }
}
@media screen and (min-width: 1061px) {
  .service__flow__container.max1060 {
    display: none;
  }
}
@media screen and (max-width: 1060px) {
  .service__flow__container.min1061 {
    display: none;
  }
}
@media screen and (min-width: 1061px) {
  .service__flow__container__list__wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    transform: none !important;
    width: auto !important;
    height: auto !important;
  }
}
.service__flow__container__list__wrapper__item {
  width: 235px;
  height: 344px;
  padding: 20px;
  background: url(../img/service/flow-outline.svg) no-repeat;
  background-size: cover;
  position: relative;
}
@media screen and (min-width: 1061px) {
  .service__flow__container__list__wrapper__item:not(:last-child)::after {
    position: absolute;
    top: 50%;
    right: -18px;
    transform: translateY(-50%);
    width: 23px;
    height: 58px;
    content: "";
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--orange);
  }
}
.service__flow__container__list__wrapper__item__span {
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.1em;
  color: var(--dark-blue);
}
.service__flow__container__list__wrapper__item__imgBox {
  height: 70px;
  display: flex;
  align-items: flex-end;
}
.service__flow__container__list__wrapper__item__imgBox__img {
  margin: 0 auto;
}
.service__flow__container__list__wrapper__item__title {
  margin-top: 15px;
  height: 67px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.68;
  letter-spacing: 0.1em;
  color: var(--dark-blue);
  text-align: center;
}
.service__flow__container__list__wrapper__item__desc {
  margin-top: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.48;
  letter-spacing: 0.1em;
  text-align: center;
}
.service__flow__container__list__wrapper__item__desc__span {
  color: #B24030;
}

.swiper-pagination {
  bottom: -31px !important;
}

.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 5px) !important;
  background: #D9D9D9;
}

.swiper-pagination-bullet-active {
  background: var(--dark-blue);
}

.service__feature {
  margin: 105px auto 0;
}
@media screen and (min-width: 768px) {
  .service__feature {
    width: min(1000px, (100% - 60px));
  }
}
@media screen and (min-width: 768px) {
  .service__feature__inner {
    width: 100%;
  }
}
.service__feature__inner__desc {
  line-height: 1.44;
}
@media screen and (min-width: 768px) {
  .service__feature__inner__desc {
    margin-top: 42px;
  }
}
.service__feature__list {
  margin: 20px auto 0;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 768px) {
  .service__feature__list {
    margin-top: 30px;
  }
}
.service__feature__list__item {
  position: relative;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .service__feature__list__item {
    width: 515px;
  }
}
@media screen and (min-width: 961px) {
  .service__feature__list__item {
    position: absolute;
  }
}
@media screen and (min-width: 961px) {
  .service__feature__list__item:nth-child(odd) {
    left: 0;
  }
}
.service__feature__list__item:nth-child(even) {
  margin-left: auto;
}
@media screen and (min-width: 961px) {
  .service__feature__list__item:nth-child(even) {
    right: 0;
  }
}
@media screen and (min-width: 961px) {
  .service__feature__list__item:nth-child(1) {
    top: 0;
  }
}
@media screen and (min-width: 961px) {
  .service__feature__list__item:nth-child(2) {
    top: 270px;
  }
}
@media screen and (min-width: 961px) {
  .service__feature__list__item:nth-child(3) {
    top: 540px;
  }
}
@media screen and (min-width: 961px) {
  .service__feature__list__item:nth-child(4) {
    top: 810px;
  }
}
@media screen and (min-width: 961px) {
  .service__feature__list__item:nth-child(5) {
    top: 1080px;
  }
}
.service__feature__list__item__img {
  width: 100%;
}
.service__feature__list__item__img.reverse {
  transform: scale(-1, 1);
}
.service__feature__list__item__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.service__feature__list__item__text__title {
  font-weight: 700;
  font-size: min(18px, 4.8vw);
  line-height: 1.44;
  letter-spacing: 0.1em;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .service__feature__list__item__text__title {
    font-size: 24px;
  }
}
.service__feature__list__item__text__title.end {
  margin-left: auto;
}
.service__feature__list__item__text__desc {
  margin-top: 10px;
  font-weight: 400;
  font-size: min(16px, 4.2vw);
  line-height: 1.69;
  letter-spacing: 0.1em;
}
.service__feature__list__item__text__desc__span {
  font-size: 14px;
}
.service__feature__notes {
  margin: 20px auto 0;
  padding: 20px;
  border-radius: 10px;
  background: #F6F6F6;
}
@media screen and (min-width: 768px) {
  .service__feature__notes {
    width: 100%;
  }
}
@media screen and (min-width: 961px) {
  .service__feature__notes {
    margin-top: 1500px;
    padding-left: min((100% - 814px) / 2, 93px);
    padding-right: min((100% - 814px) / 2, 93px);
  }
}
.service__feature__notes__head {
  font-weight: 700;
  color: var(--dark-blue);
}
.service__feature__notes__list {
  list-style: disc;
  color: #B24030;
}
.service__feature__notes__list__item {
  margin-left: 1.5em;
}

.service__charm {
  margin: 40px auto 0;
  padding: 20px;
  border-radius: 10px;
  background: var(--dark-blue);
  position: relative;
}
@media screen and (min-width: 768px) {
  .service__charm {
    margin-top: 70px;
    padding: 30px;
  }
}
.service__charm__img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
}
.service__charm__titleG {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
@media screen and (min-width: 961px) {
  .service__charm__titleG {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.service__charm__titleG__title {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.06;
  letter-spacing: 0.1em;
  color: #fff;
  opacity: 0.6;
}
@media screen and (min-width: 768px) {
  .service__charm__titleG__title {
    font-size: 54px;
  }
}
.service__charm__titleG__subTitle {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .service__charm__titleG__subTitle {
    font-size: 36px;
  }
}
.service__charm__list {
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.service__charm__list__item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px 13px;
  border-radius: 10px;
  background: #fff;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .service__charm__list__item {
    padding: 20px;
  }
}
@media screen and (min-width: 961px) {
  .service__charm__list__item {
    flex-direction: row;
    justify-content: space-between;
    padding-right: 72px;

  }
}
@media screen and (min-width: 961px) {
  .service__charm__list__item__text {
    width: 510px;
  }
}
.service__charm__list__item__text__title {
  font-weight: 700;
  font-size: min(18px, 4.8vw);
  line-height: 1.56;
  letter-spacing: 0.1em;
  color: var(--orange);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .service__charm__list__item__text__title {
    font-size: 20px;
  }
}
@media screen and (min-width: 961px) {
  .service__charm__list__item__text__title {
    text-align: start;
  }
}
.service__charm__list__item__text__desc {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .service__charm__list__item__text__desc {
    margin-top: 20px;
  }
}
.service__charm__list__item__img {
  width: min(240px, 100%);
  margin: 0 auto;
  flex-shrink: 0;
  align-self: flex-start;
}
@media screen and (min-width: 961px) {
  .service__charm__list__item__img {
    margin-right: 0;
  }
}

.service__interview {
  margin: 40px auto 0;
}
@media screen and (min-width: 768px) {
  .service__interview {
    margin-top: 70px;
  }
}
.service__interview__container {
  margin: 20px auto 0;
  width: min(480px, 100%);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 961px) {
  .service__interview__container {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }
}
.service__interview__container__item {
  width: min(480px, 100%);
}
.service__interview__container__item__iframe {
  aspect-ratio: 16/9;
  border-radius: 10px;
}
.service__interview__container__item__title {
  margin-top: 20px;
  font-size: 16px;
  letter-spacing: 0.1em;
  position: relative;
}
.service__interview__container__item__title::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: url(../img/icon/line--blue.svg) no-repeat;
  background-size: cover;
}

.service__voice {
  margin: 74px auto 0;
}
.service__voice__container {
  margin: 13px auto 0;
  position: relative;
}
@media screen and (min-width: 1061px) {
  .service__voice__container__list__wrapper {
    display: flex;
    gap: 20px;
    transform: none !important;
    width: auto !important;
    height: auto !important;
  }
}
.service__voice__container__list__wrapper__item {
  width: min(320px, 100%);
  padding: 20px 12px;
  border-radius: 10px;
  background: url(../img/service/voice-bg.webp) no-repeat;
  background-size: cover;
}
@media screen and (min-width: 1061px) {
  .service__voice__container__list__wrapper__item {
    margin-right: 0 !important;
    flex-shrink: 0;
  }
}
.service__voice__container__list__wrapper__item__title {
  font-size: 24px;
  letter-spacing: 0.1em;
  position: relative;
}
.service__voice__container__list__wrapper__item__title::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: url(../img/icon/line--blue.svg) no-repeat;
  background-size: cover;
}
.service__voice__container__list__wrapper__item__text {
  margin-top: 20px;
  font-size: 16px;
  letter-spacing: 0.1em;
}

.service__list {
  margin: 70px auto 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.service__list__item {
  padding: 20px 15px;
  border-radius: 10px;
  background: var(--dark-blue);
  position: relative;
}
@media screen and (min-width: 768px) {
  .service__list__item {
    padding: 40px;
  }
}
.service__list__item__img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .service__list__item__img.img01 {
    width: min(72%, 720px);
  }
}
@media screen and (min-width: 768px) {
  .service__list__item__img.img02 {
    bottom: 15%;
    width: min(98%, 985px);
  }
}
@media screen and (min-width: 768px) {
  .service__list__item__img.img03 {
    bottom: 16px;
    width: min(88%, 880px);
  }
}
@media screen and (min-width: 768px) {
  .service__list__item__img.img04 {
    width: min(87%, 870px);
  }
}
.service__list__item__titleG {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media screen and (min-width: 768px) {
  .service__list__item__titleG {
    gap: 24px;
  }
}
@media screen and (min-width: 961px) {
  .service__list__item__titleG {
    flex-direction: row;
    align-items: center;
  }
}
.service__list__item__titleG__label {
  width: 86px;
  height: 76px;
  background: url(../img/service/service-numberBg.webp) no-repeat;
  background-size: cover;
  position: relative;
}
@media screen and (min-width: 768px) {
  .service__list__item__titleG__label {
    width: 151px;
    height: 133px;
    flex-shrink: 0;
  }
}
.service__list__item__titleG__label__span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .service__list__item__titleG__label__span {
    font-size: 24px;
  }
}
.service__list__item__titleG__label__span__number {
  display: block;
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .service__list__item__titleG__label__span__number {
    font-size: 36px;
  }
}
.service__list__item__titleG__title {
  font-weight: 700;
  font-size: min(18px, 4.7vw);
  letter-spacing: 0.1em;
  color: #fff;
  position: relative;
}
@media screen and (min-width: 768px) {
  .service__list__item__titleG__title {
    font-size: min(35px, 3.3vw);
  }
}
.service__list__item__desc {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.1em;
  color: #fff;
  position: relative;
}
@media screen and (min-width: 768px) {
  .service__list__item__desc {
    margin-top: 30px;
  }
}
.service__list__item__desc.desc02 {
  margin-top: 40px;
}
.service__list__item__desc.desc03 {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .service__list__item__desc.desc03 {
    margin-top: 40px;
  }
}
.service__list__item__desc.desc04 {
  margin-top: 30px;
}
.service__list__item__desc.desc05 {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .service__list__item__desc.desc05 {
    margin-top: 40px;
  }
}
.service__list__item__desc.desc06 {
  margin-top: 1.15em;
  font-size: 14px;
  text-align: center;
}
.service__list__item__list {
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
}
@media screen and (min-width: 961px) {
  .service__list__item__list {
    flex-direction: row;
    justify-content: space-between;
  }
}
.service__list__item__list__item {
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 min(32px, 8.8vw);
  border-radius: 10px;
  background: #fff;
  font-weight: 700;
  font-size: min(24px, 6.1vw);
  letter-spacing: 0.1em;
  color: var(--orange);
}
.service__list__item__container {
  margin: 40px auto 0;
  padding: 20px 10px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 768px) {
  .service__list__item__container {
    margin-top: 30px;
    padding: 30px;
    flex-direction: row;
    justify-content: space-between;
  }
}
@media screen and (min-width: 961px) {
  .service__list__item__container {
    padding: 30px 75px 30px 30px;
  }
}
.service__list__item__container__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .service__list__item__container__list {
    gap: 16px;
  }
}
.service__list__item__container__list__item {
  font-size: 16px;
  line-height: 1.19;
  letter-spacing: 0.1em;
  display: flex;
  gap: min(18px, 4.8vw);
}
.service__list__item__container__list__item::before {
  width: 24px;
  height: 24px;
  content: "";
  background: url(../img/icon/checked.svg) no-repeat;
  background-size: cover;
  flex-shrink: 0;
}
.service__list__item__container.recommend {
  margin: 20px auto 0;
}
.service__list__item__container__img {
  width: min(303px, 100%);
}
@media screen and (min-width: 768px) {
  .service__list__item__container__img {
    margin-top: -23px;
    width: min(37%, 303px);
  }
}
.service__list__item__worry {
  margin: 40px auto 0;
}
@media screen and (min-width: 768px) {
  .service__list__item__worry {
    margin-top: 47px;
  }
}
.service__list__item__worry__title {
  font-weight: 700;
  font-size: min(24px, 6.4vw);
  line-height: 1.46;
  letter-spacing: 0.1em;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: relative;
}
.service__list__item__worry__title::after {
  width: 50px;
  height: 50px;
  content: "";
  background: url(../img/icon/worry.svg) no-repeat;
  background-size: cover;
}
.service__list__item__worry__list {
  margin: 26px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  width: min(500px, 100%);
}
@media screen and (min-width: 961px) {
  .service__list__item__worry__list {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }
}
.service__list__item__worry__list__item {
  width: 250px;
  height: 146px;
  position: relative;
}
.service__list__item__worry__list__item:nth-child(2) {
  margin-left: auto;
}
@media screen and (min-width: 961px) {
  .service__list__item__worry__list__item:nth-child(2) {
    margin-left: 0;
    transform: translateY(80px);
  }
}
.service__list__item__worry__list__item__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.1em;
  text-align: center;
}
.service__list__item__worry__list::after {
  position: absolute;
  bottom: -65px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 42px;
  content: "";
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background: var(--orange);
}
@media screen and (min-width: 961px) {
  .service__list__item__worry__list::after {
    bottom: -155px;
  }
}
.service__list__item__afterList {
  margin: 125px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  position: relative;
}
@media screen and (min-width: 961px) {
  .service__list__item__afterList {
    margin-top: 216px;
    grid-template-columns: repeat(3, 1fr);
  }
}
.service__list__item__afterList__item {
  padding: 15px 4px;
  border-radius: 10px;
  background: #fff;
  width: min(300px, 100%);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .service__list__item__afterList__item {
    padding: 20px 14px;
  }
}
.service__list__item__afterList__item__title {
  font-weight: 700;
  font-size: min(18px, 4.8vw);
  line-height: 1.56;
  letter-spacing: 0.1em;
  color: var(--orange);
  text-align: center;
}
.service__list__item__afterList__item__img {
  display: block;
  width: min(178px, 100%);
  margin: 0 auto;
}
.service__list__item__afterList__item__desc {
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.1em;
  text-align: center;
}
.service__list__item__support {
  margin: 40px auto 0;
  position: relative;
}
.service__list__item__support__title {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.1em;
  color: var(--dark-blue);
  width: min(263px, 100%);
  height: 48px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .service__list__item__support__title {
    margin-left: 0;
  }
}
.service__list__item__support__title.project__title {
  width: -moz-fit-content;
  width: fit-content;
  font-size: min(24px, 6.1vw);
  padding: 0 11px;
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .service__list__item__support__title.project__title {
    margin-bottom: 40px;
  }
}
.service__list__item__support__list {
  margin: 20px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .service__list__item__support__list {
    margin-top: 40px;
  }
}
.service__list__item__support__list__item {
  padding: 20px 10px;
  border-radius: 10px;
  background: #fff;
  position: relative;
}
@media screen and (min-width: 768px) {
  .service__list__item__support__list__item {
    padding: 20px;
  }
}
.service__list__item__support__list__item__img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .service__list__item__support__list__item__img {
    width: 460px;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.service__list__item__support__list__item__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: var(--orange);
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .service__list__item__support__list__item__title {
    text-align: start;
  }
}
.service__list__item__support__list__item__desc {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .service__list__item__support__list__item__desc {
    text-align: start;
  }
}
.service__list__item__recommend {
  margin: 105px auto 0;
}
@media screen and (min-width: 768px) {
  .service__list__item__recommend {
    margin-top: 128px;
  }
}
.service__list__item__recommend__title {
  font-weight: 700;
  font-size: min(18px, 4.8vw);
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .service__list__item__recommend__title {
    font-size: 20px;
  }
}
.service__list__item__recommend__title::before {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 38px;
  height: 45px;
  content: "";
  background: url(../img/icon/bulb.svg) no-repeat;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .service__list__item__recommend__title::before {
    top: -80px;
    width: 58px;
    height: 63px;
  }
}
.service__list__item__recommend__title.order__title::before {
  top: -64px;
  width: 44px;
  height: 45px;
  background: url(../img/icon/air-plain.svg) no-repeat;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .service__list__item__recommend__title.order__title::before {
    top: -86px;
    width: 78px;
    height: 78px;
  }
}
.service__list__item__project {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .service__list__item__project {
    margin-top: 40px;
  }
}
.service__list__item__goal {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .service__list__item__goal {
    margin-top: 40px;
  }
}
.service__list__item__order {
  margin: 105px auto 0;
}
@media screen and (min-width: 768px) {
  .service__list__item__order {
    margin-top: 128px;
  }
}

.service__FAQ {
  margin: 40px auto;
}
@media screen and (min-width: 768px) {
  .service__FAQ {
    margin: 70px auto;
    background: rgba(4, 84, 120, 0.2);
  }
}
.service__FAQ__inner {
  padding: 40px 10px;
  background: rgba(4, 84, 120, 0.2);
}
@media screen and (min-width: 768px) {
  .service__FAQ__inner {
    background: none;
    padding: 70px 0;
  }
}
.service__FAQ__inner__jp {
  font-size: min(15.5px, 4.1vw);
}
.service__FAQ__inner__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .service__FAQ__inner__list {
    margin-top: 20px;
  }
}
.service__FAQ__inner__list__item__header {
  padding: 15px 70px 15px 15px;
  border-radius: 10px;
  background: #fff;
  position: relative;
}
.service__FAQ__inner__list__item__header::after {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  content: "";
  background: url(../img/icon/+.svg) no-repeat;
  background-size: cover;
}
.service__FAQ__inner__list__item__header__title {
  font-size: 16px;
  line-height: 1.44;
  letter-spacing: 0.1em;
  display: flex;
  gap: 20px;
}
.service__FAQ__inner__list__item__header__title::before {
  content: "Q";
  font-weight: 700;
  font-size: 16px;
  color: var(--dark-blue);
}
.service__FAQ__inner__list__item__body {
  padding: 15px 20px;
  border-radius: 0 0 10px 10px;
  background: #fff;
}
.service__FAQ__inner__list__item__body__text {
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.1em;
}

.js-accordion-header {
  cursor: pointer;
}
.js-accordion-header.is_active {
  border-radius: 10px 10px 0 0;
  background: var(--dark-blue);
}
.js-accordion-header.is_active::after {
  width: 20px;
  height: 2px;
  background: url(../img/icon/-.svg) no-repeat;
  background-size: cover;
}
.js-accordion-header.is_active .service__FAQ__inner__list__item__header__title {
  color: #fff;
}
.js-accordion-header.is_active .service__FAQ__inner__list__item__header__title::before {
  color: #fff;
}

.js-accordion-inner {
  display: none;
}


/* contact */
.contact__form {
  font-size: 16px;
  line-height: 2.1;
  padding-bottom: 70px;
  line-height: 2.1;
}
@media screen and (min-width: 768px) {
  .contact__form {
    padding-bottom: 140px;
  }
}
.contact__form__text {
  margin-top: 20px;
}
.contact__form__list {
  margin-top: 40px;
  width: min(827px, 100%);
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .contact__form__list {
    margin-top: 70px;
  }
}
.contact__form__list__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact__form__list__item__title {
  font-weight: 500;
}
.contact__form__list__item__title__span {
  color: #B24030;
}
.contact__form__list__item__input {
  width: 100%;
  height: 50px;
}
.contact__form__btn {
  margin: 40px auto 0;
  width: min(315px, 100%);
  height: 50px;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--dark-blue);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .contact__form__btn {
    margin-left: 0;
    width: 226px;
  }
}

select {
  width: min(465px, 100%);
  height: 100%;
  padding: 9px 30px;
  border: solid 1px var(--dark-blue);
  background: #F3F1F1;
  font-size: min(13.4px, 3.6vw);
}

input[type=text],
input[type=tel],
input[type=email],
textarea {
  width: 100%;
  height: 100%;
  padding: 9px 30px;
  border: solid 1px var(--dark-blue);
  background: #F3F1F1;
}

textarea {
  min-height: 130px;
  field-sizing: content;
  resize: horizontal;
  padding: 9px 30px;
}

/* privacy */
.privacy__privacy {
  font-weight: 400;
  font-size: 16px;
  padding-bottom: 70px;
  line-height: 2.1;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .privacy__privacy {
    padding-bottom: 140px;
  }
}
.privacy__privacy__title {
  margin-top: 10px;
  line-height: 0.78;
  width: min(813px, 100%);
}
@media screen and (min-width: 961px) {
  .privacy__privacy__title {
    margin-top: 0;
    line-height: 1.61;
  }
}
.privacy__privacy__desc {
  margin-top: 40px;
  width: min(813px, 100%);
}
.privacy__privacy__list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: min(813px, 100%);
}
@media screen and (min-width: 768px) {
  .privacy__privacy__list {
    margin-top: 70px;
    gap: 40px;
  }
}
.privacy__privacy__list__item__title {
  font-weight: 500;
}
.privacy__privacy__list__item__desc {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .privacy__privacy__list__item__desc {
    margin-top: 40px;
  }
}
.privacy__privacy__list__item__desc.medium {
  font-weight: 500;
}
.privacy__privacy__list__item__list {
  margin-top: 30px;
  margin-left: 2em;
}
@media screen and (min-width: 768px) {
  .privacy__privacy__list__item__list {
    margin-top: 40px;
  }
}
.privacy__privacy__list__item__list.ol {
  list-style: decimal outside;
}
.privacy__privacy__list__item__list.ul {
  list-style: disc outside;
}
