body {
  font-family: "Noto Serif JP", serif;
  margin-top: 100px;
}

.section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

/* フェードイン時のスタイル */
.section.fadeIn {
  opacity: 1;
  transform: translateY(0);
}

/* 順番にフェードインさせる要素のスタイル */
.section .benefit-item {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: calc(var(--delay) * 0.1s);
  will-change: opacity, transform;
}

.section.fadeIn .benefit-item {
  opacity: 1;
  transform: translateX(0);
}

/* オプション: 要素が画面外の時は非表示にしておく */
.section:not(.fadeIn) {
  visibility: hidden;
}

.section.fadeIn {
  visibility: visible;
}
header {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: #fff;
  z-index: 100;
}

.header-logo {
  height: 100px;
}

.header-logo img {
  /* max-width: 100%; */
  max-height: 100%;
}

.menu {
  height: 100%;
}

.logo {
  margin-top: 10%;
  width: 400px;
}

.logo img {
  width: 400px;
}

.hamburger-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 100px;
  cursor: pointer;
  color: #ba8f2e;
  padding-top: 15px;
  padding-right: 20px;
}

/* ハンバーガーメニューのアイコンのスタイル */
.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: #ba8f2e;
  margin-bottom: 20px;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(206, 183, 114, 0.95); /* #ceb772 with opacity */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.nav-menu.active {
  opacity: 1;
  visibility: visible;
}

.nav-links {
  list-style: none;
  padding: 0;
  text-align: center;
}

.nav-links li {
  margin: 20px 0;
}

.nav-links a {
  color: #ffffff; /* リンクの色を白に変更 */
  text-decoration: none;
  font-size: 24px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #333333; /* ホバー時の色を暗めのグレーに変更 */
}

.desc {
  font-family: "Noto Serif JP", serif;
  font-size: 3vh;
  text-align: center;
}

.top-container {
  margin-top: 5%;
  position: relative;
  width: 80%;
  height: 800px;
  max-width: 1200px; /* コンテナの最大幅を設定 */
  margin: 0 auto; /* 水平方向の中央揃え */
  overflow: hidden;
}

.top-content {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  filter: blur(20px);
  transition: opacity 1s ease-in-out, filter 1s ease-in-out;
}

.top-content.active {
  opacity: 1;
  filter: blur(0);
}

.top-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  text-align: center;
}

.introduce-container {
  /* padding-top: 10%; */
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fffcf3;
  margin: 0;
  padding-bottom: 2rem;
  position: relative;
}

#title {
  font-family: "Noto Serif JP", serif;
  /* font-weight: bold; */
  font-size: 4vw;
  text-align: center;
  margin-bottom: 5%;
}

#content {
  font-family: "Noto Serif JP", serif;
}

/* .photo {
  height: 500px;
  /* position: absolute; */
/* left: 100px; */
/* bottom: 0; */
/* } */
/* .photo img { */
/* max-height: 100%; */
/* } */

.pc-img {
  height: 500px;
  display: flex;
}

.pc-img img {
  height: 100%;
}

.person-introduce {
  position: absolute;
  bottom: 0;
  right: 300px;
}

a.arrow2 {
  text-decoration: none;
  color: #3e3e3e;
  display: inline-block;
  padding-right: 50px;
  position: relative;
}

a.arrow2:before,
a.arrow2:after {
  content: "";
  display: block;
  -webkit-transform: skewX(45deg);
  transform: skewX(45deg);
  position: absolute;
  right: 0;
  bottom: 6px;
}

a.arrow2:before {
  width: 45px;
  height: 3px;
  background: #3e3e3e;
}

a.arrow2:after {
  width: 4px;
  height: 8px;
  background: #3e3e3e;
}

.content-introduce-container {
  background-color: #ba8f2e;
  margin: 0;
  font-family: "Noto Serif JP", serif;
  color: aliceblue;
  padding: 5%;
}

.content-introduce-container p {
  font-size: 3vh;
}

.content-introduce-container span {
  font-size: 5vh;
}

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

.ad-container #title {
  /* font-weight: bold; */
  font-size: 5vh;
  text-align: center;
}

.ad-container #content {
  text-align: center;
  font-size: 3vh;
}

.ad-container span {
  font-size: 5vh;
  color: #010066;
}

