html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5 {
  text-align: center;
  margin: 0;
}

body {
  margin: 0;
  padding: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  height: auto;
}
@media screen and (min-width: 768px) {
  body {
    height: auto;
    min-height: 100vh;
  }
}

section {
  width: 100%;
  display: block;
}

.main {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .main {
    padding-bottom: 0;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  gap: 10px;
  align-self: stretch;
  flex-shrink: 0;
  height: 50px;
  box-sizing: border-box;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .header {
    height: 100px;
    padding: 0 30px;
  }
}

.sp-logo {
  display: block;
  height: auto;
  max-height: 30px;
  width: auto;
}
@media screen and (min-width: 768px) {
  .sp-logo {
    display: none;
  }
}

.pc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .pc-header {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .pc-header {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    padding: 0 30px;
    background: #fff;
    z-index: 1000;
  }
}

.pc-logo {
  height: 90%;
  width: auto;
  padding: 8px 0;
}

.pc-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: auto;
}

.pc-menu .request-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 38px;
  padding: 2px 20px;
  background: linear-gradient(135deg, #ceeeff 0%, #e2f5ff 100%);
  box-shadow: 2px 2px 2px 0 rgba(46, 157, 216, 0.6), -2px -2px 1px #f1faff;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  flex-shrink: 0;
}

.pc-menu .tel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50%;
  width: auto;
  padding: 0;
  border: none;
  background: none;
}

a.tel-btn,
a.tel-btn:link,
a.tel-btn:visited,
a.tel-btn:hover,
a.tel-btn:active {
  text-decoration: none;
  color: inherit;
}

.pc-menu .tel-btn img {
  width: 35px;
  height: auto;
}

.tel-text {
  color: #2e9dd8;
  font-family: "Kiwi Maru";
  font-size: 35px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 3px;
}

@media screen and (min-width: 768px) {
  .sp-menu {
    display: none;
  }
}

.fv {
  display: flex;
  padding: 0 12px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  overflow: hidden;
  flex: 1;
  min-height: 0;
  height: auto;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .fv {
    max-width: 1280px;
    margin: 0 auto;
  }
}

.fv-carousel {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .fv-carousel {
    height: 100%;
  }
}

.fv-track {
  display: flex;
  overflow-x: scroll;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 12px;
  flex: 1;
  min-height: 0;
  position: relative;
}

.fv-track::-webkit-scrollbar {
  display: none;
}

.fv-slide {
  position: relative;
  width: 100%;
  flex: 0 0 100%;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

/* FV image wrapper: clip rounded corners */
.fv-image {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  /* important: clip radius */
  border-radius: 15px;
}
@media screen and (min-width: 768px) {
  .fv-image {
    height: 100%;
    overflow: hidden;
    border-radius: 30px;
  }
}

/* SP image */
img.fv-image-sp {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  img.fv-image-sp {
    display: none;
  }
}

/* PC image (default hidden) */
img.fv-image-pc {
  display: none;
}
@media screen and (max-width: 767px) {
  img.fv-image-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  img.fv-image-pc {
    display: block;
    height: 100%;
    width: auto;
    max-width: 1280px;
    object-fit: contain;
    object-position: center;
  }
}

.fv-indicator {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  padding: 6px 10px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.fv-dot {
  width: 20px;
  height: 6px;
  border-radius: 999px;
  background: #c1c1c1;
  border: none;
  cursor: pointer;
}

.fv-dot.is-active {
  background: #fff;
}

.worries {
  display: flex;
  padding: 80px 12px 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  align-self: stretch;
}

.worries-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.worries .subtitle,
.worry-text {
  color: #97a1c4;
  text-align: center;
  font-family: "Kiwi Maru";
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
}

.worries .title,
.cta-text-black,
.cta-text-gradient span {
  color: #4b5c9d;
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 22px;
  font-weight: 500;
  font-style: normal;
}

.worries-content,
.worries-list,
.worries-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.worries-content {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.worries-cta-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}

.worries-cta {
  width: 100%;
  height: 100%;
  gap: 12px;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .worries-cta {
    margin-top: 64px;
  }
}

.worries-list {
  justify-content: flex-start;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .worries-list {
    gap: 24px;
  }
}

.worry-item {
  padding: 8px 0 8px 10px;
  background: #97a1c4;
  border-radius: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .worry-item {
    padding: 14px 6px 14px 20px;
  }
}

.worry-text {
  color: #fff;
  font-weight: 500;
  line-height: 20px;
  word-wrap: break-word;
  display: block;
}

.worried-girl {
  width: 106px;
  height: 146px;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .worried-girl {
    width: 200px;
    height: auto;
    margin-left: 20px;
  }
}

.cta-text-black,
.cta-text-gradient span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 46px;
  word-wrap: break-word;
  color: black;
}

.cta-text-gradient {
  height: 49px;
  background: linear-gradient(90deg, rgba(228, 181, 87, 0.9) 0%, rgba(127, 98, 225, 0.9) 25%, rgba(98, 225, 104, 0.9) 50%, rgba(222, 126, 221, 0.9) 75%, rgba(98, 187, 225, 0.9) 100%);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 6px;
}
@media screen and (min-width: 768px) {
  .cta-text-gradient {
    height: 80px;
  }
}

.cta-text-gradient span {
  color: #fff;
  padding-bottom: 1px;
}

.courses {
  display: flex;
  padding: 70px 20px 100px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}
@media screen and (min-width: 768px) {
  .courses {
    padding-top: 120px;
  }
}

.five-courses {
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 180px;
  width: auto;
  padding: 10px 0 60px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .five-courses {
    width: 400px;
    height: auto;
  }
}

.cards-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 80px;
}
@media screen and (min-width: 768px) {
  .cards-column {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 14px 0 40px;
  }
}

