@charset "UTF-8";


.body {
  margin: 0;
}

.header {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;

}

#mainvisual {
  position: absolute;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0;
  animation: slideShow 10s linear infinite; 
}

/* 画像の指定とアニメーションの遅延 */
.slide:nth-child(1) {
  background-image: url(../TSUTSUMU/FV.png);
  animation-delay: 0s;
}
.slide:nth-child(2) {
  background-image: url(../TSUTSUMU/FVmama.png); 
  animation-delay: 5s;
}

@keyframes slideShow {
  0% { opacity: 0; }
  10% { opacity: 1; } 
  50% { opacity: 1; } 
  60% { opacity: 0; } 
  100% { opacity: 0; }
}
/* 波グラデーション背景 */
.wave-bg {
  position: absolute;
  width: 100%;
  height: 140px;
  z-index: 2;
}

.wave-bg svg {
  width: 100%;
  height: 100%;
}

/* 文字レイヤー */
.header-inner {
  position: relative;
  z-index: 3;
  color: #544a54;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 18px;
}

.header-left {
  display: flex;
  flex-direction: column;
  padding-left: 32px;
}

.header-left img {
  width: 320px;
  height: 38px;
  object-fit: contain;
}

.section-explain {
  font-size: 18px;
  margin-top: 8px;
  width: 320px;
  text-align: right;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-right a {
  color: #544a54;
}

.gnav {
  display: flex;
  gap: 26px;
  list-style: none;
  font-size: 14px;
  margin: 0;
  padding: 0;
}

.gnav li {
  position: relative;
}

.header-right li:not(:last-child)::after {
  position: absolute;
  content: "";
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 15px;
  background-color: #544a54;
}


/* ボタン */
.fv-button {

  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  width: 150px;
  height: 40px;

  background-color: #fff;
  color: #544a54;
  text-decoration: none;
  border-radius: 20px;

  font-size: 18px;
  font-weight: 500;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5) inset 0 -1px 0 rgba(0, 0, 0, 0.15),
    0 2px 4px rgba(0, 0, 0, 0.25);

  transition: all 0.2s ease;
}

.fv-button:hover {
  background-color: #edbfbf;
  color: #fff;
}

.ctu-button:hover .arrow {
  transform: translate(2px);
}

.arrow {
  display: inline-block;
  width: 0;
  height: 0;

  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 20px solid #544a54;
}

.about {
  width: 100%;
  padding: 80px 0;
  background: linear-gradient(-85deg,
      rgba(242, 232, 200, 0.3),
      #fff);
}

.about-inner {
  max-width: 1440px;
  padding: 0 120px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  gap: 60px;
}

.about-image img {
  width: 460px;
  height: 230px;
  object-fit: cover;
  border-radius: 120px;
}

.about-right {
  flex: 1;
  min-width: 0;

  display: flex;
  flex-direction: column;

}

.section-title {
  font-size: 36px;
  margin: 0;
}

.section-discription {
  font-size: 18px;
  line-height: 1.8;
  margin-top: 18px;
}

.about-strong {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 36px;
  color: #544a54;
}

.cta-button {
  margin: 36px 0px 36px auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  width: 300px;
  height: 40px;

  background-color: #b4d9e2;
  color: #544a54;
  text-decoration: none;
  border-radius: 20px;

  font-size: 18px;
  font-weight: 500;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5) inset 0 -1px 0 rgba(0, 0, 0, 0.15),
    0 2px 4px rgba(0, 0, 0, 0.25);

  transition: all 0.2s ease;
}

.cta-button:hover {
  background-color: #edbfbf;
}

.cta-button:hover {
  transform: translate(2px);
}

.cta-button:hover .arrow {
  transform: translate(2px);
}



.arrow {
  display: inline-block;
  width: 0;
  height: 0;

  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 20px solid #544a54;
}


/* 文字のベベル感 */
.cta-button,
.cta-button .arrow {
  text-shadow:
    0 1px 1px rgba(255, 255, 255, 0.5),
    0 -1px 1px rgba(0, 0, 0, 0.3);
}

