@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul {
  list-style-type: none;
}

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

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

html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  color: #404547;
  background: #faf7f2;
  scroll-behavior: smooth;
}

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

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.header__container {
  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;
  padding: 0 40px 0 50px;
  background: #fff;
}
@media screen and (max-width: 1600px) {
  .header__container {
    padding: 0 32px 0 40px;
  }
}
@media screen and (max-width: 1200px) {
  .header__container {
    height: 60px;
    padding: 0 4%;
  }
}
.header__logo {
  width: 240px;
  height: 52px;
}
@media screen and (max-width: 1600px) {
  .header__logo {
    width: 192px;
    height: 41.6px;
  }
}
@media screen and (max-width: 1200px) {
  .header__logo {
    width: 160px;
    height: 35px;
  }
}
.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media screen and (max-width: 1600px) {
  .header__menu {
    gap: 24px;
  }
}
@media screen and (max-width: 1300px) {
  .header__menu {
    gap: 10px;
  }
}
@media screen and (max-width: 1200px) {
  .header__menu {
    -webkit-transform: translateY(-2000px);
            transform: translateY(-2000px);
    position: absolute;
    left: 0;
    top: 60px;
    width: 100%;
    height: calc(100vh - 60px);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    display: block;
    padding: 40px 4%;
    background: #faf7f2;
    z-index: -1;
    overflow-y: scroll;
  }
}
.header__menu.toggle {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 57px;
  margin-right: 70px;
}
@media screen and (max-width: 1600px) {
  .header__nav {
    gap: 45.6px;
    margin-right: 56px;
  }
}
@media screen and (max-width: 1300px) {
  .header__nav {
    gap: 20px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .header__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    border-top: 1px solid #ccc;
    width: 100%;
    margin-right: 0;
  }
}
@media screen and (max-width: 1200px) {
  .header__nav-item {
    width: 100%;
    border-bottom: 1px solid #ccc;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 1200px) {
  .header__nav-item--subnav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
  }
}
.header__nav-item--subnav::after {
  content: none;
  position: absolute;
  right: 0;
  top: 24px;
  width: 20px;
  height: 20px;
  background: url("../public/img/icons/accordion.svg");
}
@media screen and (max-width: 1200px) {
  .header__nav-item--subnav::after {
    content: "";
  }
}
@media screen and (min-width: 1600px) {
  .header__nav-item--subnav:hover .header__subnav {
    top: 100px;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1600px) {
  .header__nav-item--subnav:hover .header__subnav {
    top: 80px;
  }
}
.header__nav-item--subnav.is-active::after {
  background: url("../public/img/icons/accordion-close.svg");
}
.header__nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  height: 100px;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1600px) {
  .header__nav-link {
    font-size: 1.44rem;
    height: 80px;
  }
}
@media screen and (max-width: 1200px) {
  .header__nav-link {
    height: 65px;
    width: 100%;
  }
}
.header__nav-link:hover {
  opacity: 0.7;
}
.header__subnav {
  width: 100%;
  pointer-events: none;
  position: absolute;
  top: -1000px;
  left: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: -1;
}
@media screen and (max-width: 1200px) {
  .header__subnav {
    position: relative;
    top: 0;
    display: none;
    z-index: 1;
  }
}
.is-active .header__subnav {
  pointer-events: all;
  display: block;
}
.header__subnav-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 100px;
  width: 100%;
  max-width: 1080px;
  height: 223px;
  pointer-events: all;
  background: #fff;
  border-radius: 10px;
  border: 2px solid #404547;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 50px 80px;
}
@media screen and (max-width: 1600px) {
  .header__subnav-container {
    gap: 80px;
    max-width: 864px;
    height: 178.4px;
    border-radius: 8px;
    padding: 40px 64px;
  }
}
@media screen and (max-width: 1200px) {
  .header__subnav-container {
    background: none;
    border: none;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 0 0 30px;
  }
}
.header__subnav-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 3rem;
  font-weight: 700;
}
@media screen and (max-width: 1600px) {
  .header__subnav-title {
    font-size: 2.4rem;
  }
}
.header__subnav-wrap {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 35px 60px;
}
@media screen and (max-width: 1600px) {
  .header__subnav-wrap {
    gap: 28px 48px;
  }
}
@media screen and (max-width: 1200px) {
  .header__subnav-wrap {
    grid-template-columns: 1fr;
    width: 100%;
    justify-items: center;
    gap: 20px;
  }
}
.header__subnav-wrap :nth-child(1) {
  grid-area: 1/1/2/2;
}
.header__subnav-wrap :nth-child(2) {
  grid-area: 2/1/3/2;
}
.header__subnav-wrap :nth-child(3) {
  grid-area: 1/2/2/3;
}
@media screen and (max-width: 1200px) {
  .header__subnav-wrap :nth-child(3) {
    grid-area: 3/1/4/2;
  }
}
.header__subnav-wrap :nth-child(4) {
  grid-area: 2/2/3/3;
}
@media screen and (max-width: 1200px) {
  .header__subnav-wrap :nth-child(4) {
    grid-area: 4/1/5/2;
  }
}
.header__subnav-item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 15px;
  position: relative;
}
@media screen and (max-width: 1600px) {
  .header__subnav-item {
    padding-bottom: 12px;
  }
}
@media screen and (max-width: 1200px) {
  .header__subnav-item {
    padding-bottom: 0;
  }
}
.header__subnav-item::before, .header__subnav-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
}
@media screen and (max-width: 1200px) {
  .header__subnav-item::before, .header__subnav-item::after {
    content: none;
  }
}
.header__subnav-item::before {
  width: 100%;
  background-color: #d9d9d9;
}
.header__subnav-item::after {
  width: 35px;
  background-color: #404547;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1600px) {
  .header__subnav-item::after {
    width: 28px;
  }
}
.header__subnav-item:hover::after {
  width: 100%;
}
.header__subnav-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 1600px) {
  .header__subnav-text {
    gap: 14.4px;
    font-size: 1.28rem;
  }
}
@media screen and (max-width: 1200px) {
  .header__subnav-text {
    font-weight: 400;
  }
}
.header__subnav-text::before {
  content: "";
  position: relative;
  display: block;
  width: 13px;
  height: 19px;
  background: url("../public/img/icons/caret-right.svg") no-repeat;
}
@media screen and (max-width: 1600px) {
  .header__subnav-text::before {
    width: 10.4px;
    height: 15.2px;
  }
}
@media screen and (max-width: 1200px) {
  .header__subnav-text::before {
    content: none;
  }
}
.header__tel {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1200px) {
  .header__tel {
    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;
    margin-top: 30px;
  }
}
.header__tel:hover {
  opacity: 0.7;
}
.header__tel-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}
.header__tel-number img {
  width: 13.75px;
  height: 23px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1600px) {
  .header__tel-number img {
    width: 11px;
    height: 18.4px;
  }
}
.header__tel-number span {
  font-size: 2.3rem;
  font-weight: 700;
}
@media screen and (max-width: 1600px) {
  .header__tel-number span {
    font-size: 1.84rem;
  }
}
.header__tel-text {
  font-size: 1.2rem;
  font-weight: 500;
}
@media screen and (max-width: 1600px) {
  .header__tel-text {
    font-size: 0.96rem;
  }
}
.header__line {
  background-color: #fff;
  border: 1px solid #404547;
  border-radius: 50px;
  width: 50px;
  height: 50px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1600px) {
  .header__line {
    border-radius: 40px;
    width: 40px;
    height: 40px;
  }
}
.header__line::after {
  content: "";
  position: relative;
  display: block;
  top: 9px;
  left: 7px;
  width: 35px;
  height: 33px;
  background: url("../public/img/icons/line.png") center/contain no-repeat;
}
@media screen and (max-width: 1600px) {
  .header__line::after {
    top: 7.2px;
    left: 5.6px;
    width: 28px;
    height: 26.4px;
  }
}
.header__line:hover {
  background-color: #404547;
}
.header__line:hover::after {
  background: url("../public/img/icons/line-white.png") center/contain no-repeat;
}
.header__instagram {
  border: 1px solid #404547;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1600px) {
  .header__instagram {
    width: 40px;
    height: 40px;
  }
}
.header__instagram::before {
  content: "";
  position: relative;
  display: block;
  top: 8px;
  left: 8px;
  width: 33px;
  height: 33px;
  background: url("../public/img/icons/instagram.svg") center/contain no-repeat;
}
@media screen and (max-width: 1600px) {
  .header__instagram::before {
    top: 6.4px;
    left: 6.4px;
    width: 26.4px;
    height: 26.4px;
  }
}
.header__instagram:hover {
  background-color: #404547;
}
.header__instagram:hover::before {
  background: url("../public/img/icons/instagram-white.svg") center/contain no-repeat;
}
.header__facebook {
  border: 1px solid #404547;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1600px) {
  .header__facebook {
    width: 40px;
    height: 40px;
  }
}
.header__facebook::before {
  content: "";
  position: relative;
  display: block;
  top: 8px;
  left: 8px;
  width: 33px;
  height: 33px;
  background: url("../public/img/icons/facebook.svg") center/contain no-repeat;
}
@media screen and (max-width: 1600px) {
  .header__facebook::before {
    top: 6.4px;
    left: 6.4px;
    width: 26.4px;
    height: 26.4px;
  }
}
.header__facebook:hover {
  background-color: #404547;
}
.header__facebook:hover::before {
  background: url("../public/img/icons/facebook-white.svg") center/contain no-repeat;
}
.header__contact {
  width: 200px;
  height: 50px;
  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;
  padding: 9.5px 20px;
  border-radius: 25px;
  border: 1px solid #404547;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1600px) {
  .header__contact {
    width: 160px;
    height: 40px;
    padding: 7.6px 16px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .header__contact {
    width: 315px;
    height: 70px;
    border-radius: 35px;
    padding: 17px 20px 17px 30px;
    margin: 0 auto 30px;
  }
}
.header__contact span {
  margin-top: 2px;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 1600px) {
  .header__contact span {
    margin-top: 1.6px;
    font-size: 1.28rem;
  }
}
@media screen and (max-width: 1200px) {
  .header__contact span {
    font-size: 16px;
  }
}
.header__contact:hover {
  background-color: #404547;
}
.header__contact:hover span {
  color: #fff;
}
.header__contact:hover .header__contact-img {
  -webkit-filter: invert(1) brightness(2.5) contrast(1.2);
          filter: invert(1) brightness(2.5) contrast(1.2);
}
.header__contact-img {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__contact-img::before {
  content: "";
  width: 2px;
  height: 31px;
  position: absolute;
  left: -15px;
  top: 0;
  background: url("../public/img/icons/button-separator.svg") no-repeat;
}
@media screen and (max-width: 1600px) {
  .header__contact-img::before {
    width: 1.6px;
    height: 24.8px;
    left: -12px;
  }
}
@media screen and (max-width: 1200px) {
  .header__contact-img::before {
    width: 2px;
    height: 38px;
    left: -20px;
  }
}
.header__language {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 1600px) {
  .header__language {
    gap: 12px;
    font-size: 1.28rem;
  }
}
.header__language::after {
  content: "";
  position: relative;
  top: 0;
  width: 13px;
  height: 9px;
  background: url("../public/img/icons/caret.svg") center/contain no-repeat;
}
@media screen and (max-width: 1600px) {
  .header__language::after {
    width: 10.4px;
    height: 7.2px;
  }
}
.header__language:hover .header__language-dropdown {
  display: block;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.header__language-icon {
  width: 23px;
  height: 23px;
}
@media screen and (max-width: 1600px) {
  .header__language-icon {
    width: 18.4px;
    height: 18.4px;
  }
}
.header__language-dropdown {
  display: none;
  height: 0;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
  position: absolute;
  top: 23px;
  right: 0;
  background: #fff;
  padding: 30px;
  width: 250px;
  -webkit-box-shadow: 0 -6px 30px 0 rgba(0, 0, 0, 0.09) inset;
          box-shadow: 0 -6px 30px 0 rgba(0, 0, 0, 0.09) inset;
}
@media screen and (max-width: 1600px) {
  .header__language-dropdown {
    top: 18px;
  }
}
.header__language-dropdown .gtranslate_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.header__hamburger {
  display: none;
}
@media screen and (max-width: 1200px) {
  .header__hamburger {
    position: relative;
    z-index: 999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 30px;
    height: 10px;
    margin-top: -20px;
    cursor: pointer;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}
.header__hamburger span {
  position: absolute;
  top: 0;
  display: block;
  width: 30px;
  height: 2px;
  background-color: #19914b;
  border-radius: 2px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header__hamburger span:last-of-type {
  top: 10px;
}
@media screen and (max-width: 1200px) {
  .header__hamburger.toggle {
    opacity: 1;
    visibility: visible;
  }
}
.header__hamburger.toggle span {
  top: 8px;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}
.header__hamburger.toggle span:last-of-type {
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
}
.header__hamburger-text {
  position: absolute;
  left: 50%;
  bottom: -25px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 1.3rem;
  font-weight: 600;
  color: #19914b;
}

.heading {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.75em;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .heading {
    font-size: 23px;
    line-height: 1.7391304348em;
  }
}
.heading__desc {
  margin-top: 40px;
  font-size: 1.6rem;
  line-height: 2em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1300px) {
  .heading__desc {
    padding-inline: 30px;
  }
}
@media screen and (max-width: 767px) {
  .heading__desc {
    margin-top: 20px;
    font-size: 14px;
    line-height: 2em;
  }
}
.heading__bullet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.heading__bullet-jp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .heading__bullet-jp {
    font-size: 14px;
  }
}
.heading__bullet-jp::before {
  content: "";
  display: inline-block;
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #19914b;
}
@media screen and (max-width: 767px) {
  .heading__bullet-jp::before {
    width: 7px;
    height: 7px;
  }
}
.white .heading__bullet-jp::before {
  background-color: #fff;
}
.heading__bullet-en {
  font-size: 9.4rem;
  font-weight: 400;
  font-family: "Cormorant", serif;
  line-height: 1.0638297872em;
}
@media screen and (max-width: 767px) {
  .heading__bullet-en {
    font-size: 45px;
    line-height: 1.1111111111em;
  }
}

.banner {
  margin-top: 100px;
  padding-block: 125px;
  background-color: #f1efeb;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 1600px) {
  .banner {
    margin-top: 80px;
  }
}
@media screen and (max-width: 1200px) {
  .banner {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .banner {
    padding-block: 30px;
  }
}
.banner__container {
  padding: 0 8%;
  margin: 0 auto;
  max-width: calc(1300px + 16%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .banner__container {
    max-width: 100%;
  }
}
.banner__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.breadcrumbs {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .breadcrumbs {
    margin-top: 20px;
  }
}
.breadcrumbs--modal {
  margin-top: 0;
}
.breadcrumbs--modal .breadcrumbs__container {
  padding: 0;
  max-width: none;
}
.breadcrumbs__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0 8%;
  margin: 0 auto;
  max-width: calc(1300px + 16%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .breadcrumbs__container {
    max-width: 100%;
  }
}
.breadcrumbs__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .breadcrumbs__link {
    gap: 15px;
    font-size: 12px;
  }
}
.breadcrumbs__link:not(:first-child) {
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .breadcrumbs__link:not(:first-child) {
    padding-left: 15px;
  }
}
.breadcrumbs__link:not(:first-child)::before {
  content: "";
  width: 13px;
  height: 19.24px;
  background: no-repeat center/contain;
  background-image: url("../public/img/icons/caret-right.svg");
}
@media screen and (max-width: 767px) {
  .breadcrumbs__link:not(:first-child)::before {
    width: 6px;
    height: 11px;
    background-image: url("../public/img/icons/caret-right-sp.svg");
  }
}
.breadcrumbs__link--nolink {
  max-width: 100%;
  text-decoration: none;
}

.footer {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 60px;
  }
}
.footer__access {
  border-block: 1px solid #ccc;
  padding-block: 100px;
  margin-inline: 60px;
}
@media screen and (max-width: 1200px) {
  .footer__access {
    padding-block: 60px;
    margin-inline: 4%;
  }
}
.footer__access-heading {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1300px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .footer__access-heading {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .footer__access-heading .heading__desc {
    font-weight: 700;
  }
}
.footer__access-container {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1300px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 70px;
}
@media screen and (max-width: 767px) {
  .footer__access-container {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .footer__access-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.footer__access-map {
  width: 44%;
}
@media screen and (max-width: 767px) {
  .footer__access-map {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .footer__access-map iframe {
    aspect-ratio: 1/1;
  }
}
.footer__access-content {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .footer__access-content {
    width: 100%;
  }
}
.footer__access-office-header {
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .footer__access-office-header {
    font-size: 16px;
  }
}
.footer__access-transpo {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .footer__access-transpo {
    margin-top: 30px;
  }
}
.footer__access-transpo-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1em;
  letter-spacing: 0.05em;
  color: #19914b;
}
@media screen and (max-width: 767px) {
  .footer__access-transpo-header {
    font-size: 16px;
  }
}
.footer__access-transpo-header-train {
  width: 30px;
  height: 40px;
}
@media screen and (max-width: 767px) {
  .footer__access-transpo-header-train {
    width: 20px;
    height: 28px;
  }
}
.footer__access-transpo-header-car {
  width: 40px;
  height: 30px;
}
@media screen and (max-width: 767px) {
  .footer__access-transpo-header-car {
    width: 30px;
    height: 23px;
  }
}
.footer__access-text {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 2em;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .footer__access-text {
    font-size: 14px;
  }
}
.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1300px;
  width: 100%;
  margin-inline: auto;
  padding-block: 100px;
}
@media screen and (max-width: 1200px) {
  .footer__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
    padding-block: 60px;
  }
}
.footer__logo-img {
  width: 253px;
  height: 55px;
}
@media screen and (max-width: 1200px) {
  .footer__logo-img {
    width: 276px;
    height: 60px;
  }
}
.footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  margin-top: 50px;
}
@media screen and (max-width: 1200px) {
  .footer__sns {
    margin: 30px auto 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.footer__sns-item {
  width: 50px;
  height: 50px;
  border: 1px solid #404547;
  border-radius: 50%;
}
.footer__sns-item--line::before {
  content: "";
  position: relative;
  display: block;
  top: 9px;
  left: 7px;
  width: 35px;
  height: 33px;
  background: url("../public/img/icons/line.png") center/contain no-repeat;
}
.footer__sns-item--line:hover {
  background-color: #404547;
}
.footer__sns-item--line:hover::before {
  background: url("../public/img/icons/line-white.png") center/contain no-repeat;
}
.footer__sns-item--ig::before {
  content: "";
  position: relative;
  display: block;
  top: 8px;
  left: 8px;
  width: 33px;
  height: 33px;
  background: url("../public/img/icons/instagram.svg") center/contain no-repeat;
}
.footer__sns-item--ig:hover {
  background-color: #404547;
}
.footer__sns-item--ig:hover::before {
  background: url("../public/img/icons/instagram-white.svg") center/contain no-repeat;
}
.footer__sns-item--fb::before {
  content: "";
  position: relative;
  display: block;
  top: 8px;
  left: 8px;
  width: 33px;
  height: 33px;
  background: url("../public/img/icons/facebook.svg") center/contain no-repeat;
}
.footer__sns-item--fb:hover {
  background-color: #404547;
}
.footer__sns-item--fb:hover::before {
  background: url("../public/img/icons/facebook-white.svg") center/contain no-repeat;
}
.footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
}
@media screen and (max-width: 1200px) {
  .footer__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
}
.footer__nav-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1200px) {
  .footer__nav-section {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer__nav-link {
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 1200px) {
  .footer__nav-link {
    font-size: 16px;
  }
}
.footer__nav-link:not(:first-of-type) {
  margin-top: 35px;
}
.footer__subnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 25px;
}
@media screen and (max-width: 1200px) {
  .footer__subnav {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 20px;
  }
}
.footer__subnav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  font-size: 16px;
  line-height: 1em;
  text-decoration: underline;
}
@media screen and (max-width: 1200px) {
  .footer__subnav-link {
    font-size: 14px;
  }
}
.footer__subnav-link::before {
  content: "";
  position: relative;
  display: block;
  width: 5px;
  height: 5px;
  background-color: #404547;
  border-radius: 5px;
}
@media screen and (max-width: 1200px) {
  .footer__subnav-link::before {
    content: none;
  }
}
.footer__copyright {
  background: #404547;
  padding-block: 21px;
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  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;
  gap: 15px;
}
.footer__copyright-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 1200px) {
  .footer__copyright-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}
.footer__copyright-link:not(:last-of-type) {
  position: relative;
  padding-right: 20px;
}
@media screen and (max-width: 1200px) {
  .footer__copyright-link:not(:last-of-type) {
    padding-right: 0;
  }
}
.footer__copyright-link:not(:last-of-type)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background: #fff;
}
@media screen and (max-width: 1200px) {
  .footer__copyright-link:not(:last-of-type)::after {
    content: none;
  }
}
.footer__contact {
  max-width: 966px;
  width: 100%;
  margin: 0 auto 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 55px;
}
@media screen and (max-width: 1200px) {
  .footer__contact {
    padding-inline: 8%;
  }
}
@media screen and (max-width: 767px) {
  .footer__contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 60px;
  }
}
.footer__contact-image {
  width: 450px;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .footer__contact-image {
    width: 100%;
    max-width: 350px;
  }
}
.footer__contact-header {
  font-size: 3.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .footer__contact-header {
    font-size: 23px;
    font-weight: 700;
  }
}
.footer__contact-subheader {
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .footer__contact-subheader {
    font-size: 18px;
    font-weight: 700;
  }
}
.footer__contact-text {
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .footer__contact-text {
    font-size: 16px;
  }
}
.footer__contact-buttons {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .footer__contact-buttons {
    margin-top: 40px;
    gap: 30px;
  }
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-inline: 30px;
  width: 340px;
  height: 80px;
  border: 1px solid #404547;
  border-radius: 40px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .button {
    padding-inline: 30px 20px;
    width: 315px;
    height: 70px;
    border-radius: 35px;
  }
}
.button--center {
  margin-inline: auto;
}
.button::after {
  content: "";
  position: absolute;
  top: 32px;
  right: 30px;
  width: 30px;
  height: 9px;
  background: url("../public/img/icons/button-right-dark.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .button::after {
    right: 20px;
    width: 20px;
    height: 6px;
  }
}
.button:hover {
  background: #404547;
}
.button:hover::after {
  background-image: url("../public/img/icons/button-right-light.svg");
}
.button:hover .button__text {
  color: #fff;
}
.button:hover .button__text::after {
  background-image: url("../public/img/icons/button-dot-light.svg");
}
@media screen and (max-width: 767px) {
  .button:hover .button__text::after {
    background-image: url("../public/img/icons/button-dot-light-sp.svg");
  }
}
.button--dark {
  background: #404547;
}
.button--dark::after {
  top: 50%;
  right: 30px;
  width: 25px;
  height: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url("../public/img/icons/button-right-light.svg");
}
@media screen and (max-width: 767px) {
  .button--dark::after {
    right: 20px;
    width: 20px;
    height: 20px;
  }
}
.button--dark .button__text {
  color: #fff;
}
.button--dark .button__text::after {
  background-image: url("../public/img/icons/button-dot-light.svg");
}
@media screen and (max-width: 767px) {
  .button--dark .button__text::after {
    background-image: url("../public/img/icons/button-dot-light-sp.svg");
  }
}
.button--dark:hover {
  background: #faf7f2;
}
.button--dark:hover::after {
  background-image: url("../public/img/icons/button-right-dark.svg");
}
.button--dark:hover .button__text {
  color: #404547;
}
.button--dark:hover .button__text::after {
  background-image: url("../public/img/icons/button-dot-dark.svg");
}
@media screen and (max-width: 767px) {
  .button--dark:hover .button__text::after {
    background-image: url("../public/img/icons/button-dot-dark-sp.svg");
  }
}
.button--dark.button--process::after {
  top: 50%;
  right: 30px;
  width: 19px;
  height: 13px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url("../public/img/icons/arrow-down-light.svg");
}
@media screen and (max-width: 767px) {
  .button--dark.button--process::after {
    right: 20px;
  }
}
.button--dark.button--process:hover::after {
  background-image: url("../public/img/icons/arrow-down-dark.svg");
}
.button--read-more::after {
  background-image: url("../public/img/icons/button-plus.svg");
}
.button--read-more:hover {
  background: #404547;
}
.button--read-more:hover::after {
  background-image: url("../public/img/icons/button-plus.svg");
}
.button--read-more:hover .button__text {
  color: #fff;
}
.button--read-more:hover .button__text::after {
  background-image: url("../public/img/icons/button-dot-light.svg");
}
@media screen and (max-width: 767px) {
  .button--read-more:hover .button__text::after {
    background-image: url("../public/img/icons/button-dot-light-sp.svg");
  }
}
.button--process {
  width: 380px;
}
@media screen and (max-width: 767px) {
  .button--process {
    width: 315px;
  }
}
.button--process .button__text {
  width: 270px;
}
@media screen and (max-width: 767px) {
  .button--process .button__text {
    width: 225px;
  }
}
.button__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  width: 225px;
  height: 45px;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .button__text {
    height: 41px;
    font-size: 16px;
  }
}
.button__text::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 0;
  width: 2px;
  height: 45px;
  background: url("../public/img/icons/button-dot-dark.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .button__text::after {
    height: 41px;
    background-image: url("../public/img/icons/button-dot-dark-sp.svg");
  }
}
.button__text--two-lines {
  font-size: 1.6rem;
  line-height: 1.5625em;
}
@media screen and (max-width: 767px) {
  .button__text--two-lines {
    font-size: 14px;
    line-height: 1.7142857143em;
  }
}
.button__text--fs16 {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .button__text--fs16 {
    font-size: 14px;
  }
}
.button__text--fs12 {
  font-size: 1.2rem;
}
.button__text--process {
  width: 270px;
}
@media screen and (max-width: 767px) {
  .button__text--process {
    width: 225px;
  }
}
.button__text--submit {
  background: none;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .button__text--submit {
    padding-inline: 30px;
  }
}
.button .wpcf7-spinner {
  display: none !important;
}