[class^=cards-container] {
  --accent: #000;
  --shadow: rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  background: #fff;
  box-shadow: 6px 6px 0 0 var(--accent), 0 0 12px 4px var(--shadow);
  width: 100%;
}
@media screen and (min-width: 768px) {
  [class^=cards-container] {
    flex: 0 0 auto;
    max-width: 400px;
    scroll-snap-align: center;
  }
}

.cards-container1 {
  --accent: #e4b557;
  --shadow: #dcd2be;
}

.cards-container2 {
  --accent: #7f62e1;
  --shadow: #beb8d3;
}

.cards-container3 {
  --accent: #62e168;
  --shadow: #b3d1b4;
}

.cards-container4 {
  --accent: #de7edd;
  --shadow: #d2b5d2;
}

.cards-container5 {
  --accent: #62bbe1;
  --shadow: #b6ced9;
}

.card1,
.card2,
.card3,
.card4,
.card5 {
  display: flex;
  padding: 50px 14px 24px;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  flex: 1;
}

.text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
  flex: 1;
  width: 100%;
}

.course-pill1,
.course-pill2,
.course-pill3,
.course-pill4,
.course-pill5 {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 14px 18px;
  border-radius: 999px;
  color: #fff;
  text-align: center;
  gap: 8px;
}

.course-pill1 {
  background: #e4b557;
}

.course-pill2 {
  background: #7f62e1;
}

.course-pill3 {
  background: #62e168;
}

.course-pill4 {
  background: #de7edd;
}

.course-pill5 {
  background: #62bbe1;
}

.course-pill1:before,
.course-pill2:before,
.course-pill3:before,
.course-pill4:before,
.course-pill5:before {
  position: absolute;
  inset: -3px 5px 3px -5px;
  border-radius: 999px;
  content: "";
}

.course-pill1:before {
  border: 1px solid #e8d6b1;
}

.course-pill2:before {
  border: 1px solid #c6bce8;
}

.course-pill3:before {
  border: 1px solid #bdeebf;
}

.course-pill4:before {
  border: 1px solid #ecc3eb;
}

.course-pill5:before {
  border: 1px solid #c0dbe6;
}

.course-pill__subtitle {
  color: #fff;
  font-size: 18px;
  font-family: "Zen Maru Gothic";
  font-weight: 500;
  line-height: 16px;
  word-wrap: break-word;
}

.course-pill__title {
  color: #fff;
  font-size: 30px;
  font-family: "Zen Maru Gothic";
  font-weight: 900;
  line-height: 34px;
  word-wrap: break-word;
}