.service {
  width: 100%;
  max-width: 1440px;
  height: auto;
  margin: 0 auto;
  padding: 80px 0 80px 0;
  background: linear-gradient(-85deg,
      rgba(237, 191, 191, 0.3),
      rgba(242, 232, 200, 0.3));
  text-align: center;
}

/* パラグラフ */
.service-text {
  margin-top: 36px;
  margin-bottom: 36px;
}

.bold {
  font-weight: 700;
}

/* オーバル全体 */
.oval-wrap {
  display: flex;
  flex-direction: column;
  margin-top: 36px;
}



/* 上段 */
.oval-row {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* 下段センター */
.oval-row.center {
  justify-content: center;


}

/* オーバルカード */
.oval-card {
  width: 430px;
  height: 230px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid #544a54;
  border-radius: 250px / 135px;
  box-sizing: border-box;
}

.oval-card p {
  text-align: left;
}


/* aタグ */
.service-link {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 36px 120px 36px auto;

  width: 260px;
  height: 40px;

  background-color: #b4d9e2;
  color: #544a54;
  text-decoration: none;
  border-radius: 20px;

  font-size: 18px;
  font-weight: 500;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5) inset 0 -1px 0 rgba(0, 0, 0, 0.15),
    0 2px 4px rgba(0, 0, 0, 0.25);

  transition: all 0.2s ease;
}

.service-link:hover {
  background-color: #edbfbf;
}

.service-link:hover {
  transform: translate(2px);
}

.service-link:hover .arrow {
  transform: translate(2px);
}

/* 文字のベベル感 */
.service,
.service-link {
  text-shadow:
    0 1px 1px rgba(255, 255, 255, 0.5),
    0 -1px 1px rgba(0, 0, 0, 0.3);
}


/* 写真エリア */
.photo-slider {
  display: flex;
  justify-content: center;
  gap: 36px;
}

.photo-slider img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid #fff;

}

.benefit {
   background: linear-gradient(-85deg,
      rgba(242, 232, 200, 0.3),
      #fff);
  height: auto;

  width: 100%;
  padding: 80px 0;
  margin: 0 auto;
  padding: 80px 0 80px 0;

  text-align: center;
}

.benefit-title {
  display: flex;
  align-items: center;
  gap: 60px;
}

.balloon-wrap {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 36px;
  padding-bottom: 120px;
}

/* 順番に遅らせる設定 */
.balloon-wrap.fadein > div:nth-child(1) { animation-delay: 0.1s; }
.balloon-wrap.fadein > div:nth-child(2) { animation-delay: 0.3s; }
.balloon-wrap.fadein > div:nth-child(3) { animation-delay: 0.5s; }
.balloon-wrap.fadein > div:nth-child(4) { animation-delay: 0.7s; }
.balloon-wrap.fadein > div:nth-child(5) { animation-delay: 0.9s; }

.balloon-1 {
  position: relative;
  width: 180px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, #cde6ef, #f2e8c8);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  border: 1px solid #544a54;
}


.balloon-2 {
  position: relative;
  width: 180px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, #edbfbf, #f2e8c8);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  border: 1px solid #544a54;
}

.balloon-3 {
  position: relative;
  width: 180px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, #bdadc4, #f2e8c8);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  border: 1px solid #544a54;
}

.balloon-4 {
  position: relative;
  width: 180px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9db19d, #f2e8c8);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  border: 1px solid #544a54;
}

.balloon-5 {
  position: relative;
  width: 180px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, #cde6ef, #f2e8c8);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  border: 1px solid #544a54;
}

/* 結び目 */
.balloon::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: inherit;
  clip-path: polygon(0 100%, 100% 100%, 50% 0);

  border-left: 1px solid #544a54;
  border-right: 1px solid #544a54;
  border-bottom: 1px solid #544a54;
}

/* ひも */
.balloon::before {
  content: "";
  position: absolute;
  bottom: -95px;
  left: 50%;
  transform: translateX(-50%) rotate(10deg);
  width: 40px;
  height: 100px;

}


