@charset "UTF-8";

html { 
  font-size: 100%;
}
body {
  margin: 0;
  padding: 0;
  background: #f4f2ee;
  color: #37332b;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  letter-spacing: 0.05em;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none;
  overflow-x: hidden;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
  }
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ==== inview 
================================ */
.fadein { opacity: 0; transition: 2s;}
.fadein.is-show { opacity: 1;}
.fadeIn_up { opacity: 0; transform: translate(0, 50%); transition: 2s;}
.fadeIn_up.is-show { transform: translate(0, 0); opacity: 1;}

/* ==== header 
================================ */
.header {
  position: fixed;
  width: 100%;
  height: 80px;
  color: #fff;
  z-index: 999;
}

.header-logo {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  z-index: 2000;
}

.header-logo.hide {
  opacity: 0;
  pointer-events: none;
}

.header-navi.active ~ .header-logo {
  opacity: 0;
  pointer-events: none;
}

.header-navi {
  position: fixed;
  top: 0;
  right: 0;
  width: min(100%, 760px);
  height: 100vh;
  padding: 130px 40px 40px;
  background: #f4f2ee;
  border-radius: 30px 0 0 30px;
  transform: translateX(110%);
  transition: transform 0.6s;
  overflow-y: auto;
  z-index: 1000;
}

.header-navi.active { 
  transform: translateX(0%);
}

.navi-menu {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

.navi-list {
  width: 220px;
  flex-shrink: 0;
  margin: 0;
  padding: 10px 0 0;
  text-align: center;
}

.navi-list li {
  list-style: none;
  margin-bottom: 14px;
}

.navi-list li a {
  color: #6fdbee;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.navi-contact {
  width: 100%;
  max-width: 320px;
  margin: 0;
  padding: 0;
  background: transparent;
}

.navi-contact_inner {
  max-width: 320px;
  margin: 0 auto;
  padding: 40px 16px;
  background: #f7f7f7;
  border-radius: 30px;
  box-shadow: 6px 6px 20px rgba(143, 132, 133, 0.2);
}

.navi-contact_lead {
  position: relative;
  margin: 0 0 28px;
  text-align: center;
  color: #37332b;
  font-size: 14px;
}

.navi-contact_lead::before,
.navi-contact_lead::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 22px;
  height: 1.5px;
  background: #37332b;
}

.navi-contact_lead::before {
  left: 8px;
  transform: translateY(-50%) rotate(50deg);
}

.navi-contact_lead::after {
  right: 8px;
  transform: translateY(-50%) rotate(-50deg);
}

.navi-contact_btns {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.navi-contact_btn {
  display: flex;
  align-items: center;
  position: relative;
  padding: 10px 70px 10px 16px;
  min-height: 64px;
  border-radius: 999px;
  text-decoration: none;
  border: 4px solid #f7f7f7;
}

.navi-contact_icon {
  width: 36px;
  font-size: 22px;
  color: #fff;
  display: flex;
  justify-content: center;
}

.navi-contact_text {
  margin-left: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.navi-contact_arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: #f7f7f7;
  border-radius: 50%;
  font-size: 20px;
}

.navi-contact_btn1 {
  background: #6fdbee;
}
.navi-contact_btn1 .navi-contact_arrow {
  color: #6fdbee;
}

.navi-contact_btn2 {
  background: #61c0bf;
}
.navi-contact_btn2 .navi-contact_arrow {
  color: #61c0bf;
}

.navi-contact_btn3 {
  background: #f0c6b8;
}
.navi-contact_btn3 .navi-contact_arrow {
  color: #f0c6b8;
}

.navi-contact_link {
  margin-top: 40px;
  padding: 0;
  text-align: center;
  list-style: none;
}

.navi-contact_link li + li {
  margin-top: 0;
}

.navi-contact_link a {
  font-size: 10px;
  color: #37332b;
  text-decoration: none;
}

@media (max-width: 840px) {
  .navi-menu {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .navi-list {
    width: 100%;
  }

  .navi-contact {
    max-width: 320px;
  }
}

.header-menu_btn {
  position: fixed;
  top: 10px;
  right: 10px;
  width: 60px;
  height: 60px;
  background: #6fdbee;
  border-radius: 50%;
  color: #fff;
  border: none;
  cursor: pointer;
  z-index: 2001;
}

.header-menu_btn span {
  display: block;
  position: absolute;
  width: 33px;
  right: 12px;
  transition: 0.3s ease-in-out;
  font-size: 10px;
  font-weight: 500;
}

.header-menu_btn .line {
  height: 3px;
  border-radius: 12px;
  background: #fff;
}

.header-menu_btn span:nth-child(1) { top: 18px; }
.header-menu_btn span:nth-child(2) { top: 26px; }
.header-menu_btn span:nth-child(3) { top: 35px; }

.header-menu_btn.active span:nth-child(1) {
  top: 26px;
  background: #fff;
  transform: rotate(-45deg);
}

.header-menu_btn.active span:nth-child(2) {
  background: #fff;
  transform: rotate(45deg);
}

.header-menu_btn.active .menu {
  color: #fff;
  font-size: 0px;
  margin-top: 6px;
}

.header-menu_btn.active .menu::after {
  content: "CLOSE";
  color: #fff;
  font-size: 10px;
}

.header-menu_btn.active .menu span {
  display: none;
}

html.is-fixed,
html.is-fixed body {
  height: 100%;
  overflow: hidden;
}

/* ==== main Top
================================ */
.top {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.bg-video {
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-inner,
.scroll-box {
  position: relative;
  z-index: 3;
}

.top-inner {
  max-width: 90%;
  height: 100%;
  margin: 0 auto;
}

.top-line {
  position: absolute;
  width: 2px;
  height: 30%;
  background: #fff;
}

.top-line_left {
  top: 55%;
  left: 10px;
}

.top-line_right {
  top: 15%;
  right: 10px;
}

.top-text {
  position: absolute;
  color: #fff;
}

.top-text_left {
  top: 15%;
  left: 10px;
  max-width: 400px;
}

.top-text_left h1 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  line-height: 1;
  font-family: "Jost", sans-serif;
}

.top-text_left p {
  margin-top: 20px;
  font-family: "Zen Maru Gothic", sans-serif;
}

.top-text_right {
  top: 55%;
  right: 10px;
  text-align: right;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(18px, 2vw, 22px);
}

.top-text_right1 {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 600;
}

.top-scroll {
  position: absolute;
  left: 50%;
  bottom: -5%;
  transform: translateX(-50%);
  text-align: center;
  margin: 0;
  padding: 0;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 5;
}

.top-scroll a:hover {
  opacity: 0.7;
}

.scroll-down {
  position: relative;
  width: 100px;
  height: 100px;
  color: #fff;
  font-family: "Jost", sans-serif;
  text-decoration: none;
}

.scroll-text {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotate 20s linear infinite;
}

.scroll-text span {
  position: absolute;
  left: 50%;
  font-size: 8px;
  transform-origin: 0 50px;
}

.scroll-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 40px;
  transform: translate(-50%, -50%);
  animation: scroll_01 3s infinite;
}

.scroll-arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 3px;
  background-color: #fff;
  transform: translateX(-50%);
}

.scroll-arrow::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-bottom: 3px solid #fff;
  transform: translateX(-50%) rotate(-45deg);
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes scroll_01 {
  0% { transform: translate(-50%, -50%) translateY(-10px); opacity: 0;}
  30% { opacity: 1;}
  100% { transform: translate(-50%, -50%) translateY(10px); opacity: 0;}
}

.top-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 30vh;
  z-index: 3;
}

