/* ==========================================================================
   Variables
   ========================================================================== */
/* ==========================================================================
   Reset & Base
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Kiwi Maru", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

/* ==========================================================================
   Layout
   ========================================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

.section {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
}
.section__title {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 0.05em;
  font-family: serif;
}
@media screen and (max-width: 768px) {
  .section__title {
    font-size: 32px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 375px) {
  .section__title {
    font-size: 26px;
  }
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn--submit {
  background-color: #333;
  color: #fff;
  padding: 15px 60px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 375px) {
  .btn--submit {
    font-size: 13px;
  }
}
.btn--submit:hover {
  background-color: #555;
  transform: translateY(-2px);
}

/* Utility */
.u-pc-only {
  display: block;
}
@media screen and (max-width: 768px) {
  .u-pc-only {
    display: none !important;
  }
}

.u-sp-only {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .u-sp-only {
    display: block !important;
  }
}

@media screen and (max-width: 768px) {
  .u-sp-none {
    display: none !important;
  }
}

/* Common Title with Logo */
.c-title {
  font-size: 48px;
  font-weight: 500;
  margin: 0 auto 60px;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  padding-bottom: 20px;
  width: fit-content;
}
.c-title::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15px;
  background-image: url(../images/vision_underline.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center bottom;
}
.c-title__logo {
  width: 206px;
  height: auto;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .c-title {
    font-size: 32px;
    margin: 0 auto 30px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 80%;
  }
  .c-title::after {
    background-image: url(../images/c-title-line--sp.png);
  }
  .c-title__logo {
    width: 150px;
  }
}
@media screen and (max-width: 375px) {
  .c-title {
    font-size: 26px;
  }
}

.header {
  position: fixed;
  top: -160px;
  /* Hide initially */
  left: 0;
  width: 100%;
  height: 120px;
  background: url(../images/header-bg.png) bottom center/cover no-repeat;
  /* Updated background */
  z-index: 1000;
  transition: top 0.4s ease;
  /* Slide down effect */
}
.header.is-active {
  top: 0;
}
@media screen and (max-width: 768px) {
  .header {
    top: 0 !important;
    background: none;
    height: auto;
    padding-bottom: 0;
    transition: none;
  }
}
.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 20px;
  /* added bottom padding */
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header__logo {
  margin: 0;
  line-height: 1;
  position: absolute;
  top: 30px;
  left: 60px;
}
.header__logo img {
  display: block;
  width: 200px;
  height: auto;
  /* Adjust as needed */
}
@media screen and (max-width: 768px) {
  .header__logo {
    position: static;
  }
  .header__logo img {
    width: auto;
    height: 40px;
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(128, 128, 128, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 3000;
  }
  .header__nav.is-active {
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (max-width: 768px) {
  .header__nav-box {
    background: url(../images/header__nav-bg.png) no-repeat center center;
    background-size: 100% 100%;
    width: 86%;
    max-width: 320px;
    padding: 50px 30px;
    border-radius: 0;
    box-shadow: none;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
    position: relative;
  }
}
.header__list {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header__list {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    width: 100%;
  }
}
.header__item {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.header__item a {
  color: #333;
  text-decoration: none;
  transition: opacity 0.3s;
  display: block;
}
.header__item a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .header__item {
    font-size: 15px;
    width: 100%;
    padding-bottom: 15px;
    position: relative;
  }
  .header__item::after {
    content: "";
    display: block;
    width: 80%;
    height: 1px;
    background-color: #333;
    margin: 15px auto 0;
    opacity: 0.3;
  }
  .header__item:last-child::after {
    display: none;
  }
}
.header__menu-close {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 30px;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.05em;
    cursor: pointer;
  }
  .header__menu-close-icon {
    font-size: 20px;
    background: #fff;
    color: #888;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding-bottom: 2px;
  }
  .header__menu-close:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 768px) and (max-width: 375px) {
  .header__menu-close {
    font-size: 13px;
  }
  .header__menu-close-icon {
    font-size: 16px;
    width: 20px;
    height: 20px;
  }
}
.header__hamburger {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__hamburger {
    display: block;
    width: 30px;
    height: 24px;
    position: fixed;
    top: 20px;
    left: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 3001;
  }
  .header__hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: all 0.3s;
  }
  .header__hamburger span:nth-child(1) {
    top: 0;
  }
  .header__hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .header__hamburger span:nth-child(3) {
    bottom: 0;
  }
  .header__hamburger.is-active span {
    background-color: #fff;
  }
  .header__hamburger.is-active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  .header__hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .header__hamburger.is-active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
  }
}

.mv {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  overflow: hidden;
}
.mv__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  min-width: 1280px;
  min-height: 800px;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .mv__bg {
    min-width: 100%;
    min-height: 100%;
  }
}
.mv__bg .mv__base-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 1;
}
.mv__img {
  position: absolute;
  opacity: 0;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
  animation-fill-mode: forwards;
}
.mv__img--01 {
  top: -90px;
  left: -6%;
  width: 35%;
  animation-name: slideInTopLeft;
  animation-delay: 0.2s;
}
@media screen and (max-width: 768px) {
  .mv__img--01 {
    width: 60%;
    left: -10%;
    top: -5%;
  }
}
.mv__img--03 {
  bottom: 0;
  left: 0;
  width: 36%;
  animation-name: slideInBottomLeft;
  animation-delay: 0.4s;
}
@media screen and (max-width: 768px) {
  .mv__img--03 {
    width: 128%;
    left: 50%;
    margin-left: -64%;
    max-width: none;
    bottom: 5%;
  }
}
.mv__img--04 {
  top: -120px;
  right: -5%;
  width: 35%;
  max-width: 450px;
  animation-name: slideInTopRight;
  animation-delay: 0.6s;
}
@media screen and (max-width: 768px) {
  .mv__img--04 {
    width: 50%;
    right: -10%;
    top: -5%;
    max-width: none;
  }
}
.mv__img--05 {
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  width: 13%;
  max-width: 130px;
  animation-name: slideInRight;
  animation-delay: 0.8s;
}
@media screen and (max-width: 768px) {
  .mv__img--05 {
    width: 68px;
    right: 0;
    top: 50%;
  }
}
.mv__img--02 {
  bottom: 13%;
  left: 6%;
  width: 20%;
  max-width: 330px;
  z-index: 2;
  animation-name: slideInBottomLeft;
  animation-delay: 0.5s;
}
@media screen and (max-width: 768px) {
  .mv__img--02 {
    width: 205px;
    left: 0;
    bottom: 7%;
  }
}
.mv__img--06 {
  bottom: 10%;
  right: 0;
  width: 24%;
  max-width: 460px;
  animation-name: slideInBottomRight;
  animation-delay: 0.9s;
}
@media screen and (max-width: 768px) {
  .mv__img--06 {
    width: 265px;
    right: -5%;
    bottom: 25%;
  }
}
.mv__intro {
  position: absolute;
  bottom: 7%;
  right: 24%;
  /* margin-right: -450px; - Removed to align left of image */
  /* Adjust based on layout */
  width: 387px;
  height: 207px;
  background: url(../images/mv-intro-bg.png) no-repeat center center/contain;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  animation: mvFadeIn 1s ease-out forwards;
  animation-delay: 1.4s;
}
.mv__intro-list {
  list-style: none;
  font-size: 20px;
  margin-right: 10px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.05em;
  color: #333;
  font-family: "Kiwi Maru", serif;
}
@media screen and (max-width: 768px) {
  .mv__intro {
    display: none;
  }
}
@keyframes slideInTopLeft {
  0% {
    opacity: 0;
    transform: translate(-100%, -100%) rotate(-5deg);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg);
  }
}
@keyframes slideInBottomLeft {
  0% {
    opacity: 0;
    transform: translate(-100%, 100%) rotate(-5deg);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg);
  }
}
@keyframes slideInTopRight {
  0% {
    opacity: 0;
    transform: translate(100%, -100%) rotate(5deg);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg);
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translate(100%, -50%) rotate(5deg);
  }
  100% {
    opacity: 1;
    transform: translate(0, -50%) rotate(0deg);
  }
}
@keyframes slideInBottomRight {
  0% {
    opacity: 0;
    transform: translate(100%, 100%) rotate(5deg);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg);
  }
}
.mv__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(-60px);
}
@media screen and (max-width: 768px) {
  .mv__content {
    transform: translateY(-140px);
  }
}
.mv__tagline {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .mv__tagline {
    font-size: 16px;
    margin-bottom: 15px;
    white-space: nowrap;
  }
}
@media screen and (max-width: 375px) {
  .mv__tagline {
    font-size: 13px;
  }
}
.mv__logo {
  width: 35%;
  max-width: 500px;
}
@media screen and (max-width: 768px) {
  .mv__logo {
    width: 265px;
    max-width: 250px;
  }
}
.mv__logo img {
  width: 100%;
  height: auto;
}
.mv__static-logo {
  position: absolute;
  top: 60px;
  left: 60px;
  z-index: 10;
}
.mv__static-logo img {
  width: 200px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .mv__static-logo {
    top: 60px;
    left: 20px;
    filter: brightness(0) invert(1);
  }
  .mv__static-logo img {
    width: 80px;
  }
}

