:root {
  --font-jp:
    "Zen Kaku Gothic Antique", "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    "Noto Sans JP", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  --font-en:
    "Montserrat", "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial,
    sans-serif;
}

body {
  font-family: var(--font-jp);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.header {
  padding: 48px 48px 0 96px;
  position: fixed;
  display: flex;
  justify-content: space-between;
  width: 100%;
  z-index: 100;
  color: #4d4d4d;
}
.header > a {
  color: inherit;
  text-decoration: none;
}
.header > a > p {
  font-size: 16px;
  margin-bottom: 12px;
  margin-top: 0;
}
.header .menu {
  width: 80px;
  height: 80px;
  background-color: #ea5b39;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.header .menu > span {
  background-color: #fff;
  height: 2px;
  width: 32px;
}
.header .menu:hover {
  transform: scale(1.1);
}
.header .open-menu {
  background-color: #ff8b48;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  display: none;
  position: fixed;
  top: -115px;
  right: -115px;
  z-index: 101;
}
.header .open-menu.is-open {
  display: block;
}
.header .open-menu > svg {
  width: 32px;
  height: 24px;
  position: absolute;
  top: 191px;
  right: 187px;
  cursor: pointer;
}
.header .open-menu > ul {
  color: #fff;
  position: absolute;
  top: 300px;
  left: 162px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.header .open-menu > ul > a {
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
.header .open-menu > ul > a > svg {
  margin-left: 16px;
  transition: transform 0.3s ease;
}
.header .open-menu > ul > a:hover:not(.is-disabled) > svg {
  transform: translateX(8px);
}
.header .open-menu > ul > a.is-disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: default;
  font-weight: 500;
}

.footer {
  background-color: #ea5b39;
  color: #fff;
  height: 320px;
  position: relative;
}
.footer .contact-section {
  width: 864px;
  max-width: 80%;
  height: 262px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -150px;
  color: #4d4d4d;
  border: #d1d1d1 2px solid;
  display: flex;
  flex-direction: column;
  padding: 45px 95px 76px 137px;
  border-radius: 999px;
  background-color: #fff;
  background-image: url("../images/contact-bg.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  overflow: hidden;
  text-decoration: none;
  box-sizing: border-box;
}
.footer .contact-section:hover > div > div::before,
.footer .contact-section:hover > div > div > svg {
  transform: translateX(16px);
}
.footer .contact-section > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 634px;
}
.footer .contact-section > div > h3 {
  font-size: 44px;
  color: #ff8b48;
  font-weight: bold;
  margin-bottom: 10px;
}
.footer .contact-section > div > div {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  gap: 24px;
  background-color: transparent;
  width: 206px;
  height: 134px;
}
.footer .contact-section > div > div::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 100%;
  background-color: #f2a7a1;
  transition: transform 0.3s ease;
}
.footer .contact-section > div > div > p {
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: bold;
  color: #4d4d4d;
  font-family: var(--font-en);
}
.footer .contact-section > div > div > svg {
  position: relative;
  z-index: 1;
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.footer .contact-section > p {
  letter-spacing: 0.03em;
  margin-top: -16px;
  position: relative;
  z-index: 1;
}
.footer > .inner {
  max-width: 988px;
  margin: 0 auto;
  padding-top: 230px;
}
.footer > .inner > div {
  display: flex;
  align-items: center;
}
.footer > .inner > div > a {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: bold;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: text-decoration-color 0.2s ease;
}
.footer > .inner > div > a:nth-child(2), .footer > .inner > div > a:nth-child(3) {
  margin-left: 24px;
  padding-left: 24px;
  position: relative;
}
.footer > .inner > div > a:nth-child(2)::before, .footer > .inner > div > a:nth-child(3)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 1em;
  background-color: #fff;
}
.footer > .inner > div > a:nth-child(1):hover, .footer > .inner > div > a:nth-child(2):hover, .footer > .inner > div > a:nth-child(3):hover {
  text-decoration-color: #fff;
}
.footer > .inner > div > a:last-child {
  margin-left: auto;
  font-family: var(--font-en);
  font-size: 18px;
  text-decoration: none;
  gap: 16px;
}
.footer > .inner > div > a:last-child > svg {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.footer > .inner > div > a:last-child:hover > svg {
  transform: translateY(-8px);
}
.footer > .inner > small {
  display: block;
  margin-top: 16px;
}

.contact-link {
  width: 240px;
  height: 80px;
  background: transparent;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  background-color: #ea5b39;
  color: #fff;
  letter-spacing: 0.1em;
  font-size: 24px;
  font-family: var(--font-en);
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 40px 0 0 40px;
  position: fixed;
  right: 0;
  bottom: 50px;
  z-index: 100;
}
.contact-link:link, .contact-link:visited, .contact-link:hover, .contact-link:active {
  color: #fff;
}
.contact-link:hover {
  transform: translateX(15px);
}
.contact-link.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(100%);
}

main {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
main .parallax-line {
  position: absolute;
  top: 0;
  width: 233px;
  height: 20721px;
  pointer-events: none;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: 233px auto;
  background-position: left top;
  background-image: url("../images/line.png");
  background-image: url("../images/line.webp");
  will-change: transform;
  transform: translate3d(0, 0, 0);
  contain: layout style paint;
}
main .parallax-line--left {
  left: -36px;
  top: -780px;
}
main .parallax-line--right {
  right: -36px;
  top: -2200px;
}

.home .section-1 {
  background-image: url("../images/bg.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
}
@media (min-width: 1239px) {
  .home .section-1 {
    background-size: 100% 650px;
  }
}
.home .section-1 {
  display: flex;
  background-color: #f9faf7;
}
.home .section-1 > img {
  margin-top: 148px;
  width: 100%;
  max-width: 949px;
  height: auto;
  align-self: flex-start;
}
.home .section-1 > h1 {
  display: flex;
  flex-direction: column;
  align-items: start;
  writing-mode: vertical-rl;
  margin-top: 176px;
}
.home .section-1 > h1 > span {
  background-color: #fff;
  padding: 0px;
  font-size: 42px;
  font-weight: 500;
  color: #4d4d4d;
  letter-spacing: 0.12em;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.home .section-1 > h1 > span:last-of-type {
  margin-right: 24px;
  transition-delay: 0.35s;
}
.home .section-1 > h1.is-visible > span {
  opacity: 1;
}
.home .section-2 {
  background-color: #f9faf7;
  border-radius: 0 0 100% 100%;
  border: none;
  border-left: 1px solid #c6c6c6;
  border-right: 1px solid #c6c6c6;
  border-bottom: 1px solid #c6c6c6;
}
.home .section-2 > .inner {
  max-width: 864px;
  margin: 0 auto;
  padding: 180px 0 225px 0;
}
.home .section-2 > .inner > h2 {
  display: flex;
}
.home .section-2 > .inner > h2 > img:first-of-type {
  margin-right: 30px;
}
.home .section-2 > .inner > span {
  margin-top: 48px;
  font-family: var(--font-en);
  font-size: 32px;
  display: flex;
  align-items: center;
  color: #37abd8;
}
.home .section-2 > .inner > span > svg {
  margin-right: 16px;
}
.home .section-2 > .inner > p {
  margin-top: 24px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #4d4d4d;
}
.home .section-2 > .inner > p > span {
  font-weight: bold;
}
.home .section-2 > .inner .lease-image,
.home .section-2 > .inner .lease-image-sp {
  position: relative;
  margin: 80px auto 0;
}
.home .section-2 > .inner .lease-image > img,
.home .section-2 > .inner .lease-image-sp > img {
  display: block;
  width: 100%;
}
.home .section-2 > .inner .lease-image .lease-image__over,
.home .section-2 > .inner .lease-image-sp .lease-image__over {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center top;
     object-position: center top;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.home .section-2 > .inner .lease-image.is-visible .lease-image__over,
.home .section-2 > .inner .lease-image-sp.is-visible .lease-image__over {
  opacity: 1;
}
.home .section-2 > .inner .lease-image-sp {
  display: none;
}
.home .section-3 {
  margin-top: -60px;
}
.home .section-3 > .inner {
  max-width: 864px;
  margin: 0 auto;
}
.home .section-3 > .inner > h2 {
  font-size: 63px;
  font-family: var(--font-en);
  font-weight: bold;
  color: #ff8b48;
}
.home .section-3 > .inner > h2 > img {
  margin-left: 28px;
}
.home .section-3 > .inner > p {
  color: #4d4d4d;
  font-size: 44px;
  font-weight: bold;
  margin-top: 52px;
  margin-bottom: 24px;
}
.home .section-3 > .inner > span {
  letter-spacing: 0.02em;
  line-height: 32px;
  color: #4d4d4d;
}
.home .section-3 > .inner .system-image {
  position: relative;
  margin: 162px auto 0;
}
.home .section-3 > .inner .system-image > img {
  display: block;
  width: 100%;
}
.home .section-3 > .inner .system-image > img.sp-only {
  display: none;
}
.home .section-3 > .inner .system-image .system-image__over {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center top;
     object-position: center top;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.home .section-3 > .inner .system-image.is-visible .system-image__over {
  opacity: 1;
}
.home .section-4 {
  margin-top: 162px;
}
.home .section-4 > .inner {
  max-width: 864px;
  margin: 0 auto;
}
.home .section-4 > .inner > h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  font-size: 32px;
  font-weight: bold;
  color: #4d4d4d;
  letter-spacing: 0.04em;
}
.home .section-4 > .inner > h2 > img {
  margin-left: 18px;
}
.home .section-4 > .inner .section-4-image {
  position: relative;
  margin: 24px auto 0;
}
.home .section-4 > .inner .section-4-image > img {
  display: block;
  width: 100%;
}
.home .section-4 > .inner .section-4-image > img.sp-only {
  display: none;
}
.home .section-4 > .inner .section-4-image .section-4-image__over {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center top;
     object-position: center top;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.home .section-4 > .inner .section-4-image.is-visible .section-4-image__over {
  opacity: 1;
}
.home .section-5 {
  background-image: url("../images/how-bg.png");
  background-size: 110% 656px;
  background-repeat: no-repeat;
  background-position: center 190px;
  margin-top: 360px;
}
.home .section-5 > .inner {
  max-width: 918px;
  margin: 0 auto;
}
.home .section-5 > .inner > h2 {
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: bold;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #ff8b48;
}
.home .section-5 > .inner > .pc-only {
  margin-top: 123px;
  display: flex;
}
.home .section-5 > .inner > .pc-only.sp-only {
  display: none;
}
.home .section-5 > .inner > .pc-only > ul {
  color: #4d4d4d;
}
.home .section-5 > .inner > .pc-only > ul:nth-of-type(1) {
  font-size: 64px;
  font-weight: regular;
  font-family: var(--font-en);
  display: flex;
  flex-direction: column;
  margin-left: 9px;
}
.home .section-5 > .inner > .pc-only > ul:nth-of-type(1) li:nth-of-type(even) {
  padding-left: 40px;
}
.home .section-5 > .inner > .pc-only > ul:nth-of-type(1) svg {
  margin-left: 42px;
}
.home .section-5 > .inner > .pc-only > ul:nth-of-type(1) svg:nth-of-type(even) {
  margin-left: 46px;
}
.home .section-5 > .inner > .pc-only > ul:nth-of-type(1) svg:nth-of-type(1) {
  margin-top: 7px;
  margin-bottom: 3px;
}
.home .section-5 > .inner > .pc-only > ul:nth-of-type(1) svg:nth-of-type(2) {
  margin-top: 15px;
  margin-bottom: 12px;
}
.home .section-5 > .inner > .pc-only > ul:nth-of-type(1) svg:nth-of-type(3) {
  margin-top: 12px;
  margin-bottom: 16px;
}
.home .section-5 > .inner > .pc-only > ul:nth-of-type(1) svg:nth-of-type(4) {
  margin-top: 15px;
  margin-bottom: 12px;
}
.home .section-5 > .inner > .pc-only > ul:nth-of-type(2) {
  display: flex;
  flex-direction: column;
  gap: 54px;
}
.home .section-5 > .inner > .pc-only > ul:nth-of-type(2) > li span {
  font-size: 24px;
  font-weight: bold;
  display: block;
  letter-spacing: 0.02em;
}
.home .section-5 > .inner > .pc-only > ul:nth-of-type(2) > li span:last-of-type {
  font-size: 18px;
  font-weight: 400;
  padding-top: 16px;
  line-height: 32px;
}
.home .section-5 > .inner > .pc-only > ul:nth-of-type(2) > li:nth-of-type(even) {
  margin-left: 40px;
}
.home .section-5 > .inner > .pc-only .how-image {
  position: relative;
}
.home .section-5 > .inner > .pc-only .how-image > img {
  display: block;
  width: 100%;
}
.home .section-5 > .inner > .pc-only .how-image .how-image__over {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center top;
     object-position: center top;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.home .section-5 > .inner > .pc-only .how-image.is-visible .how-image__over {
  opacity: 1;
}
.home .section-6 {
  margin-top: 360px;
  background-image: url("../images/faq-bg.png");
  background-size: 110% auto;
  background-repeat: no-repeat;
  background-position: center 140px;
}
.home .section-6 > .inner {
  max-width: 865px;
  margin: 0 auto;
}
.home .section-6 > .inner > h2 {
  text-align: center;
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: bold;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #ff8b48;
}
.home .section-6 > .inner > ul {
  margin-top: 123px;
}
.home .section-6 > .inner > ul > li {
  padding: 17px 32px 16px 23px;
  border-bottom: 2px solid #c6c6c6;
  cursor: pointer;
}
.home .section-6 > .inner > ul > li:first-of-type {
  border-top: 2px solid #c6c6c6;
}
.home .section-6 > .inner > ul > li > div {
  color: #4d4d4d;
}
.home .section-6 > .inner > ul > li > div:first-of-type {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 18px;
  font-weight: bold;
  color: #4d4d4d;
}
.home .section-6 > .inner > ul > li > div:first-of-type svg:first-of-type {
  flex-shrink: 0;
}
.home .section-6 > .inner > ul > li > div:first-of-type svg:last-of-type {
  flex-shrink: 0;
  margin-left: auto;
  transition: transform 0.3s ease;
  transform-origin: center;
}
.home .section-6 > .inner > ul > li > div:last-of-type {
  display: none;
  padding: 24px 30px 0 0;
  line-height: 32px;
  letter-spacing: 0.02em;
  gap: 32px;
}
.home .section-6 > .inner > ul > li > div:last-of-type svg {
  flex-shrink: 0;
  width: 34px;
}
.home .section-6 > .inner > ul > li > div:last-of-type > div {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.home .section-6 > .inner > ul > li > div:last-of-type > div > img {
  margin-left: auto;
  margin-right: 20px;
  max-width: 480px;
}
.home .section-6 > .inner > ul > li.is-open > div:first-of-type svg:last-of-type {
  transform: rotate(180deg);
}
.home .section-6 > .inner > ul > li.is-open > div:last-of-type {
  display: flex;
}
.home .section-7 {
  margin-top: 350px;
  padding-bottom: 350px;
  background-image: url("../images/access-bg.png");
  background-size: 110% auto;
  background-repeat: no-repeat;
  background-position: center 40px;
}
.home .section-7 > .inner {
  max-width: 984px;
  margin: 0 auto;
  padding-bottom: 50px;
}
.home .section-7 > .inner > h2 {
  text-align: center;
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: bold;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #ff8b48;
}
.home .section-7 > .inner > div {
  margin-top: 123px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: #4d4d4d;
}
.home .section-7 > .inner > div > div:first-of-type {
  max-width: 456px;
}
.home .section-7 > .inner > div > div:first-of-type > h3 {
  font-size: 17px;
  font-weight: medium;
  line-height: 32px;
}
.home .section-7 > .inner > div > div:first-of-type > span {
  font-size: 20px;
  font-weight: bold;
  line-height: 32px;
}
.home .section-7 > .inner > div > div:first-of-type > ul {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.home .section-7 > .inner > div > div:first-of-type > ul > li {
  display: flex;
  align-items: center;
}
.home .section-7 > .inner > div > div:first-of-type > ul > li > span {
  letter-spacing: 0.02em;
}
.home .section-7 > .inner > div > div:first-of-type > ul > li > span:first-of-type {
  font-weight: bold;
  width: 68px;
  flex-shrink: 0;
}
.home .section-7 > .inner > div > div:first-of-type > ul > li > span:last-of-type {
  margin-left: 24px;
  font-weight: 500;
  line-height: 27px;
}
.home .section-7 > .inner > div > div:first-of-type > ul > li > a {
  margin-left: 24px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0.02em;
  color: inherit;
  text-decoration: none;
}
.home .section-7 > .inner > div > div.map {
  width: 480px;
  height: 400px;
  box-shadow: 8px 8px 0 0 #4d4d4d;
}
.home .section-7 > .inner > div > div.map > iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.home .section-8 .inner {
  max-width: 864px;
  margin: 0 auto;
  padding-bottom: 506px;
  color: #4d4d4d;
  background-image: url("../images/pdf-bg.png");
  background-repeat: no-repeat;
}
.home .section-8 .inner > div {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 118px 0;
  gap: 24px;
}
.home .section-8 .inner > div > div > h3 {
  font-size: 32px;
  margin-bottom: 16px;
  margin-top: 0;
  font-weight: bold;
  padding: 0;
}
.home .section-8 .inner > div > a {
  background-color: #37abd8;
  font-size: 24px;
  color: #fff;
  width: 280px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  border-radius: 100px;
  font-family: var(--font-en);
  font-weight: bold;
  position: relative;
  text-decoration: none;
}
.home .section-8 .inner > div > a .arrow {
  position: absolute;
  transition: all 0.3s ease;
  right: 98px;
  top: 20px;
}
.home .section-8 .inner > div > a:hover .arrow {
  transform: translateY(2px);
}

.sp-only {
  display: none;
}

@media (max-width: 1139px) {
  main .parallax-line {
    width: 180px;
    height: 16007px;
    background-size: 180px auto;
  }
  .home .section-1 > img {
    width: 80%;
  }
  .home .section-1 > h1 {
    transform: scale(0.8);
  }
  .home .section-2 > .inner {
    padding: 180px 40px 225px;
  }
  .home .section-3 > .inner {
    padding: 0 40px;
  }
  .home .section-4 > .inner {
    padding: 0 40px;
  }
  .home .section-5 > .inner {
    padding: 0 40px;
  }
  .home .section-6 > .inner {
    padding: 0 40px;
  }
  .home .section-7 > .inner {
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .sp-only {
    display: block;
  }
  .pc-only {
    display: none;
  }
  body {
    overflow-x: hidden;
  }
  .header {
    padding: 35px 14px 0 28px;
  }
  .header > a > p {
    font-size: 11px;
    line-height: 18px;
    margin-bottom: 8px;
  }
  .header > a > img {
    width: 120px;
  }
  .header .menu {
    width: 56px;
    height: 56px;
    gap: 6px;
  }
  .header .menu > span {
    width: 24px;
  }
  .header .open-menu {
    top: -195px;
    right: -195px;
  }
  .header .open-menu > svg {
    top: 255px;
    right: 223px;
  }
  .header .open-menu > ul {
    left: 150px;
  }
  .header .open-menu > ul > a {
    font-size: 18px;
  }
  .footer {
    height: auto;
  }
  .footer .contact-section {
    width: 386px;
    height: 144px;
    padding: 18px 66px 0;
    top: -100px;
    max-width: 100%;
  }
  .footer .contact-section > div {
    width: auto;
  }
  .footer .contact-section > div > h3 {
    font-size: 22px;
  }
  .footer .contact-section > div > div {
    width: 82px;
    height: 60px;
    gap: 12px;
  }
  .footer .contact-section > div > div > p {
    font-size: 12px;
    transform: translateX(-20px);
  }
  .footer .contact-section > div > div > svg {
    transform: translateX(-20px);
    width: 13px;
    height: 13px;
    min-width: 13px;
    min-height: 13px;
    flex: 0 0 13px;
  }
  .footer .contact-section:hover > div > div::before {
    transform: translateX(16px);
  }
  .footer .contact-section:hover > div > div > svg {
    transform: translateX(-4px);
  }
  .footer .contact-section > p {
    font-size: 12px;
    line-height: 22px;
    margin-top: 0;
  }
  .footer > .inner {
    padding: 136px 44px 24px;
  }
  .footer > .inner > div {
    flex-direction: column;
    align-items: self-start;
    gap: 12px;
    position: relative;
  }
  .footer > .inner > div > a {
    font-weight: 400;
    font-size: 14px;
  }
  .footer > .inner > div > a > span.pc-only {
    display: none;
  }
  .footer > .inner > div > a:nth-child(2), .footer > .inner > div > a:nth-child(3) {
    margin-left: 0;
    padding-left: 0;
  }
  .footer > .inner > div > a:nth-child(2)::before, .footer > .inner > div > a:nth-child(3)::before {
    display: none;
  }
  .footer > .inner > div > a:last-child {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    flex-direction: column-reverse;
  }
  .footer > .inner > div > a:last-child > svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }
  .footer > .inner > small {
    margin-top: 40px;
  }
  .contact-link {
    width: 193px;
    height: 64px;
    font-size: 21px;
  }
  main .parallax-line {
    width: 105px;
    height: 9338px;
    background-size: 105px auto;
    background-image: url("../images/line-sp.png");
    background-image: url("../images/line-sp.webp");
  }
  main .parallax-line--left {
    left: -36px;
    top: -700px;
  }
  main .parallax-line--right {
    right: -36px;
    top: 150px;
  }
  .home .section-1 {
    position: relative;
    background-size: auto 330px;
    background-position: calc(50% + 20px) -60px;
    z-index: 1;
    justify-content: center;
  }
  .home .section-1 > img {
    width: 110%;
    height: auto;
    max-width: 454px;
    margin-top: 176px;
    align-self: center;
  }
  .home .section-1 > h1 {
    position: absolute;
    right: 44px;
    margin-top: 152px;
  }
  .home .section-1 > h1 > span {
    font-size: 16px;
    padding: 2px;
    letter-spacing: 0.12em;
  }
  .home .section-1 > h1 > span:last-of-type {
    margin-right: 10px;
  }
  .home .section-2 {
    position: relative;
    z-index: 1;
    border-radius: 0;
    border: none;
    margin-bottom: 0;
    overflow: hidden;
    background-color: transparent;
  }
  .home .section-2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 400px;
    z-index: 1;
    background-color: #f9faf7;
    border-left: 1px solid #c6c6c6;
    border-right: 1px solid #c6c6c6;
    pointer-events: none;
  }
  .home .section-2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 0;
    width: 800px;
    height: 800px;
    margin-left: -400px;
    border-radius: 50%;
    background-color: #f9faf7;
    border: 1px solid #c6c6c6;
    box-sizing: border-box;
    pointer-events: none;
  }
  .home .section-2 > .inner {
    position: relative;
    z-index: 2;
    padding: 234px 0 164px 0;
  }
  .home .section-2 > .inner > h2.pc-only {
    display: none;
  }
  .home .section-2 > .inner > span.pc-only {
    display: none;
  }
  .home .section-2 > .inner > img {
    padding: 0 28px;
  }
  .home .section-2 > .inner > p {
    line-height: 30px;
    font-size: 16px;
    margin-top: 40px;
    padding: 0 28px;
  }
  .home .section-2 > .inner .lease-image {
    display: none;
  }
  .home .section-2 > .inner .lease-image-sp {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .home .section-2 > .inner .lease-image-sp > img {
    flex-shrink: 0;
    width: 487px;
    max-width: none;
    height: auto;
  }
  .home .section-2 > .inner .lease-image-sp .lease-image__over {
    inset: auto;
    top: 0;
    left: 50%;
    width: 487px;
    height: 100%;
    transform: translateX(-50%);
  }
  .home .section-3 {
    position: relative;
    z-index: 0;
    margin-top: 12px;
  }
  .home .section-3 > .inner {
    padding: 0 28px;
  }
  .home .section-3 > .inner > h2 {
    font-size: 40px;
  }
  .home .section-3 > .inner > h2 > img {
    width: 32px;
    margin-left: 14px;
  }
  .home .section-3 > .inner > p {
    font-size: 26px;
    margin-bottom: 32px;
    margin-top: 32px;
  }
  .home .section-3 > .inner > span {
    font-size: 16px;
  }
  .home .section-3 > .inner .system-image {
    margin-top: 88px;
  }
  .home .section-3 > .inner .system-image > img.pc-only {
    display: none;
  }
  .home .section-3 > .inner .system-image > img.sp-only {
    display: block;
  }
  .home .section-4 {
    margin-top: 100px;
  }
  .home .section-4 > .inner {
    padding: 0;
  }
  .home .section-4 > .inner > h2 {
    gap: 15px;
    font-size: 26px;
    line-height: 48px;
    text-align: center;
  }
  .home .section-4 > .inner .section-4-image {
    padding: 0 28px;
  }
  .home .section-4 > .inner .section-4-image > img.pc-only {
    display: none;
  }
  .home .section-4 > .inner .section-4-image > img.sp-only {
    display: block;
  }
  .home .section-4 > .inner .section-4-image > img.section-4-image__over {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    max-width: 326px;
    margin: 0 auto;
  }
  .home .section-5 {
    margin-top: 200px;
    background-image: url("../images/how-bg-sp.png");
    background-size: 110% 824px;
    background-position: center 230px;
    background-repeat: no-repeat;
  }
  .home .section-5 > .inner {
    padding: 0;
  }
  .home .section-5 > .inner > h2 {
    font-size: 35px;
  }
  .home .section-5 > .inner > div.pc-only {
    display: none;
  }
  .home .section-5 > .inner > div.sp-only {
    display: block;
    margin-top: 70px;
    padding: 0 28px;
  }
  .home .section-5 > .inner > div.sp-only > svg {
    display: block;
    margin: 0 auto;
  }
  .home .section-5 > .inner > div.sp-only > ul {
    margin-top: 38px;
    color: #4d4d4d;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .home .section-5 > .inner > div.sp-only > ul > li > h4 {
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
  }
  .home .section-5 > .inner > div.sp-only > ul > li > h4 > span {
    color: #68a772;
    font-size: 48px;
    font-family: var(--font-en);
    font-weight: 500;
    margin-right: 18px;
  }
  .home .section-5 > .inner > div.sp-only > ul > li > p {
    font-size: 16px;
    padding-left: 16px;
    line-height: 30px;
    margin-top: 16px;
  }
  .home .section-5 > .inner > div.sp-only > img {
    margin: 40px auto 0;
    display: block;
    opacity: 0;
    transition: opacity 1.2s ease;
  }
  .home .section-5 > .inner > div.sp-only > img.is-visible {
    opacity: 1;
  }
  .home .section-6 {
    margin-top: 200px;
    background-image: url("../images/faq-bg-sp.png");
    background-size: 110% auto;
    background-position: center 65px;
    background-repeat: no-repeat;
  }
  .home .section-6 > .inner {
    padding: 0;
  }
  .home .section-6 > .inner > h2 {
    font-size: 35px;
  }
  .home .section-6 > .inner > ul {
    padding: 0 24px;
  }
  .home .section-6 > .inner > ul > li {
    padding: 32px 8px;
  }
  .home .section-6 > .inner > ul > li > div:first-of-type {
    font-size: 16px;
    line-height: 30px;
    align-items: flex-start;
  }
  .home .section-6 > .inner > ul > li > div:first-of-type svg:first-of-type {
    width: 34px;
  }
  .home .section-6 > .inner > ul > li > div:first-of-type svg:last-of-type {
    width: 20px;
  }
  .home .section-6 > .inner > ul > li > div:last-of-type > div > img {
    max-width: 100%;
  }
  .home .section-7 {
    margin-top: 200px;
    padding-bottom: 200px;
    background-image: url("../images/access-bg-sp.png");
    background-size: 110% auto;
    background-position: center 42px;
    background-repeat: no-repeat;
  }
  .home .section-7 > .inner {
    padding: 0 44px;
  }
  .home .section-7 > .inner > h2 {
    font-size: 35px;
  }
  .home .section-7 > .inner > div {
    margin-top: 114px;
    flex-direction: column;
  }
  .home .section-7 > .inner > div > div.map {
    width: 100%;
    max-width: 100%;
  }
  .home .section-8 {
    padding: 0;
  }
  .home .section-8 > .inner {
    padding: 0 28px 272px;
    background-image: url("../images/pdf-bg-sp.png");
    background-position: center top;
  }
  .home .section-8 > .inner > div {
    flex-direction: column;
    align-items: center;
    padding: 68px 0 0;
  }
  .home .section-8 > .inner > div > div > h3 {
    font-size: 20px;
    margin-top: 0;
  }
  .home .section-8 > .inner > div > div > p {
    font-size: 14px;
    line-height: 26px;
    text-align: center;
    margin: 0;
  }
  .home .section-8 > .inner > div > a {
    width: 170px;
    height: 48px;
    font-size: 16px;
  }
  .home .section-8 > .inner > div > a .arrow {
    right: 55px;
    top: 12px;
  }
  .home .section-8 > .inner > div > a > svg:first-of-type {
    display: none;
  }
  .home .section-8 > .inner > div > a > svg:nth-of-type(2) {
    display: none;
  }
}/*# sourceMappingURL=home.css.map */