.top-bg_img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

@media (max-width: 840px) {
  .top-bg {
    height: 15vh;
  }
  .top-scroll {
    bottom: 25px;
  }
}


/* ==== Contact btn 
================================ */
.main-btns {
  position: fixed;
  display: flex;
  gap: 15px;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.3s;
}

.main-btns.show {
  opacity: 1;
  transform: translateY(0);
}

.main-btn {
  width: 150px;
  flex-direction: column;
  padding: 10px 10px 5px;
  text-decoration: none;
  text-align: center;
  background: #f4f2ee;
  border: 5px solid;
  border-radius: 30px;
  backdrop-filter: blur(5px);
}

.main-btn_icon{
  font-size: 20px;
}

.main-btn_cons {
  border-color: #6fdbee;
  color: #6fdbee;
}

.main-btn_cont {
  border-color: #61c0bf;
  color: #61c0bf;
}

.main-btn_insta {
  border-color: #f0c6b8;
  color: #f0c6b8;
  font-family: "Font Awesome 5 Brands";
  content: "\f16d";
  font-weight: 400; 
}

.main-btn_insta p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal; 
}

/* ==== Collage 
================================ */
.collage {
  position: relative;
  overflow: hidden;
  background: #6fdbee;
}

.collage-bg {
  position: absolute;
  inset: 0;
  background-image: url("	http://ryugaku.kilo.jp/wonderworld-jp.com/test/collage-bg_test.png");
  background-size: cover;
  background-position: center bottom;
  object-fit: cover;
  z-index: 0;
}

.collage-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      #6fdbee 0%,
      #6fdbee 18%,
      rgba(111, 219, 238, 0.92) 28%,
      rgba(111, 219, 238, 0.72) 38%,
      rgba(111, 219, 238, 0.42) 50%,
      rgba(111, 219, 238, 0.14) 62%,
      rgba(111, 219, 238, 0) 74%
    );
}

.collage-area {
  position: relative;
  width: min(1280px, calc(100% - 28px));
  height: clamp(1200px, 145vw, 1860px);
  margin: 0 auto; 
  padding: 0 auto;
}

.collage-card {
  position: absolute;
}

.collage-card img {
  width: 100%;
  aspect-ratio: 1/1.08;
  object-fit: cover;
  background: #fff;
  padding: 8px 8px 20px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.25);
  animation: scaleUp 1s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

.card1 { top: 4%; left: 19%; width: 16.5%; transform: rotate(-20deg); z-index: 5;}
.card2 { top: 8%; left: 0; width: 24%; transform: rotate(5deg); z-index: 2;}
.card3 { top: 23%; left: 0; width: 24%; transform: rotate(-20deg); z-index: 3;}
.card4 { top: 28.3%; left: 23%; width: 16.5%; transform: rotate(5deg);z-index: 4;}
.card5 { top: 31%; left: 41%; width: 20%; transform: rotate(-25deg); z-index: 5;}
.card6 { top: 27.8%; right: 12%; width: 24%; transform: rotate(20deg); z-index: 4;}
.card7 { top: 10%; right: 0; width: 24%; transform: rotate(-6deg);z-index: 3;}
.card8 { top: 3.7%; right: 20%; width: 14%; transform: rotate(12deg); z-index: 5;}
.card9 { top: 8%; right: 31.5%; width: 12%; transform: rotate(-12deg); z-index: 3;}

