@charset "UTF-8";

/********** base **********/
/* ========================================
    初期設定
    ======================================== */
/* variables */
:root {
  --color-primary: #707070;
  --white: #fff;
  --black: #000;
  --blue: #007DCB;
  --orange: #FFD591;
  --pink: #FF91AF;
  --pink-light: #FF91AF;
  --pink-dark: #FF91AF;
  --pink-gradient: linear-gradient(90deg, #FF8484 0%, #FF91AF 100%);
  --gray: #707070;
}

:root {
  --font-primary: "noto sans jp", "serif";
  --font-secondary: "Hind Vadodara", "serif";
}



body {
  -webkit-font-smoothing: antialiased;
  font-family: var(--font-primary);
  color: var(--color-primary);
  font-weight: 400;
  line-height: 1.5;
  font-size: 15px;
}

.section-ttl {
  font-size: clamp(20px, 10vw, 32px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 600px) {
  .section-ttl {
    align-items: flex-start;
  }
}

.section-ttl span {
  font-family: var(--font-secondary);
}

.section-ttl>span:first-child {
  font-size: clamp(56px, 11vw, 160px);
  font-weight: 500;
  text-transform: lowercase;
  opacity: 0.3;
  line-height: 1.2;
  display: block;
}

.m-section-ttl-ja {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 500;
  color: var(--blue);
  display: inline-block;
  margin-top: -8px;
}

.m-section-ttl-ja span {
  color: var(--color-primary);
}


/* ========================================
    コンテナ幅
    ======================================== */

.container-sm {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: calc(1200px + 32px);
}

.container-md {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: calc(940px + 32px);
}

.container {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: calc(1080px + 32px);
}

.container-lg {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: calc(1200px + 32px);
}

.container-xl {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: calc(85vw + 32px);
}

@media screen and (max-width: 768px) {
  .container-xl {
    max-width: calc(90vw + 32px);
  }
}

@media screen and (max-width: 600px) {
  .container-xl {
    max-width: calc(100% + 32px);
  }
}


/* ========================================
    共通
    ======================================== */
.m-highlight {
  display: inline-block;
  background: var(--pink-gradient);
  padding: 0 8px;
  color: var(--white);
}

.m-grid-3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .m-grid-3-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .m-grid-3-col {
    grid-template-columns: repeat(1, 1fr);
  }
}

.m-grid-2-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 600px) {
  .m-grid-2-col {
    grid-template-columns: repeat(1, 1fr);
  }
}

.m-marker-wavy {
  background-image: url('../img/top/border-line.svg');
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% auto;
  display: inline-block;
  line-height: 1.3;
}

/* ========================================
    ヘッダー
    ======================================== */
/* ========================================
    フッター
    ======================================== */
.footer {
  background: linear-gradient(90deg, #4EA0D5 0%, #69B5E6 100%);
  padding: 16px 0;
  color: var(--white);
  text-align: center;
}

.footer__copyright {
  font-size: 14px;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 600px) {
  .footer__copyright {
    font-size: 12px;
    padding: 0 16px;
  }
}

/* ========================================
    メインビジュアル
    ======================================== */

.mainV__inner {
  position: relative;
  width: 100%;
  height: auto;
}

.mainV__img {
  position: relative;
}

.mainV__map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.mainV__map-item {
  position: absolute;
  pointer-events: auto;
  transition: background 0.3s;
  /* PCエリア配置（仮） */
  /* border: 3px solid red; */
  top: 71.6%;
  left: 44.6%;
  width: 44.9%;
  height: 12.2%;
  border-radius: 13px;
}

@media screen and (min-width: 1081px) {
  .mainV__map-item:hover {
    background: rgba(255, 255, 255, 0.2);
  }
}

@media (max-width: 600px) {
  .mainV__map-item {
    /* スマホエリア配置（仮） */
    border-radius: 8px;
    top: 85%;
    left: 10%;
    width: 79%;
    height: 10%;
  }
}



/* ========================================
    ナビゲーションドロワー
    ======================================== */
/* ========================================
    投稿一覧ページ
    ======================================== */
/* ========================================
    投稿詳細ページ
    ======================================== */


.m-post-main img {
  object-fit: contain;
  width: auto;
  height: auto;
  margin-bottom: 20px;
}

.m-post-main p {
  margin-bottom: 20px;
  line-height: 2;
}

@media (max-width: 600px) {
  .m-post-main p {
    font-size: 14px;
  }
}

.m-post-main a {
  display: inline-block;
  margin-bottom: 20px;
  color: #00AFED;
  text-decoration: underline;
}

.m-post-main h1 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .m-post-main h1 {
    font-size: 28px;
  }
}

