@charset "UTF-8";
.--color-primary {
  color: #2cbce0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

ul {
  list-style: none;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  color: #333333;
  background-color: #f4f7f9;
  line-height: 1.6;
  background: #fff;
}

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

main {
  overflow: hidden;
}

.sec {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .sec {
    padding: 40px 0;
  }
}

.attention {
  font-size: 15px;
  margin-top: 10px;
  display: block;
}

.attention::before {
  content: "※";
}

.p-card-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px 24px;
  margin-top: 40px;
}

@media (any-hover: hover) {
  .c-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  }
}
.c-card__header {
  position: relative;
  width: 100%;
}
.c-card__image-wrapper {
  margin: 0;
  aspect-ratio: 16/9;
  background-color: #f5f5f5;
}
.c-card__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-card__category {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  background-color: #6fa24a;
  border-radius: 4px;
}
.c-card__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 20px;
}
.c-card__title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  color: #333;
}
.c-card__description {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}
.c-card__footer {
  margin-top: auto;
}
.c-card__footer .c-button {
  max-width: 100%;
  height: 48px;
}
@media (min-width: 768px) {
  .c-card--horizontal {
    flex-direction: row;
  }
  .c-card--horizontal .c-card__header {
    width: 40%;
  }
  .c-card--horizontal .c-card__image-wrapper {
    height: 100%;
  }
}

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

.btn {
  max-width: 270px;
  margin: 50px auto 0;
}

.c-button {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 320px;
  height: 64px;
  padding: 5px 25px 5px 25px;
  font-family: sans-serif;
  font-size: 16px;
  color: #fff;
  border: 1px solid #2cbce0;
  text-align: center;
  overflow-wrap: anywhere;
  background-color: #2cbce0;
  border-radius: 32px;
  transition: background-color 0.2s;
}
.c-button--reverse {
  flex-direction: row-reverse;
  padding: 5px 10px 5px 35px;
}
.c-button__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 48px;
  aspect-ratio: 1;
  overflow: hidden;
  transition: transform 0.2s;
}
.c-button__icon--left {
  transform: rotate(180deg);
}
.c-button__text {
  flex-shrink: 1;
  width: 100%;
}
@media (any-hover: hover) {
  .c-button:hover {
    background-color: #ffffff;
    border: 1px solid #2cbce0;
    color: #2cbce0;
  }
  .c-button:hover .c-button__icon {
    transform: translateX(4px);
  }
  .c-button:hover .c-button__icon--left {
    transform: translateX(-4px) rotate(180deg);
  }
}
.c-button--tel {
  margin-top: 40px;
  display: block;
}
.c-heading {
  font-weight: bold;
  line-height: 1.5;
}
.c-heading--lg {
  font-size: 2rem;
  border-bottom: 2px solid var(--color-primary);
}
.c-heading--md {
  font-size: 1.5rem;
}