.collage-text_box {
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 7;
}

.collage-text {
  display: block;
  white-space: nowrap;
  padding: 10px 28px;
  margin: 8px 0;
  background: #eafafb;
  border-radius: 20px;
  color: #6fdbee;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 600;
  animation: scaleUp 1s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

.collage-circle {
  position: absolute;
  top: 20%;
  left: 50%;
  width: 42%;
  transform: translate(-50%, -50%);
  opacity: 0.85;
  animation: rotateCircle 30s linear infinite;
  z-index: 1;
}

@keyframes rotateCircle {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.collage-icon { position: absolute; z-index: 6;}
.collage-icon1 { top: 1%; left: 38%; width: 16%; transform: rotate(-18deg);}
.collage-icon2 { top: 4%; left: 28.7%; width: 45.5%; transform: rotate(-40deg);}
.collage-icon3 { top: 39%; left: 17%; width: 15%;}

@keyframes scaleUp {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}

@media (max-width: 840px) {
  .collage-area {
    width: min(840px, calc(100% - 28px));
  }
}

@media (max-width: 768px) {
  .card1 { top: 2%; left: 0; width: 28%; transform: rotate(20deg);}
  .card2 { top: 12%; left: -8%; width: 46%;}
  .card3 { top: 26%; left: -12%; width: 44%;}
  .card4 { top: 33%; left: 23%; width: 36%;}
  .card5 { top: 38%; left: 62%; width: 24%;}
  .card6 { top: 24%; right: -6%; width: 44%;}
  .card7 { top: 13%; right: -6%; width: 30%;}
  .card8 { top: 2%; right: -3.7%; width: 26%;}
  .card9 { top: 5%; right: 26%; width: 26%;}

  .collage-circle {
    top: 18%;
    left: 50%;
    width: 70%;
  }

  .collage-icon1 { top: -2%; left: 32%; width: 28%;}
  .collage-icon2 { top: 6%; left: 20%; width: 80%;}
  .collage-icon3 { top: 46%; left: 14%; width: 24%;}
}

/* ==== Section title background
================================ */
.section-title_wrap {
  width: 100%;
  overflow-x: clip;
  overflow-y: visible;
}

.section-title {
  position: relative;
  width: 100%;
  text-align: center;
  font-size: clamp(21px, 2vw, 36px);
  font-weight: 700;
  white-space: nowrap;
  overflow: visible;
}

.section-title span {
  position: relative;
  z-index: 2;
}

.section-title::before {
  content: attr(data-en);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(48px, 6vw, 80px);
  z-index: 1;
}

.section-bg {
  position: relative;
  width: 100vw;
}

.section-bg img {
  display: block;
  width: 100%;
  max-height: 620px;
  object-position: 50% 50%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 18px;
  }
  .section-title::before {
    top: 0;
    left: 50%;
    font-size: 42px;
  }

}

/* ==== Voice
================================ */
.voices {
  position: relative;
  margin: 0 auto;
}

/*.voices::after {
  content: "";
  position: absolute;
  right: 30px;
  bottom: -30%;
  width: clamp(220px, 28vw, 480px);
  aspect-ratio: 1 / 1;
  background: url("http://ryugaku.kilo.jp/wonderworld-jp.com/images/fish.png") no-repeat center / contain;
  opacity: 0.45;
  pointer-events: none;
  z-index: 1;
}*/

.voice-area,
.voices-slider {
  position: relative;
  z-index: 2;
}

.voice-title {
  margin: -60px auto 120px;
  color: #61c0bf;
}

.voice-title::before {
  color: rgba(97, 192, 191, 0.3);
}

.voice-title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(120px, 10vw, 200px);
  aspect-ratio: 1 / 1;
  transform: translate(200%, -58%);
  background: url("http://ryugaku.kilo.jp/wonderworld-jp.com/images/turtle.png") no-repeat center / contain;
  z-index: 3;
  pointer-events: none;
}

@media (max-width: 768px) {
  .voice-title::after {
    width: 88px;
    transform: translate(120%, 0);
  }
}

.voice-area {
  width: min(1480px, calc(100% - 28px));
  margin: 0 auto;
  overflow: hidden;
}

.voices-slider {
  margin: 0 auto 30px;
  overflow: visible;
}

.swiper-wrapper {
  align-items: center;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.voice-card {
  width: 380px;
  overflow: hidden;
  cursor: pointer;
  transition: width 0.35s ease, padding 0.35s ease, border-radius 0.35s ease, background 0.35s ease;
  box-sizing: border-box;
}

.voice-image {
  border-radius: 8px;
  overflow: hidden;
}

.voice-image img,
.voice-detail-image img {
  width: 100%;
  height: 370px;
  object-fit: cover;
  display: block;
}

.voice-summary,
.voice-detail {
  display: none;
}

.swiper-slide-active {
  z-index: 5;
}

.swiper-slide-active .voice-card,
.swiper-slide-prev .voice-card,
.swiper-slide-next .voice-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 18px 20px rgba(143, 132, 133, 0.18), 0 10px 20px rgba(0,0,0,0.1);
}