.card1 .text-box,
.card2 .text-box,
.card3 .text-box,
.card4 .text-box,
.card5 .text-box {
  font-family: "Zen Kaku Gothic New";
  font-size: 15px;
  font-weight: 500;
  line-height: 28px;
}

.card1 .text-box {
  color: #241a05;
}

.card2 .text-box {
  color: #0c0525;
}

.card3 .text-box {
  color: #052406;
}

.card4 .text-box {
  color: #1e041e;
}

.card5 .text-box {
  color: #04151c;
}

.course-points-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  margin-top: auto;
  width: 100%;
}

.course-point {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
@media screen and (min-width: 768px) {
  .course-point {
    gap: 16px;
  }
}

.check {
  height: 20px;
  padding-top: 3px;
}
@media screen and (min-width: 768px) {
  .check {
    height: 30px;
    padding-top: 3px;
  }
}

.course-point-text1,
.course-point-text2,
.course-point-text3,
.course-point-text4,
.course-point-text5 {
  font-family: "Zen Kaku Gothic New";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.course-point-text1 {
  color: #241a05;
}

.course-point-text2 {
  color: #0c0525;
}

.course-point-text3 {
  color: #052406;
}

.course-point-text4 {
  color: #1e041e;
}

.course-point-text5 {
  color: #04151c;
}

.course-point-divider1,
.course-point-divider2,
.course-point-divider3,
.course-point-divider4,
.course-point-divider5 {
  width: 100%;
  height: 1px;
  border-radius: 1px;
}

.course-point-divider1 {
  background: rgba(228, 181, 87, 0.3);
}

.course-point-divider2 {
  background: rgba(127, 98, 225, 0.3);
}

.course-point-divider3 {
  background: rgba(98, 225, 104, 0.3);
}

.course-point-divider4 {
  background: rgba(222, 126, 221, 0.3);
}

.course-point-divider5 {
  background: rgba(98, 187, 225, 0.3);
}

.card-photo {
  width: 100%;
  height: auto;
  border-radius: 0 0 20px 20px;
  margin-top: auto;
}

.programs,
.program-title {
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.program-title {
  display: flex;
  align-items: center;
  padding: 111px 0;
  gap: 20px;
  background: #ffbc86;
  clip-path: polygon(0 0, 100% 80px, 100% 100%, 0 calc(100% - 80px));
}

.programs .subtitle {
  color: #410c0d;
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 20px;
  font-weight: 400;
}

.special-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 56px;
  width: auto;
}
@media screen and (min-width: 768px) {
  .special-image {
    height: 100px;
    width: auto;
  }
}

.title-image,
.label-image,
.attempt-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .label-image {
    max-height: 450px;
    width: auto;
  }
}

.special-container1,
.special-container2,
.special-container3,
.special-container4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 111px 10px;
  margin-top: -74px;
}