.strings {
  position: absolute;
  bottom: -110px;
  left: 50%;
  transform: translateX(-50%);
}

.benefit-link {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 36px 120px 36px auto;

  width: 294px;
  height: 40px;

  background-color: #b4d9e2;
  color: #544a54;
  text-decoration: none;
  border-radius: 20px;

  font-size: 18px;
  font-weight: 500;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5) inset 0 -1px 0 rgba(0, 0, 0, 0.15),
    0 2px 4px rgba(0, 0, 0, 0.25);

  transition: all 0.2s ease;
}


.benefit-link:hover {
  background-color: #edbfbf;
}

.benefit-link:hover {
  transform: translate(2px);
}

.benefit-link:hover .arrow {
  transform: translate(2px);
}

.benefit-arrow {
  display: inline-block;
  width: 0;
  height: 0;

  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 20px solid #544a54;
}


/* 文字のベベル感 */
.benefit,
.benefit-link .arrow {
  text-shadow:
    0 1px 1px rgba(255, 255, 255, 0.5),
    0 -1px 1px rgba(0, 0, 0, 0.3);
}

/* 写真エリア */
.benefit-photos {
  display: flex;
  justify-content: center;
}

.benefit-photos img {
  width: 400px;
  height: 230px;
  object-fit: cover;
}


.member {
  padding-top: 40px;
  background-color: #fff;
  height: auto;
  text-align: center;
}

/* 全体並び */
.member-wrap {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 36px;
  /* パラグラフとの余白 */
}
/* 順番に遅らせる設定 */
.member-wrap.fadein > div:nth-child(1) { animation-delay: 0.1s; }
.member-wrap.fadein > div:nth-child(2) { animation-delay: 0.3s; }
.member-wrap.fadein > div:nth-child(3) { animation-delay: 0.5s; }
.member-wrap.fadein > div:nth-child(4) { animation-delay: 0.7s; }
.member-wrap.fadein > div:nth-child(5) { animation-delay: 0.9s; }