.swiper-slide-prev .voice-card,
.swiper-slide-next .voice-card {
  opacity: 1;
  transform: scale(0.9);
}

.swiper-slide-active .voice-card {
  opacity: 1;
  transform: scale(1);
}

.swiper-slide-active .voice-summary,
.swiper-slide-prev .voice-summary,
.swiper-slide-next .voice-summary {
  display: block;
}

.swiper-slide-active .voice-summary h3,
.swiper-slide-prev .voice-summary h3,
.swiper-slide-next .voice-summary h3 {
  margin: 20px 0 8px;
  font-size: 18px;
  font-weight: 700;
}

.swiper-slide-active .voice-summary p {
  margin: 0;
}

.readmore {
  display: block;
  position: relative;
  width: 160px;
  margin: 14px 0 8px auto;
  padding: 4px 16px 4px 0;
  color: #61c0bf;
  font-size: 12px;
  letter-spacing: 0.1em;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}

.readmore::before {
  content: "";
  display: block;
  position: absolute;
  width: 160px;
  height: 1px;
  background: #ccc;
  bottom: 0;
  left: 0;
  transition: all 0.3s;
}

.readmore::after {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 1px;
  background: #ccc;
  rotate: 40deg;
  right: -3px;
  bottom: 10px;
  transition: all 0.3s;
}

.readmore:hover::after,
.readmore:hover::before {
  translate: 20px 0;
  transition: all 0.3s;
}

.voice-detail_close {
  display: block;
  position: relative;
  width: 160px;
  margin: 28px 0 8px auto;
  padding: 4px 16px 4px 0;
  color: #61c0bf;
  font-size: 12px;
  letter-spacing: 0.1em;
  box-sizing: border-box;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.voice-detail_close::before {
  content: "";
  display: block;
  position: absolute;
  width: 160px;
  height: 1px;
  background: #ccc;
  bottom: 0;
  left: 0;
  transition: all 0.3s;
}

.voice-detail_close::after {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 1px;
  background: #ccc;
  rotate: -40deg;
  left: -3px;
  bottom: 10px;
  transition: all 0.3s;
}

.voice-detail_close:hover::after,
.voice-detail_close:hover::before {
  translate: -20px 0;
}

.swiper-slide-active .voice-card.is-open .voice-image,
.swiper-slide-active .voice-card.is-open .voice-summary {
  display: none;
}

.swiper-slide-active .voice-card.is-open .voice-detail {
  display: block;
}

.voice-detail-inner {
  display: block;
}

.voice-detail-left h3 {
  margin: 20px 0 8px;
  font-size: 18px;
  font-weight: 700;
}

.voice-detail-left p {
  margin: 0;
}

.voice-detail-image {
  border-radius: 8px;
  overflow: hidden;
}

.voice-detail-right {
  margin-top: 24px;
}

.qa-block + .qa-block {
  margin-top: 22px;
}

.qa-block h4 {
  margin: 0 0 8px;
  color: #61c0bf;
  font-size: 18px;
  font-weight: 700;
}

.qa-block h4 .q {
  margin-right: 6px;
  font-size: clamp(18px, 2vw, 28px);
}

.qa-block p {
  margin: 0;
}

@media (min-width: 769px) {
  .swiper-slide.slide-open {
    z-index: 20;
  }

  .swiper-slide.slide-open .voice-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(860px, calc(100vw - 80px));
    transform: translate(-50%, -50%);
    padding: 32px 36px;
    border-radius: 32px;
    z-index: 30;
  }

  .swiper-slide.slide-open .voice-detail-inner {
    display: flex;
    gap: 58px;
    align-items: flex-start;
  }

  .swiper-slide.slide-open .voice-detail-left {
    width: 290px;
    flex-shrink: 0;
  }

  .swiper-slide.slide-open .voice-detail-image img {
    height: 340px;
  }

  .swiper-slide.slide-open .voice-detail-right {
    flex: 1;
    min-width: 0;
    margin-top: 0;
    padding-top: 8px;
    max-height: 420px;
    overflow-y: auto;
    padding-right: 10px;
  }

  .voices-slider.has-open-neighbors-hidden .swiper-slide-prev,
  .voices-slider.has-open-neighbors-hidden .swiper-slide-next {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
  }

  .voices-slider.has-open-neighbors-hidden .swiper-slide-prev .voice-card,
  .voices-slider.has-open-neighbors-hidden .swiper-slide-next .voice-card {
    opacity: 0;
    visibility: hidden;
  }
}

@media (max-width: 768px) {
  .swiper-wrapper {
    align-items: flex-start;
  }

  .swiper-slide {
    align-items: flex-start;
  }

  .swiper-slide-active .voice-card.is-open {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 18px 20px rgba(143, 132, 133, 0.18), 0 10px 20px rgba(0,0,0,0.1);
  }

  .swiper-slide-active .voice-card.is-open .voice-detail {
    display: block;
  }

  .swiper-slide-active .voice-card.is-open .voice-detail-inner {
    display: block;
  }

  .swiper-slide-active .voice-card.is-open .voice-detail-right {
    margin-top: 20px;
    max-height: 360px;
    overflow-y: auto;
    padding-right: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .swiper-slide-active .voice-card.is-open .voice-detail-right::-webkit-scrollbar {
    width: 5px;
  }

  .swiper-slide-active .voice-card.is-open .voice-detail-right::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 999px;
  }
}