.m-post-main h2 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .m-post-main h2 {
    font-size: 22px;
  }
}

.m-post-main h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .m-post-main h3 {
    font-size: 18px;
  }
}

/* ========================================
    トップページ
    ======================================== 
*/
/* ========================================
    下層ページ
    ======================================== */
/* ========================================
    プライバシーポリシー
    ======================================== */
.policy {
  padding-top: 100px;
  padding-bottom: 100px;
}

.policy__title {
  font-size: 24px;
  margin-bottom: 40px;
}

.policy__content {
  line-height: 1.75;
}

.policy__content .wp-block-heading {
  font-size: 20px;
  margin-top: 30px;
}

.policy__content .wp-block-spacer {
  height: 40px !important;
}

.policy__content .wp-block-list {
  padding: 20px 0;
  list-style: disc;
  margin-left: 1em;
}

.policy__content p,
.policy__content a,
.policy__content li {
  margin-top: 1em;
}

/* ========================================
    お問い合わせ
    ======================================== */
.contact {
  padding: 120px 0;
}

@media (max-width: 600px) {
  .contact {
    padding: 80px 0;
  }
}

.contact__info {
  font-size: 14px;
  text-align: center;
  line-height: 2;
}

@media (max-width: 600px) {
  .contact__info {
    font-size: 13px;
  }
}

.contact__form {
  margin-top: 64px;
  width: 100%;
}

.form-unit {
  width: 100%;
  margin-bottom: 2em;
}

.form-unit__head {
  display: flex;
  align-items: center;
  margin-bottom: 0.5em;
}

.m-required::after {
  content: "必須";
  color: red;
  font-size: 10px;
  margin-left: 2px;
  border-radius: 4px;
  padding: 0 5px;
}

.form-unit__input,
.form-unit__input-wrap {
  width: 100%;
  height: auto;
  padding: 8px;
  border: 1px solid #ccc;
  background: #f9f9f9;
  border-radius: 4px;
  font-size: 16px;
}

.form-unit__textarea,
.form-unit__textarea-wrap {
  width: 100%;
  padding: 8px;
  height: 210px;
  border: 1px solid #ccc;
  background: #f9f9f9;
  border-radius: 4px;
  font-size: 16px;
}

.form-unit__radio {
  margin-top: 20px;
}

.form-unit__date {
  width: 40%;
  height: 70px;
  padding: 8px;
  border: 1px solid #ccc;
  background: #f9f9f9;
  border-radius: 4px;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .form-unit__date {
    width: 50%;
    height: 54px;
  }
}

.wpcf7-list-item {
  display: block;
  margin-left: 0;
  margin-right: 20px;
}

.wpcf7-submit {
  text-align: center;
  display: block;
  width: 100%;
  margin: 40px auto 0;
  padding: 20px;
  border-radius: 4px;
  border: 1px solid #ccc;
  transition: 0.3s;
}

.wpcf7-radio {
  -webkit-appearance: button !important;
  appearance: button !important;
  display: flex;
}

.wpcf7-radio input:hover,
.wpcf7-radio label:hover {
  cursor: pointer;
}

.wpcf7-response-output {
  border-color: transparent !important;
  text-align: center !important;
}