.ad-container img {
  width: 70%;
}

.fq-container {
  background-color: #ebe2c8;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 30px;
}

.fq-title {
  font-size: 3vw;
  text-align: center;
}

.fq-imgs {
  /* width: 80%; */
  /* height: 10%; */
  display: flex;
  align-items: flex-end;
}

.faq-img {
  text-align: center;
  width: 300px;
}

.faq-img p {
  font-size: 3vw;
}

.faq-img img {
  max-width: 100%;
}
.link-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.link-title {
  font-size: 3vw;
}

.apply-btn {
  width: 20%;
  padding: 0.5em 1em;
  /* margin: 2em 0; */
  color: #fff;
  background: #202b5f;
  font-size: 2vw;
  text-align: center;
  margin-bottom: 3vh;
}

.to-counseling-btn {
  width: 20%;
  padding: 0.5em 1em;
  /* margin: 2em 0; */
  color: #fff;
  background: #bd9422;
  font-size: 2vw;
  text-align: center;
  margin-bottom: 3vh;
}

.inquery-btn {
  width: 20%;
  padding: 0.5em 1em;
  /* margin: 2em 0; */
  color: #fff;
  background: #adacae;
  font-size: 2vw;
  text-align: center;
  margin-bottom: 3vh;
}

footer {
  background: #ceb772;
  color: #fff;
  margin: 0;
  padding: 5%;
  display: flex;
  /* align-items: flex-end; */
  justify-content: space-between;
}

footer ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.links {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-content: space-between;
  height: 100%;
}

.links div {
  text-align: end;
}

.links a {
  text-decoration: none;
}

.mystory {
  background-color: #fdfbf2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.button-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.button {
  padding: 15px 30px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  text-align: center;
  min-width: 150px;
  font-family: "Noto Serif JP", serif;
  font-size: 0.9em;
}

.apply-btn {
  background-color: #1a1a4b;
  color: white;
}

.counseling-btn {
  background-color: #daa520;
  color: white;
}

.contact-btn {
  background-color: #808080;
  color: white;
}

.faq-container {
  max-width: 800px;
  /* margin: 0 auto; */
  margin-left: 10%;
  margin-right: 10%;
}

/* .mystory-logo {
  width: 100%;
} */

.mystory-logo img {
  /* max-width: 100%; */
  /* max-height: 100%; */
  width: 400px;
}

.mystory-img {
  width: 400px;
}

.mystory-img img {
  max-width: 100%;
}

.mystory div {
  text-align: center;
}

.mystory span {
  font-weight: bold;
}
.mystory-btns {
  display: flex;
  justify-content: space-between;
}