/* ==== Support 
================================ */
.support {
  background: #b9e5e4;
  margin: 0 auto -100px;
  padding: 0 0 100px;
}

.support-title {
  margin: -25% auto 120px;
  color: #61c0bf;
}

.support-title::before {
  color: rgba(97, 192, 191, 0.3);
}

.support-title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(120px, 10vw, 200px);
  aspect-ratio: 1 / 1;
  background: url("http://ryugaku.kilo.jp/wonderworld-jp.com/images/tarsier.png") no-repeat center / contain;
  transform: translate(-260%, -80%) scaleX(-1);
  z-index: 3;
  pointer-events: none;
}

@media (max-width: 768px) {
  .support-title::after {
    width: 88px;
    transform: translate(-200%, -80%) scaleX(-1);
  }
}

.support-inner {
  width: min(1280px, calc(90%));
  margin: 0 auto;
}

.support-block {
  display: grid;
  grid-template-columns: minmax(320px, 700px) minmax(320px, 700px);
  align-items: center;
  justify-content: center;
  column-gap: 0;
  margin-bottom: 80px;
}

.support-block:last-child {
  margin-bottom: 0;
}

.support-block_image {
  position: relative;
  z-index: 1;
}

.support-block_image img {
  display: block;
  width: 100%;
  aspect-ratio: 1.38 / 1;
  object-fit: cover;
  box-shadow: 6px 6px 20px rgba(143, 132, 133, 0.2);

}

.support-text {
  position: relative;
  top: -24px;
  z-index: 2;
}

.support-block_right .support-text {
  margin-right: -72px;
}

.support-block_left .support-text {
  margin-left: -72px;
}

.support-text_meta {
  position: relative;
  width: 100%;
  height: 70px;
  margin-bottom: -24px;
  font-weight: 600;
  z-index: 3;
}

.support-meta_label {
  position: absolute;
  font-family: "Allura", cursive;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1;
  opacity: 0.4;
  z-index: 2;
}

.support-meta_num {
  position: absolute;
  color: #61c0bf;
  font-family: "Delius", cursive;
  font-size: clamp(41px, 6vw, 64px);
  line-height: 0.85;
  z-index: 1;
}

.support-label_right {
  top: 33px;
  left: 22px;
}

.support-num_right {
  top: 15px;
  left: 20px;
}

.support-label_left {
  top: 33px;
  right: 22px;
}

.support-num_left {
  top: 15px;
  right: 20px;
}

.support-text_box {
  position: relative;
  padding: 34px 20px 28px;
  background: #fff;
  box-shadow: 6px 6px 20px rgba(143, 132, 133, 0.2);
}

.support-box_right::before {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 100%;
  height: 100%;
  border: 2px solid #61c0bf;
  z-index: -1;
}

.support-box_left::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  width: 100%;
  height: 100%;
  border: 2px solid #61c0bf;
  z-index: -1;
}

.support-box_title {
  margin: 0 0 18px;
  color: #61c0bf;
  font-size: 18px;
  font-weight: 700;
}

.support-box_desc {
  margin: 0;
}

@media (max-width: 840px) {
  .support-inner {
    width: 85%;
  }
  
  .support-block {
    display: flex;
    flex-direction: column;
    margin-bottom: 56px;
  }

  .support-block_image {
    order: 1;
    width: 100%;
    position: relative;
    z-index: 1;
  }

  .support-text {
    order: 2;
    position: relative;
    top: -60px;
    width: calc(100% - 48px);
    margin: 0 0 0 12px;
    z-index: 2;
  }

  .support-block_right .support-text,
  .support-block_left .support-text {
    margin: 0 0 0 12px;
  }

  .support-text_meta {
    height: 54px;
    margin-top: -18px;
    margin-bottom: -12px;
  }
}

/* ==== WHY CHOOSE US 
================================ */
.choose {
  margin-bottom: -80px;
  padding: 0;
}

.choose-title {
  margin: -25% auto 140px;
  color: #61c0bf;
}

.choose-title::before {
  color: rgba(97, 192, 191, 0.3);
}

.choose-title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(120px, 10vw, 200px);
  aspect-ratio: 1 / 1;
  transform: translate(200%, -58%);
  background: url("http://ryugaku.kilo.jp/wonderworld-jp.com/images/beach.png") no-repeat center / contain;
  z-index: 3;
  pointer-events: none;
}

@media (max-width: 768px) {
  .choose-title::after {
    width: 88px;
    transform: translate(120%, 0);
  }
}

.choose-inner {
  width: min(1280px, calc(90%));
  margin: 0 auto;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  align-items: start;
}

.choose-card {
  position: relative;
  padding-top: 22px;
}

.choose-text_meta {
  position: absolute;
  top: -8px;
  left: 18px;
  width: 120px;
  height: 64px;
  font-weight: 600;
  z-index: 3;
}

.choose-meta_label {
  position: absolute;
  top: 18px;
  left: 10px;
  font-family: "Allura", cursive;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1;
  opacity: 0.4;
  z-index: 2;
}

.choose-meta_num {
  position: absolute;
  top: 5px;
  left: 0;
  color: #61c0bf;
  font-family: "Delius", cursive;
  font-size: clamp(41px, 6vw, 64px);
  line-height: 0.85;
  z-index: 1;
}