input[type=radio] {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #555;
  position: relative;
  background-color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: translateY(-2px);
}

input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #555;
  transform: translate(-50%, -50%);
}

.form-checkbox {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid #555;
  position: relative;
  background-color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: translateY(-2px);
}

.form-checkbox:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 25%;
  width: 5px;
  height: 10px;
  border-right: 1px solid #555;
  border-bottom: 1px solid #555;
  transform: rotate(45deg) translate(-50%, -50%);
}

.form-unit__policy-link {
  border-bottom: 1px solid #555;
}

@media screen and (max-width: 768px) {
  .form-unit__policy-link {
    font-size: 15px;
  }
}

.form-consent {
  margin-top: 80px;
  margin-bottom: 80px;
  text-align: center;
}

input.wpcf7-form-control.wpcf7-previous {
  display: block;
  margin: 0 auto;
}

/* ========================================
    ユーティリティ
    ======================================== */
.u-pc-only {
  display: block;
}

@media (max-width: 600px) {
  .u-pc-only {
    display: none;
  }
}

.u-sp-only {
  display: none;
}

@media (max-width: 600px) {
  .u-sp-only {
    display: block;
  }
}

.u-text-center {
  text-align: center;
}

.u-text-left {
  text-align: left;
}

.u-text-right {
  text-align: right;
}

/* worry section */
.worry {
  padding: 120px 0;
  padding-bottom: 25vh;
  background-image: url('../img/bg/blue-01.webp');
  background-size: cover;
  background-position: bottom;
}

@media (max-width: 600px) {
  .worry {
    padding: 48px 0;
  }
}

.worry__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 64px);
}

@media (max-width: 768px) {
  .worry__inner {
    flex-direction: column;
    text-align: left;
  }
}

.worry__img {
  width: 18vw;
}

@media (max-width: 600px) {
  .worry__img {
    width: 40%;
    flex-basis: auto;
  }
}

.worry__img img {
  width: 100%;
  height: auto;
}

.worry__content {
  flex: 0 1 auto;
}

.worry__text {
  font-size: clamp(16px, 2.5vw, 28px);
  line-height: 2;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 8px;
}

@media screen and (max-width: 600px) {
  .worry__text {
    text-align: center;
  }
}

.worry__text:last-child {
  margin-bottom: 0;
}