.modal {
  top: 100px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 1300px;
  width: 100%;
  max-height: calc(100vh - 200px);
  background-color: #faf7f2;
  border: 1px solid #707070;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .modal {
    top: 50px;
    max-height: calc(100vh - 100px);
    border-radius: 10px;
  }
}
.modal::-ms-backdrop {
  background-color: rgba(64, 69, 71, 0.68);
}
.modal::backdrop {
  background-color: rgba(64, 69, 71, 0.68);
}
.modal__open, .modal__close {
  cursor: pointer;
}
.modal__close {
  margin-inline: auto;
}
.modal::-webkit-scrollbar {
  height: 10px;
  width: 10px;
  margin-right: 10px;
}
.modal::-webkit-scrollbar-track {
  border-radius: 8px;
  background-color: transparent;
  margin-block: 10px;
}
@media screen and (max-width: 767px) {
  .modal::-webkit-scrollbar-track {
    margin-block: 0;
  }
}
.modal::-webkit-scrollbar-thumb {
  background-color: #767676;
  border-radius: 8px;
}

.content__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
  padding: 100px 11.54%;
}
@media screen and (max-width: 767px) {
  .content__container {
    gap: 30px;
    padding: 40px 8%;
  }
}
.content__container--accordion {
  gap: 0;
}
@media screen and (max-width: 767px) {
  .content__container--accordion {
    padding: 40px 4%;
  }
}
.content__container--gap-60 {
  gap: 60px;
  margin-block: 0 80px;
  padding: 0 0 80px;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .content__container--gap-60 {
    gap: 30px;
    margin-block: 20px 40px;
    padding: 0 0 40px;
  }
}
.content__container--inner {
  padding: 0;
}
.content__heading-1 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2em;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .content__heading-1 {
    font-size: 16px;
    line-height: 2em;
  }
}
.content__heading-2 {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.8461538462em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .content__heading-2 {
    font-size: 18px;
    line-height: 2em;
  }
}
.content__heading-2--center {
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .content__heading-2--center {
    margin-bottom: 20px;
  }
}
.content__heading-2--mb-20 {
  margin-bottom: -20px;
}
.content__heading-2--mb0 {
  margin-bottom: 0;
}
.content__heading-2--medium {
  font-weight: 500;
}
.content__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .content__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
  }
}
@media screen and (max-width: 767px) {
  .content__row--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.content__row--accordion {
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .content__row--accordion {
    gap: 30px;
  }
}
.content__row--align-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.content__row--gap40 {
  gap: 40px;
}
.content__row--mb60 {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .content__row--mb60 {
    margin-bottom: 30px;
  }
}
.content__row--gap100 {
  gap: 100px;
}
@media screen and (max-width: 1200px) {
  .content__row--gap100 {
    gap: 50px;
  }
}
@media screen and (max-width: 767px) {
  .content__row--gap100 {
    gap: 30px;
  }
}
.content__row--mt30 {
  margin-top: 30px;
}
.content__row--mblock60 {
  margin-block: 60px;
}
.content__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.content__text {
  width: 50%;
  font-size: 1.6rem;
  line-height: 2em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .content__text {
    width: 100%;
    font-size: 14px;
    line-height: 2em;
  }
}
.content__text--full {
  width: 100%;
}
.content__text--center {
  text-align: center;
}
.content__text--caption-bottom {
  margin-top: 20px;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .content__text--caption-bottom {
    margin-top: 10px;
  }
}
.content__text--caption-top {
  margin-bottom: 20px;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .content__text--caption-top {
    margin-bottom: 10px;
  }
}
.content__text--caption-bold {
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .content__text--caption-bold {
    font-size: 14px;
  }
}
.content__text--center-pc {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .content__text--center-pc {
    text-align: start;
  }
}
.content__text--caption-end {
  text-align: end;
}
.content__text--45 {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .content__text--45 {
    width: 100%;
  }
}
.content__text--43 {
  width: 43%;
}
@media screen and (max-width: 767px) {
  .content__text--43 {
    width: 100%;
  }
}
.content__text--416 {
  width: 41.6%;
}
@media screen and (max-width: 767px) {
  .content__text--416 {
    width: 100%;
  }
}
.content__text--mb40 {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .content__text--mb40 {
    margin-bottom: 20px;
  }
}
.content__text--mb60 {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .content__text--mb60 {
    margin-bottom: 30px;
  }
}
.content__text--mt60 {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .content__text--mt60 {
    margin-top: 30px;
  }
}
.content__text--title {
  display: block;
  margin-bottom: 15px;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #19914b;
}
@media screen and (max-width: 767px) {
  .content__text--title {
    font-size: 18px;
  }
}
.content__text--mt20 {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .content__text--mt20 {
    margin-top: 0;
  }
}
.content__image-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  width: 53%;
}
@media screen and (max-width: 767px) {
  .content__image-container {
    gap: 5px;
    width: 100%;
  }
}
.content__image-container-2 {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .content__image-container-2 {
    margin-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.content__image-container-2--mt0 {
  margin-top: 0;
}
.content__image-container-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .content__image-container-3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
  }
}
.content__image-container-4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .content__image-container-4 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
  }
}
.content__image-container-5 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .content__image-container-5 {
    grid-template-columns: 1fr 1fr;
  }
}
.content__image-container-6 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .content__image-container-6 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}
@media screen and (max-width: 767px) {
  .content__image-container-6--row-sp {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 15px;
  }
}
.content__image-container-7 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .content__image-container-7 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.content__image-container-8 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 100px;
}
@media screen and (max-width: 767px) {
  .content__image-container-8 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}