.mv__intro-sp {
  width: 100%;
  padding: 20px 0;
  margin-bottom: 0px;
  display: flex;
  justify-content: center;
  margin-top: -80px;
}
.mv__intro-sp-inner {
  width: 90vw;
  max-width: 335px;
  height: 207px;
  background: url(../images/mv-intro-bg.png) no-repeat center center/contain;
  display: flex;
  justify-content: center;
  margin: 0px auto 0 auto;
  align-items: center;
  position: relative;
  z-index: 10;
  padding-bottom: 6px;
}
.mv__intro-sp .mv__intro-list {
  font-family: "Kiwi Maru", serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.05em;
  color: #333;
  list-style: none;
  padding: 0;
  margin-top: 30px;
  margin-right: 10px;
}
@media screen and (max-width: 375px) {
  .mv__intro-sp .mv__intro-list {
    font-size: 13px;
  }
}

.about {
  position: relative;
  z-index: 10;
  margin-top: -70px;
  background-image: url(../images/about_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  padding: 140px 0 140px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .about {
    background-image: url(../images/about_bg--sp.png);
    padding: 60px 0;
    margin-top: -70px;
  }
}
.about__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
.about__text {
  font-size: 24px;
  line-height: 2;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.about__text:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .about__text {
    font-size: 16px;
    margin-bottom: 40px;
    text-align: center;
  }
}
@media screen and (max-width: 375px) {
  .about__text {
    font-size: 13px;
  }
}

.course {
  width: 100%;
  position: relative;
  background-image: url(../images/course-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  padding: 100px 0 150px;
  margin-top: -60px;
}
@media screen and (max-width: 768px) {
  .course {
    padding: 120px 0;
  }
}
.course__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .course__inner {
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .course .c-title {
    width: 100%;
    margin-bottom: 0px;
  }
}
.course__title-wrap {
  position: relative;
  width: fit-content;
  margin: 0 auto 60px;
}
@media screen and (max-width: 768px) {
  .course__title-wrap {
    margin: 0 auto 20px;
  }
}
.course__title-deco {
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  width: 180px;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .course__title-deco {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 120px;
    margin: 10px auto 0;
    display: none;
  }
}
.course__slider {
  position: relative;
  padding: 0 40px;
}
@media screen and (min-width: 769px) {
  .course__slider {
    padding: 0;
    max-width: 100%;
    overflow: visible;
  }
}
@media screen and (min-width: 769px) {
  .course__wrapper {
    display: flex;
    justify-content: center;
    gap: 25px;
    transform: none !important;
    align-items: stretch;
  }
}
.course__item {
  width: 370px;
  height: auto;
  flex-shrink: 0;
  text-align: center;
}
.course__item-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  line-height: 1.4;
  min-height: 52px;
}
.course__item-title .course__item-subtitle {
  display: block;
  font-size: 14px;
  color: #333;
  margin-top: 5px;
  font-family: sans-serif;
  font-weight: normal;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .course__item-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
.course__item img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 769px) {
  .course__item {
    width: 370px;
    margin-right: 0 !important;
  }
}
@media screen and (max-width: 768px) {
  .course__item {
    width: 280px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
  }
  .course__item.swiper-slide-active {
    opacity: 1;
    pointer-events: auto;
  }
}
.course__button-prev, .course__button-next {
  display: none;
}
@media screen and (max-width: 768px) {
  .course__button-prev, .course__button-next {
    display: block;
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
  }
  .course__button-prev::after, .course__button-next::after {
    content: none;
  }
}
.course__button-prev {
  background-image: url(../images/course-prev.png);
  left: 0;
}
.course__button-next {
  background-image: url(../images/course-next.png);
  right: 0;
}
.course__note {
  margin-top: 40px;
  font-size: 16px;
  line-height: 1.8;
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .course__note {
    margin-top: 30px;
    font-size: 12px;
    text-align: left;
  }
}
.course__bottom {
  margin: 60px auto 0;
  max-width: 1110px;
  background-image: url(../images/course-another-bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  padding: 50px 50px;
}
@media screen and (max-width: 768px) {
  .course__bottom {
    margin: 40px auto 0;
    background-image: url(../images/course-another-bg-sp.png);
    padding: 20px 20px 40px 20px;
    width: 280px;
  }
}
.course__bottom-title {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 500;
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .course__bottom-title {
    font-size: clamp(14px, 4.8vw, 18px);
    margin-bottom: 20px;
  }
}
.course__bottom-text {
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.05em;
}
.course__bottom-text p {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .course__bottom-text {
    font-size: 13px;
    line-height: 1.8;
    font-feature-settings: "palt";
  }
}

.vision {
  position: relative;
  width: 100%;
}
.vision__top {
  background-image: url(../images/vision-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 150px 0 180px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .vision__top {
    background-image: url(../images/vision-bg--sp.png);
    padding: 60px 0;
    margin-bottom: 260px;
  }
}
.vision__inner {
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .vision__inner {
    padding: 0 20px;
  }
}
.vision__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .vision__row {
    flex-direction: column;
    gap: 40px;
    width: 100%;
  }
}
.vision__img {
  width: 54%;
  max-width: 768px;
  flex-shrink: 0;
  margin-left: -5%;
}
@media screen and (max-width: 768px) {
  .vision__img {
    position: absolute;
    bottom: -30%;
    right: 15%;
    width: 100%;
    max-width: none;
    margin-left: 0;
    z-index: 10;
  }
}
.vision__text {
  width: 50%;
  font-size: clamp(14px, 1.7vw, 24px);
  line-height: 2;
  text-align: center;
  font-weight: 500;
}
.vision__text p {
  margin-bottom: 40px;
}
.vision__text p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .vision__text {
    font-size: 18px;
    width: 100%;
    text-align: center;
  }
  .vision__text br {
    display: none;
  }
}
@media screen and (max-width: 375px) {
  .vision__text {
    font-size: 14px;
  }
}
.vision__row--2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1080px;
  margin: 100px auto 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .vision__row--2 {
    flex-direction: column-reverse;
    margin-top: 80px;
    align-items: flex-start;
    gap: 0;
  }
}
.vision__text--green {
  text-align: left;
  width: 70%;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .vision__text--green {
    width: 100%;
  }
}
.vision__sub-title {
  color: #009944;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .vision__sub-title {
    font-size: 22px;
    text-align: center;
  }
}
@media screen and (max-width: 375px) {
  .vision__sub-title {
    font-size: 18px;
  }
}
.vision__desc {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .vision__desc {
    width: 74.7%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 375px) {
  .vision__desc {
    font-size: 13px;
  }
}
.vision__desc p {
  margin-bottom: 24px;
}
.vision__img--right {
  position: absolute;
  width: 44%;
  max-width: none;
  flex-shrink: 0;
  margin-left: -260px;
  z-index: 1;
  right: -10%;
  top: -7%;
}
@media screen and (max-width: 768px) {
  .vision__img--right {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-left: 0;
    margin-top: -70px;
    margin-bottom: 30px;
  }
}
.vision__caption {
  font-size: 11px;
  color: #666;
  margin-top: 10px;
  line-height: 1.4;
  text-align: right;
  display: inline-block;
}
.vision__bottom-img {
  margin-top: 40px;
  text-align: left;
  width: 740px;
  max-width: none;
}
.vision__bottom-img img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .vision__bottom-img {
    width: 100%;
    margin-top: 40px;
    overflow: hidden;
    max-width: 100%;
  }
  .vision__bottom-img img {
    width: 120%;
    max-width: 200%;
    margin-left: 50%;
    transform: translateX(-50%);
    display: block;
  }
}