.c-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}
.c-card:hover {
  transform: translateY(-5px);
}
.c-card__img-wrapper {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #eee;
}
.c-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.c-card__title {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.c-card__text {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* =========================================
   Block: c-cta-section
   ========================================= */
.c-cta-section {
  width: 100%;
  box-sizing: border-box;
  margin-top: -70px;
}
.c-cta-section__inner {
  max-width: 460px;
  margin: 0 auto;
}

/* =========================================
   Block: p-cta-grid
   ========================================= */
.p-cta-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .p-cta-grid {
    flex-direction: column;
  }
}
.p-cta-grid__item {
  flex: 1;
  min-width: 0;
}
@media screen and (max-width: 768px) {
  .p-cta-grid__item {
    width: 100%;
  }
}

/* =========================================
   Block: c-img-banner
   ========================================= */
.c-img-banner {
  display: block;
  width: 100%;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s, transform 0.3s, box-shadow 0.3s;
}
.c-img-banner:hover {
  opacity: 0.85;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.c-img-banner__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.c-img-banner--tel {
  cursor: pointer;
}

.c-cta {
  padding: 80px 0;
  background: #2cbce0;
  background: linear-gradient(90deg, rgb(44, 188, 224) 0%, rgb(240, 234, 169) 100%);
}
.c-cta__inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-cta__inner * {
  color: #ffffff;
}
.c-cta__left {
  width: 47%;
  height: 100%;
  padding-right: 40px;
  border-right: 1px dashed #ffffff;
  text-align: center;
}
.c-cta__left h2 {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 20px;
}
.c-cta__right {
  width: 45%;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.c-cta-side {
  position: fixed;
  right: 0;
  bottom: 10%;
  /* 初期状態：右側に隠しておく */
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  pointer-events: none;
  /* 表示状態：クラスがついたら元の位置へ */
}
.c-cta-side.is-show {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.c-cta-side__item--line {
  width: 100px;
  height: 100px;
  border-radius: 10px 0 0 10px;
  background-color: #36be4f;
}
.c-cta-side__item--line a {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.c-sec-header {
  text-align: center;
}
.c-sec-header__title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 50px;
}
.c-sec-header__subtitle {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: #2cbce0;
}
.c-sec-header__subtitle i {
  margin-top: 3px;
  margin-right: 10px;
  display: block;
  line-height: 1;
}

.l-footer__inner {
  margin: 0 auto;
  text-align: center;
  display: flex;
}
.l-footer__img {
  width: 40%;
}
.l-footer__content {
  width: 60%;
  padding: 80px 100px 0;
  text-align: left;
}
.l-footer__logo {
  max-width: 340px;
  margin-bottom: 40px;
}
.l-footer__access {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.l-footer__map {
  font-size: 14px;
  padding: 2px 20px;
  background-color: #2cbce0;
  display: block;
  color: #ffffff;
  border-radius: 50px;
  text-align: center;
}

.l-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}
.l-header__inner {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.l-header__logo {
  width: 345px;
  padding: 20px 0;
  border-radius: 0 0 30px 0px;
  background: #ffffff;
  box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.1);
}
.l-header__logo img {
  width: 302px;
  height: 55px;
}
.l-header__nav-list {
  display: flex;
  align-items: end;
  gap: 60px;
  padding: 20px 70px 20px 70px;
  border-radius: 0 0 0 30px;
  background: #fff;
  height: 95px;
}
@media screen and (max-width: 767px) {
  .l-header__nav-list {
    display: none;
  }
}
.l-header__nav-link {
  font-size: 16px;
  font-weight: 600;
  padding-top: 20px;
  transition: color 0.3s;
  position: relative;
}
.l-header__nav-link::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.l-header__nav-link:hover {
  color: #2cbce0;
}
.l-header__nav-link.icon-heart::before {
  width: 15.2px;
  height: 12.52px;
  background-image: url(../img/common/menu-icon01.svg);
}
.l-header__nav-link.icon-check::before {
  top: -4px;
  width: 17px;
  height: 11.42px;
  background-image: url(../img/common/menu-icon02.svg);
}
.l-header__nav-link.icon-leaf::before {
  top: -7px;
  width: 19.98px;
  height: 13.15px;
  background-image: url(../img/common/menu-icon03.svg);
}
.l-header__nav-link.icon-bag::before {
  top: -7px;
  width: 18px;
  height: 14.56px;
  background-image: url(../img/common/menu-icon04.svg);
}
.l-header__nav-link.icon-search::before {
  top: -5px;
  width: 16px;
  height: 15.07px;
  background-image: url(../img/common/menu-icon05.svg);
}
.l-header__nav-link.icon-pen::before {
  top: -7px;
  width: 19px;
  height: 17.9px;
  background-image: url(../img/common/menu-icon06.svg);
}

.l-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.p-hero {
  background-color: #a4deed;
  padding-bottom: 80px;
}
.p-hero img {
  display: block;
  width: 90%;
  margin-left: auto;
}

.p-card-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px 24px;
  margin-top: 40px;
}

.trouble img {
  width: 100%;
  padding-inline: 25px;
}

.features {
  background-color: #f3fbff;
}
.features__list {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  row-gap: 35px;
}

.message {
  padding: 80px 0;
  /* 左側：画像エリア */
  /* 右側：テキストコンテンツ */
  /* 見出し（青い棒付き） */
  /* 本文 */
  /* 署名エリア */
}
.message-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}
.message-visual {
  flex: 0 0 38%;
}
.message-visual img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  border-radius: 10px;
}
.message-content {
  flex: 1;
}
.message-title {
  position: relative;
  padding-left: 20px;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 30px;
}
.message-title::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 7px;
  height: 70%;
  background-color: #2cbce0;
}
.message-body p {
  font-size: 15px;
  line-height: 2.2em;
  margin-bottom: 20px;
}
.message-body p:last-child {
  margin-bottom: 0;
}
.message-profile {
  margin-top: 40px;
  width: fit-content;
  margin-left: auto;
  text-align: left;
}
.message-profile-role {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
  display: block;
}
.message-profile-name {
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
}
.message-profile-name .en {
  font-size: 14px;
  font-weight: normal;
  margin-left: 12px;
  font-family: "Arial", sans-serif;
}