.content__image-container-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.content__image-container-9 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  width: 53%;
}
@media screen and (max-width: 767px) {
  .content__image-container-9 {
    gap: 5px;
    width: 100%;
  }
}
.content__image {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .content__image {
    width: 100%;
  }
}
.content__image img {
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .content__image img {
    border-radius: 10px;
  }
}
.content__image--border-none img {
  border-radius: 0;
}
.content__image--full {
  width: 100%;
}
.content__image--66 {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .content__image--66 {
    width: 100%;
  }
}
.content__image--60 {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .content__image--60 {
    width: 100%;
  }
}
.content__image--56 {
  width: 56%;
}
@media screen and (max-width: 767px) {
  .content__image--56 {
    width: 100%;
  }
}
.content__image--53 {
  width: 53%;
}
@media screen and (max-width: 767px) {
  .content__image--53 {
    width: 100%;
  }
}
.content__image--50 {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .content__image--50 {
    width: 100%;
  }
}
.content__image--485 {
  width: 48.5%;
}
@media screen and (max-width: 767px) {
  .content__image--485 {
    width: 100%;
  }
}
.content__image--47 {
  width: 47%;
}
@media screen and (max-width: 767px) {
  .content__image--47 {
    width: 100%;
  }
}
.content__image--405 {
  width: 40.5%;
}
@media screen and (max-width: 767px) {
  .content__image--405 {
    width: 100%;
  }
}
.content__image--40 {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .content__image--40 {
    width: 100%;
  }
}
.content__image--35 {
  width: 35%;
}
@media screen and (max-width: 767px) {
  .content__image--35 {
    width: 100%;
  }
}
.content__image--286 {
  width: 28.6%;
}
@media screen and (max-width: 767px) {
  .content__image--286 {
    width: 100%;
  }
}
.content__image--335 {
  width: 33.5%;
}
@media screen and (max-width: 767px) {
  .content__image--335 {
    width: 100%;
  }
}
.content__image--265 {
  width: 26.5%;
}
@media screen and (max-width: 767px) {
  .content__image--265 {
    width: 100%;
  }
}
.content__image--25 {
  width: 25%;
}
@media screen and (max-width: 767px) {
  .content__image--25 {
    width: 100%;
  }
}
.content__image--24 {
  width: 24%;
}
@media screen and (max-width: 767px) {
  .content__image--24 {
    width: 100%;
  }
}
.content__image--23 {
  width: 23%;
}
@media screen and (max-width: 767px) {
  .content__image--23 {
    width: 100%;
  }
}
.content__text-bubble {
  gap: 5%;
  margin-bottom: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .content__text-bubble {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    margin-bottom: 50px;
  }
}
.content__text-bubble--mbpt20 {
  margin-bottom: 20px;
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  .content__text-bubble--mbpt20 {
    margin-bottom: 10px;
    padding-top: 10px;
  }
}
.content__text-bubble--mb0 {
  margin-bottom: 0;
}
.content__bubble-gray, .content__bubble-green {
  position: relative;
  padding: 30px;
  min-width: 345px;
  min-height: 136px;
  text-align: center;
  background-color: #faf7f2;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1024px) {
  .content__bubble-gray, .content__bubble-green {
    min-width: auto;
  }
}
@media screen and (max-width: 767px) {
  .content__bubble-gray, .content__bubble-green {
    padding: 20px;
    min-width: 100%;
    min-height: auto;
    border-radius: 10px;
  }
}
.content__bubble-gray::after, .content__bubble-green::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: 15px;
  width: 40px;
  height: 50px;
}
@media screen and (max-width: 767px) {
  .content__bubble-gray::after, .content__bubble-green::after {
    bottom: -10px;
    right: 10px;
    width: 24px;
    height: 30px;
  }
}
.content__bubble-gray {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .content__bubble-gray {
    font-size: 14px;
    line-height: 2em;
  }
}
.content__bubble-gray::after {
  background: url("../public/img/icons/person-gray.svg") no-repeat center/contain;
}
.content__bubble-green {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2em;
  letter-spacing: 0.05em;
  color: #19914b;
  border: 1px solid #19914b;
}
@media screen and (max-width: 767px) {
  .content__bubble-green {
    font-size: 16px;
    line-height: 2em;
  }
}
.content__bubble-green::after {
  background: url("../public/img/icons/person-green.svg") no-repeat center/contain;
}
.content__button-group {
  gap: 60px;
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .content__button-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    margin-top: 30px;
  }
}
.content__button-group--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .content__button-group--column {
    margin-top: 30px;
  }
}
.content__list {
  margin-right: auto;
}
.content__list ol {
  margin-top: 20px;
  font-size: 1.6rem;
  line-height: 2em;
  letter-spacing: 0.05em;
  list-style-position: inside;
}
@media screen and (max-width: 767px) {
  .content__list ol {
    margin-top: 15px;
    font-size: 14px;
    line-height: 2em;
  }
}
.content__list li::marker {
  font-weight: 700;
}
.content__list--mt0 ol {
  margin-top: 0;
}
.content__list-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .content__list-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin-top: 40px;
  }
}
.content__list-group-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  padding: 40px;
  width: 50%;
  background-color: #faf7f2;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .content__list-group-item {
    gap: 15px;
    padding: 20px 33px;
    width: 100%;
    border-radius: 10px;
  }
}
.content__list-group-title {
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: #19914b;
}
@media screen and (max-width: 767px) {
  .content__list-group-title {
    font-size: 16px;
  }
}
.content__list-group-ul {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.8rem;
  line-height: 2em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .content__list-group-ul {
    font-size: 14px;
  }
}
.content__image-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .content__image-group {
    gap: 25px;
  }
}
.content__list-numbered-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  margin-top: 40px;
}
.content__list-numbered-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.content__list-numbered-number {
  width: 50px;
  height: 50px;
  font-size: 3.5rem;
  font-weight: 500;
  font-family: "Cormorant", serif;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
  background-color: #19914b;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .content__list-numbered-number {
    min-width: 30px;
    width: 30px;
    height: 30px;
  }
}
.content__list-numbered-text {
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #19914b;
}
.content__list-numbered-text--fs18 {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #404547;
}
@media screen and (max-width: 767px) {
  .content__list-numbered-text--fs18 {
    font-size: 1.6rem;
  }
}
.content__list-numbered-text--fs26 {
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #404547;
}
@media screen and (max-width: 767px) {
  .content__list-numbered-text--fs26 {
    font-size: 1.6rem;
  }
}
.content__button-free {
  position: relative;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  color: #19914b;
}
@media screen and (max-width: 767px) {
  .content__button-free {
    font-size: 16px;
  }
}
.content__button-free::before, .content__button-free::after {
  content: "";
  position: absolute;
  top: 15px;
  width: 25px;
  height: 1px;
  background-color: #19914b;
}
.content__button-free::before {
  left: -23px;
  -webkit-transform: rotate(57deg);
          transform: rotate(57deg);
}
.content__button-free::after {
  right: -18px;
  -webkit-transform: rotate(-57deg);
          transform: rotate(-57deg);
}

.accordion__list {
  border-top: 1px solid #ccc;
}
.accordion__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  height: 170px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .accordion__header {
    padding: 20px 0;
    height: auto;
  }
}
.accordion__header::before, .accordion__header::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 25px;
  height: 25px;
  background: no-repeat center/contain;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .accordion__header::before, .accordion__header::after {
    right: 0;
    width: 20px;
    height: 20px;
  }
}
.accordion__header::before {
  background-image: url("../public/img/icons/accordion.svg");
  opacity: 1;
}
.accordion__header::after {
  background-image: url("../public/img/icons/accordion-close.svg");
  opacity: 0;
}
.accordion__header.open::before {
  opacity: 0;
}
.accordion__header.open::after {
  opacity: 1;
}
.accordion__header-image {
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 130px;
  height: 130px;
}
@media screen and (max-width: 1024px) {
  .accordion__header-image {
    left: 0;
    width: 75px;
    height: 75px;
  }
}
@media screen and (max-width: 767px) {
  .accordion__header-image {
    left: 0;
    width: 50px;
    height: 50px;
  }
}
.accordion__header-text {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .accordion__header-text {
    width: 75%;
    margin-inline: 50px;
  }
}
.accordion__header-number {
  font-size: 5rem;
  font-weight: 500;
  font-family: "Cormorant", serif;
  letter-spacing: 0.05em;
  color: #19914b;
}
@media screen and (max-width: 767px) {
  .accordion__header-number {
    font-size: 30px;
  }
}
.accordion__header-title {
  font-size: 2rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .accordion__header-title {
    font-size: 14px;
    line-height: 2em;
  }
}
.accordion__header-learn {
  position: absolute;
  right: 0;
  bottom: 45px;
  font-size: 1rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .accordion__header-learn {
    display: none;
  }
}
.accordion__content {
  max-height: 0;
  background-color: #f1efeb;
  border-bottom: 1px solid #ccc;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}

.nav {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1300px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .nav {
    max-width: 100%;
  }
}
.nav__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .nav__container {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .nav__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.nav__item {
  width: 22.7%;
  position: relative;
  padding-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .nav__item {
    width: 100%;
  }
}
.nav__item::before, .nav__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
}
.nav__item::before {
  width: 100%;
  background-color: #d9d9d9;
}
.nav__item::after {
  width: 35px;
  background-color: #404547;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.nav__item:hover::after {
  width: 100%;
}
.nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .nav__link {
    font-size: 14px;
  }
}
.nav__link::after {
  content: "";
  position: relative;
  bottom: 5px;
  display: block;
  width: 16px;
  height: 9px;
  background: url("../public/img/icons/caret.svg") center/contain no-repeat;
}

.recommend {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1300px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .recommend {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .recommend {
    margin-inline: 4%;
  }
}
.recommend__heading {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-inline: auto;
  font-size: 2.6rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .recommend__heading {
    font-size: 16px;
    margin-top: 10px;
  }
}
.recommend__heading::before, .recommend__heading::after {
  content: "";
  position: absolute;
  top: 30px;
  width: 55px;
  height: 2px;
  background-color: #19914b;
}
@media screen and (max-width: 767px) {
  .recommend__heading::before, .recommend__heading::after {
    width: 22px;
    top: 22px;
  }
}
.recommend__heading::before {
  left: -50px;
  -webkit-transform: rotate(55deg);
          transform: rotate(55deg);
}
@media screen and (max-width: 767px) {
  .recommend__heading::before {
    left: -25px;
  }
}
.recommend__heading::after {
  right: -50px;
  -webkit-transform: rotate(-55deg);
          transform: rotate(-55deg);
}
@media screen and (max-width: 767px) {
  .recommend__heading::after {
    right: -25px;
  }
}
.recommend__heading span {
  position: relative;
  font-size: 3.6rem;
  color: #19914b;
}
@media screen and (max-width: 767px) {
  .recommend__heading span {
    font-size: 23px;
  }
}
.recommend__heading span::before {
  content: "●";
  position: absolute;
  top: -5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 0.5rem;
  color: #00a15f;
}
.recommend__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 38px;
  margin-block: 40px;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .recommend__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
    max-width: 750px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .recommend__list {
    grid-template-columns: 1fr;
    justify-items: center;
    margin-block: 30px 20px;
    gap: 20px;
  }
}
.recommend__list--grid4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 27px;
  max-width: 1000px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .recommend__list--grid4 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.recommend__list--solo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 40px auto;
  max-width: 400px;
}
.recommend__item {
  padding: 24px 0;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 2em;
  text-align: center;
  border-radius: 20px;
  -webkit-box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1) inset;
          box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1) inset;
  min-height: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1200px) {
  .recommend__item {
    width: 190px;
  }
}
@media screen and (max-width: 767px) {
  .recommend__item {
    width: 230px;
    padding: 27px;
    font-size: 16px;
  }
}
.recommend__item--green {
  border: 2px solid #19914b;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #19914b;
}
.recommend__item--solo {
  width: 100%;
}
.recommend__note {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .recommend__note {
    font-size: 14px;
  }
}

.faq__accordion {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1300px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .faq__accordion {
    max-width: 100%;
  }
}
.faq__header {
  height: 108px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  color: #19914b;
  padding-right: 60px;
}
@media screen and (max-width: 767px) {
  .faq__header {
    padding-right: 45px;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    min-height: 105px;
    height: auto;
  }
}
.faq__header span {
  font-size: 4rem;
  font-weight: 500;
  font-family: "Cormorant", serif;
}
@media screen and (max-width: 767px) {
  .faq__header span {
    font-size: 30px;
  }
}
.faq__header p {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .faq__header p {
    font-size: 16px;
  }
}
.faq__content p {
  padding: 30px 45px 30px 66px;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .faq__content p {
    padding: 20px 40px;
  }
}
.bg-gray-f1 .faq__content {
  background: #faf7f2;
}