/* カード */
.member-card-1 {
  width: 200px;
  height: 400px;
  text-align: center;
  padding: 8px;
  border: 1px solid #544a54;
  background: linear-gradient(135deg, #fff, #edbfbf);
  border-radius: 100px 100px 0 0;
  margin: 36px 0 36px 0;
  gap: 30px;
  position: relative;
  flex-direction: column;
  box-sizing: border-box;

}

.member-card-2 {
  width: 200px;
  height: 400px;
  text-align: center;
  padding: 8px;
  border: 1px solid #544a54;
  background: linear-gradient(135deg, #fff, #f2e8c8);
  border-radius: 100px 100px 0 0;
  margin: 36px 0 36px 0;
  gap: 30px;
  position: relative;
  flex-direction: column;
  box-sizing: border-box;

}

.member-card-3 {
  width: 200px;
  height: 400px;
  text-align: center;
  padding: 8px;
  border: 1px solid #544a54;
  background: linear-gradient(135deg, #fff, #b4d9e2);
  border-radius: 100px 100px 0 0;
  margin: 36px 0 36px 0;
  gap: 30px;
  position: relative;
  flex-direction: column;
  box-sizing: border-box;
}

.member-card-4 {
  width: 200px;
  height: 400px;
  text-align: center;
  padding: 8px;
  border: 1px solid #544a54;
  background: linear-gradient(135deg, #fff, #9db19d);
  border-radius: 100px 100px 0 0;
  margin: 36px 0 36px 0;
  gap: 30px;
  position: relative;
  flex-direction: column;
  box-sizing: border-box;
}

.member-card-5 {
  width: 200px;
  height: 400px;
  text-align: center;
  padding: 8px;
  border: 1px solid #544a54;
  background: linear-gradient(135deg, #fff, #bdadc4);
  border-radius: 100px 100px 0 0;
  margin: 36px 0 36px 0;
  gap: 30px;
  position: relative;
  flex-direction: column;
  box-sizing: border-box;
}

/* 写真 */
.member-photo img {
  width: 180px;
  height: 175px;
  object-fit: cover;
  border-radius: 90px 90px 0 0;
}

/* 名前 */
.member-name {
  font-size: 18px;
  margin-top: 16px;
}

/* 役職 */
.member-role {
  font-size: 18px;
  height: auto;
}

/* ボタン */
.schedule-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #fff;
  width: 174px;
  height: 40px;

  font-size: 16px;

  border: 1px solid #544a54;
  border-radius: 999px;
  text-decoration: none;
  color: #544a54;

  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);

}

/* 矢印 */
.arrow {
  width: 17px;
  height: 15px;
  background: #544a54;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.schedule-btn:hover {
  background-color: #edbfbf;
}



.member-link {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 36px 120px 80px auto;

  width: 294px;
  height: 40px;

  background-color: #b4d9e2;
  color: #544a54;
  text-decoration: none;
  border-radius: 20px;

  font-size: 18px;
  font-weight: 500;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5) inset 0 -1px 0 rgba(0, 0, 0, 0.15),
    0 2px 4px rgba(0, 0, 0, 0.25);

  transition: all 0.2s ease;
}

.member-link:hover {
  background-color: #edbfbf;
}

.member-link:hover {
  transform: translate(2px);
}

.member-link:hover .arrow {
  transform: translate(2px);
}

.member-arrow {
  display: inline-block;
  width: 0;
  height: 0;

  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 20px solid #544a54;
}


/* 文字のベベル感 */
.member,
.member-link {
  text-shadow:
    0 1px 1px rgba(255, 255, 255, 0.5),
    0 -1px 1px rgba(0, 0, 0, 0.3);
}

.recruit {
  width: 1440px;
  height: auto;
  margin: 0 auto;
  padding: 80px 0 80px 0;
  background: linear-gradient(-85deg,
      rgba(237, 191, 191, 0.3),
      rgba(242, 232, 200, 0.3));
  text-align: center;
}

.recruit-title {
  font-size: 36px;
}

.recruit-text {
  margin: 36px 0 36px 0;
}

.recruit-logo {
  width: 320px;
  height: 38px;

  position: absolute;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);
}

.circle {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  position: absolute;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  padding: 32px;
}

.circle-title {
  font-size: 24px;
  margin-bottom: 8px;
}

.circle-text {
  font-size: 18px;
  text-align: left;
  width: 80%;
}

.recruit-area {
  position: relative;
  width: 1000px;
  margin: 0 auto;
  height: 800px;
  padding-bottom: 36px;
}

/* 全体並び */
.circle-wrap {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 36px;
  /* パラグラフとの余白 */
}

.circle-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid #544a54;
  background: linear-gradient(135deg, #fff, #edbfbf)
}

.circle-2 {
  top: 200px;
  left: 0;
  border: 1px solid #544a54;
  background: linear-gradient(135deg, #fff, #b4d9e2)
}

.circle-3 {
  top: 200px;
  right: 0;
  border: 1px solid #544a54;
  background: linear-gradient(135deg, #fff, #bdadc4);
}

.circle-4 {
  bottom: 0;
  left: 20%;
  border: 1px solid #544a54;
  background: linear-gradient(135deg, #fff, #9db19d)
}

.circle-5 {
  bottom: 0;
  right: 20%;
  border: 1px solid #544a54;
  background: linear-gradient(135deg, #fff, #f2e8c8);
}

.recruit-link {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 36px 120px 80px auto;

  width: 294px;
  height: 40px;

  background-color: #b4d9e2;
  color: #544a54;
  text-decoration: none;
  border-radius: 20px;

  font-size: 18px;
  font-weight: 500;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5) inset 0 -1px 0 rgba(0, 0, 0, 0.15),
    0 2px 4px rgba(0, 0, 0, 0.25);

  transition: all 0.2s ease;
}

.recruit-link:hover {
  background-color: #edbfbf;
}

.recruit-link:hover {
  transform: translate(2px);
}

.recruit-link .recruit-arrow {
  transform: translate(2px);
}

.recruit-arrow {
  display: inline-block;
  width: 0;
  height: 0;

  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 20px solid #544a54;
}


/* 文字のベベル感 */
.recruit,
.recruit-link .recruit-arrow {
  text-shadow:
    0 1px 1px rgba(255, 255, 255, 0.5),
    0 -1px 1px rgba(0, 0, 0, 0.3);
}

.faq {
  padding-top: 80px;
  padding-bottom: 80px;
  align-items: center;
  justify-content: center;
  gap: 34px;
  text-align: center;
  background: linear-gradient(-85deg,
      rgba(242, 232, 200, 0.3),
      #fff);
}

.faq-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  margin-bottom: 36px;
}

.faq-title h2 {
  font-size: 36px;
}

.faq-title img {
  width: 62px;
  height: 50px;
  object-fit: cover;

}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-item:not(:last-child) {
  margin-bottom: 18px;
}

/* 質問部分 */
.faq-question {
  width: 880px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 18px;
  background-color: #fff;
}

/* 回答（閉じた状態） */
.faq-answer {
  display: none;
  width: 880px;
  text-align: left;
  font-size: 18px;
  justify-content: space-between;
  background-color: #fff;

}

/* 開いた状態 */
.faq-item.active .faq-answer {
  display: block;
}

.faq-toggle {
  margin-right: 16px;
  font-size: 22px;

}

/* 他の質問を見る */
.faq-more {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 20px 120px 36px auto;

  width: 196px;
  height: 40px;

  background-color: #b4d9e2;
  color: #544a54;
  text-decoration: none;
  border-radius: 20px;

  font-size: 18px;
  font-weight: 500;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5) inset 0 -1px 0 rgba(0, 0, 0, 0.15),
    0 2px 4px rgba(0, 0, 0, 0.25);

  transition: all 0.2s ease;
}

.faq-more:hover {
  background-color: #edbfbf;
}

.faq-more:hover {
  transform: translate(2px);
}

.faq-more .faq-arrow {
  transform: translate(2px);
}

.faq-arrow {
  display: inline-block;
  width: 0;
  height: 0;

  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 20px solid #544a54;
}


/* 文字のベベル感 */
.faq,
.faq-more .faq-arrow {
  text-shadow:
    0 1px 1px rgba(255, 255, 255, 0.5),
    0 -1px 1px rgba(0, 0, 0, 0.3);
}


.cta-top {
  text-align: center;
  margin-top: 72px;
  margin-bottom: 20px;
}

.cta-top h4 {
  font-size: 24px;
}

.cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.cta-entry {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  width: 300px;
  height: 56px;

  background-color: #b4d9e2;
  color: #544a54;
  text-decoration: none;
  border-radius: 30px;

  font-size: 24px;
  font-weight: 500;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5) inset 0 -1px 0 rgba(0, 0, 0, 0.15),
    0 2px 4px rgba(0, 0, 0, 0.25);

  transition: all 0.2s ease;
}

.cta-entry:hover {
  background-color: #edbfbf;
}

.cta-entry:hover {
  transform: translate(2px);
}

.cta-entry .ctaentry-arrow {
  transform: translate(2px);
}

.ctaentry-arrow {
  display: inline-block;
  width: 0;
  height: 0;

  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 20px solid #544a54;
}


.cta-contact {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  width: 300px;
  height: 56px;

  background-color: #544a54;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;

  font-size: 24px;
  font-weight: 500;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5) inset 0 -1px 0 rgba(0, 0, 0, 0.15),
    0 2px 4px rgba(0, 0, 0, 0.25);

  transition: all 0.2s ease;
}

.cta-contact:hover {
  background-color: #edbfbf;
}

.cta-contact:hover {
  transform: translate(2px);
}

.cta-contact .ctacontact-arrow {
  transform: translate(2px);
}

.ctacontact-arrow {
  display: inline-block;
  width: 0;
  height: 0;

  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 20px solid #fff;
}

.ctacontact-arrow {
  display: inline-block;
  width: 0;
  height: 0;

  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 20px solid #fff;
}


.footer {
  width: 100%;
  background: linear-gradient(-85deg,
      rgba(242, 232, 200, 0.3),
      #fff);
  position: relative;


  &::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
    height: 600px;
    pointer-events: none;
    background: linear-gradient(-85deg,
        rgba(237, 191, 191, 0.3),
        rgba(242, 232, 200, 0.3));

    -webkit-mask: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 300' preserveAspectRatio='none'>\
<path d='M0,180 C300,200 800,80 1440,160 L1440,500 L0,300 Z' fill='black'/>\
</svg>") top / 100% 100% no-repeat;

    mask: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 300' preserveAspectRatio='none'>\
<path d='M0,180C300,200 800,80 1440,160 L1440,500 L0,300 Z' fill='black'/>\
</svg>") top / 100% 100% no-repeat;
  }


  .wave-bg-footer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 310px;
  }

  .wave-bg-footer svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  /* 文字レイヤー */
  .footer-inner {
    position: relative;
    z-index: 2;
    color: #544a54;
    display: flex;
    justify-content: space-between;
    margin-top: 0px;
    margin-left: 60px;
  }

  .footer-left {
    display: flex;
    flex-direction: column;
    margin-top: 88px;
  }

  .footer-title {
    font-size: 28px;
    text-align: right;
    width: 320px;
  }

  .footer-left img {
    width: 320px;
    height: 38px;
    object-fit: contain;
    margin-top: 9px;

  }

  .footer-section-explain {
    font-size: 18px;
    margin-top: 9px;
    width: 320px;
    text-align: right;
  }

  .footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 32px;
    margin-right: 60px;
  }

  .footer-right a {
    color: #544a54;
  }

  .footer-right-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 18px;
  }

  .footer-illust {
    width: 170px;
    height: 149px;
    margin-bottom: 18px;
    align-self: center;
  }

  .footer-gnav {
    display: flex;
    gap: 26px;
    list-style: none;
    font-size: 14px;
    margin: 0;
    padding: 0;
  }

  .footer-gnav li {
    position: relative;
  }

  .footer-right li:not(:last-child)::after {
    position: absolute;
    content: "";
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 15px;
    background-color: #544a54;
  }

  .footer-compamy {
    display: flex;
    justify-content: flex-end;
    font-size: 16px;
    margin-bottom: 18px;
  }

  .footer-company a {
    text-decoration: none;
    color: #544a54;
    position: relative;
  }

  .footer-company a+a::before {
    content: "|";
    display: inline-block;
    width: 1px;
    height: 15px;
    color: #544a54;
    margin-right: 13px;
  }

  .copyright {
    text-align: center;
    font-size: 16px;
    margin-top: 18px;
    padding-bottom: 18px;
    position: relative;
    z-index: 2;
  }
}