.choose-card_inner {
  position: relative;
  height: 580px;
  padding: 84px 20px 28px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 0 180px 0 0;
  box-shadow: -8px 8px 0 rgba(143, 132, 133, 0.2);
}

.choose-card_inner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 72%;
  height: 140px;
  border-top-right-radius: 84px;
  pointer-events: none;
}

.choose-card_icon {
  display: flex;
  height: 180px;
  margin-bottom: 40px;
  justify-content: center;
  align-items: center;
}

.choose-card_icon img {
  max-width: 200px;
  max-height: 200px;
  width: auto;
  height: auto;
}

.choose-card_title {
  margin: 0 0 24px;
  color: #61c0bf;
  font-size: 18px; 
  font-weight: 700;
  text-align: center;
}

.br-mini {
  display: none;
}

.choose-card_text {
  margin: 0;
  text-align: left;
}

.choose-message { 
  margin: 80px 0 0; 
  color: #61c0bf; 
  font-size: clamp(20px, 2vw, 24px); 
  font-weight: 700; 
  text-align: center; 
}

@media (max-width: 1281px) {
  .br-mini {
    display: inline;
  }
}

@media (max-width: 1141px) {
  .choose-card_inner {
    border-radius: 0 140px 0 0;
  }
  .choose-card_icon img {
    max-width: 180px;
    max-height: 180px;
  }
}

@media (max-width: 840px) {
  .br-mini {
    display: none;
  }
  .choose-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .choose-card_inner {
    height: auto;
    min-height: auto;
  }
}

/* ==== Cebu 
================================ */
.sub-bg {
  background: #b9e5e4;
  margin: 0;
  padding: 0;
}

.cebu {
  margin: 320px auto 200px;
}

.cebu-title {
  position: relative;
  height: clamp(220px, 42vw, 420px);
  overflow: hidden;
  margin: 0 auto 120px;
}

.cebu-title img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cebu-title::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.14);
}

.cebu-title_text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  left: 0;
  color: #fff;
  z-index: 2;
}

.cebu-title_en {
  text-align: left;
  margin-left: clamp(20px, 4vw, 56px);
  margin-bottom: 18px;
  font-size: clamp(24px, 4.5vw, 48px);
  line-height: 1;
}

.cebu-title_ja {
  margin: 0 auto;
  font-size: clamp(28px, 4.5vw, 56px);
  font-weight: 700;
  text-align: center;
}

.cebu-inner {
  width: min(1280px, calc(100% - 28px));
  margin: 0 auto;
  overflow: hidden;
}

.cebu-block {
  position: relative;
  width: 100%;
  height: clamp(460px, 42vw, 760px);
}

.cebu-list {
  position: absolute;
  top: 100px;
  left: 0;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cebu-item {
  width: 480px;
  height: 560px;
  flex: 0 0 480px;
}

.cebu-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 30px;
  box-sizing: border-box;
  overflow: hidden;
}

.cebu-card_num {
  display: none;
}

.cebu-card_img {
  width: 100%;
  height: 280px;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 28px;
}

.cebu-card_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cebu-card_text-box {
  position: static;
  width: 100%;
  background: transparent;
  padding: 0 20px 20px;
  box-sizing: border-box;
}

.cebu-card_title {
  margin: 0 0 26px;
  color: #61c0bf;
  font-size: 20px;
  font-weight: 700;
}

.cebu-card_text {
  margin: 0;
}