.special-container1 {
  background-image: repeating-linear-gradient(-148.18deg, #ffd2de, #ffd2de 19px, #ffe0e8 19px, #ffe0e8 32px);
  clip-path: polygon(100% 0, 0 80px, 0 100%, 100% calc(100% - 80px));
  margin-bottom: 20px;
}

.special-container2 {
  background-image: repeating-linear-gradient(148.18deg, #b0fcc3, #b0fcc3 19px, #c8fdd5 19px, #c8fdd5 32px);
  clip-path: polygon(0 0, 100% 80px, 100% 100%, 0 calc(100% - 80px));
}

.special-container3 {
  background-image: repeating-linear-gradient(-148.18deg, #fff7a2, #fff7a2 19px, #fffbcf 19px, #fffbcf 32px);
  clip-path: polygon(100% 0, 0 80px, 0 100%, 100% calc(100% - 80px));
  margin-bottom: 20px;
}

.special-container4 {
  background-image: repeating-linear-gradient(148.18deg, #debcfe, #debcfe 19px, #e8d0fe 19px, #e8d0fe 32px);
  clip-path: polygon(0 0, 100% 80px, 100% 100%, 0 calc(100% - 80px));
}

.accordion-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  gap: 8px;
  flex: 1;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .accordion-container {
    max-width: 1280px;
    gap: 20px;
    padding-top: 70px;
    padding-bottom: 70px;
    align-items: stretch;
  }
}

.accordion-card {
  display: flex;
  padding-top: 16px;
  flex-direction: column;
  align-items: center;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  flex: 0 0 calc(50% - 4px);
  max-width: calc(50% - 4px);
}
@media screen and (min-width: 768px) {
  .accordion-card {
    max-width: 400px;
  }
}

.accordion-card-title {
  font-size: 26px;
  font-family: "Zen Maru Gothic";
  font-weight: 500;
  line-height: 28px;
  word-wrap: break-word;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.accordion-toggle {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .accordion-toggle {
    display: none;
  }
}

.accordion-toggle img {
  width: 22px;
  height: 22px;
  transition: transform 0.2s ease;
}
@media screen and (min-width: 768px) {
  .accordion-toggle img {
    width: 32px;
    height: 32px;
  }
}

.accordion-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 8px;
  width: 100%;
}

.accordion-card.is-open .accordion-toggle img {
  transform: rotate(180deg);
}

.accordion-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
@media screen and (min-width: 768px) {
  .accordion-content {
    max-height: none;
    overflow: visible;
  }
}

.accordion-content p {
  display: block;
  overflow: visible;
  text-overflow: clip;
  font-family: "Zen Kaku Gothic New";
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-align: justify;
  padding-top: 4px;
}

.accordion-line1,
.accordion-line2,
.accordion-line3,
.accordion-line4 {
  width: 100%;
  height: 1px;
  border-radius: 1px;
  margin-top: 10px;
}

.special-container1 .accordion-card-title {
  color: #d48297;
}

.special-container2 .accordion-card-title {
  color: #75cd8b;
}

.special-container3 .accordion-card-title {
  color: #a69f57;
}

.special-container4 .accordion-card-title {
  color: #986cc2;
}

.accordion-line1 {
  background: #d48297;
}

.accordion-line2 {
  background: #75cd8b;
}

.accordion-line3 {
  background: #a69f57;
}

.accordion-line4 {
  background: #986cc2;
}

.special-container1 .accordion-content p {
  color: #320712;
}

.special-container2 .accordion-content p {
  color: #072f11;
}

.special-container3 .accordion-content p {
  color: #393408;
}

.special-container4 .accordion-content p {
  color: #200935;
}

.special-container1 .accordion-card {
  box-shadow: 1px 1px 4px 0 rgba(164, 124, 134, 0.7);
}

.special-container2 .accordion-card {
  box-shadow: 1px 1px 4px 0 rgba(117, 205, 139, 0.7);
}

.special-container3 .accordion-card {
  box-shadow: 1px 1px 4px 0 rgba(166, 159, 87, 0.7);
}

.special-container4 .accordion-card {
  box-shadow: 1px 1px 4px 0 rgba(152, 108, 194, 0.7);
}

.accordion-photo {
  width: 100%;
  height: auto;
  border-radius: 0 0 8px 8px;
  padding-top: 14px;
  margin-top: auto;
}

.campus {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.group-photo {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .group-photo {
    max-width: 1280px;
  }
}

.campus-container {
  display: flex;
  width: 100%;
  padding: 100px 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: #fdf7ff;
}

.campus-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding-bottom: 60px;
}

.campus .subtitle {
  color: #181257;
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 20px;
  font-weight: 400;
}

.campus-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 56px;
  width: auto;
}
@media screen and (min-width: 768px) {
  .campus-image {
    height: 100px;
    width: auto;
  }
}

.wrap {
  scroll-snap-type: x mandatory;
  white-space: nowrap;
  overflow-x: scroll;
  margin: 0 auto;
  position: relative;
  padding: 10px 0 14px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .wrap {
    max-width: 1280px;
  }
}

.wrap::-webkit-scrollbar {
  height: 10px;
}

.wrap::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 999px;
  border: 1px solid #c8c6e1;
  box-sizing: border-box;
  height: 8px;
}

.wrap::-webkit-scrollbar-track {
  background: #c8c6e1;
  border: 1px solid #c8c6e1;
  border-radius: 999px;
}

.item1,
.item2,
.item3,
.item4,
.item5 {
  scroll-snap-align: center;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 10px;
  white-space: normal;
  width: 206px;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .item1,
  .item2,
  .item3,
  .item4,
  .item5 {
    width: 400px;
    margin: 0 18px;
  }
}

.wrap img {
  width: 195px;
  height: 152px;
  border-radius: 6px;
}
@media screen and (min-width: 768px) {
  .wrap img {
    width: 385px;
    height: 300px;
    border-radius: 10px;
  }
}

.wrap .item1 img,
.wrap .item3 img,
.wrap .item5 img {
  transform: rotate(-3deg);
}

.wrap .item2 img,
.wrap .item4 img {
  transform: rotate(3deg);
}

.campus-info {
  display: flex;
  padding: 8px;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #0a062c;
  text-align: center;
  text-overflow: ellipsis;
  font-family: "Zen Kaku Gothic New";
}

.campus-name {
  font-size: 16px;
  font-weight: 700;
}

.campus-info p {
  font-size: 12px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .campus-info p {
    font-size: 14px;
  }
}

.attempt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: url("../img/efforts-bg.jpg") center/cover no-repeat;
}