/* voice section */
.voice {
  position: relative;
  background-image: url('../img/bg/pink-center.webp');
  background-repeat: repeat-y;
  overflow: hidden;
  clip-path: url(#clip-q-both-pc);
  margin-top: -8vw;
}

@media screen and (max-width: 1000px) {
  .voice {
    margin-top: -18vw;
  }
}

@media (max-width: 600px) {
  .voice {

    margin-top: -15vw;
    clip-path: url(#clip-q-both-sp);
  }
}

.voice__accent {
  position: absolute;
  width: 30%;
  bottom: 0;
  right: 0;
  transform: translateX(50%);
}

@media screen and (max-width: 600px) {
  .voice__accent {
    width: 70%;
  }
}

.voice.m-voice--bottom-flat {
  clip-path: url(#clip-q-top-pc);
}

@media (max-width: 600px) {
  .voice.m-voice--bottom-flat {
    clip-path: url(#clip-q-top-sp);
  }
}



.voice__inner {
  position: relative;
  z-index: 1;
  padding: 160px 0 120px;
  padding-bottom: 20vh;
}

@media (max-width: 600px) {
  .voice__inner {
    padding: 120px 0 40px;
    padding-bottom: 20vh;
  }
}

.voice__title {
  color: var(--pink);
  margin-bottom: 48px;
}

@media (max-width: 600px) {
  .voice__title {
    margin-bottom: 32px;
  }
}

.m-voice--bottom-flat .voice__inner {
  padding-bottom: 10vh;
}

.voice__slider {
  margin-top: 40px;
  position: relative;
  width: 100%;
}

@media (max-width: 600px) {
  .voice__slider {
    padding: 0;
  }
}

.voice__slider .splide__arrow {
  width: 48px;
  height: 48px;
  background-color: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 1;
  transition: 0.3s;
  z-index: 2;
}

.voice__slider .splide__arrow:hover {
  background-color: var(--white);
  opacity: 0.8;
}

.voice__slider .splide__arrow svg {
  fill: var(--color-primary);
  width: 1.2em;
  height: 1.2em;
}

.voice__slider .splide__arrow--prev {
  left: 11%;
}

@media (max-width: 600px) {
  .voice__slider .splide__arrow--prev {
    left: 20px;
  }
}

.voice__slider .splide__arrow--next {
  right: 11%;
}

@media (max-width: 600px) {
  .voice__slider .splide__arrow--next {
    right: 20px;
  }
}

.voice__slider .splide__pagination {
  bottom: -16px;
}

.voice__slider .splide__pagination__page {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 1;
  margin: 0 6px;
}

.voice__slider .splide__pagination__page.is-active {
  background: var(--pink);
  transform: scale(1);
}

.voice__slide-img {
  width: 100%;
  margin: 0 auto;
}

.voice__slide-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}



.voice__cta {
  max-width: 600px;
  margin: 64px auto 0;
  padding: 0 16px;
  transition: 0.3s;
}

@media (max-width: 600px) {
  .voice__cta {
    margin-top: 40px;
  }
}

.voice__cta:hover {
  transform: scale(1.02);
}

.voice__cta img {
  width: 100%;
  height: auto;
}

/* movie section */
.movie {
  position: relative;
  background-image: url('../img/bg/pink-center-02.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  clip-path: url(#clip-q-both-pc);
  margin-top: -8vw;
}

@media screen and (max-width: 1120px) {
  .movie {
    margin-top: -22vw;
  }
}

@media (max-width: 600px) {
  .movie {
    margin-top: -21vw;
    clip-path: url(#clip-q-both-sp);
  }
}


.movie__inner {
  position: relative;
  z-index: 1;
  padding: 160px 0 120px;
}

@media (max-width: 600px) {
  .movie__inner {
    padding-top: 20vh;
    padding-bottom: 20vh;
  }
}

.movie__title {
  color: var(--pink);
  margin-bottom: 48px;
}


.movie__box {
  background-color: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width: 800px;
  margin: 0 auto 80px;
  padding: 8px;
}

.movie__box-ttl {
  background-color: var(--pink-light);
  color: var(--white);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  padding: 16px;
  text-align: center;
  border-radius: 8px;
}

.movie__box-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 60px;
  padding: 40px 20px;
  list-style: none;
  width: fit-content;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .movie__box-list {
    grid-template-columns: 1fr;
    padding: 24px 16px;
    gap: 16px;
  }
}

.movie__box-item {
  font-size: clamp(15px, 2vw, 22px);
  font-weight: 500;
  color: var(--gray);
  position: relative;
  padding-left: 1.5em;
  white-space: nowrap;
}

.movie__box-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: var(--pink-light);
  border-radius: 50%;
}

.movie__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 80px);
}

@media (max-width: 768px) {
  .movie__bottom {
    flex-direction: column;
    text-align: center;
  }
}

.movie__bottom-text {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .movie__bottom-text {
    text-align: center;
  }
}

.movie__bottom-img {
  width: 50%;
}

@media screen and (max-width: 600px) {
  .movie__bottom-img {
    width: 100%;
  }
}

.movie__bottom-img img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.u-color-pink {
  color: var(--pink-light);
}



/* concept section */
.concept {
  margin-top: -25vh;
  overflow: hidden;
  position: relative;
  padding-top: calc(25vh + 100px);
  padding-bottom: 25vh;
  z-index: -1;
  background-color: rgba(255, 165, 165, 0.44);
}

@media (max-width: 600px) {
  .concept {
    padding: 96px 0;
    padding-top: calc(25vh + 80px);
  }
}


.concept__accent {
  position: absolute;
  width: 30%;
}

@media screen and (max-width: 600px) {
  .concept__accent {
    width: 70%;
  }
}

.concept__accent--top {
  top: 0vh;
  right: 0;
  width: 35%;
  transform: translateX(50%);
}

@media screen and (max-width: 600px) {
  .concept__accent--top {
    top: 15vh;
    right: 0;
    width: 70%;
    transform: translateX(25%);
  }
}

.concept__accent--bottom {
  bottom: 0;
  left: 0;
  transform: translateX(-50%);
}

.concept__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 64px);
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .concept__inner {
    flex-direction: column-reverse;
    text-align: left;
  }
}