.blocks {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1300px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .blocks {
    max-width: 100%;
  }
}
.blocks__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .blocks__container {
    grid-template-columns: 1fr;
    gap: 30px;
    justify-items: center;
  }
}
.blocks__item {
  position: relative;
  border-radius: 10px;
  padding: 20px 40px;
  height: 315px;
  width: 100%;
  overflow: hidden;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .blocks__item {
    padding: 15px;
    height: 245px;
    max-width: 345px;
  }
}
.blocks__item--h411 {
  height: 411px;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .blocks__item--h411 {
    padding: 15px;
    height: 245px;
    max-width: 345px;
  }
}
.blocks__item-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.blocks__item-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: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 10px;
  padding: 20px;
  z-index: 0;
}
.blocks__item-content::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: calc(100% - 22px);
  height: calc(100% - 22px);
  border: 1px solid #404547;
  border-radius: 10px;
  z-index: -1;
}
.blocks__text {
  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;
  gap: 15px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .blocks__text {
    gap: 20px;
  }
}
.blocks__text-fs36 {
  font-size: 3.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .blocks__text-fs36 {
    font-size: 23px;
  }
}
.blocks__text-fs20 {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .blocks__text-fs20 {
    font-size: 14px;
  }
}
.blocks__text-fs18 {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .blocks__text-fs18 {
    font-size: 14px;
  }
}
.blocks__text-fs16 {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .blocks__text-fs16 {
    font-size: 14px;
  }
}
.blocks__button {
  margin-top: 60px;
  max-width: 250px;
  width: 100%;
  height: 60px;
  border: 1px solid #404547;
  background: #404547;
  border-radius: 60px;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .blocks__button {
    margin-top: 30px;
    font-size: 14px;
    height: 45px;
  }
}
.blocks__button:hover {
  background: transparent;
  color: #404547;
}

.splash {
  position: fixed;
  inset: 0;
  background: #faf7f2;
  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;
  z-index: 9999;
  width: 100%;
  height: 100vh;
}
@media screen and (max-width: 767px) {
  .splash {
    height: calc(100vh + 25px);
  }
}
.splash__video {
  width: auto;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.splash.is-hidden {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.sec-plan {
  padding-block: 188px 100px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec-plan {
    padding-block: 103px 60px;
  }
}
.sec-plan__decor {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-style: solid;
  border-width: 113px 143px 0;
  border-color: #faf7f2 transparent transparent transparent;
}
@media screen and (max-width: 767px) {
  .sec-plan__decor {
    border-width: 42px 48.5px 0;
  }
}
.sec-plan__decor--short {
  border-width: 63px 143px 0;
}
@media screen and (max-width: 767px) {
  .sec-plan__decor--short {
    border-width: 42px 48.5px 0;
  }
}
.sec-plan__container {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1300px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .sec-plan__container {
    max-width: 100%;
  }
}
.sec-plan__intro {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .sec-plan__intro {
    margin-top: 30px;
    grid-template-columns: 1fr;
    padding-inline: 4%;
    gap: 68px;
  }
}
.sec-plan__intro-text {
  font-size: 1.6rem;
  line-height: 2em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .sec-plan__intro-text {
    font-size: 14px;
  }
}
.sec-plan__intro-image img {
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .sec-plan__intro-image img {
    border-radius: 10px;
  }
}
.sec-plan__content {
  margin-inline: auto;
  max-width: 1000px;
}
.sec-plan__steps {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .sec-plan__steps {
    margin: 40px 4% 0;
  }
}
.sec-plan__steps-list {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 55px;
  margin-inline: auto;
  z-index: 0;
}
@media screen and (max-width: 1200px) {
  .sec-plan__steps-list {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .sec-plan__steps-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    margin-inline: 0;
  }
}
.sec-plan__steps-list::before {
  content: "";
  position: absolute;
  top: 25px;
  width: 100%;
  height: 2px;
  border-top: 2px dotted #404547;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .sec-plan__steps-list::before {
    width: 2px;
    height: 100%;
    border-top: none;
    border-left: 2px dotted #404547;
    top: 0;
    left: 17px;
  }
}
.sec-plan__steps-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;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .sec-plan__steps-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
  }
}
.sec-plan__step-count {
  width: 50px;
  height: 50px;
  background-color: #19914b;
  border-radius: 25px;
  font-size: 3.5rem;
  font-weight: 500;
  font-family: "Cormorant", serif;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .sec-plan__step-count {
    width: 35px;
    height: 35px;
    font-size: 26px;
    line-height: 1.1em;
  }
}
.sec-plan__step-text {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .sec-plan__step-text {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    font-size: 16px;
  }
}
.sec-plan__steps-legends {
  margin-top: 40px;
  -ms-flex-item-align: end;
      align-self: flex-end;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .sec-plan__steps-legends {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}
.sec-plan__step-legend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 15px;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}
.sec-plan__step-legend::before {
  content: "";
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 10px;
}
.sec-plan__step-legend--black::before {
  background-color: #404547;
}
.sec-plan__step-legend--green {
  margin-top: 15px;
}
.sec-plan__step-legend--green::before {
  background-color: #19914b;
}
.sec-plan__text {
  margin-top: 30px;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 2em;
  text-indent: -22px;
  padding-left: 22px;
}
@media screen and (max-width: 767px) {
  .sec-plan__text {
    font-size: 14px;
  }
}
.sec-plan__price-wrap {
  width: 100%;
  margin: 40px auto 0;
}
.sec-plan__price {
  width: 100%;
  border: 2px solid #19914b;
  border-radius: 20px;
  background: #faf7f2;
  padding: 30px;
  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;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .sec-plan__price {
    padding: 30px 4%;
  }
}
.sec-plan__price-header {
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .sec-plan__price-header {
    font-size: 1.8rem;
  }
}
.sec-plan__price-header span {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .sec-plan__price-header span {
    font-size: 14px;
  }
}
.sec-plan__price-subheader {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
}
.sec-plan__price-amount {
  font-size: 6rem;
  font-weight: 700;
  color: #19914b;
}
@media screen and (max-width: 767px) {
  .sec-plan__price-amount {
    font-size: 46px;
  }
}
.sec-plan__price-amount.fs50 {
  font-size: 5rem;
}
@media screen and (max-width: 767px) {
  .sec-plan__price-amount.fs50 {
    font-size: 40px;
  }
}
.sec-plan__price-amount span {
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .sec-plan__price-amount span {
    font-size: 31px;
  }
}
.sec-plan__price-amount .per {
  font-size: 19px;
}
@media screen and (max-width: 767px) {
  .sec-plan__price-amount .per {
    font-size: 16px;
  }
}
.sec-plan__price-amount .note {
  margin-left: 14px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #404547;
}
@media screen and (max-width: 767px) {
  .sec-plan__price-amount .note {
    font-size: 14px;
  }
}
.sec-plan__price-amount .plus {
  font-weight: 400;
  display: block;
}
.sec-plan__price-block {
  width: 100%;
  padding: 15px;
  background-color: #f1efeb;
  border-radius: 20px;
  margin-top: 20px;
}
.sec-plan__price-block-txt {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec-plan__price-block-txt {
    font-size: 14px;
  }
}
.sec-plan__price-block-txt span {
  font-size: 1.6rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .sec-plan__price-block-txt span {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .sec-plan__text-wrap {
    margin-inline: 4%;
  }
}

.sec-contact {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .sec-contact {
    padding: 60px 4%;
  }
}
.sec-contact-decor {
  padding-top: 70px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec-contact-decor {
    padding-top: 103px;
  }
}
.sec-contact-decor::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-style: solid;
  border-width: 89px 143px 0;
  border-color: #faf7f2 transparent transparent transparent;
}
@media screen and (max-width: 767px) {
  .sec-contact-decor::before {
    border-width: 42px 48.5px 0;
  }
}
.sec-contact__container {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1300px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  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;
  gap: 100px;
}
@media screen and (max-width: 767px) {
  .sec-contact__container {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .sec-contact__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .sec-contact__content {
    width: 100%;
    max-width: 450px;
  }
}
.sec-contact__text {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.8461538462em;
  margin-block: 30px 60px;
}
@media screen and (max-width: 767px) {
  .sec-contact__text {
    font-size: 1.6rem;
    line-height: 2em;
    margin-block: 30px 40px;
  }
}
@media screen and (max-width: 767px) {
  .sec-contact__image {
    width: 100%;
    max-width: 450px;
  }
}
.sec-contact__image img {
  border-radius: 20px;
}

.sitemap__container {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1300px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .sitemap__container {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .sitemap__container {
    margin-top: 40px;
  }
}
.sitemap__content {
  width: 100%;
  background: #f1efeb;
  border-radius: 20px;
  padding: 80px 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .sitemap__content {
    padding: 30px 20px;
    gap: 30px;
  }
}
.sitemap__link {
  font-size: 2.3rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .sitemap__link {
    font-size: 16px;
  }
}
.sitemap__subitem {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px 30px;
}
@media screen and (max-width: 767px) {
  .sitemap__subitem {
    margin-top: 15px;
    gap: 10px;
  }
}
.sitemap__subitem-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .sitemap__subitem-link {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    font-size: 14px;
    gap: 10px;
  }
}
.sitemap__subitem-link::before {
  content: "";
  position: relative;
  display: block;
  min-width: 10px;
  width: 10px;
  height: 10px;
  background: #404547;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .sitemap__subitem-link::before {
    min-width: 8px;
    width: 8px;
    height: 8px;
  }
}