.difference {
  position: relative;
  width: 100%;
  background-image: url(../images/difference-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 120px 0 120px;
}
.difference__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .difference__inner {
    padding: 0 20px;
  }
}
.difference__content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .difference__content {
    flex-direction: column;
    gap: 30px;
    margin-top: 0px;
  }
}
.difference__col {
  width: 40%;
  text-align: center;
}
.difference__col--general {
  width: 35%;
}
.difference__col--gcg {
  width: 46%;
}
@media screen and (max-width: 768px) {
  .difference__col {
    width: 100%;
  }
  .difference__col--general, .difference__col--gcg {
    width: 100%;
  }
}
.difference__col-title {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .difference__col-title {
    margin-top: 0px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 375px) {
  .difference__col-title {
    font-size: 22px;
  }
}
.difference__col-title .difference__col-logo {
  height: auto;
  width: 166px;
}
.difference__col--gcg .difference__col-title {
  font-size: 45px;
  margin-top: 0;
}
@media screen and (max-width: 375px) {
  .difference__col--gcg .difference__col-title {
    font-size: 36px;
  }
}
.difference__list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  display: inline-block;
  font-size: 28px;
  line-height: 2;
  font-weight: 500;
}
.difference__list li {
  margin-bottom: 10px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .difference__list li {
    margin-bottom: 20px;
    line-height: 1.3;
  }
}
.difference__arrow {
  width: 60px;
  flex-shrink: 0;
}
.difference__arrow img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .difference__arrow img {
    transform: rotate(90deg);
  }
}
@media screen and (max-width: 768px) {
  .difference__arrow {
    width: 46px;
    margin-bottom: -60px;
    position: relative;
    z-index: 2;
  }
}
.difference__connector {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  margin: 10px 0;
}
@media screen and (max-width: 375px) {
  .difference__connector {
    font-size: 13px;
  }
}
.difference__gcg-box {
  background-image: url(../images/diggerence-text-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  padding: 40px 40px;
  border-radius: 30px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.difference__deco {
  position: absolute;
  bottom: -50px;
  left: -20%;
  width: 300px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .difference__deco {
    width: 150px;
    left: 10%;
    bottom: -100px;
  }
}
.difference .c-title__line-1 {
  display: inline-flex;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .difference .c-title__line-1 {
    gap: 10px;
  }
}

.feature {
  width: 100%;
  margin-top: -60px;
  position: relative;
  z-index: 2;
  background-image: url(../images/feature-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  padding: 200px 0 150px;
}
@media screen and (max-width: 768px) {
  .feature {
    margin-top: 50px;
    background-image: none;
    background-size: 100% auto;
    background-position: top center;
    padding: 0px 0px 60px;
    overflow: hidden;
  }
}
.feature__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .feature__inner {
    padding: 0px;
  }
}
@media screen and (max-width: 768px) {
  .feature__title {
    background-image: url(../images/feature-ttl-bg--sp.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    width: 100%;
    height: auto;
    flex-direction: row !important;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
  }
  .feature__title::after {
    content: none;
  }
}
.feature__list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 74px;
  margin-top: 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .feature__list {
    flex-direction: column;
    background-image: url(../images/feature-bg--sp.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    align-items: center;
    padding-top: 100px;
    margin-top: -80px;
    padding-bottom: 120px;
    gap: 0px;
  }
}
.feature__illust {
  position: absolute;
  pointer-events: none;
  z-index: 10;
}
.feature__illust--01 {
  bottom: 15%;
  left: 28%;
  transform: translateX(-50%);
  width: 10%;
  max-width: 140px;
}
@media screen and (max-width: 768px) {
  .feature__illust--01 {
    position: absolute;
    bottom: -20px;
    left: -20px;
    margin: 0;
    width: 180px;
    z-index: 5;
    display: none;
  }
}
.feature__illust--02 {
  top: -150px;
  left: 62%;
  transform: translateX(-50%);
  width: 20%;
  max-width: 115px;
}
@media screen and (max-width: 768px) {
  .feature__illust--02 {
    top: -50px;
    display: none;
  }
}
.feature__illust--bulb-sp {
  position: absolute;
  bottom: -30px;
  right: -10px;
  width: 70px;
  z-index: 5;
  display: none;
}
@media screen and (max-width: 768px) {
  .feature__illust--bulb-sp {
    display: none;
  }
}
.feature__illust img {
  max-width: 100%;
  height: auto;
}
.feature__item {
  width: 400px;
  height: 560px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  padding: 40px 50px 90px 50px;
  position: relative;
  margin: 0 -60px;
}
@media screen and (max-width: 768px) {
  .feature__item {
    background-size: cover;
  }
}
.feature__item--01 {
  background-image: url(../images/feature-text01.png);
  z-index: 1;
}
.feature__item--01 .feature__item-title {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .feature__item--01 {
    background-image: url(../images/feature-text01--sp.png);
    text-align: center;
    padding-bottom: 120px !important;
    height: 560px;
    min-height: 400px;
    margin-top: -20px;
  }
  .feature__item--01 .feature__item-content {
    margin-top: -30px;
  }
  .feature__item--01 .feature__item-title {
    color: #333;
    text-align: center;
    display: block;
  }
  .feature__item--01 .feature__item-title .feature__search-icon {
    margin-left: 10px;
  }
  .feature__item--01 .feature__desc {
    color: #333;
  }
}
.feature__item--02 {
  background-image: url(../images/feature-text02.png);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .feature__item--02 {
    background-image: url(../images/feature-text02--sp.png);
  }
  .feature__item--02 .feature__item-content {
    margin-top: 10px;
  }
}
.feature__item--03 {
  background-image: url(../images/feature-text03.png);
  z-index: 1;
  width: 460px;
}
.feature__item--03 .feature__item-title {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .feature__item--03 {
    background-image: url(../images/feature-text03--sp.png);
    width: 100%;
    height: 380px;
  }
  .feature__item--03 .feature__item-content {
    margin-top: -30px;
  }
  .feature__item--03 .feature__item-title {
    color: #333;
  }
}
@media screen and (max-width: 768px) {
  .feature__item {
    width: 100%;
    padding: 50px 30px;
    margin: 0;
  }
}
.feature__item-content {
  width: 100%;
}
.feature__item-title {
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 20px;
  line-height: 1.5;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .feature__item-title {
    font-size: 24px;
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 375px) {
  .feature__item-title {
    font-size: 24px;
  }
}
.feature__search-icon {
  width: 24px;
  height: auto;
  vertical-align: middle;
  margin-left: 5px;
}
.feature__desc {
  font-size: 14px;
  line-height: 1.8;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .feature__desc {
    font-size: 16px;
  }
}
@media screen and (max-width: 375px) {
  .feature__desc {
    font-size: 14px;
  }
}

.flow {
  padding: 120px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .flow {
    padding: 60px 0 80px 0;
    overflow: hidden;
    margin-top: 80px;
  }
}
.flow__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .flow__inner {
    padding: 0 20px;
  }
}
.flow__list {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .flow__list {
    flex-direction: column;
    gap: 80px;
    align-items: center;
  }
}
.flow__item {
  width: 680px;
  min-height: 500px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
  padding: 60px 40px 300px;
  box-sizing: border-box;
  text-align: center;
}
.flow__item--01 {
  background-image: url(../images/flow-text01.png);
}
@media screen and (max-width: 768px) {
  .flow__item--01 {
    background-image: url(../images/flow-text01--sp.png);
  }
}
.flow__item--02 {
  background-image: url(../images/flow-text02.png);
}
@media screen and (max-width: 768px) {
  .flow__item--02 {
    background-image: url(../images/flow-text02--sp.png);
  }
}
@media screen and (max-width: 768px) {
  .flow__item {
    width: 145vw;
    margin-left: calc(50% - 60vw);
    margin-right: calc(50% - 60vw);
    height: 560px;
    padding: 60px 40px 150px;
  }
}
.flow__badge {
  position: absolute;
  top: 20px;
  left: 50px;
  width: 112px;
  height: 112px;
  background-image: url(../images/flow__badge01.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 500;
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .flow__badge {
    top: -20px;
    display: none;
    left: 10px;
    width: 90px;
    height: 90px;
    font-size: 24px;
  }
}
@media screen and (max-width: 375px) {
  .flow__badge {
    font-size: 19px;
  }
}
.flow__badge--02 {
  background-image: url(../images/flow__badge02.png);
  left: auto;
  right: 50px;
}
@media screen and (min-width: 769px) {
  .flow__badge--02 {
    left: 50px;
    right: auto;
  }
}
.flow__item-title {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .flow__item-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 375px) {
  .flow__item-title {
    font-size: 19px;
  }
}
.flow__line {
  width: 100%;
  max-width: 250px;
  margin: 0 auto 50px;
}
.flow__line img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .flow__line {
    max-width: 200px;
    margin-bottom: 20px;
  }
}
.flow__sub-title {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 0px;
}
@media screen and (max-width: 768px) {
  .flow__sub-title {
    font-size: 24px;
    margin-top: 0;
  }
}
@media screen and (max-width: 375px) {
  .flow__sub-title {
    font-size: 19px;
  }
}
.flow__sub-title--01 {
  color: #3b429d;
}
.flow__sub-title--02 {
  color: #eb6ea5;
}
.flow__desc {
  font-size: 20px;
  line-height: 1.8;
  text-align: center;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .flow__desc {
    font-size: 14px;
    text-align: center;
  }
}
@media screen and (max-width: 375px) {
  .flow__desc {
    font-size: 13px;
  }
}
.flow__photo {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
}
.flow__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .flow__photo {
    width: 240px;
    height: 240px;
    bottom: -120px;
    z-index: 2;
  }
}
.flow__deco {
  position: absolute;
  bottom: 100px;
  right: -130px;
  width: 312px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .flow__deco {
    bottom: -100px;
    right: 20px;
    width: 180px;
    z-index: 3;
    transform: rotate(5deg);
  }
}

.schedule {
  width: 100%;
  position: relative;
  background-image: url(../images/schedule_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .schedule {
    padding: 120px 0;
  }
}
.schedule__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .schedule__inner {
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .schedule .c-title {
    flex-direction: row;
    align-items: center;
    width: fit-content;
  }
}
.schedule__title-wrap {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
.schedule__title-deco {
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  width: 275px;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .schedule__title-deco {
    position: absolute;
    top: -10px;
    right: -20px;
    left: auto;
    display: none;
    transform: rotate(-10deg);
    width: 130px;
    margin: 0;
    display: none;
    opacity: 0.8;
  }
}
.schedule__content {
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .schedule__content {
    text-align: left;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
    margin-right: -20px;
    padding-right: 20px;
  }
}
.schedule__table-img {
  max-width: 100%;
  height: auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .schedule__table-img {
    max-width: none;
    width: 800px;
  }
}
.schedule__note {
  margin-top: 30px;
  font-size: 20px;
  line-height: 1.8;
  text-align: left;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .schedule__note {
    font-size: 11px;
    display: block;
    margin-top: 40px;
    padding: 0 10px;
  }
}

.service {
  background-color: #f9f9f9;
}
.service__list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}
.service__item {
  width: calc(33.333% - 20px);
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}
.service__item:hover {
  transform: translateY(-5px);
}
@media screen and (max-width: 768px) {
  .service__item {
    width: 100%;
  }
}
.service__item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 4px;
}
.service__name {
  font-size: 20px;
  margin-bottom: 10px;
  text-align: center;
}
.service__desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.news {
  background-color: #fff;
}
.news__list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}
.news__item {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .news__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.news__date {
  font-size: 14px;
  color: #999;
  font-family: monospace;
}
.news__link {
  font-size: 16px;
  transition: color 0.3s;
}
@media screen and (max-width: 375px) {
  .news__link {
    font-size: 13px;
  }
}
.news__link:hover {
  color: #0000ff;
  text-decoration: underline;
}

.contact {
  background-color: #f5f5f5;
}
.contact__form {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 60px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  .contact__form {
    padding: 30px;
  }
}
.contact__item {
  margin-bottom: 24px;
}
.contact__item label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 14px;
}
.contact__item input,
.contact__item textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s;
}
@media screen and (max-width: 375px) {
  .contact__item input,
  .contact__item textarea {
    font-size: 13px;
  }
}
.contact__item input:focus,
.contact__item textarea:focus {
  border-color: #333;
  outline: none;
}
.contact__submit {
  text-align: center;
  margin-top: 40px;
}