@media (max-width: 1140px) {
  .cebu {
    margin: 220px auto 160px;
  }

  .cebu-block {
    position: relative;
    width: 100%;
    height: 640px;
  }

  .cebu-list {
    position: absolute;
    top: 80px;
    left: 0;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .cebu-item {
    width: 400px;
    height: 500px;
    flex: 0 0 400px;
  }

  .cebu-card_img {
    height: 230px;
    margin-bottom: 22px;
  }

  .cebu-card_title {
    margin: 0 0 20px;
    font-size: 18px;
  }

  .cebu-card_text-box {
    padding: 0 18px 18px;
  }
}

/* ==== About us 
================================ */
.about {
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
  color: #fff;
}

.about-bg {
  position: absolute;
  inset: 0;
  background:
  linear-gradient(
    to bottom,
    #b9e5e4 0%,
    rgba(185, 229, 228, 0) 20%,
    rgba(185, 229, 228, 0) 80%,
    #b9e5e4 100%
  ),
  linear-gradient(-45deg, #63d3db, #6ec6b3, #c2f9d0, #f2b8a0) fixed;
  animation: GradietionAnimation 9s ease infinite;
}

@keyframes GradietionAnimation { 
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}

.about-planet {
  position: relative;
  width: min(760px, 92vw);
  margin: 92px auto;
  z-index: 1;
}

.about-planet img {
  width: 100%;
  display: block;
  opacity: 0.96;
}

.about-text {
  position: absolute;
  top: 250px;
  left: 50%;
  transform: translateX(-50%);
  width: min(700px, 82vw);
  font-weight: 700;
  text-shadow:
  0 2px 4px rgba(0,0,0,0.1),
  0 8px 16px rgba(0,0,0,0.15);
  z-index: 5;
}

.about-text_lead {
  margin: 0 0 30px;
  font-size: clamp(16px, 4vw, 24px);
  font-family: "Zen Maru Gothic", sans-serif;
}

.about-text_catch {
  margin-bottom: 30px;
}

.about-text_catch h3 {
  margin: 0;
  font-size: clamp(28px, 6vw, 56px);
  line-height: 1;
  font-family: "Jost", sans-serif;
}

.about-text_catch p {
  margin: 10px 0 0;
  font-size: clamp(14px, 4vw, 20px);
  line-height: 1.7;
  font-family: "Zen Maru Gothic", sans-serif;
}

.about-text_body p {
  margin: 0 0 14px;
  font-size: clamp(16px, 4vw, 24px);
  font-family: "Zen Maru Gothic", sans-serif;
}

@media (max-width: 768px) {
  .about-text {
    top: 50px;
  }
}

/* ==== 利用規約
================================ */

.rule {
  padding: 120px 20px 60px;
}

.rule-inner {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 72px clamp(24px, 5vw, 72px);
  background: #fff;
  border-radius: 32px;
  box-sizing: border-box;
}

.rule-title {
  margin: 0 auto 72px;
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.rule-content {
  font-size: 15px;
  line-height: 2.2;
}

.rule-block {
  scroll-margin-top: 120px;
}

.rule-block + .rule-block {
  margin-top: 56px;
}

.rule-block h2 {
  margin: 0 0 22px;
  padding-left: 18px;
  border-left: 5px solid #61c0bf;
  font-size: clamp(20px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.5;
}

.rule-block p {
  margin: 0;
}

.rule-block p + p {
  margin-top: 18px;
}

.rule-block a {
  color: #61c0bf;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* 小見出し */
.rule-sub-block {
  margin-top: 34px;
}

.rule-sub-block:first-of-type {
  margin-top: 0;
}

.rule-sub-block h3 {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
}

/* 番号リスト：（1）（2）（3） */
.rule-list {
  margin: 24px 0 0 32px;
  padding-left: 0;
  list-style: none;
  counter-reset: rule-counter;
}

.rule-list > li {
  position: relative;
  padding-left: 3em;
  line-height: 2.2;
  counter-increment: rule-counter;
}

.rule-list > li::before {
  content: "（" counter(rule-counter) "）";
  position: absolute;
  top: 0;
  left: 0;
}

.rule-list > li + li {
  margin-top: 16px;
}

/* 丸リスト */
.rule-disc-list {
  margin: 24px 0 0 48px;
  padding-left: 1.4em;
  list-style-position: outside;
}

.rule-disc-list li {
  padding-left: 0.4em;
  line-height: 2.2;
  list-style: disc;
}

.rule-disc-list li + li {
  margin-top: 10px;
}

/* 番号リストの中の丸リスト */
.rule-list ul {
  margin: 18px 0 0 28px;
  padding-left: 1.4em;
  list-style-type: circle;
  list-style-position: outside;
}

.rule-list ul li {
  padding-left: 0.4em;
  line-height: 2.1;
}

.rule-list ul li + li {
  margin-top: 10px;
}

/* リストの後に文章が来る時の余白 */
.rule-disc-list + p,
.rule-list + p {
  margin-top: 28px;
}

.rule-block strong {
  font-weight: 700;
}

@media (max-width: 768px) {
  .rule {
    padding: 80px 14px 50px;
  }

  .rule-inner {
    padding: 48px 20px;
    border-radius: 24px;
  }

  .rule-title {
    margin-bottom: 48px;
    font-size: clamp(20px, 6vw, 24px);
  }

  .rule-content {
    font-size: 14px;
    line-height: 2;
  }

  .rule-block {
    scroll-margin-top: 90px;
  }

  .rule-block + .rule-block {
    margin-top: 44px;
  }

  .rule-block h2 {
    margin-bottom: 18px;
    padding-left: 14px;
    font-size: 18px;
  }

  .rule-sub-block {
    margin-top: 30px;
  }

  .rule-sub-block h3 {
    font-size: 16px;
  }

  .rule-list {
    margin: 20px 0 0 14px;
  }

  .rule-list > li {
    padding-left: 3em;
    line-height: 2;
  }

  .rule-list > li + li {
    margin-top: 14px;
  }

  .rule-disc-list {
    margin: 20px 0 0 24px;
    padding-left: 1.2em;
  }

  .rule-disc-list li {
    line-height: 2;
  }

  .rule-list ul {
    margin: 16px 0 0 18px;
    padding-left: 1.2em;
  }

  .rule-list ul li {
    line-height: 2;
  }

  .rule-disc-list + p,
  .rule-list + p {
    margin-top: 24px;
  }
}

/* ==== 特定商取引法に基づく表記
================================ */

.legal {
  padding: 120px 20px 60px;
}

.legal-inner {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 72px clamp(24px, 5vw, 72px);
  background: #fff;
  border-radius: 32px;
  box-sizing: border-box;
}

.legal-title {
  margin: 0 auto 72px;
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.legal-table {
  border-top: 1px solid rgba(55, 51, 43, 0.18);
}

.legal-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  border-bottom: 1px solid rgba(55, 51, 43, 0.18);
}

.legal-head,
.legal-data {
  padding: 28px 24px;
  font-size: 15px;
  line-height: 2;
  box-sizing: border-box;
}

.legal-head {
  display: flex;
  align-items: center;
  background: rgba(97, 192, 191, 0.16);
  font-weight: 700;
}

.legal-data {
  background: rgba(255, 255, 255, 0.45);
}

.legal-data p {
  margin: 0;
}

.legal-data p + p {
  margin-top: 12px;
}

.legal-data a {
  color: #61c0bf;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-list {
  margin: 0;
  padding-left: 1.4em;
}

.legal-list li {
  list-style: disc;
  padding-left: 0.4em;
}

.legal-list li + li {
  margin-top: 8px;
}

.legal-data p + .legal-list {
  margin-top: 16px;
}

@media (max-width: 768px) {
  .legal {
    padding: 80px 14px 50px;
  }

  .legal-inner {
    padding: 48px 20px;
    border-radius: 24px;
  }

  .legal-title {
    margin-bottom: 48px;
    font-size: clamp(20px, 6vw, 24px);
  }

  .legal-row {
    grid-template-columns: 1fr;
  }

  .legal-head {
    padding: 18px 18px 12px;
    border-bottom: none;
    font-size: 14px;
    line-height: 1.7;
  }

  .legal-data {
    padding: 22px 18px;
    font-size: 14px;
    line-height: 2;
  }

  .legal-list {
    padding-left: 1.3em;
  }
}

/* ==== footer
================================ */
.footer {
  margin: 120px auto 0;
  padding: 22px;
  background: #b9e5e4;
}

.footer-block {
  width: 100%;
  margin: 0 auto;
  padding: 60px 22px 26px;
  background: #f4f2ee;
  border-radius: 32px;
  box-sizing: border-box;
}

.footer-inner {
  width: min(1280px, calc(90%));
  margin: 0 auto;
  text-align: center;
  color: #61c0bf;
}

.footer-title {
  margin-bottom: 60px;
  text-align: left;
}

.footer-title h3 {
  margin: 0 0 4px;
  color: #61c0bf;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
}

.footer-title p {
  margin: 0 0 4px;
  color: #61c0bf;
  font-weight: 700;
  line-height: 1.4;
}

.footer-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
  max-width: 920px;
  margin: 0 auto 56px;
}

.footer-card {
  position: relative;
  min-height: 106px;
  padding: 28px 72px 28px 28px;
  background: #fff;
  border-radius: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 18px;
  box-sizing: border-box;
  transition: transform 0.3s ease, opacity 0.3s ease;
  color: #37332b;
}

.footer-card:hover {
  transform: translateY(-3px);
}

.footer-card_icon {
  flex-shrink: 0;
  width: 56px;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  line-height: 1;
}

.footer-card_body {
  min-width: 0;
  text-align: left;
}

.footer-card_body h4 {
  margin: 0 0 2px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}

.footer-card_body span {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.footer-card_body p {
  margin: 0;
}

.footer-card_arrow {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  line-height: 1;
}

.footer-card_cons .footer-card_icon,
.footer-card_cons .footer-card_body span {
  color: #6fdbee;
}
.footer-card_cons .footer-card_arrow {
  background: #54cce7;
}

.footer-card_est .footer-card_icon,
.footer-card_est .footer-card_body span {
  color: #61c0bf;
}
.footer-card_est .footer-card_arrow {
  background: #6bcbb8;
}

.footer-card_mail .footer-card_icon,
.footer-card_mail .footer-card_body span {
  color: #efb49f;
}
.footer-card_mail .footer-card_arrow {
  background: #efb49f;
}

.footer-card_inst .footer-card_body span {
  color: #e55da2;
}

.footer-card_icon-inst {
  color: transparent;
  background: radial-gradient(circle at 20% 20%,
    #285AEB 0%,
    #5b51d8 18%,
    #d6249f 48%,
    #fd5949 72%,
    #fdf497 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.footer-card_arrow-inst {
  background: linear-gradient(135deg, #fd5949 0%, #d6249f 55%, #5b51d8 100%);
}

.footer-brand {
  margin-bottom: 30px;
}

.footer-brand a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer-brand img {
  width: 62px;
  height: auto;
  display: block;
}

.footer-brand span {
  color: #63d3db;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin-bottom: 16px;
}

.footer-links a {
  color: #37332b;
  text-decoration: none;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-copy small {
  color: #37332b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-family: "Jost", sans-serif;
}

@media (max-width: 840px) {
  .footer {
    padding: 14px;
  }

  .footer-block {
    padding: 28px 14px 22px;
    border-radius: 24px;
  }

  .footer-title {
    margin-bottom: 48px;
  }

  .footer-title h3 {
    font-size: 42px;
  }

  .footer-title p {
    font-size: 14px;
  }

  .footer-cards {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 42px;
  }

  .footer-card {
    min-height: 98px;
    padding: 16px 62px 16px 14px;
    gap: 14px;
  }

  .footer-card_icon {
    width: 48px;
    font-size: 36px;
  }

  .footer-card_body h4 {
    font-size: 18px;
  }

  .footer-card_body p {
    font-size: 11px;
    line-height: 1.8;
  }

  .footer-card_arrow {
    width: 34px;
    height: 34px;
    right: 10px;
    bottom: 10px;
    font-size: 13px;
  }

  .footer-brand span {
    font-size: 20px;
  }

  .footer-links {
    gap: 4px 12px;
  }

  .footer-links a,
  .footer-copy small {
    font-size: 10px;
  }
}