.concept__content {
  flex: 0 1 auto;
  max-width: 600px;
}

.concept__title {
  font-size: clamp(20px, 2.8vw, 32px);
  line-height: 1.5;
  font-weight: 700;
  color: #707070;
  margin-bottom: 32px;
}

@media (max-width: 600px) {
  .concept__title {
    margin-bottom: 24px;
    text-align: center;
  }
}

.concept__title .m-highlight {
  margin-top: 8px;
}

.concept__text {
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.8;
  color: #707070;
  font-weight: 500;
}

@media screen and (max-width: 600px) {
  .concept__text {
    text-align: center;
  }
}


.concept__img {
  width: 18vw;
}

@media screen and (max-width: 600px) {
  .concept__img {
    width: 40%;
  }
}

.concept__img img {
  width: 100%;
  height: auto;
}

/* curriculum section */
.p-curriculum {
  margin-top: -100px;
  padding-top: 180px;
  padding-bottom: 20vh;
  background-image: url('../img/bg/blue-02.webp');
  background-size: cover;
  background-position: center;
}

@media (max-width: 600px) {
  .p-curriculum {
    padding-top: 164px;
    padding-bottom: 15vh;
  }
}

.p-curriculum__title {
  color: #A3D8F5;
  margin-bottom: 48px;
}


.p-curriculum__content {
  margin-top: clamp(40px, 8vw, 64px);
}

.p-curriculum__list {
  max-width: fit-content;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}


.p-curriculum__item {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2.5vw, 24px);
  font-size: clamp(18px, 2.2vw, 32px);
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: clamp(16px, 2.5vw, 24px);
}

@media screen and (max-width: 600px) {
  .p-curriculum__item {
    font-size: 15px;
  }
}

.p-curriculum__item:last-child {
  margin-bottom: 0;
}

.p-curriculum__bullet {
  display: inline-block;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  position: relative;
  line-height: 1;
}

@media screen and (max-width: 600px) {
  .p-curriculum__bullet {
    width: 15px;
    height: 15px;
  }
}

.p-curriculum__bullet img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-curriculum__arrow {
  width: 120px;
  height: 48px;
  background-color: #A3D8F5;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  margin: clamp(18px, 8vw, 80px) auto;
}

@media screen and (max-width: 600px) {
  .p-curriculum__arrow {
    width: 70px;
    height: 15px;
    margin-bottom: 10px;
  }
}

.p-curriculum__support-ttl {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 700;
  color: #707070;
  margin-bottom: clamp(20px, 5vw, 48px);
}

.p-curriculum__support-img img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  aspect-ratio: 1/.85;
  object-fit: cover;
}

@media screen and (max-width: 600px) {
  .p-curriculum__support {
    display: block;
    max-width: 320px;
    margin: 0 auto;
    padding-top: 40px;
    padding-bottom: 10px;
  }

  .p-curriculum__support-img {
    width: 80%;
    margin-top: -55%;
    position: relative;
  }

  .p-curriculum__support-img:first-child {
    margin-top: 0;
    margin-left: 0;
    z-index: 1;
  }

  .p-curriculum__support-img:nth-child(2) {
    z-index: 2;
    margin: 0 0 0 auto;
    transform: translateY(-50%);
  }

  .p-curriculum__support-img:nth-child(3) {
    z-index: 1;
    margin-left: 0%;
  }
}