/* Footer */
.footer {
  width: 100%;
  color: #fff;
  font-family: "Kiwi Maru", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
.footer__top {
  background-color: #7d7d7d;
  /* Adjust based on design image */
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .footer__top {
    padding: 40px 0;
  }
}
.footer__inner {
  max-width: 960px;
  /* User request: 960px */
  margin: 0 auto;
  padding: 0 20px;
}
.footer__title {
  font-size: 40px;
  text-align: center;
  letter-spacing: 0.2em;
  margin-bottom: 60px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .footer__title {
    font-size: 32px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 375px) {
  .footer__title {
    font-size: 26px;
  }
}
.footer__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  /* Adjusted gap for 960px container */
}
@media screen and (max-width: 768px) {
  .footer__row {
    flex-direction: column;
    gap: 30px;
  }
}
.footer__col {
  width: 45%;
  /* Fallback */
}
@media screen and (max-width: 768px) {
  .footer__col {
    width: 100%;
    text-align: center;
    margin: auto;
  }
}
.footer__col:first-child {
  width: auto;
  flex: 1;
  /* Take remaining space */
}
.footer__col:last-child {
  width: 400px;
  /* Fixed width for logo column */
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .footer__col:last-child {
    width: 100%;
  }
}
.footer__col:last-child .footer__sub-title {
  text-align: center;
}
.footer__sub-title {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .footer__sub-title {
    font-size: 16px;
  }
}
@media screen and (max-width: 375px) {
  .footer__sub-title {
    font-size: 13px;
  }
}
.footer__place-name {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .footer__place-name {
    font-size: 24px;
  }
}
@media screen and (max-width: 375px) {
  .footer__place-name {
    font-size: 19px;
  }
}
.footer__address {
  font-size: 20px;
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .footer__address {
    font-size: 16px;
    text-align: left;
  }
}
@media screen and (max-width: 375px) {
  .footer__address {
    font-size: 13px;
  }
}
.footer__company-logo {
  margin-bottom: 20px;
  background: #fff;
  padding: 15px 30px;
  display: inline-block;
  width: 400px;
  /* User request: 400px */
}
@media screen and (max-width: 768px) {
  .footer__company-logo {
    width: 100%;
  }
}
.footer__company-logo img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.footer__privacy {
  display: inline-block;
  font-size: 13px;
  color: #fff;
  text-decoration: none;
  margin-top: 10px;
}
.footer__privacy:hover {
  text-decoration: underline;
}
.footer__bottom {
  background-color: #fff;
  padding: 30px 0;
  text-align: center;
}
.footer__bottom-logo {
  width: 200px;
  margin: 0 auto;
}
.footer__bottom-logo img {
  width: 100%;
  height: auto;
}

.domain {
  width: 100%;
  padding: 100px 0;
  position: relative;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .domain {
    background-image: url(../images/domain-bg--sp.png);
    background-repeat: no-repeat;
    background-size: 133%;
    background-color: transparent;
    margin-top: -100px;
    position: relative;
    z-index: 10;
    background-position: top center;
    padding: 120px 0 0 0;
  }
}
.domain__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .domain__inner {
    padding: 0;
  }
}
.domain__header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .domain__header {
    margin-bottom: 30px;
    flex-direction: column;
  }
}
.domain__title {
  position: relative;
  z-index: 2;
}
.domain__illust {
  position: absolute;
  top: 35%;
  right: 0%;
  width: 30%;
  max-width: 525px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .domain__illust {
    position: relative;
    top: auto;
    right: auto;
    width: 80%;
    display: none;
    margin: -20px auto 0;
  }
}
.domain__illust img {
  max-width: 100%;
  height: auto;
}
.domain__intro {
  text-align: center;
  margin-bottom: 100px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .domain__intro {
    margin-bottom: 40px;
  }
}
.domain__desc {
  font-size: 24px;
  line-height: 2;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .domain__desc {
    font-size: 20px;
    text-align: center;
  }
}
.domain__deco-text {
  position: absolute;
  top: 30%;
  left: -20%;
  z-index: 0;
}
.domain__deco-text img {
  max-width: 400px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .domain__deco-text {
    position: relative;
    top: auto;
    display: none;
    left: auto;
    text-align: center;
    margin-bottom: 40px;
  }
  .domain__deco-text img {
    width: 60%;
  }
}
.domain__list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .domain__list {
    display: none;
  }
}
.domain__sp-image {
  width: 100%;
  margin: 0 auto;
}
.domain__sp-image img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .domain__sp-image {
    display: block;
    width: 100%;
  }
}
.domain__item {
  width: 23%;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .domain__item {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .domain__item:nth-child(n+2) {
    margin-top: -180px;
  }
}
.domain__img {
  margin-bottom: 20px;
}
.domain__img img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .domain__img {
    width: 100%;
    margin-bottom: 0;
    overflow: hidden;
  }
  .domain__img img {
    width: 115%;
    max-width: 200%;
    margin-left: 50%;
    transform: translateX(-50%);
    display: block;
  }
}
.domain__item-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #333;
}
@media screen and (max-width: 768px) {
  .domain__item-text {
    display: none;
  }
}
.domain__item-ja {
  font-size: 20px;
  font-weight: 500;
}
.domain__item-ja::after {
  content: "/";
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .domain__item-ja {
    font-size: 18px;
  }
}
.domain__item-en {
  font-size: 20px;
  font-weight: 500;
  font-family: "Kiwi Maru", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .domain__item-en {
    font-size: 14px;
  }
}