.attempt-container {
  display: flex;
  width: 100%;
  padding: 100px 12px 86px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .attempt-container {
    padding-bottom: 100px;
    max-width: 1280px;
    padding-left: 80px;
    padding-right: 80px;
  }
}

.attempt-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .attempt-title {
    padding-top: 60px;
    padding-bottom: 100px;
  }
}

.attempt .subtitle {
  color: #572e12;
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 20px;
  font-weight: 400;
}

.attempt-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 110px;
  width: auto;
}
@media screen and (min-width: 768px) {
  .attempt-image {
    height: 180px;
    width: auto;
  }
}

.attempt-info p {
  color: #572e12;
  font-size: 18px;
  font-family: "Zen Kaku Gothic New";
  font-weight: 400;
  line-height: 30px;
  text-align: center;
  word-wrap: break-word;
}

.attempt-semi-title {
  width: 100%;
  background: #fff;
  border-radius: 30px;
  color: #64310f;
  font-size: 18px;
  font-family: "Zen Kaku Gothic New";
  font-weight: 700;
  text-align: center;
  word-wrap: break-word;
  margin-top: 60px;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .attempt-semi-title {
    margin-top: 80px;
  }
}

.attempt-list {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  gap: 8px;
}

.list-box {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .list-box {
    gap: 20px;
  }
}

.list-number {
  width: 37px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .list-number {
    width: 100px;
    height: auto;
  }
}

.list-text p {
  color: #221005;
  font-size: 15px;
  font-family: "Zen Kaku Gothic New";
  font-weight: 400;
  line-height: 24px;
}
@media screen and (min-width: 768px) {
  .list-text p {
    line-height: 44px;
  }
}

.dashed-line line {
  stroke: #fff;
  stroke-width: 2;
  stroke-dasharray: 8 8;
  stroke-linecap: round;
}

.wpcf7 {
  width: 100%;
}

.form-container {
  display: flex;
  width: 100%;
  padding: 100px 10px 0 10px;
  justify-content: center;
  align-items: flex-start;
}

.form {
  display: flex;
  width: 100%;
  max-width: 750px;
  padding: 90px 15px 40px 15px;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  border: 4px solid #2e9dd8;
  background: #fdf9f1;
  scroll-margin-top: 120px;
}

.form-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 116px;
  width: auto;
}

.form .subtitle {
  color: #2e9dd8;
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 20px;
  font-weight: 400;
  margin-top: 60px;
  margin-bottom: 20px;
}

.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* Password manager injected UI (NordPass etc.) can create layout gaps */
.contact-form [class*=nordpass],
.contact-form [id*=nordpass],
.contact-form [class*=nord],
.contact-form [data-np],
.contact-form [data-np-checked],
.contact-form [data-np-uuid],
.contact-form [data-np-autofill],
.contact-form iframe[title*=Nord],
.contact-form iframe[src*=nord],
.contact-form iframe[src*=nordpass] {
  display: none !important;
}

/* If an extension injects unexpected blocks between fields and the submit button, hide them */
.contact-form > :not(.contact-type):not(.fields):not(.submit):not(.sr-only) {
  display: none !important;
}

.contact-type {
  border: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  gap: 22px;
  justify-content: center;
  align-items: center;
}

.check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1a3f53;
  font-family: "Kiwi Maru";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
}

.check input {
  width: 15px;
  height: 15px;
  border-radius: 5px;
}