/* .mystory-btns .apply-btn {
} */
@media screen and (min-width: 481px) {
  .program-section {
    position: relative;
    display: flex;
    min-height: 500px;
    font-family: sans-serif;
    overflow: hidden;
    font-family: "Noto Serif JP", serif;
    background-color: #ba8f2e;
  }

  .content {
    width: 50%;
    z-index: 10;
    padding: 100px;
    color: white;
    background-color: #c6a052;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    padding-right: 120px; /* 斜めの部分を考慮して右のパディングを増やす */
  }

  .content p {
    font-size: 2vw;
  }

  .content span {
    font-size: 4vw;
  }
  .image-container {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
  }

  .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .title {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 40px;
  }

  .phone-img {
    display: none;
  }

  .subtitle {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }

  .program-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
  }

  .program-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    font-size: 2rem;
  }

  .program-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: white;
  }

  .phone-faq-img {
    display: none;
  }

  .phone-image-section2 {
    display: none;
  }

  .read-more {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .read-more::after {
    content: "―――";
    font-weight: lighter;
  }

  .phone-image-container {
    display: none;
  }

  .phone-person-introduce {
    display: none;
  }

  .service-container {
    font-family: "Noto Serif JP", serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fffcf3;
    padding: 5%;
  }

  .service-container p {
    font-size: 3vh;
  }

  .service-contents {
    font-family: "Noto Serif JP", serif;
    display: flex;
    flex-direction: row;
    justify-content: center;
    /* align-items: center; */
  }

  .service-contents div {
    width: 600px;
    margin-left: 5%;
    font-size: 20px;
  }

  .service-contents img {
    width: 600px;
  }

  .method-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .method-image {
    height: 800px;
    /* position: relative; */
  }

  .method-image img {
    max-height: 100%;
  }

  .no-promise {
    position: absolute;
    background: #c6a052;
    color: white;
    text-align: center;
    padding: 15px 40px;
    font-size: 2rem;
    position: relative;
    width: fit-content;
    margin: -20px 0;
    z-index: 2;
    font-family: "Noto Serif JP", serif;
  }

  .method-content {
    margin-top: 50px;
    border: 2px double #c6a052;
    padding: 60px 40px 40px;
    margin-top: -20px;
    position: relative;
  }

  .method-title {
    font-family: "Noto Serif JP", serif;
    font-size: 3rem;
    color: #c6a052;
    text-align: center;
  }

  .method-list {
    margin-top: 20px;
    color: #c6a052;
    font-family: "Noto Serif JP", serif;
    font-size: 2rem;
  }

  .method-desc {
    font-family: "Noto Serif JP", serif;
    font-size: 1.5rem;
  }

  .method-img {
    width: 50%;
    text-align: center;
  }

  .method-img img {
    max-width: 100%;
  }

  .student-achievement-container {
    font-family: "Noto Serif JP", serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 10%;
  }

  .title {
    font-size: 3vh;
    margin-bottom: 30px;
  }

  .sub-title {
    font-size: 3vh;
    margin-bottom: 15px;
  }

  .slider-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }

  .slider {
    display: flex;
    transition: transform 0.5s ease;
  }

  .student-content {
    min-width: 100%;
    padding: 20px;
    box-sizing: border-box;
    background: #fff;
    text-align: center;
  }

  .student-content p {
    line-height: 1.8;
    margin-bottom: 10px;
    color: #444;
  }

  .slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
  }

  .dot {
    width: 12px;
    height: 12px;
    border-radius: 20%;
    background: #adacae;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .dot.active {
    background: #bd9422;
  }

  .slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
    z-index: 1;
  }

  .slider-button:hover {
    background: rgba(255, 255, 255, 0.9);
  }

  .prev-button {
    left: 10px;
  }

  .next-button {
    right: 10px;
  }

  .benefits-container {
    display: flex;
    /* min-height: 100vh; */
    height: 800px;
    background-color: #fff;
  }

  .image-section2 {
    flex: 1;
    overflow: hidden;
  }

  .image-section2 img {
    width: 100%;
    height: 800px;
    object-fit: cover;
  }

  .content-section {
    flex: 1;
    background-color: #1a0066;
    color: white;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .benefits-title {
    font-size: 3vw;
    margin-bottom: 2rem;
    /* opacity: 0; */
    transform: translateY(20px);
    color: #fff;
  }

  .benefits-list {
    list-style: none;
  }

  .benefit-item {
    font-size: 2vw;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    /* opacity: 0; */
    transform: translateX(20px);
  }

  .benefit-item::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #fff;
  }

  .mystory-link-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30%;
  }

  .mystory-apply-btn {
    width: 50%;
    padding: 0.5em;
    margin: 1em 0;
    color: #fff;
    background: #202b5f;
    font-size: 2vh;
    text-align: center;
    margin-bottom: 1vh;
  }

  .mystory-to-counseling-btn {
    width: 50%;
    padding: 0.5em;
    margin: 1em 0;
    color: #fff;
    background: #bd9422;
    font-size: 2vh;
    text-align: center;
    margin-bottom: 1vh;
  }

  .mystory-inquery-btn {
    width: 50%;
    padding: 0.5em;
    margin: 1em 0;
    color: #fff;
    background: #adacae;
    font-size: 2vh;
    text-align: center;
    margin-bottom: 2vh;
  }

  @media (max-width: 768px) {
    .container {
      flex-direction: column;
    }

    .image-section {
      height: 50vh;
    }

    .content-section {
      padding: 2rem 1.5rem;
    }

    .title {
      font-size: 1.5rem;
    }

    .benefit-item {
      font-size: 1rem;
    }
  }
}
/* レスポンシブ対応 */
@media screen and (max-width: 480px) {
  body {
    margin-top: 60px; /* ヘッダーの高さに合わせて調整 */
    font-size: 14px;
  }

  /* ヘッダー調整 */
  header {
    height: 50px;
    padding: 5px 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .header-logo {
    height: 40px;
    padding: 5px 0;
  }

  .header-logo img {
    height: 100%;
    width: auto;
  }

  /* .top-container {
    margin-top: 10%;
    position: relative;
    width: 80%;
    height: 200px;
    max-width: 100%; /* コンテナの最大幅を設定 */
  /* margin: 0 auto; 水平方向の中央揃え */
  /* overflow: hidden; */
  /* } */

  .top-container {
    margin-top: 20px;
    height: 300px;
    width: 100%;
  }

  .top-content {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 1s ease-in-out, filter 1s ease-in-out;
  }

  .top-content.active {
    opacity: 1;
    filter: blur(0);
  }

  .top-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    text-align: center;
  }

  .introduce-container img {
    width: 200px;
  }

  #title {
    font-size: 2vh;
  }

  #content {
    padding-left: 10%;
    padding-right: 10%;
    text-align: center;
    font-size: 10px;
  }

  .pc-img {
    display: none;
  }

  .phone-img {
    padding-top: 3rem;
    /* height: 300px; */
    display: flex;
  }

  .photo {
    display: none;
  }

  .person-introduce {
    display: none;
  }

  /* .phone-person-introduce {
    text-align: center;
  }

  .phone-person-introduce p {
    font-size: 10px;
  }
  .phone-person-introduce span {
    font-size: 3vh;
  }

  .phone-image-container {
    width: 80%;
    text-align: center;
  }

  .phone-image-container img {
    max-width: 100%;
  } */

  /* .image-container {
    display: none;
  } */

  .person-introduce {
    display: none;
  }

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

  .content {
    width: 100%;
    color: white;
    padding-left: 10%;
    background-color: #c6a052;
    padding-bottom: 10%;
    z-index: 10;
    clip-path: polygon(0 0, 75% 0, 50% 100%, 0% 100%);
  }

  .content p {
    padding-top: 1rem;
    font-size: 2vw;
  }

  .content span {
    font-size: 4vw;
  }

  .image-container {
    position: absolute;
    left: 0;
    text-align: end;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding-left: 70px;
  }

  .image-container img {
    height: 100%;
  }

  .title {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 40px;
  }

  .program-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
  }

  .program-list li {
    list-style: none;
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    font-size: 1rem;
  }

  .program-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: white;
  }

  .read-more {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .read-more::after {
    content: "―――";
    font-weight: lighter;
  }

  .service-container {
    text-align: center;
    font-family: "Noto Serif JP", serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fffcf3;
    padding: 5%;
  }

  .service-container p {
    font-size: 3vh;
  }

  .service-contents {
    font-family: "Noto Serif JP", serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .service-contents div {
    width: 100%;
    margin-left: 5%;
    /* font-size: 20px; */
  }

  .service-contents img {
    max-width: 80%;
  }

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

  .method-image {
    width: 300px;
    /* position: relative; */
  }

  .method-image img {
    width: 300px;
    max-height: 100%;
  }

  .no-promise {
    position: absolute;
    background: #c6a052;
    color: white;
    text-align: center;
    padding: 15px 40px;
    font-size: 1rem;
    position: relative;
    width: fit-content;
    margin: -20px 0;
    z-index: 2;
    font-family: "Noto Serif JP", serif;
  }

  .method-content {
    margin-top: 50px;
    border: 2px double #c6a052;
    padding: 30px 40px 0px 40px;
    margin-top: -10px;
    position: relative;
  }

  .method-title {
    font-family: "Noto Serif JP", serif;
    font-size: 1rem;
    color: #c6a052;
    text-align: center;
  }

  .method-list {
    margin-top: 20px;
    color: #c6a052;
    font-family: "Noto Serif JP", serif;
    /* font-size: 0.5rem; */
  }

  .method-desc {
    font-family: "Noto Serif JP", serif;
    font-size: 1.5rem;
  }

  .method-img {
    width: 100%;
    text-align: center;
  }

  .method-img img {
    max-width: 100%;
  }

  .student-achievement-container {
    font-family: "Noto Serif JP", serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 10%;
  }

  .title {
    font-size: 3vh;
    margin-bottom: 30px;
  }

  .sub-title {
    font-size: 3vh;
    margin-bottom: 15px;
  }

  .slider-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }

  .slider {
    display: flex;
    transition: transform 0.5s ease;
  }

  .student-content {
    min-width: 100%;
    padding-left: 5%;
    padding-right: 5%;
    box-sizing: border-box;
    background: #fff;
    text-align: center;
  }

  .student-content p {
    line-height: 1.8;
    margin-bottom: 10px;
    color: #444;
  }

  .slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
  }

  .dot {
    width: 12px;
    height: 12px;
    border-radius: 20%;
    background: #adacae;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .dot.active {
    background: #bd9422;
  }

  .slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
    z-index: 1;
  }

  .slider-button:hover {
    background: rgba(255, 255, 255, 0.9);
  }

  .prev-button {
    left: 10px;
  }

  .next-button {
    right: 10px;
  }

  .mystory-img {
    width: 80%;
  }

  .mystory p {
    padding-left: 10%;
    padding-right: 10%;
  }

  .hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 20px;
    cursor: pointer;
    color: #ba8f2e;
  }

  /* ハンバーガーメニューのアイコンのスタイル */
  .hamburger-line {
    width: 100%;
    height: 2px;
    background-color: #ba8f2e;
    margin-bottom: 4px;
  }

  .image-section2 {
    display: none;
  }

  .benefits-container {
    width: 100%;
  }

  .content-section {
    text-align: center;
    flex: 1;
    background-color: #1a0066;
    color: white;
    /* padding: 4rem 3rem; */
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .benefits-title {
    text-align: center;
    font-size: 3vh;
    /* margin-bottom: 2rem; */
    /* opacity: 0; */
    transform: translateY(20px);
    color: #fff;
  }

  .benefits-list {
    list-style: none;
    font-size: 2vh;
  }

  .benefit-item {
    list-style: none;
    font-size: ;
    margin-bottom: 1rem;
    /* padding-left: 1.5rem; */
    position: relative;
    /* opacity: 0; */
    transform: translateX(20px);
  }

  .benefit-item::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #fff;
  }
  .phone-image-section2 {
    width: 100%;
  }

  .phone-image-section2 img {
    width: 100%;
  }

  .fq-container {
    background-color: #ebe2c8;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 30px;
  }

  .fq-title {
    font-size: 3vw;
    text-align: center;
  }

  .fq-imgs {
    /* width: 80%; */
    /* height: 10%; */
    display: flex;
    align-items: flex-end;
  }

  .phone-faq-img {
    text-align: center;
  }

  .phone-faq-img img {
    max-width: 100%;
  }

  .phone-faq-img p {
    font-size: 3vw;
  }

  .phone-faq-img img {
    max-width: 100%;
  }

  .mystory-link-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .mystory-apply-btn {
    width: 100%;
    padding: 0.5em 1em;
    /* margin: 2em 0; */
    color: #fff;
    background: #202b5f;
    font-size: 3vw;
    text-align: center;
    margin-bottom: 1vh;
  }

  .mystory-to-counseling-btn {
    width: 100%;
    padding: 0.5em 1em;
    /* margin: 2em 0; */
    color: #fff;
    background: #bd9422;
    font-size: 3vw;
    text-align: center;
    margin-bottom: 1vh;
  }

  .mystory-inquery-btn {
    width: 100%;
    padding: 0.5em 1em;
    /* margin: 2em 0; */
    color: #fff;
    background: #adacae;
    font-size: 3vw;
    text-align: center;
    margin-bottom: 2vh;
  }

  .fq-imgs {
    width: 80%;
    /* height: 10%; */
    display: flex;
    align-items: flex-end;
  }

  footer {
    background: #ceb772;
    color: #fff;
    margin: 0;
    padding: 5%;
    display: flex;
    /* align-items: flex-end; */
    justify-content: space-between;
  }

  /* .company {
  } */

  footer ul {
    list-style: none;
    display: flex;
    gap: 2rem;
  }

  /* .links {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-content: space-between;
    height: 100%;
  }

  .links ul {
    display: flex;
    flex-direction: column;
  }

  .links div {
    text-align: end;
  }

  .links a {
    text-decoration: none;
  } */

  .links {
    display: none;
  }
}