.teacher {
  width: 100%;
  position: relative;
  background-image: url(../images/teacher-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  margin-top: -60px;
}
@media screen and (max-width: 768px) {
  .teacher {
    padding: 60px 0 260px;
  }
}
.teacher__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .teacher__inner {
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .teacher .c-title {
    flex-direction: row;
    align-items: center;
    width: fit-content;
  }
}
@media screen and (max-width: 768px) {
  .teacher .c-title__logo {
    width: 120px;
  }
}
.teacher__content {
  display: grid;
  grid-template-columns: 2fr 0.8fr;
  grid-template-areas: "text1 illust" "text2 photo" "text3 photo" "values values";
  gap: 60px;
  align-items: start;
}
@media screen and (max-width: 768px) {
  .teacher__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
  .teacher__content .teacher__block--01 {
    order: 1;
  }
  .teacher__content .teacher__illust {
    order: 2;
  }
  .teacher__content .teacher__block--02 {
    order: 3;
  }
  .teacher__content .teacher__values {
    order: 4;
  }
  .teacher__content .teacher__block--03 {
    order: 5;
  }
}
.teacher__block--01 {
  grid-area: text1;
}
.teacher__block--02 {
  grid-area: text2;
}
.teacher__block--03 {
  grid-area: text3;
}
.teacher__illust {
  grid-area: illust;
  text-align: right;
}
.teacher__photo {
  grid-area: photo;
  text-align: right;
}
.teacher__values {
  grid-area: values;
}
.teacher__text {
  font-size: 20px;
  line-height: 2;
  letter-spacing: -0.08em;
  margin-bottom: 24px;
  text-align: justify;
}
.teacher__text:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .teacher__text {
    font-size: 14px;
    text-align: center;
  }
  .teacher__block--03 .teacher__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) and (max-width: 375px) {
  .teacher__block--03 .teacher__text {
    font-size: 13px;
  }
}
.teacher__illust {
  position: absolute;
  top: 16%;
  right: -14%;
  width: 47%;
  z-index: 1;
  grid-area: auto;
}
.teacher__illust img {
  width: 100%;
  height: auto;
  max-width: none;
}
.teacher__illust .u-sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .teacher__illust .u-sp-only {
    display: block;
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .teacher__illust .u-pc-only {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .teacher__illust {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-left: 0;
    text-align: center;
  }
  .teacher__illust img {
    max-width: 100%;
    width: 200px;
  }
}
.teacher__photo {
  position: absolute;
  top: 34%;
  right: -12%;
  width: 47.5%;
  z-index: 1;
  grid-area: auto;
}
.teacher__photo img {
  max-width: none;
  width: 100%;
  height: auto;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .teacher__photo {
    position: absolute;
    top: auto;
    bottom: -340px;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    margin-left: 0;
    grid-area: auto;
    text-align: center;
    line-height: 0;
    z-index: 5;
  }
  .teacher__photo img {
    max-width: 100%;
    width: 100%;
    border-radius: 0;
  }
}
.teacher {
  /* Values Section */
}
.teacher__values-title-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.teacher__values-title {
  background-image: url(../images/teacher-important-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 425px;
  height: 208px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .teacher__values-title {
    width: 225px;
    font-size: 24px;
    background-position: center;
    height: 163px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 375px) {
  .teacher__values-title {
    font-size: 19px;
  }
}
.teacher__values-list {
  display: flex;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .teacher__values-list {
    flex-direction: column;
    gap: 0;
    background-image: url(../images/teacher-textbg02.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 50px 30px 40px;
    align-items: center;
    margin-top: -40px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}
.teacher__value-item {
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  padding: 40px;
  color: #333;
}
.teacher__value-item--01 {
  background-image: url(../images/teacher-textbg01.png);
}
@media screen and (max-width: 768px) {
  .teacher__value-item--01 {
    background-image: none;
  }
}
.teacher__value-item--02 {
  background-image: url(../images/teacher-textbg02.png);
}
@media screen and (max-width: 768px) {
  .teacher__value-item--02 {
    background-image: none;
  }
}
.teacher__value-item--03 {
  background-image: url(../images/teacher-textbg03.png);
}
@media screen and (max-width: 768px) {
  .teacher__value-item--03 {
    background-image: none;
  }
}
@media screen and (max-width: 768px) {
  .teacher__value-item {
    width: 100%;
    height: auto;
    min-height: auto;
    padding: 10px 0;
    font-size: 20px;
    background-image: none !important;
    justify-content: center;
    text-align: center;
    width: 100%;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) and (max-width: 375px) {
  .teacher__value-item {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .teacher__value-item + .teacher__value-item {
    margin-top: 8px;
    position: relative;
  }
  .teacher__value-item + .teacher__value-item::before {
    content: "";
    display: block;
    width: 240px;
    height: 15px;
    background-image: url(../images/teacher_underline--sp.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 auto 8px;
  }
}

.target {
  width: 100%;
  position: relative;
  background-image: url(../images/target-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 150px 0 150px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .target {
    padding: 120px 0;
  }
}
.target__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .target__inner {
    padding: 0;
  }
}
.target__title {
  color: #fff;
  margin-bottom: 120px;
}
.target__title::after {
  background-image: url(../images/target_white_line.png);
}
@media screen and (max-width: 768px) {
  .target__title {
    margin-bottom: 20px;
  }
}
.target__intro {
  font-size: 24px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .target__intro {
    font-size: 20px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 375px) {
  .target__intro {
    font-size: 16px;
  }
}
.target__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .target__list {
    gap: 40px;
  }
}
.target__item {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: -50px;
}
@media screen and (max-width: 768px) {
  .target__item {
    margin-bottom: 0;
    display: block;
  }
}
.target__item--01 {
  justify-content: flex-start;
  margin-left: 70px;
}
.target__item--01 .target__bg-img {
  width: 615px;
}
.target__item--01 .target__text-box {
  top: 50%;
  left: 50%;
  transform: translate(-56%, -46%);
}
@media screen and (max-width: 768px) {
  .target__item--01 {
    margin-left: 0;
  }
  .target__item--01 .target__bg-img {
    width: 100%;
  }
  .target__item--01 .target__text-box {
    transform: translate(-63%, -46%);
    height: auto;
  }
}
.target__item--02 {
  justify-content: flex-end;
  margin-right: 60px;
  margin-top: -50px;
}
.target__item--02 .target__bg-img {
  width: 1076px;
}
.target__item--02 .target__text-box {
  top: 50%;
  width: 88%;
  left: 50%;
  transform: translate(-24%, -69%);
}
@media screen and (max-width: 768px) {
  .target__item--02 {
    margin-right: 0;
    margin-top: 0;
  }
  .target__item--02 .target__bg-img {
    width: 100%;
  }
  .target__item--02 .target__text-box {
    transform: translate(-32%, 7%);
    width: 70%;
    height: auto;
    top: 53%;
    left: 51%;
  }
}
.target__item--03 {
  justify-content: flex-start;
  margin-left: 44px;
  margin-top: 80px;
}
.target__item--03 .target__bg-img {
  width: 1095px;
}
.target__item--03 .target__text-box {
  top: 53%;
  left: 50%;
  transform: translate(-66%, -57%);
}
@media screen and (max-width: 768px) {
  .target__item--03 {
    margin-left: 0;
    margin-top: -20px;
  }
  .target__item--03 .target__bg-img {
    width: 100%;
  }
  .target__item--03 .target__text-box {
    transform: translate(-54%, -13%);
    height: auto;
    top: 53%;
  }
}
.target__item--04 {
  justify-content: flex-end;
  margin-right: 113px;
  margin-top: 120px;
}
.target__item--04 .target__bg-img {
  width: 1040px;
}
.target__item--04 .target__text-box {
  top: 50%;
  left: 62%;
  width: 52%;
  transform: translate(-24%, -56%);
}
@media screen and (max-width: 768px) {
  .target__item--04 {
    margin-right: 0;
    margin-top: -180px;
  }
  .target__item--04 .target__bg-img {
    width: 100%;
  }
  .target__item--04 .target__text-box {
    transform: translate(-65%, 24%);
    height: auto;
    width: 75%;
    left: 53%;
  }
}
.target__item--05 {
  justify-content: center;
  margin-top: 80px;
}
.target__item--05 .target__bg-img {
  width: 916px;
}
.target__item--05 .target__text-box {
  top: 50%;
  left: 50%;
  transform: translate(-72%, -32%);
}
@media screen and (max-width: 768px) {
  .target__item--05 {
    margin-top: 0;
  }
  .target__item--05 .target__bg-img {
    width: 100%;
  }
  .target__item--05 .target__text-box {
    transform: translate(-40%, 6%);
    height: auto;
    width: 73%;
    top: 54%;
    left: 52%;
  }
}
.target__content {
  position: relative;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .target__content {
    width: 100%;
  }
}
.target__bg-img img {
  max-width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .target__bg-img {
    width: 100%;
    overflow: hidden;
  }
  .target__bg-img img {
    width: 100%;
    max-width: 100%;
    margin-left: 50%;
    transform: translateX(-50%);
  }
}
.target__text-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 40px;
  text-align: center;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .target__text-box {
    padding: 0 30px;
  }
}
.target__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #e67e22;
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 18px;
  position: absolute;
  top: 20px;
  left: 20px;
}
.target__item--01 .target__num {
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}
.target__item-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .target__item-title {
    font-size: 19px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 375px) {
  .target__item-title {
    font-size: 19px;
  }
}
.target__item-desc {
  font-size: 20px;
  line-height: 1.8;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .target__item-desc {
    font-size: 16px;
    margin-top: 0;
  }
}
@media screen and (max-width: 375px) {
  .target__item-desc {
    font-size: 13px;
  }
}
.target__deco-wrap {
  position: absolute;
  top: 73%;
  left: -10%;
  z-index: 10;
  transform: rotate(-10deg);
}
@media screen and (max-width: 768px) {
  .target__deco-wrap {
    top: -40px;
    left: 0;
    position: relative;
    margin-bottom: 20px;
    transform: none;
    text-align: center;
    width: 100%;
    display: none;
  }
}
.target__deco-wrap img {
  width: 50%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .target__deco-wrap img {
    width: 150px;
  }
}
.target__item-deco {
  position: absolute;
  z-index: 2;
}
.target__item-deco--02 {
  top: -30px;
  left: -20px;
  width: 60px;
}
.target__item-deco--05 {
  top: -10px;
  left: 70px;
  width: 160px;
}
@media screen and (max-width: 768px) {
  .target__item-deco--05 {
    width: 150px;
    top: -80px;
    left: -20px;
  }
}
@media screen and (max-width: 768px) {
  .target__item-deco {
    display: none;
  }
}
.target__bottom-text {
  margin-top: 100px;
}
.target__bottom-text p {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .target__bottom-text {
    margin-top: 60px;
  }
  .target__bottom-text p {
    font-size: 16px;
  }
}
@media screen and (max-width: 375px) {
  .target__bottom-text p {
    font-size: 13px;
  }
}

/* ==========================================================================
   QA Section
   ========================================================================== */
.qa {
  position: relative;
  padding: 150px 0;
  margin-top: -60px;
  background: url("../images/qa-bg.png") top center/cover no-repeat;
  /* User requested "top center" and "like other sections". Assuming cover or enough height. */
}
@media screen and (max-width: 768px) {
  .qa {
    padding: 120px 0;
  }
}
.qa__inner {
  position: relative;
  max-width: 1000px;
  /* Adjust based on design, maybe slightly narrower than 1200 for centralized look */
  margin: 0 auto;
  padding: 0 20px;
}
.qa {
  /* Title Area */
}
.qa__title-wrap {
  position: relative;
  text-align: center;
  margin-bottom: 60px;
  background: url("../images/qa-ttl-bg.png") center center/contain no-repeat;
  width: 420px;
  /* Approximate based on visual */
  height: 334px;
  /* Approximate based on visual */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .qa__title-wrap {
    width: 280px;
    height: 230px;
    margin-bottom: 40px;
  }
}
.qa__title-logo {
  width: 198px;
  /* Corrected to 198px based on user feedback */
  margin-top: 50px;
  /* Increased margin slightly for better spacing with larger logo */
}
@media screen and (max-width: 768px) {
  .qa__title-logo {
    width: 140px;
    /* Adjusted proportionally for SP */
  }
}
.qa__title-text {
  font-family: "Kiwi Maru", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 47px;
  font-weight: 500;
  letter-spacing: -0.08em;
}
@media screen and (max-width: 768px) {
  .qa__title-text {
    font-size: 32px;
  }
}
@media screen and (max-width: 375px) {
  .qa__title-text {
    font-size: 26px;
  }
}
.qa__title-deco {
  /* "Question" text decoration */
  position: absolute;
  bottom: -20px;
  right: -60px;
  width: 150px;
}
@media screen and (max-width: 768px) {
  .qa__title-deco {
    bottom: -10px;
    right: -40px;
    width: 100px;
  }
}
.qa {
  /* List Layout */
}
.qa__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  /* Using columnar layout or flex for masonry-like feel 
     Based on design:
     Left col: Q1, Q3
     Right col: Q2, Q4
     Q5 centered? Or maybe plain flow.
     Visual shows Q1 left, Q2 right (slightly lower), Q3 left, Q4 right, Q5 center.
     This suggests two columns.
  */
  position: relative;
  z-index: 1;
}
.qa__col {
  width: 46%;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .qa__col {
    display: contents;
  }
}
.qa__col--left {
  margin-top: 0;
}
.qa__col--right {
  margin-top: 80px;
  /* Stagger effect */
}
@media screen and (max-width: 768px) {
  .qa__col--right {
    margin-top: 40px;
  }
}
.qa {
  /* Individual Item */
}
.qa__item {
  position: relative;
  background: url("../images/qa-item-bg.png") center center/100% 100% no-repeat;
  /* Using 100% 100% to stretch bg to content size which is variable. 
     If the bg has texture that shouldn't distort, 
     we might need slice or just contain if ratio is similar. 
     "qa-item-bg.png" implies a paper-like texture. 
  */
  padding: 60px 40px 40px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .qa__item {
    padding: 50px 30px 30px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .qa__col--left .qa__item:nth-child(1) {
    order: 1;
  }
  .qa__col--right .qa__item:nth-child(1) {
    order: 2;
  }
  .qa__col--left .qa__item:nth-child(2) {
    order: 3;
  }
  .qa__col--right .qa__item:nth-child(2) {
    order: 4;
  }
  .qa__col--right .qa__item:nth-child(3) {
    order: 5;
  }
}
.qa__q-number {
  position: absolute;
  top: -70px;
  left: 20px;
  width: 109px;
  height: 109px;
  background: url("../images/qa-number-bg.png") center center/contain no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Kiwi Maru", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 32px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .qa__q-number {
    width: 60px;
    height: 60px;
    font-size: 16px;
    top: -20px;
    left: 10px;
  }
}
@media screen and (max-width: 375px) {
  .qa__q-number {
    font-size: 13px;
  }
}
.qa__question {
  font-size: 24px;
  margin-top: 0;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .qa__question {
    font-size: 20px;
  }
}
@media screen and (max-width: 375px) {
  .qa__question {
    font-size: 16px;
  }
}
.qa__line {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.qa__line img {
  width: 100%;
}
.qa__answer {
  font-size: 20px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .qa__answer {
    font-size: 16px;
  }
}
@media screen and (max-width: 375px) {
  .qa__answer {
    font-size: 13px;
  }
}
.qa {
  /* Decorative Illustrations */
}
.qa__illust-wrap {
  position: absolute;
  bottom: 20px;
  left: 90px;
  width: 400px;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .qa__illust-wrap {
    position: relative;
    bottom: auto;
    left: auto;
    margin: 0 auto;
    width: 150px;
    text-align: center;
  }
}

/* ==========================================================================
   Voice Section
   ========================================================================== */
.voice {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -60px;
  /* Space for bottom content */
}
@media screen and (max-width: 768px) {
  .voice {
    padding-bottom: 60px;
    overflow: hidden;
  }
}
.voice {
  /* Title Area with Full Width Background */
}
.voice__title-area {
  width: 100%;
  background: url("../images/voice-bg.png") center top/cover no-repeat;
  padding-top: 120px;
  /* Adjust based on bg image height */
  padding-bottom: 150px;
  /* Adjust based on bg image height/design */
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: -100px;
  /* Overlap with content below if needed, or adjust padding */
}
@media screen and (max-width: 768px) {
  .voice__title-area {
    padding-top: 50px;
    padding-bottom: 70px;
    background-size: cover;
  }
}
.voice__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .voice__title {
    gap: 10px;
  }
}
.voice__logo {
  width: 206px;
}
@media screen and (max-width: 768px) {
  .voice__logo {
    width: 132px;
  }
}
.voice__title-text {
  font-family: "Kiwi Maru", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .voice__title-text {
    font-size: 32px;
  }
}
@media screen and (max-width: 375px) {
  .voice__title-text {
    font-size: 26px;
  }
}
.voice {
  /* Content Area */
}
.voice__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 2;
  margin-top: 180px;
  /* Bring above title bg if overlapping */
}
@media screen and (max-width: 768px) {
  .voice__inner {
    margin-top: 50px;
    padding: 0;
  }
}
.voice__list {
  display: flex;
  justify-content: center;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .voice__list {
    flex-direction: column;
    gap: 40px;
    align-items: center;
    margin-top: -100px;
  }
}
.voice {
  /* Voice Item */
}
.voice__item {
  position: relative;
  width: 550px;
  height: 533px;
  /* Adjust based on image ratio */
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .voice__item {
    width: 110vw;
    margin-left: calc(50% - 55vw);
    height: 410px;
    aspect-ratio: auto;
    padding: 50px 15% 40px;
  }
}
.voice__item--01 {
  background: url("../images/voice-text01.png") center center/contain no-repeat;
}
@media screen and (max-width: 768px) {
  .voice__item--01 {
    background-image: url("../images/voice-text01--sp.png");
    background-size: cover;
    background-position: top center;
  }
}
.voice__item--02 {
  background: url("../images/voice-text02.png") center center/contain no-repeat;
  margin-top: 0;
  /* Or maybe staggered? */
}
.voice__item--02 .voice__text {
  margin-top: 100px;
  margin-right: 30px;
  /* Specific adjustment for item 02 */
}
@media screen and (max-width: 768px) {
  .voice__item--02 .voice__text {
    margin-top: 30px;
    margin-right: -30px;
  }
}
@media screen and (max-width: 768px) {
  .voice__item--02 {
    background-image: url("../images/voice-text02--sp.png");
    background-size: cover;
    background-position: top left;
    margin-left: auto;
    margin-right: 0;
    width: 90vw;
    max-width: 369px;
    height: 90vw;
    max-height: 369px;
  }
}
.voice__text {
  font-size: 24px;
  line-height: 1.8;
  font-weight: 500;
  text-align: left;
  margin-top: 90px;
  letter-spacing: -0.08em;
  /* Adjust padding/margin to fit inside the bubble visually */
}
@media screen and (max-width: 768px) {
  .voice__text {
    font-size: 20px;
    margin-top: 40px;
    text-align: center;
  }
}
@media screen and (max-width: 375px) {
  .voice__text {
    font-size: 16px;
  }
}
.voice {
  /* Annotation */
}
.voice__note {
  text-align: right;
  font-size: 20px;
  color: #333;
  margin-top: -80px;
}
@media screen and (max-width: 768px) {
  .voice__note {
    text-align: right;
    margin-top: 20px;
    font-size: 12px;
    padding: 0 20px;
  }
}
.voice {
  /* Last Message Area */
}
.voice__last {
  margin-top: 150px;
  width: 100%;
  background: url("../images/last-bg.png") center center/cover no-repeat;
  padding: 100px 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .voice__last {
    background-image: url("../images/last-bg--sp.png");
    padding: 80px 20px;
    margin-top: 50px;
  }
}
.voice__last-text {
  font-family: "Kiwi Maru", serif;
  /* Or base font if Kiwi Maru is base */
  font-size: 24px;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .voice__last-text {
    font-size: 20px;
    line-height: 1.8;
    text-align: center;
    /* Or center depending on design */
  }
}
@media screen and (max-width: 375px) {
  .voice__last-text {
    font-size: 16px;
  }
}

/* ==========================================================================
   Pickup Section
   ========================================================================== */
.pickup {
  width: 100%;
  padding: 60px 0;
  overflow: hidden;
}
.pickup__inner {
  width: 100%;
  max-width: 900px;
  /* User request: Slider itself 1200px */
  margin: 0 auto;
  position: relative;
  padding: 0;
  /* overflow: hidden; Removed to allow arrows outside */
}
.pickup__slider-wrap {
  width: 100%;
  padding: 0;
  position: relative;
  overflow: hidden;
  /* Cut off content outside 1200px */
}
@media screen and (max-width: 768px) {
  .pickup__slider-wrap {
    padding: 0;
  }
}
.pickup__slider {
  width: 100%;
  overflow: visible;
}
.pickup .swiper-slide {
  width: 62.4%;
  /* 234px / 375px = 62.4% */
  height: auto;
  opacity: 0;
  transition: opacity 0.3s;
}
.pickup .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.pickup .swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
@media screen and (min-width: 769px) {
  .pickup .swiper-slide {
    width: 600px;
    opacity: 0.5;
  }
  .pickup .swiper-slide.swiper-slide-active {
    opacity: 1;
  }
}
.pickup {
  /* Navigation Arrows */
}
.pickup__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 10;
  /* Assuming images are green circles as per user request/image */
}
.pickup__nav img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .pickup__nav {
    width: 40px;
    height: 40px;
    display: block;
  }
}
.pickup__prev {
  left: -70px;
}
@media screen and (max-width: 768px) {
  .pickup__prev {
    left: 2%;
  }
}
.pickup__next {
  right: -70px;
}
@media screen and (max-width: 768px) {
  .pickup__next {
    right: 2%;
  }
}

/* Float Button */
.float-btn {
  position: fixed;
  top: 90px;
  right: 24px;
  width: 220px;
  height: 220px;
  /* Adjust height based on background aspect ratio or content */
  z-index: 2000;
  transition: opacity 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../images/floatBtn-bg.png) no-repeat center center/contain;
  text-decoration: none;
  color: #333;
  text-align: center;
  font-family: "Kiwi Maru", serif;
  animation: floatBubble 3s ease-in-out infinite;
}
.float-btn:hover {
  opacity: 0.8;
}
.float-btn__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1.2;
  padding-top: 10px;
  /* Adjust for visual visual center of the blob */
  padding-right: 15px;
  /* The blob shape might need some padding offset */
}
.float-btn__year {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 2px;
  letter-spacing: -0.05em;
}
.float-btn__main {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.05em;
  margin-left: 10px;
}
.float-btn__sub {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .float-btn {
    width: 110px;
    height: 115px;
    top: 16px;
    right: 16px;
  }
  .float-btn__inner {
    padding-top: 5px;
    padding-right: 10px;
  }
  .float-btn__year {
    font-size: 11px;
  }
  .float-btn__main {
    font-size: 20px;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 768px) and (max-width: 375px) {
  .float-btn__main {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .float-btn__sub {
    font-size: 11px;
  }
}
.float-btn.is-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.3s;
}

@keyframes floatBubble {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
/* Scroll Animation */
.js-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.js-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fade Left */
.js-fade-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.js-fade-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Delays */
.u-delay-100 {
  transition-delay: 0.1s;
}
.u-delay-200 {
  transition-delay: 0.2s;
}
.u-delay-300 {
  transition-delay: 0.3s;
}
.u-delay-400 {
  transition-delay: 0.4s;
}
.u-delay-500 {
  transition-delay: 0.5s;
}
.u-delay-600 {
  transition-delay: 0.6s;
}

/* Page Top Button */
.pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #c3bfbf;
  /* Dark background */
  border-radius: 50%;
  z-index: 1000;
  display: flex;
  /* Flexbox for centering */
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  /* Arrow Icon using CSS border technique or pseudo-element */
}
.pagetop::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
  margin-top: 4px;
  /* Slight optical adjustment */
}
.pagetop {
  /* Active state (shown) */
}
.pagetop.is-active {
  opacity: 1;
  visibility: visible;
}
.pagetop:hover {
  background-color: #555;
  transform: translateY(-5px);
  /* Lift effect */
}
@media screen and (max-width: 768px) {
  .pagetop {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }
  .pagetop::after {
    width: 10px;
    height: 10px;
  }
}

/*# sourceMappingURL=style.css.map */