.plan__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.plan__item a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
}
.plan__item a::before {
  content: "";
  position: absolute;
  bottom: 5%;
  right: 5%;
  width: 48px;
  height: 48px;
  background-image: url(../../../assets/img/common/arrow-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  /* 動くスピードとタイミングの設定 */
  transition: transform 0.3s ease-out, right 0.3s ease-out;
}
@media (hover: hover) {
  .plan__item a:hover {
    opacity: 0.8;
  }
  .plan__item a:hover::before {
    /* 右に5px分移動させる（rightの値を減らすか、translateXを使う） */
    transform: translateX(5px);
  }
}

.consultation {
  padding: 80px 0 120px;
  background: #2cbce0;
  background: linear-gradient(90deg, rgb(44, 188, 224) 0%, rgb(240, 234, 169) 100%);
}
.consultation .l-inner {
  display: flex;
  align-items: center;
  max-width: 1140px;
}
.consultation__desc {
  width: 50%;
}
.consultation__desc * {
  color: #fff;
}
.consultation__desc h3 {
  font-size: 26px;
  margin-bottom: 20px;
}
.consultation__desc p {
  font-size: 18px;
}
.consultation__img {
  width: 50%;
}

.price-exsample {
  position: relative;
  padding-left: 20px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 30px;
}
.price-exsample::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #2cbce0;
}
.price-onedays {
  margin-bottom: 160px;
}

.faq {
  background-color: #f3fbff;
}

.p-faq-accordion {
  max-width: 800px;
  margin: 40px auto 0;
}
.p-faq-accordion__item:not(:last-child) {
  margin-bottom: 30px;
}
.p-faq-accordion__item.is-open .p-faq-accordion__icon::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}
.p-faq-accordion__question {
  position: relative;
  padding-left: 5rem;
  font-size: 20px;
}
.p-faq-accordion__question::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 50px;
  height: 50px;
  background: url(../../../assets/img/common/q-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.p-faq-accordion__header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 25px;
  background-color: #fff;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: left;
}
.p-faq-accordion__icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-left: 20px;
}
.p-faq-accordion__icon::before, .p-faq-accordion__icon::after {
  content: "";
  position: absolute;
  background-color: #2cbce0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.p-faq-accordion__icon::before {
  width: 100%;
  height: 2px;
}
.p-faq-accordion__icon::after {
  width: 2px;
  height: 100%;
}
.p-faq-accordion__body {
  height: 0;
  overflow: hidden;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding-inline: 25px;
}
.p-faq-accordion__text {
  padding-left: 5rem;
  padding-block: 25px;
  font-weight: 600;
  line-height: 1.8;
  color: #4b5563;
  position: relative;
}
.p-faq-accordion__text::before {
  content: "";
  position: absolute;
  top: 50px;
  transform: translateY(-50%);
  left: 0;
  width: 50px;
  height: 50px;
  background: url(../../../assets/img/common/a-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
}