.check input[type=checkbox] {
  accent-color: #bfd8e6;
}

.fields {
  display: flex;
  flex-direction: column;
}

.fields .field {
  margin: 0 0 20px;
}

.fields .field--textarea {
  margin-bottom: 0;
}

.field {
  width: 100%;
  height: 44px;
  border-radius: 5px;
  border: 1px solid #bfd8e6;
  background: #fff;
  padding: 8px 15px;
  font-size: 15px;
  outline: none;
}

.field::placeholder {
  color: #a4b9c4;
  font-family: "Kiwi Maru";
  font-size: 15px;
  font-weight: 400;
}

.field:focus {
  border-color: #5aa2d8;
  box-shadow: 0 0 0 3px rgba(90, 162, 216, 0.18);
}

.field--textarea {
  height: auto;
  padding: 8px 15px;
  resize: vertical;
  min-height: 140px;
}

.submit {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  border: 1px solid #1d688f;
  background: #2e9dd8;
  color: #fff;
  width: 100%;
  margin-top: 30px;
  padding: 10px 15px;
  gap: 8px;
  text-align: center;
  font-family: "Kiwi Maru";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
}

.submit:active {
  transform: translateY(1px);
}

.submit-icon {
  width: 26px;
  height: auto;
}

.sp-menu {
  position: fixed;
  align-items: center;
  justify-content: center;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 86px;
  z-index: 1000;
  display: none;
  background: transparent;
  border: none;
  border-top: none;
  padding: 20px 10px 10px;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .sp-menu {
    display: flex;
  }
}

.sp-menu .request-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 290px;
  height: 100%;
  padding: 0 20px;
  background: linear-gradient(135deg, #ceeeff 0%, #e2f5ff 100%);
  box-shadow: 2px 2px 2px 0 rgba(46, 157, 216, 0.6), -2px -2px 1px #f1faff;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  flex-shrink: 0;
}

.request-btn img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  object-fit: contain;
}

.sp-menu .tel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 100%;
  padding: 7.5px 17px;
  background: linear-gradient(135deg, #ceeeff 0%, #e2f5ff 100%);
  box-shadow: 2px 2px 2px 0 rgba(46, 157, 216, 0.6), -2px -2px 1px #f1faff;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  flex-shrink: 0;
}

.tel-btn img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  object-fit: contain;
}

@media screen and (min-width: 768px) {
  .worries .subtitle,
  .worry-text {
    font-size: 32px;
  }
  .worry-item {
    padding: 14px 6px 14px 20px;
  }
  .worries .title {
    font-size: 48px;
  }
  .cta-text-black,
  .cta-text-gradient span {
    font-size: 56px;
  }
  .course-pill__subtitle {
    font-size: 20px;
  }
  .course-pill__title {
    font-size: 34px;
  }
  .card1 .text-box,
  .card2 .text-box,
  .card3 .text-box,
  .card4 .text-box,
  .card5 .text-box {
    font-size: 20px;
    line-height: 32px;
  }
  .course-point-text1,
  .course-point-text2,
  .course-point-text3,
  .course-point-text4,
  .course-point-text5 {
    font-size: 18px;
    line-height: 24px;
  }
  .programs .subtitle {
    font-size: 32px;
  }
  .accordion-card-title {
    font-size: 32px;
    line-height: 36px;
  }
  .accordion-content p {
    font-size: 20px;
    line-height: 32px;
  }
  .attempt .subtitle {
    font-size: 32px;
  }
  .attempt-info p {
    font-size: 28px;
    line-height: 40px;
  }
  .attempt-semi-title {
    font-size: 32px;
  }
  .list-text p {
    font-size: 20px;
  }
  .form .subtitle {
    font-size: 32px;
  }
  .check {
    font-size: 18px;
  }
  .wpcf7-list-item label {
    font-size: 18px;
  }
  .field {
    font-size: 18px;
  }
  .field::placeholder {
    font-size: 16px;
  }
  .submit {
    font-size: 26px;
  }
  .campus .subtitle {
    font-size: 32px;
  }
  .campus-name {
    font-size: 24px;
  }
  .campus-info p {
    font-size: 20px;
  }
}/*# sourceMappingURL=style.css.map */