.form__container {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1300px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .form__container {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .form__container {
    margin-top: 40px;
  }
}
.form__content {
  width: 100%;
  background: #f1efeb;
  border-radius: 20px;
  padding: 80px 150px;
}
@media screen and (max-width: 767px) {
  .form__content {
    padding: 30px 20px;
  }
}
.form__progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .form__progress {
    gap: 15px;
  }
}
.form__progress::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 7.5px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 400px;
  height: 1px;
  background-color: #b2b2b2;
}
@media screen and (max-width: 767px) {
  .form__progress::before {
    width: 225px;
  }
}
.form__progress-item {
  width: 145px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .form__progress-item {
    font-size: 14px;
    width: 110px;
  }
}
.form__progress-item::after {
  content: "";
  position: relative;
  width: 15px;
  height: 15px;
  background-color: #b2b2b2;
  border-radius: 15px;
}
.form__progress-item.active {
  color: #19914b;
}
.form__progress-item.active::after {
  background-color: #19914b;
}
.form__info {
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  margin-block: 60px;
}
.form__item {
  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;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .form__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.form__item--mb45 {
  margin-bottom: 45px;
}
.form__item--border {
  border-bottom: 1px solid #b2b2b2;
  padding-bottom: 25px;
}
.form__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 35%;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .form__label {
    width: 100%;
  }
}
.form__label--start {
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.form__label .required {
  border-radius: 5px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1em;
  color: #fff;
  background-color: #d70027;
  padding: 4px 8.6px 5px;
  min-width: 47px;
}
.form__label .required--not {
  background-color: #909090;
}
.form__input-wrap {
  width: 62.5%;
}
@media screen and (max-width: 767px) {
  .form__input-wrap {
    width: 100%;
  }
}
.form__input-wrap--name {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .form__input-wrap--name {
    grid-template-columns: 1fr;
  }
}
.form__input-wrap--address {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .form__input-wrap--address {
    grid-template-columns: 1fr;
  }
}
.form__input-wrap--confirm-mt {
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-top: 8px;
}
.form__input-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.5em;
}
.form__input-radio label input[type=radio] {
  opacity: 0;
  width: 0;
  height: 0;
  margin-right: 0;
}
.form__input-radio label {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form__input-radio label::before {
  content: "";
  width: 33px;
  height: 33px;
  min-width: 33px;
  margin-right: 15px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #d9d9d9;
}
.form__input-radio label input[type=radio]:checked + span::after {
  content: "";
  width: 19px;
  height: 19px;
  min-width: 19px;
  border-radius: 50%;
  background-color: #19914b;
  position: absolute;
  left: 8px;
  top: 17.5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form__input-radio .wpcf7-list-item.first {
  margin-left: 0;
}
.form__input-text-list {
  margin-block: 20px 0;
}
.form__input-text-list li {
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  line-height: 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 10px;
}
.form__input-text-list li:not(:last-of-type) {
  margin-bottom: 15px;
}
.form__input-text-list li::before {
  content: "";
  position: relative;
  display: block;
  width: 10px;
  height: 10px;
  min-width: 10px;
  background-color: #404547;
  border-radius: 10px;
}
.form__input-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .form__input-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.form__input-button {
  border: 1px solid #404547;
  padding: 18px;
  width: 250px;
  height: 60px;
  border-radius: 30px;
  background-color: #404547;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.form__input-button:hover {
  background-color: transparent;
  color: #404547;
}
.form__input-checkbox {
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.form__input-checkbox--grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px 30px;
}
@media screen and (max-width: 767px) {
  .form__input-checkbox--grid2 {
    grid-template-columns: 1fr;
  }
}
.form__input-checkbox--policy {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0;
  position: relative;
}
.form__input-checkbox--policy label:has(input[type=checkbox]:checked)::after {
  content: "";
  width: 21px;
  height: 18px;
  min-width: 21px;
  background: url("../public/img/icons/checkbox.svg") no-repeat;
  position: absolute;
  left: 6px;
  top: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form__input-checkbox--policy .wpcf7-list-item-label {
  display: none;
}
.form__input-checkbox--policy p {
  margin-top: 5px;
}
.form__input-checkbox--policy .wpcf7-not-valid-tip {
  position: absolute;
  bottom: -20px;
  width: 300px;
}
.form__input-checkbox label input[type=checkbox] {
  opacity: 0;
  width: 0;
  height: 0;
  margin-right: 0;
}
.form__input-checkbox label {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.form__input-checkbox label::before {
  content: "";
  width: 30px;
  height: 30px;
  min-width: 30px;
  margin-right: 8px;
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid #d9d9d9;
}
.form__input-checkbox label input[type=checkbox]:checked + span::after {
  content: "";
  width: 21px;
  height: 18px;
  min-width: 21px;
  background: url("../public/img/icons/checkbox.svg") no-repeat;
  position: absolute;
  left: 6px;
  top: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form__input-checkbox label span {
  margin-top: 3px;
}
.form__input-checkbox .wpcf7-list-item {
  margin-left: 0;
}
.form__input {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.5em;
  position: relative;
}
.form__input textarea,
.form__input input[type=text],
.form__input input[type=tel],
.form__input input[type=email],
.form__input select {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.5em;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  width: 100%;
  padding: 13px 25px;
}
.form__input textarea::-webkit-input-placeholder, .form__input input[type=text]::-webkit-input-placeholder, .form__input input[type=tel]::-webkit-input-placeholder, .form__input input[type=email]::-webkit-input-placeholder, .form__input select::-webkit-input-placeholder {
  color: #adadad;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.5em;
  font-family: "Noto Sans JP", sans-serif;
}
.form__input textarea::-moz-placeholder, .form__input input[type=text]::-moz-placeholder, .form__input input[type=tel]::-moz-placeholder, .form__input input[type=email]::-moz-placeholder, .form__input select::-moz-placeholder {
  color: #adadad;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.5em;
  font-family: "Noto Sans JP", sans-serif;
}
.form__input textarea:-ms-input-placeholder, .form__input input[type=text]:-ms-input-placeholder, .form__input input[type=tel]:-ms-input-placeholder, .form__input input[type=email]:-ms-input-placeholder, .form__input select:-ms-input-placeholder {
  color: #adadad;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.5em;
  font-family: "Noto Sans JP", sans-serif;
}
.form__input textarea::-ms-input-placeholder, .form__input input[type=text]::-ms-input-placeholder, .form__input input[type=tel]::-ms-input-placeholder, .form__input input[type=email]::-ms-input-placeholder, .form__input select::-ms-input-placeholder {
  color: #adadad;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.5em;
  font-family: "Noto Sans JP", sans-serif;
}
.form__input textarea::placeholder,
.form__input input[type=text]::placeholder,
.form__input input[type=tel]::placeholder,
.form__input input[type=email]::placeholder,
.form__input select::placeholder {
  color: #adadad;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.5em;
  font-family: "Noto Sans JP", sans-serif;
}
.form__input textarea {
  resize: none;
  height: 150px;
}
.form__input .name {
  position: absolute;
  top: -20px;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  line-height: 1.5em;
}
.form__input .note {
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  margin-top: 10px;
  display: block;
}
.form__input--address {
  margin-block: 7px 32px;
}
.form__input--email {
  margin-bottom: 20px;
}
.form__input--contact {
  margin-top: 15px;
}
.form__input-zip {
  position: relative;
}
.form__input-zip input[type=text] {
  padding-left: 56px;
}
.form__input-zip::before {
  content: "〒";
  position: absolute;
  top: 12px;
  left: 25px;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  z-index: 1;
}
.form__input-zip-button {
  cursor: pointer;
  padding: 3px 13px 4px;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  text-align: center;
  background: #fff;
  border: 1px solid #404547;
  border-radius: 13px;
  width: 64px;
  height: 27px;
  position: relative;
  left: -10px;
}
@media screen and (max-width: 767px) {
  .form__input-zip-button {
    padding: 10px 13px;
    width: 75px;
    height: 40px;
    border-radius: 20px;
    left: 0;
    top: -20px;
  }
}
.form__input-select {
  position: relative;
}
.form__input-select select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.form__input-select::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  width: 13px;
  height: 9px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../public/img/icons/caret.svg") no-repeat;
  background-size: contain;
}
.form__input-email-c {
  margin-left: 25px;
}
.form__agree-link {
  text-decoration: underline;
  color: #19914b;
}
.form__button-submit {
  margin: 60px auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.form__submit::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 85px;
  width: 2px;
  height: 45px;
  background: url("../public/img/icons/button-dot-light.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .form__submit::before {
    height: 41px;
    background-image: url("../public/img/icons/button-dot-light-sp.svg");
  }
}
.form__submit-text {
  text-align: left;
  padding-left: 30px;
}
.form__confirm-qa {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 30px;
}
.form__return {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 28px;
  font-size: 1.8rem;
  font-weight: 500;
  margin-top: 40px;
}
.form__return::before {
  content: "";
  position: relative;
  top: 3px;
  width: 25px;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  background: url("../public/img/icons/button-right-dark.svg") no-repeat center/contain;
}
.form__complete-heading {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.8461538462em;
  text-align: center;
  margin-block: 60px 40px;
}
@media screen and (max-width: 767px) {
  .form__complete-heading {
    font-size: 22px;
    margin-block: 30px 20px;
  }
}
.form__complete-text {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 2em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .form__complete-text {
    font-size: 14px;
  }
}
.form__complete-buttons {
  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;
  margin-top: 60px;
  gap: 40px;
}
.form--confirm .form__input-text-list, .form--confirm .form__input-buttons, .form--confirm .form__input-zip-button, .form--confirm .form__input .note, .form--confirm .form__input .name {
  display: none;
}
.form--confirm .form__item {
  margin-bottom: 25px;
}
.form--confirm .form__input-wrap--name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
}
.form--confirm .form__input-wrap--address {
  grid-template-columns: 1fr;
  gap: 20px;
}
.form--confirm .form__input-checkbox {
  gap: 10px;
}
.form--confirm .form__input-checkbox--grid2 {
  grid-template-columns: 1fr;
}
.form--confirm .form__input-select::after {
  content: none;
}
.form--confirm .form__input-zip {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form--confirm .form__input-zip::before {
  position: relative;
  top: 0;
  left: 0;
}
.form--confirm .form__input--address {
  margin-block: 0 20px;
}
.form .wpcf7-response-output {
  display: none;
}
.form .wpcf7-not-valid-tip {
  font-size: 1.6rem;
}

.top {
  position: relative;
  margin-top: 100px;
}
@media screen and (max-width: 1600px) {
  .top {
    margin-top: 80px;
  }
}
@media screen and (max-width: 1200px) {
  .top {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .top__container {
    margin-inline: 4% !important;
  }
}
.top__text {
  font-size: 1.6rem;
  line-height: 2em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .top__text {
    font-size: 14px;
  }
}
.top__mv {
  position: relative;
}
.top__mv-text {
  position: absolute;
  top: 235px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 1900px) {
  .top__mv-text {
    top: 188px;
  }
}
@media screen and (max-width: 1300px) {
  .top__mv-text {
    top: 40px;
  }
}
@media screen and (max-width: 850px) {
  .top__mv-text {
    top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .top__mv-text {
    position: relative;
    top: 0;
    padding: 25px;
  }
}
.top__mv-header-jp {
  font-size: 5.5rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 8px #404547;
  text-align: center;
}
@media screen and (max-width: 1900px) {
  .top__mv-header-jp {
    font-size: 4.4rem;
    text-shadow: 0 0 6.4px #404547;
  }
}
@media screen and (max-width: 1300px) {
  .top__mv-header-jp {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .top__mv-header-jp {
    font-size: 18px;
    color: #404547;
    text-shadow: none;
  }
}
.top__mv-header-en {
  font-size: 3.5rem;
  font-weight: 500;
  font-family: "Cormorant", serif;
  color: #fff;
  text-shadow: 0 0 8px #404547;
  text-align: center;
}
@media screen and (max-width: 1900px) {
  .top__mv-header-en {
    font-size: 2.8rem;
    text-shadow: 0 0 6.4px #404547;
  }
}
@media screen and (max-width: 1300px) {
  .top__mv-header-en {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .top__mv-header-en {
    font-size: 14px;
    color: #404547;
    text-shadow: none;
  }
}
.top__mv-subheader {
  position: absolute;
  width: 100%;
  bottom: 260px;
  left: 0;
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  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;
  height: 70px;
  gap: 20px;
  z-index: 1;
}
@media screen and (max-width: 1900px) {
  .top__mv-subheader {
    font-size: 3rem;
    bottom: 210px;
    text-shadow: 0 0 6.4px #404547;
  }
}
@media screen and (max-width: 1300px) {
  .top__mv-subheader {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .top__mv-subheader {
    position: relative;
    top: 0;
    text-align: center;
    font-size: 18px;
    letter-spacing: 0.1em;
    text-shadow: none;
    height: 50px;
    gap: 10px;
  }
}
.top__mv-subheader::before {
  content: "";
  position: relative;
  width: 22px;
  height: 22px;
  background-color: #19914b;
  border-radius: 22px;
}
@media screen and (max-width: 767px) {
  .top__mv-subheader::before {
    width: 18px;
    height: 18px;
  }
}
.top__mv-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 767px) {
  .top__mv-list {
    grid-template-columns: 1fr;
  }
}
.top__mv-item {
  position: relative;
}
.top__mv-item-button {
  height: 245px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 1900px) {
  .top__mv-item-button {
    height: 196px;
  }
}
@media screen and (max-width: 767px) {
  .top__mv-item-button {
    height: 100%;
  }
}
.top__mv-item-button::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #404547;
  opacity: 0.85;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 767px) {
  .top__mv-item-button::before {
    background-color: #523900;
    opacity: 0.44;
  }
}
.top__mv-item-button:hover .top__mv-button-arrow {
  background: #fff;
}
.top__mv-item-button:hover .top__mv-button-arrow::after {
  background-image: url("../public/img/icons/button-right-dark.svg");
}
.top__mv-button-text {
  position: absolute;
  top: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 140px;
  width: 100%;
  z-index: 1;
  color: #fff;
  text-align: center;
  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;
  gap: 8px;
}
@media screen and (max-width: 1900px) {
  .top__mv-button-text {
    top: 16px;
    height: 112px;
  }
}
@media screen and (max-width: 1200px) {
  .top__mv-button-text {
    height: auto;
    padding-inline: 10px;
  }
}
@media screen and (max-width: 767px) {
  .top__mv-button-text {
    top: 50%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.top__mv-button-text-f36 {
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2777777778em;
}
@media screen and (max-width: 1900px) {
  .top__mv-button-text-f36 {
    font-size: 2.88rem;
  }
}
@media screen and (max-width: 1400px) {
  .top__mv-button-text-f36 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .top__mv-button-text-f36 {
    font-size: 23px;
  }
}
.top__mv-button-text-f28 {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2857142857em;
}
@media screen and (max-width: 1900px) {
  .top__mv-button-text-f28 {
    font-size: 2.08rem;
  }
}
@media screen and (max-width: 1400px) {
  .top__mv-button-text-f28 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .top__mv-button-text-f28 {
    font-size: 16px;
  }
}
.top__mv-button-text-f18 {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.7777777778em;
  text-decoration: underline;
}
@media screen and (max-width: 1900px) {
  .top__mv-button-text-f18 {
    font-size: 1.44rem;
  }
}
@media screen and (max-width: 1400px) {
  .top__mv-button-text-f18 {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .top__mv-button-text-f18 {
    font-size: 14px;
  }
}
.top__mv-button-text-en {
  font-size: 3.5rem;
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1em;
}
@media screen and (max-width: 1900px) {
  .top__mv-button-text-en {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 1400px) {
  .top__mv-button-text-en {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .top__mv-button-text-en {
    font-size: 14px;
  }
}
.top__mv-button-arrow {
  border: 1px solid #fff;
  border-radius: 25px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 50px;
  height: 50px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1900px) {
  .top__mv-button-arrow {
    width: 40px;
    height: 40px;
    bottom: 16px;
  }
}
@media screen and (max-width: 1200px) {
  .top__mv-button-arrow {
    display: none;
  }
}
.top__mv-button-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 30px;
  height: 9px;
  background: url("../public/img/icons/button-right-light.svg") no-repeat center/contain;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1900px) {
  .top__mv-button-arrow::after {
    width: 24px;
    height: 7.2px;
  }
}
.top__business {
  padding-block: 150px 100px;
}
@media screen and (max-width: 767px) {
  .top__business {
    padding-block: 80px 40px;
  }
}
.top__business-container {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1300px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  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;
  gap: 89px;
}
@media screen and (max-width: 767px) {
  .top__business-container {
    max-width: 100%;
  }
}
@media screen and (max-width: 1200px) {
  .top__business-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.top__business-content {
  width: 100%;
  max-width: 420px;
}
@media screen and (max-width: 1200px) {
  .top__business-content {
    max-width: 100%;
  }
}
.top__business-subheading {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.8461538462em;
  margin-block: 30px 20px;
}
@media screen and (max-width: 767px) {
  .top__business-subheading {
    font-size: 16px;
    margin-block: 30px 15px;
  }
}
.top__business-button {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .top__business-button {
    margin-top: 40px;
  }
}
.top__cases {
  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;
  padding-bottom: 75px;
}
@media screen and (max-width: 767px) {
  .top__cases {
    padding: 0 4% 40px;
  }
}
.top__cases-heading {
  color: #19914b;
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .top__cases-heading {
    font-size: 20px;
  }
}
.top__cases-heading-decor {
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.top__cases-heading-decor::before, .top__cases-heading-decor::after {
  content: "";
  position: absolute;
  top: 30px;
  width: 55px;
  height: 2px;
  background-color: #19914b;
}
.top__cases-heading-decor::before {
  left: -50px;
  -webkit-transform: rotate(55deg);
          transform: rotate(55deg);
}
@media screen and (max-width: 767px) {
  .top__cases-heading-decor::before {
    left: -55px;
  }
}
.top__cases-heading-decor::after {
  right: -50px;
  -webkit-transform: rotate(-55deg);
          transform: rotate(-55deg);
}
@media screen and (max-width: 767px) {
  .top__cases-heading-decor::after {
    right: -55px;
  }
}
.top__cases-text {
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  margin-block: 60px 20px;
}
@media screen and (max-width: 767px) {
  .top__cases-text {
    font-size: 16px;
    margin-block: 30px 20px;
  }
}
.top__cases-note {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .top__cases-note {
    font-size: 14px;
    text-align: center;
  }
}
.top__seniors {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1300px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 100px;
  margin-block: 75px 150px;
}
@media screen and (max-width: 767px) {
  .top__seniors {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .top__seniors {
    margin-block: 40px 80px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 30px;
  }
}
.top__seniors-image {
  width: 500px;
  height: 500px;
}
@media screen and (max-width: 767px) {
  .top__seniors-image {
    width: 100%;
    height: auto;
  }
}
.top__seniors-image img {
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .top__seniors-image img {
    border-radius: 10px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .top__seniors-content {
    width: 100%;
  }
}
.top__seniors-heading {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .top__seniors-heading {
    margin-bottom: 0;
    width: 100%;
  }
}
.top__concerns {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1300px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .top__concerns {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .top__concerns {
    padding-bottom: 60px;
  }
}
.top__concerns-heading {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  margin: 0 auto 60px;
}
@media screen and (max-width: 767px) {
  .top__concerns-heading {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.top__concerns-heading span {
  font-size: 3.6rem;
}
@media screen and (max-width: 767px) {
  .top__concerns-heading span {
    font-size: 26px;
  }
}
.top__concerns-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .top__concerns-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.top__concerns-item {
  -webkit-box-shadow: 0 -6px 30px 0 rgba(0, 0, 0, 0.09) inset;
          box-shadow: 0 -6px 30px 0 rgba(0, 0, 0, 0.09) inset;
  border-radius: 20px;
  background: #faf7f2;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .top__concerns-item {
    padding: 30px;
  }
}
.top__concern-item-heading {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .top__concern-item-heading {
    font-size: 18px;
  }
}
.top__concern-item-text {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 2em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top__concern-item-text {
    font-size: 14px;
  }
}
.top__message {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1300px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .top__message {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .top__message {
    margin-top: 60px;
  }
}
.top__message-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 60px;
}
@media screen and (max-width: 1200px) {
  .top__message-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media screen and (max-width: 767px) {
  .top__message-content {
    margin-top: 30px;
  }
}
.top__message-text {
  width: 68%;
}
@media screen and (max-width: 1200px) {
  .top__message-text {
    width: 100%;
    margin-top: 30px;
  }
}
.top__message-image-wrap {
  width: 350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .top__message-image-wrap {
    width: 100%;
  }
}
.top__message-image {
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top__message-image {
    border-radius: 10px;
  }
}
.top__message-position {
  margin-block: 20px 10px;
  font-size: 1.4rem;
  font-weight: 500;
}
.top__message-name {
  font-size: 2.6rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .top__message-name {
    font-size: 18px;
  }
}
.top__message-name span {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .top__message-name span {
    font-size: 14px;
  }
}
.top__career {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1300px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 150px;
}
@media screen and (max-width: 767px) {
  .top__career {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .top__career {
    margin-top: 80px;
  }
}
.top__career-content {
  margin-top: 60px;
  font-size: 1.6rem;
  line-height: 2em;
  letter-spacing: 0.05em;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .top__career-content {
    margin-top: 30px;
    font-size: 14px;
  }
}
.top__career-content th {
  width: 115px;
  vertical-align: baseline;
}
@media screen and (max-width: 767px) {
  .top__career-content th {
    width: 100px;
  }
}
.top__career-content tr {
  margin-bottom: 5px;
}
.top__thoughts {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1300px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 150px;
}
@media screen and (max-width: 767px) {
  .top__thoughts {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .top__thoughts {
    margin-top: 80px;
  }
}
.top__thoughts-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .top__thoughts-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 30px;
    margin-top: 30px;
  }
}
.top__thoughts-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .top__thoughts-content {
    gap: 30px;
  }
}
.top__thoughts-content-heading {
  margin-bottom: 25px;
  height: 40px;
}
@media screen and (max-width: 767px) {
  .top__thoughts-content-heading {
    margin-bottom: 20px;
    height: 25px;
  }
}

.privacy__container {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1300px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .privacy__container {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .privacy__container {
    margin-top: 40px;
  }
}
.privacy__content {
  width: 100%;
  background: #f1efeb;
  border-radius: 20px;
  padding: 80px 125px 80px 150px;
}
@media screen and (max-width: 767px) {
  .privacy__content {
    padding: 30px 20px;
  }
}
.privacy__intro {
  background: #faf7f2;
  padding: 25px 40px;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .privacy__intro {
    padding: 15px 20px;
    border-radius: 10px;
  }
}
.privacy__intro-heading {
  font-size: 2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .privacy__intro-heading {
    font-size: 16px;
  }
}
.privacy__intro-text {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2em;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .privacy__intro-text {
    font-size: 12px;
  }
}
.privacy__rules {
  margin-top: 40px;
  font-size: 1.6rem;
  line-height: 2em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .privacy__rules {
    font-size: 12px;
    margin-top: 20px;
  }
}
.privacy__rule-list {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .privacy__rule-list {
    margin-top: 20px;
  }
}
.privacy__rule-list ol {
  padding-left: 20px;
}
.privacy__rule-item:not(:last-of-type) {
  margin-bottom: 30px;
}
.privacy__rule-heading {
  margin-bottom: 15px;
  font-size: 2.3rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .privacy__rule-heading {
    font-size: 16px;
  }
}
.privacy__rule-subitems {
  font-weight: 700;
  padding-left: 20px;
  text-indent: -20px;
  margin-block: 20px;
}

.diagnostic__banner {
  margin-top: 200px;
}
@media screen and (max-width: 1600px) {
  .diagnostic__banner {
    margin-top: 180px;
  }
}
@media screen and (max-width: 1200px) {
  .diagnostic__banner {
    margin-top: 160px;
  }
}
.diagnostic__container {
  margin-top: 200px;
}
@media screen and (max-width: 1600px) {
  .diagnostic__container {
    margin-top: 180px;
  }
}
@media screen and (max-width: 1200px) {
  .diagnostic__container {
    margin-top: 160px;
  }
}
.diagnostic__container2 {
  margin-top: 100px;
}
@media screen and (max-width: 1600px) {
  .diagnostic__container2 {
    margin-top: 80px;
  }
}
@media screen and (max-width: 1200px) {
  .diagnostic__container2 {
    margin-top: 60px;
  }
}
.diagnostic__qa {
  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;
  gap: 90px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .diagnostic__qa {
    gap: 45px;
    margin-bottom: 45px;
  }
}
.diagnostic__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 15px;
  position: relative;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .diagnostic__question {
    gap: 10px;
  }
}
.diagnostic__question > span {
  font-size: 6rem;
  font-weight: 500;
  font-family: "Cormorant", serif;
}
@media screen and (max-width: 767px) {
  .diagnostic__question > span {
    font-size: 40px;
  }
}
.diagnostic__question p {
  font-size: 3.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.3333333333em;
}
@media screen and (max-width: 767px) {
  .diagnostic__question p {
    font-size: 22px;
  }
}
.diagnostic__question-count {
  position: absolute;
  top: -60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 2.6rem;
  font-family: "Cormorant", serif;
  padding: 5px 15px 10px;
  border-radius: 40px;
  background-color: #707070;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .diagnostic__question-count {
    top: -40px;
    font-size: 20px;
    padding: 3px 10px 5px;
  }
}
.diagnostic__answer-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .diagnostic__answer-buttons {
    gap: 20px;
  }
}
.diagnostic__answer-buttons label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-inline: 30px;
  width: 340px;
  height: 80px;
  border: 1px solid #404547;
  border-radius: 40px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .diagnostic__answer-buttons label {
    padding-inline: 30px 20px;
    width: 315px;
    height: 70px;
    border-radius: 35px;
  }
}
.diagnostic__answer-buttons label::after {
  content: "";
  position: absolute;
  top: 32px;
  right: 30px;
  width: 30px;
  height: 9px;
  background: url("../public/img/icons/button-right-dark.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .diagnostic__answer-buttons label::after {
    right: 20px;
    width: 20px;
    height: 6px;
  }
}
.diagnostic__answer-buttons label:hover {
  background: #404547;
}
.diagnostic__answer-buttons label:hover::after {
  background-image: url("../public/img/icons/button-right-light.svg");
}
.diagnostic__answer-buttons label:hover span {
  color: #fff;
}
.diagnostic__answer-buttons label:hover span::after {
  background-image: url("../public/img/icons/button-dot-light.svg");
}
@media screen and (max-width: 767px) {
  .diagnostic__answer-buttons label:hover span::after {
    background-image: url("../public/img/icons/button-dot-light-sp.svg");
  }
}
.diagnostic__answer-buttons label span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  width: 225px;
  height: 45px;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .diagnostic__answer-buttons label span {
    height: 41px;
    font-size: 16px;
  }
}
.diagnostic__answer-buttons label span::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 0;
  width: 2px;
  height: 45px;
  background: url("../public/img/icons/button-dot-dark.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .diagnostic__answer-buttons label span::after {
    height: 41px;
    background-image: url("../public/img/icons/button-dot-dark-sp.svg");
  }
}
.diagnostic__answer-buttons label input {
  opacity: 0;
  width: 0;
}
.diagnostic__return {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
}
.diagnostic__return::before {
  content: "";
  width: 50px;
  height: 50px;
  position: relative;
  background-color: #404547;
  background-image: url("../public/img/icons/caret-left-white.svg");
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50px;
}

.message__intro {
  padding-block: 150px;
}
@media screen and (max-width: 767px) {
  .message__intro {
    padding-block: 75px;
  }
}
.message__intro-container {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1300px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 80px;
}
@media screen and (max-width: 767px) {
  .message__intro-container {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .message__intro-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.message__intro-text {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .message__intro-text {
    font-size: 14px;
  }
}
.message__intro-image {
  min-width: 500px;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .message__intro-image {
    min-width: 100%;
    height: auto;
  }
}
.message__list {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1300px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .message__list {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .message__list {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 50px;
  }
}
.message__item {
  background-color: #f1efeb;
  padding: 30px;
  border-radius: 20px;
  -webkit-box-shadow: 0 2px 13px rgba(0, 0, 0, 0.16);
          box-shadow: 0 2px 13px rgba(0, 0, 0, 0.16);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .message__item {
    padding: 20px;
    gap: 15px;
  }
}
.message__item:hover .message__item-image img {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}
.message__item-image {
  width: 100%;
  height: 325px;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .message__item-image {
    height: 175px;
  }
}
.message__item-image img {
  -o-object-position: top;
     object-position: top;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.message__item-name {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .message__item-name {
    font-size: 20px;
  }
}
.message__recruit {
  margin-top: 100px;
  padding-block: 100px;
}
@media screen and (max-width: 767px) {
  .message__recruit {
    padding-block: 50px;
  }
}
.message__recruit-container {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1300px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  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;
  gap: 80px;
}
@media screen and (max-width: 767px) {
  .message__recruit-container {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .message__recruit-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.message__recruit-heading {
  position: relative;
  padding: 22.6px 0 0 39.6px;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #19914b;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .message__recruit-heading {
    font-size: 30px;
    padding: 10px 0 0 20px;
    margin-bottom: 20px;
  }
}
.message__recruit-heading::before {
  content: "";
  background-image: url("../public/img/icons/text-decor.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 43.6px;
  height: 45.19px;
}
@media screen and (max-width: 767px) {
  .message__recruit-heading::before {
    width: 25px;
    height: 25px;
  }
}
.message__recruit-text {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 2em;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .message__recruit-text {
    font-size: 14px;
    margin-bottom: 30px;
  }
}
.message__recruit-image {
  min-width: 500px;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .message__recruit-image {
    min-width: 100%;
    height: auto;
  }
}
.message__details {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1300px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .message__details {
    max-width: 100%;
  }
}
.message__message-date {
  display: block;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .message__message-date {
    margin-bottom: 20px;
    font-size: 14px;
  }
}
.message__senior {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 70px;
}
@media screen and (max-width: 767px) {
  .message__senior {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.message__senior-details {
  max-width: 350px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .message__senior-details {
    max-width: 100%;
  }
}
.message__senior-image {
  width: 350px;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .message__senior-image {
    width: 100%;
    max-width: 350px;
    height: auto;
  }
}
.message__senior-position {
  margin-block: 20px 10px;
  font-size: 1.4rem;
  font-weight: 500;
}
.message__senior-name {
  font-size: 2.6rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .message__senior-name {
    font-size: 22px;
  }
}
.message__senior-description {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 2em;
  max-width: 730px;
}
@media screen and (max-width: 767px) {
  .message__senior-description {
    font-size: 14px;
  }
}
.message__history {
  background-color: #f1efeb;
  border-radius: 20px;
  padding: 100px 150px;
  margin-block: 100px;
}
@media screen and (max-width: 767px) {
  .message__history {
    padding: 20px 15px;
    margin-block: 50px;
  }
}
.message__history-item:not(:last-of-type) {
  padding-bottom: 50px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .message__history-item:not(:last-of-type) {
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
}
.message__history-heading-wrap {
  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;
  gap: 50px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .message__history-heading-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }
}
.message__history-heading-wrap--start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .message__history-heading-wrap--start {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.message__history-heading-wrap--reverse-start {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .message__history-heading-wrap--reverse-start {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.message__history-heading {
  font-size: 2.6rem;
  letter-spacing: 0.05em;
  line-height: 1.8461538462em;
  color: #19914b;
}
@media screen and (max-width: 767px) {
  .message__history-heading {
    font-size: 20px;
  }
}
.message__history-image {
  max-width: 320px;
  width: 100%;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
}
.message__history-text {
  font-size: 1.6rem;
  line-height: 2em;
  letter-spacing: 0.05em;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .message__history-text {
    font-size: 14px;
  }
}
.message__main {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1000px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .message__main {
    max-width: 100%;
    padding: 0;
  }
}
.message__main-subheading {
  margin-block: 40px 30px;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.8461538462em;
  color: #19914b;
}
@media screen and (max-width: 767px) {
  .message__main-subheading {
    font-size: 20px;
    margin-block: 20px 15px;
  }
}
.message__main-message {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .message__main-message {
    font-size: 14px;
  }
}
.message__block {
  margin-block: 100px;
  background-color: #f1efeb;
  padding: 50px;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .message__block {
    margin-block: 50px;
    padding: 20px 15px;
  }
}
.message__block-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.message__block-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .message__block-text {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 10px;
  }
}
.message__block-text span {
  display: block;
  white-space: nowrap;
}
.message__details-pagination {
  display: grid;
  grid-template-areas: "previous back next";
  grid-template-columns: 1fr 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.message__details-pagination .previous {
  grid-area: previous;
}
.message__details-pagination .back {
  grid-area: back;
}
.message__details-pagination .next {
  grid-area: next;
}
.message__post-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.message__post-link svg {
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.message__post-link--previous:hover svg {
  left: -25px;
}
.message__post-link--next {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.message__post-link--next:hover svg {
  right: -25px;
}
.message__button-return-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .message__button-return-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-inline: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 30px;
  }
}

.franchise__intro {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1300px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 90px auto 100px;
  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;
}
@media screen and (max-width: 767px) {
  .franchise__intro {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .franchise__intro {
    margin: 50px auto;
  }
}
.franchise__intro-decor {
  width: 85px;
  height: 20px;
  margin-bottom: 20px;
}
.franchise__intro-text {
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .franchise__intro-text {
    font-size: 14px;
  }
}
.franchise__recruit {
  padding-block: 100px;
}
@media screen and (max-width: 767px) {
  .franchise__recruit {
    padding-block: 50px;
  }
}
.franchise__recruit-container {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1300px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  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;
  gap: 80px;
}
@media screen and (max-width: 767px) {
  .franchise__recruit-container {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .franchise__recruit-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.franchise__recruit-heading {
  position: relative;
  padding: 22.6px 0 0 39.6px;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #19914b;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .franchise__recruit-heading {
    font-size: 30px;
    padding: 10px 0 0 20px;
    margin-bottom: 20px;
  }
}
.franchise__recruit-heading::before {
  content: "";
  background-image: url("../public/img/icons/text-decor.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 43.6px;
  height: 45.19px;
}
@media screen and (max-width: 767px) {
  .franchise__recruit-heading::before {
    width: 25px;
    height: 25px;
  }
}
.franchise__recruit-text {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 2em;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .franchise__recruit-text {
    font-size: 14px;
    margin-bottom: 30px;
  }
}
.franchise__recruit-image {
  min-width: 500px;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .franchise__recruit-image {
    min-width: 100%;
    height: auto;
  }
}
.franchise__list {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1300px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 150px;
  margin-block: 100px;
}
@media screen and (max-width: 767px) {
  .franchise__list {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .franchise__list {
    margin-block: 50px;
    gap: 50px;
  }
}
.franchise__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 200px;
}
@media screen and (max-width: 1200px) {
  .franchise__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.franchise__item-main {
  position: relative;
}
.franchise__item-main::after {
  content: "";
  position: absolute;
  top: 0;
  right: -100px;
  border-left: 1px solid #404547;
  width: 1px;
  height: 100%;
}
@media screen and (max-width: 1200px) {
  .franchise__item-main::after {
    content: none;
  }
}
.franchise__item-title {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-block: 30px 20px;
}
@media screen and (max-width: 767px) {
  .franchise__item-title {
    font-size: 20px;
    margin-block: 15px 10px;
  }
}
.franchise__item-description {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .franchise__item-description {
    font-size: 14px;
  }
}
.franchise__item-nav {
  max-width: 340px;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .franchise__item-nav {
    max-width: 725px;
    margin-inline: auto;
  }
}
.franchise__main-slider .splide__arrow {
  width: 40px;
  height: 40px;
  background: #fff;
}
.franchise__main-slider .splide__arrow svg {
  fill: #19914b;
}
.franchise__thumbnail {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .franchise__thumbnail {
    margin-bottom: 30px;
  }
}
.franchise__thumbnail .splide__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1200px) {
  .franchise__thumbnail .splide__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .franchise__thumbnail .splide__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.franchise__thumbnail .splide__slide {
  width: 159px !important;
  height: 93px !important;
  border: none !important;
}
.franchise__buttons {
  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;
  gap: 40px;
  margin-bottom: 25px;
}
@media screen and (max-width: 1200px) {
  .franchise__buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (max-width: 767px) {
  .franchise__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.franchise__note {
  font-size: 1.6rem;
  line-height: 2em;
  letter-spacing: 0.05em;
  color: #19914b;
}
@media screen and (max-width: 767px) {
  .franchise__note {
    font-size: 14px;
  }
}
.franchise__pagination {
  margin-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .franchise__pagination {
    margin-bottom: 75px;
  }
}

.new__nav {
  margin-block: 100px 150px;
}
@media screen and (max-width: 767px) {
  .new__nav {
    margin-block: 60px 80px;
  }
}
.new__intro {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1300px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .new__intro {
    max-width: 100%;
  }
}
.new__intro-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.77%;
  margin-block: 60px 150px;
}
@media screen and (max-width: 767px) {
  .new__intro-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    margin-block: 40px 60px;
    padding-inline: 4%;
  }
}
.new__intro-container--reverse {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4.61%;
  margin-block: 100px 150px;
}
@media screen and (max-width: 767px) {
  .new__intro-container--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 30px;
    margin-block: 60px;
  }
}
.new__intro-text {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .new__intro-text {
    width: 100%;
  }
}
.new__intro-heading {
  margin-bottom: 40px;
  font-size: 2.6rem;
  line-height: 1.8461538462em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .new__intro-heading {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 2em;
    text-align: center;
  }
}
.new__intro-heading--big {
  font-size: 3.6rem;
  line-height: 1.3333333333em;
}
@media screen and (max-width: 767px) {
  .new__intro-heading--big {
    font-size: 23px;
    line-height: 1.7391304348em;
  }
}
.new__intro-heading--big::before {
  content: "";
  display: inline-block;
  position: relative;
  top: -25px;
  width: 44px;
  height: 45px;
  background: url("../public/img/new/heading-deco.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .new__intro-heading--big::before {
    top: -8px;
    width: 25px;
    height: 25px;
  }
}
.new__text {
  position: relative;
  font-size: 1.6rem;
  line-height: 2em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .new__text {
    font-size: 14px;
    line-height: 2em;
  }
}
.new__text--bullet {
  padding-left: 16px;
}
@media screen and (max-width: 767px) {
  .new__text--bullet {
    padding-left: 14px;
  }
}
.new__text--bullet::before {
  content: "※";
  position: absolute;
  left: 0;
  font-size: inherit;
}
.new__text--fs18 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .new__text--fs18 {
    font-size: 16px;
    line-height: 2em;
  }
}
@media screen and (max-width: 767px) {
  .new__text--align-start-sp {
    text-align: start;
  }
}
.new__text-list {
  margin-inline: auto;
  padding: 40px 100px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: start;
  background-color: #faf7f2;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .new__text-list {
    padding: 30px 27px;
    border-radius: 10px;
  }
}
.new__text-list ul {
  list-style-type: disc;
  list-style-position: inside;
}
.new__text-list li {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.8461538462em;
  color: #19914b;
}
@media screen and (max-width: 767px) {
  .new__text-list li {
    font-size: 16px;
    line-height: 2em;
  }
}
.new__text-list li:not(:last-child) {
  margin-bottom: 20px;
}
.new__intro-image {
  width: 46%;
}
@media screen and (max-width: 767px) {
  .new__intro-image {
    width: 100%;
  }
}
.new__intro-image img {
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .new__intro-image img {
    border-radius: 10px;
  }
}
.new__modal-button {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .new__modal-button {
    margin-top: 30px;
    margin-inline: auto;
  }
}
.new__accordion {
  margin-block: 60px 100px;
}
@media screen and (max-width: 767px) {
  .new__accordion {
    margin-block: 30px 40px;
  }
}
.new__accordion-container {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1300px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .new__accordion-container {
    max-width: 100%;
  }
}
.new__consult {
  padding-block: 100px 150px;
  background-color: #f1efeb;
}
@media screen and (max-width: 767px) {
  .new__consult {
    padding-block: 60px 80px;
  }
}
.new__consult-container {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1300px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .new__consult-container {
    max-width: 100%;
  }
}
.new__consult-text-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  margin-bottom: 60px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .new__consult-text-container {
    gap: 20px;
    margin-bottom: 40px;
  }
}
.new__blocks {
  margin-block: 80px 60px;
}
@media screen and (max-width: 767px) {
  .new__blocks {
    margin-block: 80px 40px;
  }
}
.new__button-wrap {
  margin: 60px auto 0;
}
@media screen and (max-width: 767px) {
  .new__button-wrap {
    margin: 40px auto 0;
  }
}

.world__blocks {
  margin-block: 100px 150px;
}
@media screen and (max-width: 767px) {
  .world__blocks {
    margin-block: 50px 75px;
  }
}
.world__banner {
  height: 400px;
  position: relative;
}
.world__banner-image {
  width: 100%;
  height: 100%;
}
.world__banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  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;
  width: 100%;
}
.world__banner-heading-jp {
  font-size: 5.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  text-shadow: 0 0 27px rgba(0, 0, 0, 0.33);
}
@media screen and (max-width: 767px) {
  .world__banner-heading-jp {
    font-size: 50px;
  }
}
.world__banner-heading-en {
  font-size: 3.5rem;
  font-weight: 500;
  font-family: "Cormorant", serif;
  letter-spacing: 0;
  color: #fff;
  text-shadow: 0 0 27px rgba(0, 0, 0, 0.33);
}
@media screen and (max-width: 767px) {
  .world__banner-heading-en {
    font-size: 32px;
  }
}
.world__container {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1300px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .world__container {
    max-width: 100%;
  }
}
.world__nav {
  margin-block: 100px 150px;
}
@media screen and (max-width: 767px) {
  .world__nav {
    margin-block: 50px 75px;
  }
}
.world__intro1 {
  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;
  gap: 59px;
  margin-block: 100px 150px;
}
@media screen and (max-width: 767px) {
  .world__intro1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    margin-block: 50px 75px;
  }
}
.world__intro1-text {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 60px;
}
.world__intro1-image img {
  border-radius: 20px;
}
.world__modal-challenges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 27px;
}
@media screen and (max-width: 767px) {
  .world__modal-challenges {
    grid-template-columns: 1fr;
  }
}
.world__modal-challenges-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  border-radius: 20px;
  -webkit-box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1) inset;
          box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1) inset;
  padding-block: 45px 30px;
}
.world__modal-challenges-count {
  position: absolute;
  top: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 3.5rem;
  font-weight: 500;
  font-family: "Cormorant", serif;
  color: #fff;
  background-color: #19914b;
  border-radius: 50px;
}
.world__modal-challenges-text {
  font-size: 2.3rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.world__modal-challenges-icon {
  height: 60px;
}
.world__accordion1 {
  margin-block: 60px 124px;
}
@media screen and (max-width: 767px) {
  .world__accordion1 {
    margin-block: 30px 60px;
  }
}
.world__content-button {
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.world__content-button-heading {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #19914b;
  position: relative;
  margin-bottom: 20px;
}
.world__content-button-heading::before, .world__content-button-heading::after {
  content: "";
  position: absolute;
  top: 15px;
  width: 24px;
  height: 1px;
  background-color: #19914b;
}
@media screen and (max-width: 767px) {
  .world__content-button-heading::before, .world__content-button-heading::after {
    width: 22px;
    top: 22px;
  }
}
.world__content-button-heading::before {
  left: -25px;
  -webkit-transform: rotate(57deg);
          transform: rotate(57deg);
}
@media screen and (max-width: 767px) {
  .world__content-button-heading::before {
    left: -15px;
  }
}
.world__content-button-heading::after {
  right: -20px;
  -webkit-transform: rotate(-57deg);
          transform: rotate(-57deg);
}
@media screen and (max-width: 767px) {
  .world__content-button-heading::after {
    right: -15px;
  }
}
.world__content-container-pi75 {
  padding-inline: 75px;
}
@media screen and (max-width: 767px) {
  .world__content-container-pi75 {
    padding-inline: 4%;
  }
}
.world__methods {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.world__methods-list-container {
  margin: 30px auto 40px;
  max-width: 549px;
  width: 100%;
  padding: 30px 70px;
  border-radius: 20px;
  background-color: #faf7f2;
}
@media screen and (max-width: 767px) {
  .world__methods-list-container {
    padding-inline: 4%;
  }
}
.world__methods-item {
  width: 100%;
  padding: 60px 75px;
  border-radius: 20px;
  background-color: #faf7f2;
}
.world__methods-item-heading {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.world__methods-text {
  width: 100%;
  margin-top: 40px;
  text-align: center;
}
.world__methods-text:not(:last-child) {
  margin-bottom: 60px;
}
.world__methods-checklist:not(:last-of-type) {
  margin-bottom: 40px;
}
.world__methods-checklist-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.world__methods-checklist-icon {
  width: 23px;
  height: 20px;
}
.world__methods-checklist-text {
  gap: 10px;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 2em;
}
.world__site-checklist-wrap {
  background-color: #faf7f2;
  border-radius: 20px;
  padding: 30px 162px;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.world__site-checklist-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.world__site-checklist-item::before {
  content: "";
  position: relative;
  width: 23px;
  height: 20px;
  background: url("../public/img/icons/checkbox.svg") center/contain no-repeat;
}
.world__create-sns {
  background-color: #faf7f2;
  padding: 40px 50px;
  border-radius: 20px;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .world__create-sns {
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    padding: 20px;
  }
}
.world__manual-category-heading {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}
.world__manual-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
}
.world__manual-category:not(:last-of-type) {
  margin-bottom: 25px;
}
.world__manual-category-number {
  width: 50px;
  height: 50px;
  font-size: 3.5rem;
  font-weight: 500;
  font-family: "Cormorant", serif;
  text-align: center;
  color: #fff;
  background-color: #19914b;
  border-radius: 50px;
  padding: 5px;
}
.world__manual-category-name {
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
  display: block;
}
.world__manual-category-text {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.world__manual-list {
  border-radius: 20px;
  padding: 40px 70px;
  background-color: #faf7f2;
  margin-top: 0;
}
.world__upper-faq {
  padding-block: 100px;
}
.world__recommend-lower {
  padding: 0;
}
.world__recommend-lower .recommend__list {
  grid-template-columns: 1fr 1fr 1.25fr 1fr 1fr;
  gap: 25px;
}
@media screen and (max-width: 767px) {
  .world__recommend-lower .recommend__list {
    grid-template-columns: 1fr;
  }
}
.world__recommend-lower .recommend__item {
  padding: 16px 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.world__recommend-lower .recommend__item--small {
  font-size: 1.4rem;
  font-weight: 400;
}
.world__intro-lower-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4.46%;
  margin-block: 150px;
}
@media screen and (max-width: 767px) {
  .world__intro-lower-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    margin-block: 60px;
    padding-inline: 4%;
  }
}
.world__intro-lower-text {
  width: 46.5%;
}
@media screen and (max-width: 767px) {
  .world__intro-lower-text {
    width: 100%;
  }
}
.world__intro-lower-heading {
  margin-bottom: 60px;
  font-size: 2.6rem;
  line-height: 1.6538461538em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .world__intro-lower-heading {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 2em;
    text-align: center;
  }
}
.world__intro-lower-image {
  width: 77.9%;
}
@media screen and (max-width: 767px) {
  .world__intro-lower-image {
    width: 100%;
  }
}
.world__intro-lower-image img {
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .world__intro-lower-image img {
    border-radius: 10px;
  }
}
.world__process {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .world__process {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.world__process-heading {
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .world__process-heading {
    font-size: 30px;
  }
}
.world__accordion-lower {
  margin-block: 60px 100px;
}
@media screen and (max-width: 767px) {
  .world__accordion-lower {
    margin-block: 30px 40px;
  }
}
.world__search-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  margin-inline: auto;
  padding: 40px 70px;
  width: 850px;
  background-color: #faf7f2;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .world__search-list {
    gap: 15px;
    padding: 20px 35px;
    width: 100%;
    border-radius: 10px;
  }
}
.world__search-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .world__search-item {
    gap: 10px;
  }
}
.world__search-item--mb40 {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .world__search-item--mb40 {
    margin-bottom: 20px;
  }
}
.world__search-number {
  position: relative;
  min-width: 50px;
  height: 50px;
  font-size: 3.5rem;
  font-weight: 500;
  font-family: "Cormorant", serif;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
  background-color: #19914b;
  border-radius: 50%;
}
.world__search-number--modal {
  position: absolute;
  top: -25px;
}
.world__search-text-title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .world__search-text-title {
    font-size: 16px;
    line-height: 2em;
  }
}
.world__lower-key-point {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  position: relative;
  margin-inline: auto;
  padding-block: 45px 30px;
  width: 400px;
  background-color: #f1efeb;
  border-radius: 20px;
  -webkit-box-shadow: inset 0 0 13px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0 0 13px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .world__lower-key-point {
    border-radius: 10px;
  }
}
.world__lower-sec-plan {
  padding-block: 100px 150px;
}
@media screen and (max-width: 767px) {
  .world__lower-sec-plan {
    padding-block: 60px;
  }
}
.world__lower-sec-plan-price-wrap {
  margin: 80px auto 0;
}
@media screen and (max-width: 767px) {
  .world__lower-sec-plan-price-wrap {
    margin: 40px auto 0;
  }
}
.world__lower-sec-plan-button {
  margin: 60px auto 0;
}
@media screen and (max-width: 767px) {
  .world__lower-sec-plan-button {
    margin: 30px auto 0;
  }
}

.existing__nav {
  margin-block: 100px 150px;
}
@media screen and (max-width: 767px) {
  .existing__nav {
    margin-block: 60px 80px;
  }
}
.existing__intro {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1300px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .existing__intro {
    max-width: 100%;
  }
}
.existing__intro-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5.77%;
  margin-block: 60px 150px;
}
@media screen and (max-width: 767px) {
  .existing__intro-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    margin-block: 40px 60px;
    padding-inline: 4%;
  }
}
.existing__intro-container--reverse {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4.61%;
  margin-block: 100px 150px;
}
@media screen and (max-width: 767px) {
  .existing__intro-container--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 30px;
    margin-block: 60px;
  }
}
.existing__intro-text {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .existing__intro-text {
    width: 100%;
  }
}
.existing__intro-heading {
  margin-bottom: 40px;
  font-size: 2.6rem;
  line-height: 1.8461538462em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .existing__intro-heading {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 2em;
    text-align: center;
  }
}
.existing__text {
  position: relative;
  font-size: 1.6rem;
  line-height: 2em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .existing__text {
    font-size: 14px;
    line-height: 2em;
  }
}
.existing__text--bullet {
  padding-left: 16px;
}
@media screen and (max-width: 767px) {
  .existing__text--bullet {
    padding-left: 14px;
  }
}
.existing__text--bullet::before {
  content: "※";
  position: absolute;
  left: 0;
  font-size: inherit;
}
.existing__text--fs18 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .existing__text--fs18 {
    font-size: 16px;
    line-height: 2em;
  }
}
.existing__text--fs20 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .existing__text--fs20 {
    font-size: 16px;
    line-height: 2em;
  }
}
@media screen and (max-width: 767px) {
  .existing__text--align-start-sp {
    text-align: start;
  }
}
.existing__text-list {
  margin-inline: auto;
  padding: 40px 100px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: start;
  background-color: #faf7f2;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .existing__text-list {
    padding: 30px 27px;
    border-radius: 10px;
  }
}
.existing__text-list ul {
  list-style-type: disc;
  list-style-position: inside;
}
.existing__text-list li {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.8461538462em;
  color: #19914b;
}
@media screen and (max-width: 767px) {
  .existing__text-list li {
    font-size: 16px;
    line-height: 2em;
  }
}
.existing__text-list li:not(:last-child) {
  margin-bottom: 20px;
}
.existing__intro-image {
  width: 46%;
}
@media screen and (max-width: 767px) {
  .existing__intro-image {
    width: 100%;
  }
}
.existing__intro-image img {
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .existing__intro-image img {
    border-radius: 10px;
  }
}
.existing__modal-button {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .existing__modal-button {
    margin-top: 30px;
    margin-inline: auto;
  }
}
.existing__accordion {
  margin-block: 60px 100px;
}
@media screen and (max-width: 767px) {
  .existing__accordion {
    margin-block: 30px 40px;
  }
}
.existing__accordion-container {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1300px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .existing__accordion-container {
    max-width: 100%;
  }
}
.existing__consult {
  padding-block: 100px 150px;
  background-color: #f1efeb;
}
@media screen and (max-width: 767px) {
  .existing__consult {
    padding-block: 60px 80px;
  }
}
.existing__consult-container {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1300px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .existing__consult-container {
    max-width: 100%;
  }
}
.existing__consult-text-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  margin-bottom: 60px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .existing__consult-text-container {
    gap: 20px;
    margin-bottom: 40px;
  }
}
.existing__blocks {
  margin-block: 80px 60px;
}
@media screen and (max-width: 767px) {
  .existing__blocks {
    margin-block: 80px 40px;
  }
}
.existing__button-wrap {
  margin: 60px auto 0;
}
@media screen and (max-width: 767px) {
  .existing__button-wrap {
    margin: 40px auto 0;
  }
}
.existing__recommend {
  margin-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .existing__recommend {
    margin-bottom: 80px;
  }
}
.existing__recommend-list {
  grid-template-columns: repeat(4, auto);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .existing__recommend-list {
    grid-template-columns: 1fr;
  }
}
.existing__concept {
  width: 100%;
}
.existing__concept-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  margin-bottom: 30px;
  padding: 40px;
  background-color: #faf7f2;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .existing__concept-container {
    gap: 15px;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 10px;
  }
}
.existing__concept-title {
  font-size: 2.6rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .existing__concept-title {
    font-size: 16px;
  }
}
.existing__concept-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .existing__concept-list {
    gap: 10px;
  }
}
.existing__concept-item {
  position: relative;
  padding-left: 28px;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .existing__concept-item {
    font-size: 16px;
  }
}
.existing__concept-item::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 20px;
  height: 18px;
  background: url("../public/img/icons/checkbox.svg") no-repeat;
}
.existing__menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .existing__menu-list {
    gap: 15px;
  }
}
.existing__menu-item {
  position: relative;
  margin-left: 25px;
  padding: 40px 50px 40px 75px;
  background-color: #faf7f2;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .existing__menu-item {
    padding: 20px 25px 20px 40px;
    border-radius: 10px;
  }
}
.existing__menu-number {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -25px;
  min-width: 50px;
  height: 50px;
  font-size: 3.5rem;
  font-weight: 500;
  font-family: "Cormorant", serif;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
  background-color: #19914b;
  border-radius: 50%;
}
.existing__menu-number--manual {
  position: relative;
  top: unset;
  -webkit-transform: unset;
          transform: unset;
  left: unset;
}
.existing__menu-text-title {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .existing__menu-text-title {
    font-size: 16px;
    line-height: 2em;
  }
}
.existing__menu-text-title--manual {
  margin-bottom: 0;
}
.existing__manual-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  margin: 0 auto 60px;
  padding: 40px 70px;
  width: 850px;
  background-color: #faf7f2;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .existing__manual-list {
    gap: 15px;
    margin: 0 auto 30px;
    padding: 20px 35px;
    width: 100%;
    border-radius: 10px;
  }
}
.existing__manual-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .existing__manual-item {
    gap: 10px;
  }
}

.other__container {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1300px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-block: 100px;
}
@media screen and (max-width: 767px) {
  .other__container {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .other__container {
    padding-block: 50px;
  }
}
.other__text {
  position: relative;
  font-size: 1.6rem;
  line-height: 2em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .other__text {
    font-size: 14px;
    line-height: 2em;
  }
}
.other__text--bullet {
  padding-left: 16px;
}
@media screen and (max-width: 767px) {
  .other__text--bullet {
    padding-left: 14px;
  }
}
.other__text--bullet::before {
  content: "※";
  position: absolute;
  left: 0;
  font-size: inherit;
}
.other__text--fs18 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .other__text--fs18 {
    font-size: 16px;
    line-height: 2em;
  }
}
@media screen and (max-width: 767px) {
  .other__text--align-start-sp {
    text-align: start;
  }
}
.other__intro {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1300px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .other__intro {
    max-width: 100%;
  }
}
.other__intro-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5.77%;
  margin-block: 60px 150px;
}
@media screen and (max-width: 767px) {
  .other__intro-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    margin-block: 40px 60px;
    padding-inline: 4%;
  }
}
.other__intro-container--reverse {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4.61%;
  margin-block: 100px 150px;
}
@media screen and (max-width: 767px) {
  .other__intro-container--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 30px;
    margin-block: 60px;
  }
}
.other__intro-text {
  width: 56%;
}
@media screen and (max-width: 767px) {
  .other__intro-text {
    width: 100%;
  }
}
.other__intro-button {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .other__intro-button {
    margin-top: 30px;
  }
}
.other__intro-image {
  width: 39%;
}
@media screen and (max-width: 767px) {
  .other__intro-image {
    width: 100%;
  }
}
.other__intro-image img {
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .other__intro-image img {
    border-radius: 10px;
  }
}
.other__nav {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1300px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .other__nav {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .other__nav {
    margin-bottom: 75px;
  }
}
.other__nav-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 47px;
}
@media screen and (max-width: 1024px) {
  .other__nav-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .other__nav-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.other__nav-item {
  position: relative;
  background-color: #f1efeb;
  border-radius: 20px;
  padding: 30px 15px 58px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .other__nav-item {
    padding: 15px 10px 30px;
    gap: 10px;
  }
}
.other__nav-item::after {
  content: "";
  position: absolute;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 20px;
  height: 13px;
  background: url("../public/img/icons/caret-down-green.svg") center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .other__nav-item::after {
    bottom: 10px;
  }
}
.other__nav-item:hover {
  opacity: 0.6;
}
.other__nav-item-image {
  width: 130px;
  height: 130px;
}
@media screen and (max-width: 767px) {
  .other__nav-item-image {
    width: 70px;
    height: 70px;
  }
}
.other__nav-text {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.75em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .other__nav-text {
    font-size: 14px;
  }
}
.other__recommend {
  margin-block: 60px;
}
.other__main-image {
  max-width: 1000px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 500px;
  margin-inline: auto;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .other__main-image {
    height: 250px;
  }
}
.other__bubble {
  max-width: 1000px;
  width: 100%;
  margin: 60px auto;
}
.other__bubble--full {
  max-width: 100%;
}
.other__bubble--full .content__text-bubble {
  gap: 3%;
}
@media screen and (max-width: 767px) {
  .other__bubble--full .content__text-bubble {
    gap: 15px;
  }
}
.other__bubble--full .content__bubble-gray {
  padding: 30px 50px 30px 30px;
}
@media screen and (max-width: 767px) {
  .other__bubble--full .content__bubble-gray {
    padding: 20px 30px 20px 20px;
  }
}
.other__bubble .content__bubble-green {
  min-width: 535px;
}
@media screen and (max-width: 1024px) {
  .other__bubble .content__bubble-green {
    min-width: auto;
  }
}
@media screen and (max-width: 767px) {
  .other__bubble .content__bubble-green {
    min-width: 100%;
  }
}
.other__content {
  background-color: #f1efeb;
  border-radius: 20px;
  height: 800px;
  padding: 50px 15px;
  font-size: 30px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .other__content {
    height: calc(100vh - 150px);
    padding: 15px 10px;
  }
}
.other__content--fb-bg {
  background-color: #fbf7f3;
}
@media screen and (max-width: 767px) {
  .other__content .content__image img {
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.other__content-wrap {
  overflow-y: scroll;
  border-radius: 20px;
  height: 700px;
  padding: 0 125px 0 135px;
}
@media screen and (max-width: 1024px) {
  .other__content-wrap {
    padding: 0 75px 0 85px;
  }
}
@media screen and (max-width: 767px) {
  .other__content-wrap {
    padding: 0 10px;
    height: calc(100vh - 180px);
  }
}
.other__content-wrap::-webkit-scrollbar {
  height: 10px;
  width: 10px;
}
.other__content-wrap::-webkit-scrollbar-track {
  border-radius: 8px;
  background-color: transparent;
  margin-block: -30px;
}
@media screen and (max-width: 767px) {
  .other__content-wrap::-webkit-scrollbar-track {
    margin-block: 0;
  }
}
.other__content-wrap::-webkit-scrollbar-thumb {
  background-color: #767676;
  border-radius: 8px;
}
.other__content-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
  margin-bottom: 80px;
  padding: 0 0 80px;
  border-bottom: 1px solid #ccc;
}
.other__content-container--no-border {
  border-bottom: none;
  padding: 0;
  margin-block: 0;
}
.other__content-text {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .other__content-text {
    font-size: 16px;
  }
}
.other__text-list {
  counter-reset: list-counter;
  list-style: none;
  padding: 0;
  margin-top: 20px;
}
.other__text-list li {
  counter-increment: list-counter;
  position: relative;
  padding-left: 3em;
  margin-bottom: 10px;
  font-size: 1.6rem;
  font-weight: 500;
}
.other__text-list li::before {
  content: counter(list-counter, decimal-leading-zero) ".";
  position: absolute;
  left: 0;
  color: #19914b;
  font-size: 2.3rem;
  font-weight: 700;
}
.other__plan {
  max-width: 1000px;
  width: 100%;
  margin-inline: auto;
}
.other__plan--mx100 {
  max-width: 100%;
}
.other__service-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  margin-bottom: 24px;
}
.other__service-heading span {
  width: 50px;
  height: 50px;
  font-size: 35px;
  font-weight: 500;
  font-family: "Cormorant", serif;
  line-height: normal;
  text-align: center;
  color: #fff;
  background-color: #19914b;
  border-radius: 50px;
}
.other__service-heading p {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2em;
}
.other__service-heading--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.other__plan-price-wrap {
  margin-top: 30px;
}
.other__faq {
  margin-block: 100px 50px;
}

.overflow {
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

.bg-gray-fa {
  background-color: #faf7f2;
}

.bg-gray-f1 {
  background-color: #f1efeb;
}

.bg-black {
  background-color: #404547;
}

.nowrap {
  white-space: nowrap;
}

.green {
  color: #19914b;
}

.white {
  color: #fff;
}

.black {
  color: #404547;
}

.cormorant {
  font-family: "Cormorant", serif;
}

.bold {
  font-weight: 700;
}

.no-margin {
  margin: 0;
}

.underline {
  text-decoration: underline;
}

.hidden {
  display: none;
}

.flip-up {
  -webkit-animation: flip-up 0.8s ease-out forwards;
          animation: flip-up 0.8s ease-out forwards;
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  opacity: 1;
}

.flip-down {
  -webkit-animation: flip-down 0.8s ease-out forwards;
          animation: flip-down 0.8s ease-out forwards;
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  opacity: 1;
}

.flip-left {
  -webkit-animation: flip-left 0.8s ease-out forwards;
          animation: flip-left 0.8s ease-out forwards;
  -webkit-transform-origin: center left;
          transform-origin: center left;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  opacity: 1;
}

.flip-right {
  -webkit-animation: flip-right 0.8s ease-out forwards;
          animation: flip-right 0.8s ease-out forwards;
  -webkit-transform-origin: center right;
          transform-origin: center right;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  opacity: 1;
}

.fade-up {
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-animation: fade-up 0.3s ease-out forwards;
          animation: fade-up 0.3s ease-out forwards;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.link {
  text-decoration: underline;
  color: #19914b;
}

.pagination {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .pagination {
    padding-inline: 4%;
  }
}
.pagination .wp-pagenavi {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .pagination .wp-pagenavi {
    gap: 5px;
  }
}
.pagination .wp-pagenavi span,
.pagination .wp-pagenavi a {
  display: block;
  width: 75px;
  height: 75px;
  border: 3px solid #404547;
  border-radius: 50%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-size: 2rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .pagination .wp-pagenavi span,
  .pagination .wp-pagenavi a {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}
.pagination .wp-pagenavi a:hover {
  background-color: #404547;
  color: #fff;
  opacity: 0.8;
  border: none;
}
.pagination .wp-pagenavi .current {
  background-color: #404547;
  border-radius: 50%;
  border: 3px solid #404547;
  color: #fff;
}
.pagination .wp-pagenavi .ellipsis {
  border: none;
  height: 5px;
  font-size: 3rem;
  margin-top: -20px;
}
@media screen and (max-width: 767px) {
  .pagination .wp-pagenavi .ellipsis {
    font-size: 20px;
  }
}
.pagination .link {
  width: 75px;
  height: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagination .link:hover::before {
  -webkit-filter: brightness(1) invert(1);
          filter: brightness(1) invert(1);
}
.pagination .nextpostslink {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.pagination .nextpostslink::before {
  content: "";
  background: url("../public/img/icons/caret.svg") center/contain no-repeat;
  display: block;
  width: 16px;
  height: 16px;
}
.pagination .previouspostslink {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.pagination .previouspostslink::before {
  content: "";
  background: url("../public/img/icons/caret.svg") center/contain no-repeat;
  display: block;
  width: 16px;
  height: 16px;
}

@-webkit-keyframes flip-up {
  0% {
    opacity: 0;
    -webkit-transform: rotateX(180deg);
            transform: rotateX(180deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
  }
}

@keyframes flip-up {
  0% {
    opacity: 0;
    -webkit-transform: rotateX(180deg);
            transform: rotateX(180deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
  }
}
@-webkit-keyframes flip-down {
  0% {
    opacity: 0;
    -webkit-transform: rotateX(-180deg);
            transform: rotateX(-180deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
  }
}
@keyframes flip-down {
  0% {
    opacity: 0;
    -webkit-transform: rotateX(-180deg);
            transform: rotateX(-180deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
  }
}
@-webkit-keyframes flip-left {
  0% {
    opacity: 0;
    -webkit-transform: rotateY(-180deg);
            transform: rotateY(-180deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}
@keyframes flip-left {
  0% {
    opacity: 0;
    -webkit-transform: rotateY(-180deg);
            transform: rotateY(-180deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}
@-webkit-keyframes flip-right {
  0% {
    opacity: 0;
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}
@keyframes flip-right {
  0% {
    opacity: 0;
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}
@-webkit-keyframes fade-up {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fade-up {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}