.u-color-blue {
  color: var(--blue);
}


/* learning section */
.learning {
  background-image: url('../img/bg/blue-02.webp');
  background-size: cover;
  background-position: center;
  margin-top: -100px;
  padding-top: 180px;
  padding-bottom: 20vh;
}

@media (max-width: 600px) {
  .learning {
    padding-top: 108px;
    padding-bottom: 15vh;
  }
}

.learning__title {
  color: #A3D8F5;
  margin-bottom: 48px;
}


.learning__content {
  margin-top: clamp(40px, 8vw, 64px);
}

.learning__texts {
  margin-bottom: clamp(48px, 8vw, 80px);
}

.learning__text {
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 500;
  line-height: 2;
  color: var(--color-primary);
  margin-bottom: 32px;
}

@media screen and (max-width: 600px) {
  .learning__text {
    text-align: left;
  }
}

.learning__text:last-child {
  margin-bottom: 0;
}

.learning__img {
  max-width: 800px;
  margin: 0 auto;
}

.learning__img img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* community section */
.p-community {
  position: relative;
  background-image: url("../img/bg/pink-center-02.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  clip-path: url(#clip-q-both-pc);
  margin-top: -8vw;
  padding: 160px 0 120px;
}

@media screen and (max-width:1320px) {
  .p-community {
    margin-top: -22vw;
  }
}

@media (max-width: 600px) {
  .p-community {
    margin-top: -21vw;
    clip-path: url(#clip-q-both-sp);
    padding: 20vh 0;
  }
}

.p-community__title {
  color: var(--pink);
}


.p-community__content {
  margin-top: clamp(40px, 8vw, 64px);
}

.p-community__texts {
  margin-bottom: clamp(48px, 8vw, 80px);
}

.p-community__text {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 500;
  line-height: 2;
  color: var(--color-primary);

}

@media screen and (max-width: 600px) {
  .p-community__text {
    text-align: left;
  }
}

.p-community__text:last-child {
  margin-bottom: 0;
}

.p-community__img {
  max-width: 800px;
  margin: 0 auto;
}

.p-community__img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* ========================================
    選ばれる理由セクション
    ======================================== */
.p-choose {
  background-image: url('../img/bg/blue-02.webp');
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: -1;
  margin-top: -150px;
  padding-top: 180px;
  padding-bottom: 20vh;
}

@media (max-width: 600px) {
  .p-choose {
    padding-top: 15vh;
    padding-bottom: 15vh;
  }
}

.p-choose__title {
  color: #A3D8F5;
  margin-bottom: 48px;
}

@media (max-width: 600px) {
  .p-choose__title {
    margin-bottom: 32px;
  }
}


.p-choose__desc-box {
  max-width: fit-content;
  margin: 0 auto 64px;
}

.p-choose__desc-text {
  font-size: clamp(14px, 2.2vw, 24px);
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
  color: #707070;
}

@media screen and (max-width: 600px) {
  .p-choose__desc-text {
    text-align: left;
  }
}

.p-choose__grid {
  gap: 24px;
}

.p-choose__card {
  background-color: var(--white);
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.16);
  padding: 40px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 600px) {
  .p-choose__card {
    padding: 32px 24px;
  }
}

.p-choose__card-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

@media screen and (max-width: 600px) {
  .p-choose__card-header {
    margin-bottom: 12px;
  }
}

.p-choose__card-number {
  font-family: var(--font-secondary);
  font-size: clamp(40px, 6vw, 70px);
  font-weight: 500;
  color: #A3D8F5;
  line-height: 1;
}

.p-choose__card-title {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  color: #6899B7;
}

.p-choose__card-text {
  font-size: 14px;
  line-height: 2;
  color: var(--gray);
}

.u-fw-bold {
  font-weight: 700;
}