@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Sofia+Sans+Extra+Condensed:ital,wght@0,1..1000;1,1..1000&display=swap");
/********************************
* モバイルファースト
********************************/
/********************************
* em ベース
********************************/
/*
$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

1em = 16px
*/
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
html {
  font-size: 62.5%;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media (min-width: 1200px) {
  html {
    font-size: 56.25%;
  }
}
@media (min-width: 768px) {
  html {
    font-size: 50%;
  }
}
@media (min-width: 600px) {
  html {
    font-size: 62.5%;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  background-color: #f6f3e9;
}

textarea {
  resize: none;
}

img {
  width: 100%;
}

a {
  cursor: pointer;
}

.tab-br {
  display: none;
}
@media (min-width: 768px) {
  .tab-br {
    display: block;
  }
}

.sp-br {
  display: block;
}
@media (min-width: 768px) {
  .sp-br {
    display: none;
  }
}

.tel-font {
  font-family: "Sofia Sans Extra Condensed", sans-serif;
}

.red-hat {
  font-family: "Red Hat Display", sans-serif;
}

.zen-kaku {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.c-btn__style {
  display: block;
  padding: 0.8em 0;
  border-radius: 50px;
  color: #fff;
  background-color: #17b27e;
  font-size: 1.6rem;
  text-align: center;
  width: 20rem;
  margin: 0 auto;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s ease-in, box-shadow 0.3s ease-in-out;
}
.c-btn__style:hover {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .c-btn__style {
    width: 20rem;
  }
}
.c-btn__style::before, .c-btn__style::after {
  content: "";
  display: block;
  position: absolute;
  border-color: #fff;
  border-style: solid;
  height: 0;
  top: 1px;
  bottom: 0;
  right: 1em;
  margin: auto 0;
  transition: transform 0.3s ease-in;
}
.c-btn__style::before {
  width: 11px;
  border-width: 2px 0 0 0;
  transform: translateX(0);
}
.c-btn__style::after {
  width: 6px;
  height: 6px;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg) translateX(0);
}
.c-btn__style:hover::before {
  transform: translateX(8px);
}
.c-btn__style:hover::after {
  transform: translateX(8px) rotate(45deg);
}

/********************************
* フォーム用ボタン
********************************/
.form-btn__style {
  display: block;
  padding: 0.8em 0;
  border-radius: 50px;
  color: #fff;
  background-color: #17b27e;
  font-size: 1.6rem;
  text-align: center;
  width: 20rem;
  margin: 0 auto;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s ease-in, box-shadow 0.3s ease-in-out;
}
.form-btn__style:hover {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .form-btn__style {
    width: 20rem;
  }
}

.c-page-title {
  padding: 11.2rem 2.4rem 6.3rem;
  font-size: clamp(32px, 4vw, 55px);
  font-weight: bold;
  color: #17b27e;
}
@media (min-width: 768px) {
  .c-page-title {
    max-width: 110rem;
    width: 100%;
    margin: 0 auto;
    padding: 22rem 2.4rem 0;
  }
}

.header {
  position: relative;
  z-index: 1000;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1rem;
  position: fixed;
  width: 100%;
  z-index: 2000;
  background-color: #f6f3e9;
  transition: box-shadow 0.3s ease;
}
@media (min-width: 768px) {
  .header__inner {
    padding: 2rem 3rem;
  }
}
.header.is-scrolled .header__inner {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header.is-active .header__inner {
  background-color: transparent !important;
  box-shadow: none !important;
}
.header.is-active .header__inner .header__logo img {
  display: none;
}
.header__logo {
  position: relative;
  z-index: 2000;
}
@media (min-width: 1200px) {
  .header__logo {
    padding-left: 3rem;
  }
}
.header__logo-wrap {
  display: flex;
  align-items: center;
  max-width: 55%;
  width: 100%;
}
@media (min-width: 768px) {
  .header__logo-wrap {
    max-width: 50%;
  }
}
@media (min-width: 1200px) {
  .header__logo-wrap {
    max-width: 46%;
  }
}
.header__logo-text {
  font-size: 1rem;
}
.header__logo a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.header__logo img {
  max-width: 20rem;
  width: 100%;
}
@media (min-width: 768px) {
  .header__logo img {
    max-width: 41rem;
  }
}
.header__title {
  font-size: 2.6rem;
  color: #17b27e;
}
@media (min-width: 1200px) {
  .header__title {
    display: block;
  }
}
.header__title-sub {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}
.header__nav, .header__btn {
  display: none;
}
@media (min-width: 1200px) {
  .header__nav, .header__btn {
    display: block;
  }
}
.header__nav {
  max-width: 44rem;
  width: 100%;
  margin-left: auto;
}
.header__nav-wrap {
  position: fixed;
  padding-top: 15rem;
  padding: 15rem 3rem 0 3rem;
  margin-left: auto;
  width: 100%;
}
.header__nav-list {
  display: flex;
  align-items: end;
  flex-direction: column;
  gap: 1.4rem;
}
@media (min-width: 768px) {
  .header__nav-list {
    margin-right: 4rem;
  }
}
.header__nav-item {
  font-size: 1.4rem;
  margin: 0 0 0 0.8rem;
}
.header__btn {
  background-color: #17b27e;
  font-size: 1.6rem;
  color: #fff;
  margin-right: 3rem;
  padding: 1.6rem 0;
  max-width: 16rem;
  width: 100%;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.header__btn img {
  width: 1.8rem;
  height: 1.3rem;
}
.header__tel {
  display: flex;
  align-items: center;
  justify-content: end;
  font-size: 3.6rem;
  gap: 0.8rem;
  width: 48rem;
}
.header__tel img {
  width: 1rem;
  height: 2rem;
}
@media (min-width: 768px) {
  .header__tel img {
    width: 2rem;
    height: 3rem;
  }
}
@media (min-width: 1200px) {
  .header__tel img {
    width: 1.7rem;
    height: 2.8rem;
  }
}
.header__tel .time-small {
  font-size: 1rem;
}
@media (min-width: 1200px) {
  .header__tel .time-small {
    font-size: 1.4rem;
  }
}
.header__tel-sp {
  display: block;
}
@media (min-width: 1200px) {
  .header__tel-sp {
    display: none;
  }
}
.header__tel-sp-link {
  display: flex;
  flex-direction: column;
  align-items: end;
  max-width: 11rem;
  width: 100%;
  gap: 0;
}
@media (min-width: 768px) {
  .header__tel-sp-link {
    max-width: 20rem;
  }
}
.header__tel-sp-content {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.header__tel-sp-content p {
  font-size: 2rem;
}
@media (min-width: 768px) {
  .header__tel-sp-content p {
    font-size: 3.2rem;
  }
}
.header__link-wrap {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header__container {
  display: none;
}
@media (min-width: 1200px) {
  .header__container {
    display: block;
  }
}
.header__container-sp {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
@media (min-width: 1200px) {
  .header__container-sp {
    display: none;
  }
}
.header .header__hamburger {
  position: relative;
  width: 23px;
  height: 20px;
  cursor: pointer;
  z-index: 2000;
}
@media (min-width: 1200px) {
  .header .header__hamburger {
    display: none;
  }
}
.header .header__hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 50px;
  background-color: #17b27e;
  margin: 5px 0;
  transition: all 0.3s ease;
}
.header .header__hamburger.is-active .header__hamburger-line:nth-child(1), .header .header__hamburger.is-active .header__hamburger-line:nth-child(3) {
  background-color: #fff;
}
.header .header__hamburger.is-active .header__hamburger-line:nth-child(1) {
  transform: rotate(30deg) translate(5px, 5px);
}
.header .header__hamburger.is-active .header__hamburger-line:nth-child(2) {
  opacity: 0;
}
.header .header__hamburger.is-active .header__hamburger-line:nth-child(3) {
  width: 100%;
  transform: rotate(-33deg) translate(5px, -5px);
}

.hamburger-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 499;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.hamburger-nav-overlay.is-active {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 1200px) {
  .hamburger-nav-overlay {
    display: none;
  }
}

.hamburger-nav {
  position: relative;
  pointer-events: auto;
  display: block;
}
@media (min-width: 1200px) {
  .hamburger-nav {
    display: none;
  }
}
.hamburger-nav__menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 30rem;
  height: 80vh;
  background: url("../img/hm-bg.png") no-repeat center center/cover;
  visibility: hidden;
  pointer-events: none;
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  padding-top: 12rem;
  text-align: center;
  z-index: 500;
  overflow-y: auto;
  border-radius: 0 0 0 50px;
  /* 初期状態：画面外 */
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.3s ease;
}
.hamburger-nav__menu.is-open {
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0%);
}
.hamburger-nav__menu-container {
  width: 100%;
  margin-right: auto;
  padding: 0 3rem;
}
.hamburger-nav__menu-item {
  border-top: 1px solid #fff;
}
.hamburger-nav__menu-item:last-of-type {
  border-bottom: 1px solid #fff;
  margin-bottom: 2rem;
}
.hamburger-nav__menu-item a {
  display: block;
  padding: 2rem 0;
  text-align: right;
}
.hamburger-nav__copy {
  text-align: end;
  padding: 0 3rem;
}

.footer {
  color: #17b27e;
  text-align: center;
  padding-bottom: 5rem;
}
.footer__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 4rem;
  text-align: center;
  padding-bottom: 4rem;
  max-width: 46rem;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .footer__container {
    gap: 5.3rem;
  }
}
.footer__logo {
  width: 10rem;
  height: auto;
  margin: 0 auto 2rem;
}
.footer__description p {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .footer__description p {
    font-size: 2.4rem;
  }
}
.footer__description span {
  font-size: 1rem;
}
.footer__address {
  font-size: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer__address-icon {
  display: block;
  width: 1rem;
}
.footer__address-icon--mail {
  width: 1.5rem;
}
.footer__address-tel, .footer__address-mail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.footer__address-detail {
  font-size: 1.4rem;
  line-height: 1.6;
}
.footer__copy {
  font-size: 1.3rem;
}

/********************************
* 共通項目
********************************/
h2 {
  color: #17b27e;
}

/********************************
* hero
********************************/
.hero {
  padding: 8rem 0 0.8rem;
}
@media (min-width: 768px) {
  .hero {
    padding: 20rem 0 0;
  }
}
@media (min-width: 1200px) {
  .hero {
    padding: 23rem 0 0;
  }
}
.hero__img-wrap {
  max-width: 28rem;
  margin: 0 auto;
  padding-bottom: 3rem;
  position: relative;
}
@media (min-width: 768px) {
  .hero__img-wrap {
    max-width: 73.5%;
    padding-bottom: 4rem;
  }
}
@media (min-width: 1200px) {
  .hero__img-wrap {
    max-width: 90rem;
    padding-bottom: 16.6rem;
  }
}
.hero__img-content {
  position: relative;
}
.hero__img-content__pc {
  display: none;
}
@media (min-width: 768px) {
  .hero__img-content__pc {
    display: block;
    position: absolute;
    top: 16.2%;
    left: 3.5%;
    right: 0;
    bottom: 0;
    z-index: 10;
    max-width: 48.5%;
  }
}
@media (min-width: 1200px) {
  .hero__img-content__pc {
    top: 14.2%;
  }
}
.hero__img-content__pc img {
  display: block;
  width: 100%;
  height: auto;
  position: absolute;
}
.hero .test-img {
  display: none;
}
@media (min-width: 768px) {
  .hero .test-img {
    display: block;
    position: absolute;
    top: 25%;
    left: 25%;
    right: 0;
    bottom: 0;
    z-index: 10;
    width: 5rem;
    height: 5rem;
    background-color: #fff;
  }
}
.hero__hukidashi-text {
  font-size: 1rem;
  color: #17b27e;
  position: absolute;
  top: 16%;
  left: -12%;
  z-index: 15;
}
@media (min-width: 768px) {
  .hero__hukidashi-text {
    font-size: 1.8229vw;
  }
}
@media (min-width: 1200px) {
  .hero__hukidashi-text {
    font-size: 1.6rem;
    top: 28%;
    left: -9%;
  }
}
.hero__hukidashi-text p {
  width: 100%;
  transform: translate(12%, 75%);
}
@media (min-width: 768px) {
  .hero__hukidashi-text p {
    transform: translate(12%, 65%);
  }
}
@media (min-width: 1200px) {
  .hero__hukidashi-text p {
    transform: translate(19%, 75%);
  }
}
.hero__hukidashi-text::before {
  content: "";
  background: url("../img/hukidashi-left.png") no-repeat center center/contain;
  display: block;
  width: 13.7rem;
  height: 7.2rem;
  position: absolute;
  z-index: -1;
}
@media (min-width: 768px) {
  .hero__hukidashi-text::before {
    width: 24.47vw;
    height: 12.109vw;
  }
}
@media (min-width: 1200px) {
  .hero__hukidashi-text::before {
    width: 24.2rem;
    height: 12rem;
  }
}
.hero__text-wrap {
  max-width: 60rem;
  margin: 0 auto;
  color: #17b27e;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
.hero__text-wrap__pc {
  display: none;
}
@media (min-width: 768px) {
  .hero__text-wrap__pc {
    display: block;
    max-width: 44%;
    width: 100%;
    color: #fff;
    position: absolute;
    top: 19%;
    left: 53%;
    right: 0;
    bottom: 0;
    z-index: 10;
  }
}
@media (min-width: 1200px) {
  .hero__text-wrap__pc {
    top: 22%;
  }
}
.hero__text-wrap__sp {
  display: block;
}
@media (min-width: 768px) {
  .hero__text-wrap__sp {
    display: none;
  }
}
.hero__catch {
  font-size: clamp(23px, 2.3vw, 48px);
  line-height: 1.5;
  padding: 0 2.4rem 1.6rem;
}
@media (min-width: 768px) {
  .hero__catch {
    font-size: 2.6vw;
    padding: 0 0 2rem 0;
  }
}
@media (min-width: 1200px) {
  .hero__catch {
    font-size: 3.2rem;
  }
}
.hero__text {
  font-size: 1.4rem;
  line-height: 1.6;
  padding: 0 2.4rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .hero__text {
    padding: 0 0 2rem 0;
    font-size: clamp(14px, 1.6vw, 16px);
  }
}
@media (min-width: 1200px) {
  .hero__text {
    font-size: 1.6vw;
    font-size: 1.6rem;
  }
}
.hero__text-company {
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .hero__text-company {
    font-size: clamp(16px, 2vw, 20px);
  }
}
@media (min-width: 1200px) {
  .hero__text-company {
    font-size: 2rem;
  }
}
.hero__text-company-icon {
  max-width: 7rem;
}
.hero__text-add {
  background-color: #fff;
  font-size: clamp(12px, 3vw, 16px);
  padding: 2em 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12.6rem;
  box-shadow: inset 0 0 0 1px #17b27e;
  border-radius: 50px;
  position: absolute;
  top: 10%;
  left: -15%;
}
@media (min-width: 768px) {
  .hero__text-add {
    width: 24.2rem;
    height: 9rem;
  }
}
.hero__text-add::after {
  content: "";
  display: block;
  width: 5rem;
  height: 10rem;
  background-color: #fff;
  box-shadow: inset 0 0 0 1px #17b27e;
  border-radius: 50px;
  position: absolute;
}
.hero__sp-scroll {
  max-width: 28rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-bottom: 14rem;
}
@media (min-width: 768px) {
  .hero__sp-scroll {
    padding-bottom: 23.4rem;
  }
}
@media (min-width: 1200px) {
  .hero__sp-scroll {
    padding-bottom: 34.4rem;
  }
}
.hero__sp-scroll-text {
  font-size: 1.2rem;
  color: #17b27e;
}
@media (min-width: 768px) {
  .hero__sp-scroll-text {
    font-size: 1.5rem;
  }
}
.hero__sp-scroll-border {
  position: relative;
  right: 0;
  top: 110px;
  writing-mode: vertical-rl;
}
.hero__sp-scroll-border::before {
  content: "";
  animation: scroll 2s infinite;
  background-color: #17b27e;
  top: -150px;
  bottom: 0;
  height: 60px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}
@media (min-width: 768px) {
  .hero__sp-scroll-border::before {
    top: -135px;
    height: 80px;
  }
}

/********************************
* top-about
********************************/
.top-about {
  padding: 0 2.4rem 10rem;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .top-about {
    padding: 0 2.4rem 12.6rem;
  }
}
@media (min-width: 1200px) {
  .top-about {
    padding: 0 2.7rem 28.3rem;
  }
}
.top-about__container {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
}
@media (min-width: 1200px) {
  .top-about__container {
    max-width: 106rem;
    margin: 0 auto;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
.top-about__img-large {
  max-width: 26.8rem;
  width: 100%;
  height: 29.5rem;
  margin-left: auto;
  padding-right: 1.2rem;
}
@media (min-width: 376px) {
  .top-about__img-large {
    max-width: clamp(25.8rem, 70vw, 49rem);
    height: auto;
  }
}
@media (min-width: 768px) {
  .top-about__img-large {
    padding-right: 0;
  }
}
.top-about__img-small {
  max-width: 14.8rem;
  width: 100%;
  height: 11.1rem;
  margin-top: -3rem;
  margin: -3rem 0 0 1.2rem;
}
@media (min-width: 376px) {
  .top-about__img-small {
    max-width: clamp(14.8rem, 45vw, 28rem);
    height: auto;
  }
}
@media (min-width: 768px) {
  .top-about__img-small {
    margin: -6rem 0 0 -8rem;
  }
}
.top-about__img-large img, .top-about__img-small img {
  border-radius: 15px;
}
.top-about__title {
  font-size: clamp(12px, 6vw, 30px);
  color: #17b27e;
  margin-bottom: 2.4rem;
  line-height: 1.9;
}
.top-about__text-wrap {
  max-width: 50rem;
  padding-bottom: 3rem;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .top-about__text-wrap {
    margin: 0;
  }
}
.top-about__text {
  font-size: 1.6rem;
  margin-bottom: 2.4rem;
  line-height: 1.8;
}
.top-about__text:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .top-about__content-right {
    max-width: 57rem;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .top-about__content-right {
    max-width: 45rem;
    margin: 0;
  }
}
@media (min-width: 768px) {
  .top-about__content-left {
    padding-top: 0.8rem;
  }
}
.top-about__btn {
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .top-about__btn {
    margin: 0 auto 0 0;
  }
}

/********************************
* top-info
********************************/
.top-info {
  padding: 0 2.4rem 14.4rem;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .top-info__banner {
    max-width: 103.8rem;
    width: 100%;
    margin: 0 auto;
    padding: 0 4rem 24.2rem 4rem;
  }
}
@media (min-width: 1200px) {
  .top-info__banner {
    padding: 0 4rem 13.2rem 4rem;
  }
}
.top-info__banner a {
  display: block;
  transition: transform 0.3s ease-in;
  transform: scale(1);
  padding-bottom: 10rem;
}
.top-info__banner a:hover {
  transform: scale(1.05);
}
.top-info__banner img {
  border-radius: 10px;
  transition: transform 0.3s ease-in, box-shadow 0.3s ease-in-out;
}
.top-info__banner img:hover {
  box-shadow: 5px 5px 7px rgba(0, 0, 0, 0.1);
}
.top-info__title-wrap {
  text-align: center;
  padding-bottom: 3.2rem;
}
.top-info__title {
  font-size: clamp(29px, 3vw, 34px);
}
.top-info__sub-title {
  display: block;
  padding-bottom: 1.4rem;
  font-size: clamp(19px, 3vw, 22px);
  color: #17b27e;
}
.top-info__slide-wrap {
  width: 100%;
  padding-bottom: 3.2rem;
}

/********************************
* top-slide-scroll
********************************/
.scroll-infinity {
  width: 100%;
  overflow: hidden;
  padding-bottom: 13.5rem;
}
.scroll-infinity__container, .scroll-infinity__list {
  display: flex;
  justify-content: flex-start;
}
.scroll-infinity__container {
  flex-shrink: 0;
}
.scroll-infinity__list {
  flex-shrink: 0;
  padding-right: 1rem;
  padding-right: min(2.666vw, 1.28rem);
  gap: 1rem;
  gap: min(3.46vw, 13px);
}
@media (min-width: 600px) {
  .scroll-infinity__list {
    gap: min(6.66vw, 40px);
    padding-right: min(6.66vw, 40px);
  }
}
.scroll-infinity__item {
  flex-shrink: 0;
  width: 10.4rem;
}
@media (min-width: 600px) {
  .scroll-infinity__item {
    width: 24.8rem;
  }
}
.scroll-infinity__item:nth-child(even) {
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .scroll-infinity__item {
    width: 26rem;
  }
}
.scroll-infinity__image {
  display: block;
  aspect-ratio: 104/144;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .scroll-infinity__image {
    border-radius: 2.4rem;
    border-radius: min(6.4vw, 3.072rem);
  }
}
.scroll-infinity__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-contact {
  padding: 0 2rem 24rem;
  max-width: 110rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .page-contact {
    padding: 0 2.5rem 36rem;
  }
}
.page-contact__title {
  padding-bottom: 3rem;
}
@media (min-width: 768px) {
  .page-contact__title {
    padding-bottom: 10rem;
  }
}
.page-contact__text {
  font-size: clamp(12px, 3vw, 16px);
  margin-bottom: 3rem;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .page-contact__text {
    margin-bottom: 9.8rem;
  }
}
.page-contact .contact-container {
  max-width: 78rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .page-contact .contact-container {
    padding: 0 2.8rem;
  }
}
.page-contact .contact-container h2 {
  font-size: 28px;
  text-align: center;
}
.page-contact .contact-container p {
  text-align: left;
}

.custom-select {
  position: relative;
  width: 100%;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  cursor: pointer;
}
.custom-select .custom-select-trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 12px 15px;
  font-size: 16px;
  color: #333;
  background-color: #fff;
}
.custom-select .custom-select-trigger::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #888;
  border-bottom: 2px solid #888;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s;
}
.custom-select .custom-select-trigger.active::after {
  transform: translateY(-50%) rotate(-135deg);
}
.custom-select .custom-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-top: 0;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 100;
}
.custom-select .custom-options.open {
  max-height: 200px;
  opacity: 1;
  visibility: visible;
  overflow-y: auto;
}
.custom-select .custom-options .custom-option {
  padding: 12px 15px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.custom-select .custom-options .custom-option:hover {
  background-color: #f5f5f5;
}
.custom-select .custom-options .custom-option.selected {
  background-color: #e8f4f9;
  color: #28a6e0;
}
.custom-select:focus, .custom-select:focus-within {
  border-color: #28a6e0;
  outline: none;
}

form {
  width: 100%;
  position: relative;
}
form .form-group {
  margin-bottom: 25px;
}
form label {
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 500;
  letter-spacing: -0.8px;
}
@media (min-width: 768px) {
  form label {
    font-size: 1.8rem;
    margin-bottom: 1.6rem;
  }
}
form input[type=text],
form input[type=email],
form input[type=tel],
form input[type=number],
form select,
form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background-color: #fff;
  font-size: 16px;
  line-height: 1.6;
}
form input[type=text]::-moz-placeholder, form input[type=email]::-moz-placeholder, form input[type=tel]::-moz-placeholder, form input[type=number]::-moz-placeholder, form select::-moz-placeholder, form textarea::-moz-placeholder {
  color: #aaa;
}
form input[type=text]::placeholder,
form input[type=email]::placeholder,
form input[type=tel]::placeholder,
form input[type=number]::placeholder,
form select::placeholder,
form textarea::placeholder {
  color: #aaa;
}
form input[type=text]:focus,
form input[type=email]:focus,
form input[type=tel]:focus,
form input[type=number]:focus,
form select:focus,
form textarea:focus {
  outline: none;
  border-color: #28a6e0;
}
@media (min-width: 768px) {
  form input[type=text],
  form input[type=email],
  form input[type=tel],
  form input[type=number],
  form select,
  form textarea {
    padding: 2.4rem 2rem;
  }
}
form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  form select {
    font-size: 16px;
  }
}
form select::-ms-expand {
  display: none;
}
form select option {
  padding: 10px;
  background-color: #fff;
}
form select:focus {
  z-index: 100;
  outline: none;
}
form .form-group {
  position: relative;
}
form .form-group.inquiry-type, form .form-group.gender-select, form .form-group.move-in-date, form .form-group.contact-time-select {
  position: relative;
}
@media (max-width: 767px) {
  form .form-group.inquiry-type, form .form-group.gender-select, form .form-group.move-in-date, form .form-group.contact-time-select {
    margin-bottom: 35px;
  }
}
form .form-group.inquiry-type select:focus, form .form-group.gender-select select:focus, form .form-group.move-in-date select:focus, form .form-group.contact-time-select select:focus {
  position: relative;
  z-index: 1000;
}
form .privacy-policy {
  margin: 30px 0;
  padding: 15px;
  background-color: #f8f8f8;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.6;
}
form .privacy-policy p {
  margin-bottom: 10px;
}
form .submit-btn {
  text-align: center;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  form .submit-btn {
    margin-top: 5rem;
  }
}

.inquiry-type {
  margin-bottom: 20px;
}

.gender-select {
  margin-bottom: 20px;
}

.age-input {
  margin-bottom: 20px;
}

.move-in-date {
  margin-bottom: 20px;
}

.privacy-notice {
  margin: 3rem 0;
  text-align: left;
}
@media (min-width: 768px) {
  .privacy-notice {
    margin: 0 0 5.2rem;
  }
}
.privacy-notice__title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 1.5rem;
  text-align: left;
}
.privacy-notice__content {
  background-color: #fff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .privacy-notice__content {
    padding: 2.4rem 2rem;
  }
}
.privacy-notice p {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #000;
}
@media (min-width: 768px) {
  .privacy-notice p {
    margin-bottom: 0.8rem;
  }
}
.privacy-notice p:last-child {
  margin-bottom: 0;
}

/********************************
* 確認画面
********************************/
.confirm-section {
  padding-bottom: 10rem;
}
.confirm-title {
  padding-bottom: 3rem;
}
.confirm-text {
  font-size: 1.4rem;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .confirm-text {
    font-size: 1.6rem;
  }
}
.confirm-table {
  font-size: 1.4rem;
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  .confirm-table {
    font-size: 1.6rem;
  }
}
.confirm-table dl {
  border-top: 1px solid #e0e0e0;
  margin-bottom: 30px;
}
.confirm-table dt {
  font-weight: bold;
  padding: 15px 0 5px;
  color: #231815;
}
.confirm-table dd {
  padding: 5px 0 15px;
  border-bottom: 1px solid #e0e0e0;
}

.button-group {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  max-width: 50rem;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 768px) {
  .button-group {
    flex-direction: row;
  }
}
.button-group .back-btn .form-btn__style {
  background-color: #888;
}
.button-group .back-btn .form-btn__style:hover {
  background-color: #888;
}
.button-group .home-btn {
  text-decoration: none;
}

/********************************
* 完了画面
********************************/
.complete-section {
  padding: 0 2.4rem 8rem;
}
@media (min-width: 768px) {
  .complete-section {
    padding: 0 2.4rem 16rem;
  }
}
.complete-title {
  padding-bottom: 4rem;
}
.complete-message {
  text-align: center;
  line-height: 1.8;
  padding-bottom: 4rem;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .complete-message {
    font-size: 1.6rem;
  }
}
.complete-message p {
  margin-bottom: 15px;
}

.error-message {
  margin: 20px 0;
  padding: 15px;
  background-color: #ffebee;
  border: 1px solid #ffcdd2;
  border-radius: 4px;
  color: #c62828;
}
.error-message ul {
  margin: 0;
  padding-left: 20px;
}
.error-message ul li {
  margin-bottom: 5px;
}
.error-message ul li:last-child {
  margin-bottom: 0;
}

.field-error {
  color: #c62828;
  font-size: 14px;
  margin-top: 5px;
  display: block;
  font-weight: bold;
  background-color: #ffebee;
  padding: 5px 10px;
  border-radius: 4px;
  border-left: 3px solid #c62828;
}

.radio-selector {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.radio-selector-selected-item {
  align-self: stretch;
  position: relative;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 12px 15px;
  padding-right: 40px;
  background-color: #fff;
  color: #333;
  transition: border-color 0.2s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  font-size: 16px;
}
@media (min-width: 768px) {
  .radio-selector-selected-item {
    padding: 2.4rem 2rem;
  }
}

.radio-selector-selected-item::after {
  content: "";
  position: absolute;
  right: 29px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #888;
  border-bottom: 2px solid #888;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s;
}

.radio-selector--open .radio-selector-selected-item::after {
  transform: translateY(-50%) rotate(-135deg);
}

.radio-selector-list {
  align-self: stretch;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-top: 0;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  transform-origin: top;
  transform: scale(1, 0);
  transition: all 0.3s;
  max-height: 0;
  overflow: hidden;
}

.radio-selector--open .radio-selector-list {
  opacity: 1;
  transform: scale(1, 1);
  pointer-events: auto;
  max-height: 200px;
  overflow-y: auto;
}

.radio-selector-item-input[type=radio] {
  display: none;
}

.radio-selector-item-label {
  display: block;
  cursor: pointer;
  margin-top: -1px;
  padding: calc(0.5em - 1px) 1em 0.5em 1em;
  background-color: #fff;
  color: #000;
  transition: 0.2s ease;
}

.radio-selector-item-label:hover {
  background-color: #17b27e;
  color: #fff;
  margin: 0.8rem;
  border-radius: 5px;
}

.radio-selector-item-input[type=radio]:checked + .radio-selector-item-label {
  background-color: #17b27e;
}

@media (min-width: 768px) {
  .p-company-title {
    padding-bottom: 10.4rem;
  }
}

/********************************
* プロフィール
********************************/
.company-profile {
  padding: 0 2.4rem 9rem;
}
@media (min-width: 768px) {
  .company-profile {
    padding: 0 2.4rem 16rem;
  }
}
.company-profile__container {
  display: flex;
  flex-direction: column;
  gap: 5.5rem;
}
@media (min-width: 1200px) {
  .company-profile__container {
    flex-direction: row;
    max-width: 106rem;
    width: 100%;
    margin: 0 auto;
    justify-content: space-between;
    gap: 3.5rem;
  }
}
.company-profile__sec-title {
  margin-bottom: 2.4rem;
}
.company-profile__sec-title h2 {
  font-size: clamp(23px, 3vw, 30px);
  line-height: 1.8;
}
.company-profile__sec-title-text {
  display: block;
  font-size: 2rem;
  letter-spacing: 1px;
  color: #17b27e;
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .company-profile__sec-title-text {
    margin-bottom: 3rem;
  }
}
.company-profile__text {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
}
.company-profile__text p {
  margin-bottom: 2.4rem;
}
.company-profile__text p:last-of-type {
  margin-bottom: 0;
}
.company-profile__content-right {
  max-width: 28rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .company-profile__content-right {
    max-width: 50%;
  }
}
@media (min-width: 1201px) {
  .company-profile__content-right {
    max-width: 41.5rem;
  }
}
.company-profile__img {
  position: relative;
}
@media (min-width: 768px) {
  .company-profile__img {
    padding: 0;
  }
}
@media (min-width: 1200px) {
  .company-profile__img {
    padding: 5rem 3.2rem 0 0;
  }
}
.company-profile__content-left {
  max-width: 55.8rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .company-profile__content-left {
    max-width: 100%;
  }
}

.ceo-profile {
  padding: 4rem 0;
  text-align: center;
}
@media (min-width: 768px) {
  .ceo-profile {
    padding: 6rem 0;
  }
}
.ceo-profile__container {
  max-width: 102.4rem;
  margin: 0 auto;
}
.ceo-profile__box {
  border-radius: 1.5rem;
  padding: 2rem;
  position: relative;
  box-shadow: inset 0 0 0 1px #17b27e;
}
@media (min-width: 768px) {
  .ceo-profile__box {
    padding: 3rem;
    border-radius: 2rem;
  }
}
.ceo-profile__header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  color: #17b27e;
}
@media (min-width: 768px) {
  .ceo-profile__header {
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
}
.ceo-profile__name {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
}
@media (min-width: 768px) {
  .ceo-profile__name {
    font-size: 2.4rem;
  }
}
.ceo-profile__label {
  font-size: 1.4rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .ceo-profile__label {
    font-size: 1.6rem;
  }
}
.ceo-profile__content {
  text-align: left;
}
.ceo-profile__text {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #000;
  margin: 0;
}
@media (min-width: 768px) {
  .ceo-profile__text {
    font-size: 1.6rem;
    line-height: 2;
  }
}

/********************************
* 会社概要
********************************/
.company-info {
  text-align: center;
}
.company-info__sec-title-text {
  display: block;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.company-info__title-content {
  color: #17b27e;
}
.company-info__title-content h2 {
  font-size: clamp(24px, 3vw, 32px);
}
.company-info__table-content {
  max-width: 80rem;
  margin: 0 auto;
  padding: 4rem 2rem 10rem 2rem;
}
.company-info__table {
  display: grid;
  grid-template-columns: 9.5rem 1fr;
  gap: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .company-info__table {
    grid-template-columns: 17rem 1fr;
  }
}
.company-info__term {
  padding: 0.4rem 0 1rem 0.6rem;
  font-weight: bold;
  display: flex;
  justify-content: start;
  align-items: flex-start;
  position: relative;
}
@media (min-width: 768px) {
  .company-info__term {
    padding: 2.6rem 0 0 4rem;
  }
}
.company-info__term:first-of-type {
  padding: 1rem 1rem 2.7rem 0.7rem;
}
@media (min-width: 768px) {
  .company-info__term:first-of-type {
    padding: 0.4rem 0 0 4rem;
  }
}
.company-info__term::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 0.2rem;
  background-color: #28a745;
}
.company-info__description {
  padding: 0.4rem 0 1rem 1.7rem;
  line-height: 1.4;
  text-align: left;
}
@media (min-width: 768px) {
  .company-info__description {
    line-height: 1.8;
    padding: 2.4rem 0 0 5rem;
  }
  .company-info__description:first-of-type {
    padding: 1rem 0 0 5rem;
  }
}
.company-info__term, .company-info__description {
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .company-info__term, .company-info__description {
    font-size: 1.6rem;
  }
}

.company-map {
  padding-bottom: 10rem;
}
@media (min-width: 768px) {
  .company-map {
    max-width: 101rem;
    padding: 0 2.4rem 22rem 2.4rem;
    width: 100%;
    margin: 0 auto;
  }
}
.company-map__content {
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .company-map__content {
    padding-bottom: 4rem;
  }
}
.company-map__content iframe {
  height: 18rem;
}
@media (min-width: 600px) {
  .company-map__content iframe {
    height: 46rem;
  }
}
/*# sourceMappingURL=style.css.map */