/** -----------------------------------------------
  共通
------------------------------------------------**/
body {
  /*下記のCSSはご自身のデザインに合わせて書き換えてください。*/
  font-size: 18px;
  line-height: 1.5;
  color: #544a54;
  background-color: #fff;
  font-family: "NotoSans JP", "Yu Gothic", "游ゴシック", "YuGothic", "游ゴシック体", "Osaka", "Verdana", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  margin: 0;
}



/** -----------------------------------------------
  PC :  画面の横幅が641px以上
------------------------------------------------**/
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

.blob {
  display: block;
  position: absolute;
  z-index: -1;
  opacity: 0.5;
  pointer-events: none;
}

.gnav {
  display: flex;
  gap: 32px;
  /* メニュー間の余白 */
  list-style: none;
  margin: 0;
  padding: 0;
}

.gnav li {
  list-style: none;
}

.hamburger-menu {
  display: none;
}

.nav-menu {
  display: none;
}

.section-title span {
  display: inline;
}


/*ここからメディアクエリで各デバイスサイズに書き分けます。
今回の課題で考慮するのはPCとスマホのみでOKですが、タブレットサイズでのスタイルを書いてもOK！
また、CSSは上から下に継承されるので、変化させたいところだけ書けばOKです*/


/** -----------------------------------------------
  Smartphone :  画面の横幅が640pxまで
------------------------------------------------**/
@media screen and (max-width:640px) {

  .pc-only {
    display: none;
  }


  .sp-only {
    display: block;
  }

  .header-inner {
    padding: 0 20px;
  }
  .header-left {
    padding-left: 0;
  }
  .header-right {
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 12px;
  }

  .gnav {
    display: none;
  }

  @keyframes fadeIn {
    0% {
      top: 0;
      opacity: 0;
    }

    100% {
      top: 25%;
      opacity: 1;
    }
  }

  .hamburger-menu {
    display: block;
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
    user-select: none;
  }

  .line {
    background-color: #544a54;
    height: 2px;
    width: 100%;
    position: absolute;
    transition: all 0.3s;
  }

  .line:nth-of-type(1) {
    top: 0;
  }

  .line:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
  }

  .line:nth-of-type(3) {
    bottom: 0;
  }

  .hamburger-menu.active>.line:nth-of-type(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }

  .hamburger-menu.active>.line:nth-of-type(2) {
    display: none;
  }

  .hamburger-menu.active>.line:nth-of-type(3) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    transform: translate(-20%, -20%);
    align-items: center;
    justify-content: flex-start;
    padding: 8px;
    width: 50%;
    background-color: #fff;
    border: 1px solid #ccc;
    opacity: 0;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
    max-height: 80%;
  }

  .nav-menu.active {
    display: flex;
    animation: fadeIn 0.3s forwards;
  }

  .nav-menu a {
    text-decoration: none;
    color: #544a54 ;
    padding: 5px;
    margin: 5px;
  }


  .header-left img {
    width: 105px;
    height: 13px;
    object-fit: contain;
  }

  .fv-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;

    width: 100px;
    height: 30px;
    font-size: 14px;
  }

  .arrow {
    display: inline-block;
    width: 0;
    height: 0;

    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 9px solid #544a54;
  }

  .gnav {
    display: none;
  }

  .gnav.active {
    display: block;
  }
  .header {
    width: 100%;
    height: 60vh;
  }
  #mainvisual {
    width: 100%;
    height: 60vh;
  
  }
  .slide {
   background-position: center;
  }
  .wave-bg {
    height: 100px;
  }

  .about {
    padding: 40px;
  }
  .about-inner {
    padding: 0 9px;
    flex-direction: column-reverse;
    gap: 36px;
  }

  .about-inner .section-discription {
    margin: 0 0;
    font-size: 16px;
  }

  .about-image img {
    max-width: 100%;
    margin: 0 auto;
    height: auto;
  }

  .cta-button {
    margin: 0 auto;
  }
  .blob {
    display: none
  }
  .service {
    padding: 40px 0 40px 0;
  }

  .section-explain {
    font-size: 14px;
    width: 105px;
  }

  .section-title span {
    display: block;
  }

  .section-title {
    text-align: center;
    padding: 0 0 9px;
  }

  .section-discription {
    margin: 0 32px;
    font-size: 16px;
    padding-top: 9px;
    text-align: start;
  }

  .oval-wrap {
    font-size: 16px;
  }

  /* 上段を縦並びに */
  .oval-row {
    flex-direction: column;
    align-items: center;
    gap: 0px;
  }

  /* カードサイズ調整 */
  .oval-card {
    width: 90%;
    height: auto;
    padding: 24ox;
  }

  /* 下段も中央に */
  .oval-row.center {
    justify-content: center;
  }

  /* オーバルカード */
  .oval-card {
    border-radius: 50% / 50%;
  }

  .oval-card p {
    text-align: left;
  }

  /* 「もっと見る」ボタン中央寄せ */
  .service-link {
    margin: 18px auto 0;
  }

  .photo-slider {
    padding-top: 9px;
    margin-left: 50px;
    margin-right: 50px;
  }

  .photo-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .slick-prev,
  .slick-next {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid #ccc;
  }

  .benefit {
    padding: 40px 0;
  }

  .balloon-wrap {
    display: flex;
    flex-direction: column;
    padding: 0 50px 110px;
    margin-bottom: 18px;
  }

  .balloon:nth-child(odd) {
    align-self: flex-start;
  }

  .balloon:nth-child(even) {
    align-self: flex-end
  }

  .benefit-link {
    margin: 18px auto 32px;
    text-align: center;
    justify-content: center;
  }

  .member-card-1,
  .member-card-2,
  .member-card-3,
  .member-card-4,
  .member-card-5 {
    display: none;
  }

  .member-card-1,
  .member-card-3 {
    display: block;
  }

  .member-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 0;
  }

  .member-card-1 {
    margin-bottom: 0;
  }

  .member-card-3 {
    margin-top: 0;
  }

  .member-link {
    margin: 0 auto;
    margin-bottom: 40px;
  }

  .recruit {
    width: 100%;
    padding: 40px 20px;
  }
.recruit-text {
  font-size: 16px;
  text-align: start;
}
.circle-text {
  font-size: 16px;
}

  .recruit-logo {
    display: none;
  }

  .recruit-area {
    width: 100%;
    height: auto;
  }

  .circle-wrap {
    display: flex;
    flex-direction: column;
    gap: 0px;
  }

  .circle {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    margin-top: -32px;
  }

  .circle:first-child {
    margin-top: 0;
  }

  .circle:nth-child(odd) {
    align-self: flex-start;
  }

  .circle:nth-child(even) {
    align-self: flex-end;
  }

  .recruit-link {
    margin: 0 auto;
  }

  .faq {
    padding: 40px 20px;
  }

  .faq-list {
    width: 100%;
    padding: 0 20px;
  }

  .faq-title {

    gap: 8px;
  }

  .faq-question,
  .faq-answer {
    width: 100%;
    height: auto;
    /* 高さ固定やめる */
    padding: 12px 0;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-answer {
    font-size: 16px;
  }

  .faq-more {
    margin: 36px auto 0;
  }

  .cta-top h4 {
    font-size: 16px;
    text-align: center;
    margin: 0 40px;
  }

  .cta {
    flex-direction: column;
  }

  .cta-entry,
  .cta-contact {
    width: 100%;
    max-width: 275px;
  }

  .footer .footer-inner {
    flex-direction: column;

    margin: 0;
    text-align: center;
  }

  .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer .footer-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0;
  }

  .footer .footer-title {
    display: block;
    text-align: center;
    width: auto;
    font-size: 16px;
  }

  .footer .footer-section-explain {
    font-size: 14px;
    display: block;
    text-align: center;
    margin-top: 0;
  }

  .footer .footer-left img {
    display: block;
    align-items: center;
    width: 220px;
  }

  .footer .footer-company {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 0;
    margin-top: 18px;
    margin-bottom: 9;
    font-size: 14px;
  }

  .footer .footer-gnav {
    display: none;
  }

  .footer-right li:not(:last-child)::after {
    display: none;
  }

  .footer .footer-company a+a::before {
    display: none;
  }

  .footer .footer-illust {
    width: 120px;
    height: auto;
    align-items: center;
  }

  .footer .copyright {
    font-size: 14px;
    margin-top: 9px;
    padding-bottom: 9px;
  }

  .footer {
    width: 100%;
    background: linear-gradient(-85deg,
        rgba(242, 232, 200, 0.3),
        #fff);
    position: relative;


    &::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0px;
      height: 300px;
      pointer-events: none;
      background: linear-gradient(-85deg,
          rgba(237, 191, 191, 0.3),
          rgba(242, 232, 200, 0.3));

      -webkit-mask: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 300' preserveAspectRatio='none'>\
<path d='M0,180 C300,200 800,80 1440,160 L1440,500 L0,300 Z' fill='black'/>\
</svg>") top / 100% 100% no-repeat;

      mask: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 300' preserveAspectRatio='none'>\
<path d='M0,180C300,200 800,80 1440,160 L1440,500 L0,300 Z' fill='black'/>\
</svg>") top / 100% 100% no-repeat;
    }
  }
}