@charset "UTF-8";
/*************************************************
common-style
*************************************************/
* {
  box-sizing: border-box;
}

.ie_ObjectFit {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  scroll-behavior: smooth;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  min-height: 100dvh;
  background-color: #F5F5FA;
  letter-spacing: 0.05em;
  color: #222222;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

.obj-fit img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.title__wrap {
  display: inline-flex;
  flex-direction: column;
  overflow: visible;
}
.title__wrap .title__en {
  position: relative;
  font-size: clamp(90px, 150px, 10.4166666667vw);
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 600;
  display: inline-block;
  z-index: 1;
  line-height: 100%;
}
@media (min-width: 1440px) {
  .title__wrap .title__en { /* 大画面での制限 */
    font-size: 150px;
  }
}
.title__wrap .title__en::after {
  position: absolute;
  display: block;
  content: "";
  background: url(../images/sharp-icon.svg) no-repeat center/contain;
  width: 44px;
  height: 82px;
  right: 0;
  top: 5px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .title__wrap .title__en::after {
    width: 35px;
    height: 70px;
    right: -20px;
    top: -16px;
  }
}
.title__wrap .title__ja {
  color: #164580;
  font-weight: 700;
  transform: skewX(-7deg); /* X軸方向に-7度傾斜 */
  transform-origin: bottom; /* 下を基準に回転 */
  display: inline-block; /* インライン要素の場合に必要 */
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .title__wrap .title__ja {
    margin-top: 4px;
  }
}

.en {
  font-family: "Barlow Semi Condensed", sans-serif;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 100%;
}

.content-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  border-left: 1px solid #BDBDBD;
  border-right: 1px solid #BDBDBD;
  margin: 0 auto;
  width: calc(100vw - 40px);
}
@media (min-width: 1200px) {
  .content-wrapper {
    width: calc(100vw - 200px);
  }
}
@media screen and (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
    padding: 72px 20px;
  }
}
.content-wrapper::before {
  position: absolute;
  content: "";
  width: 1px;
  left: 50%;
  background: #BDBDBD;
  transform: translateX(-50%);
  height: 100%;
  top: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .content-wrapper::before {
    display: none;
  }
}
.content-wrapper .content-item {
  flex: 1;
  padding-left: 5.5555555556vw;
}
@media screen and (max-width: 768px) {
  .content-wrapper .content-item {
    padding-left: 0;
  }
}

.full__contents {
  width: 100%;
  border-top: 1px solid #BDBDBD;
  border-bottom: 1px solid #BDBDBD;
}

.under__line {
  border-bottom: 2px solid #164580;
}

.under__line2 {
  border-bottom: 1px solid #222222;
}

h3 {
  font-size: clamp(24px, 2.2222222222vw, 2.2222222222vw);
  font-weight: 500;
}
@media (min-width: 1440px) {
  h3 { /* 大画面での制限 */
    font-size: 2.2222222222vw;
  }
}

p {
  font-size: clamp(15px, 1.1111111111vw, 1.1111111111vw);
  line-height: 200%;
  font-weight: 500;
}
@media (min-width: 1440px) {
  p { /* 大画面での制限 */
    font-size: 1.1111111111vw;
  }
}

.white {
  color: #ffffff;
}

.content__inner {
  margin: 0 auto;
  width: calc(100vw - 40px);
}
@media (min-width: 1200px) {
  .content__inner {
    width: calc(100vw - 200px);
  }
}

@media screen and (max-width: 768px) {
  .br__pc {
    display: none;
  }
}

.br__sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .br__sp {
    display: block;
  }
}

.scroll {
  opacity: 0;
}

.fadeIn {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.text-split {
  overflow: hidden;
}
.text-split span {
  display: inline-block;
  min-width: 0.15em;
}

.block--1 .text-split span {
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.7, 0.2, 0.1, 1), opacity 0.8s cubic-bezier(0.7, 0.2, 0.1, 1);
}
.block--1.is-active .text-split span {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.6s cubic-bezier(0.7, 0.2, 0.1, 1), opacity 0.8s cubic-bezier(0.7, 0.2, 0.1, 1);
}
.block--1.is-active .text-split span:nth-child(1) {
  transition-delay: 0s;
}
.block--1.is-active .text-split span:nth-child(2) {
  transition-delay: 0.04s;
}
.block--1.is-active .text-split span:nth-child(3) {
  transition-delay: 0.08s;
}
.block--1.is-active .text-split span:nth-child(4) {
  transition-delay: 0.12s;
}
.block--1.is-active .text-split span:nth-child(5) {
  transition-delay: 0.16s;
}
.block--1.is-active .text-split span:nth-child(6) {
  transition-delay: 0.2s;
}
.block--1.is-active .text-split span:nth-child(7) {
  transition-delay: 0.24s;
}
.block--1.is-active .text-split span:nth-child(8) {
  transition-delay: 0.28s;
}
.block--1.is-active .text-split span:nth-child(9) {
  transition-delay: 0.32s;
}
.block--1.is-active .text-split span:nth-child(10) {
  transition-delay: 0.36s;
}
.block--1.is-active .text-split span:nth-child(11) {
  transition-delay: 0.4s;
}
.block--1.is-active .text-split span:nth-child(12) {
  transition-delay: 0.44s;
}
.block--1.is-active .text-split span:nth-child(13) {
  transition-delay: 0.48s;
}

.no-scroll-animation {
  transform: none !important;
  transition: none !important;
  position: static !important;
}

/*************************************************
header
*************************************************/
.header {
  width: 100%;
  height: 82px;
  position: fixed;
  border-bottom: 1px solid #222222;
  top: 0;
  left: 0;
  z-index: 100;
  transition: background-color 0.3s ease, -webkit-backdrop-filter 0.3s ease;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease;
}
@media screen and (max-width: 768px) {
  .header {
    height: 63px;
  }
}
.header.header-scrolled {
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.header .header_inner {
  max-width: 100%;
  margin: 0 auto 0 50px;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  align-items: center;
}
@media screen and (max-width: 1330px) {
  .header .header_inner {
    margin: 0 auto 0 20px;
  }
}
.header .header_inner .logo {
  width: 216px;
  height: auto;
  padding: 2rem 0;
}
@media screen and (max-width: 768px) {
  .header .header_inner .logo {
    width: 100px;
    height: auto;
  }
}
.header .header_inner .logo a {
  transition: all 0.3s;
}
.header .header_inner .logo a:hover {
  opacity: 0.7;
}
.header .header_inner .header_inner_menu {
  display: flex;
  align-items: center;
  background-color: #164580;
  height: 82px;
}
@media screen and (max-width: 768px) {
  .header .header_inner .header_inner_menu {
    height: 63px;
  }
}
.header .header_inner .header_inner_menu ul {
  display: flex;
  align-items: center;
  height: 100%;
}
.header .header_inner .header_inner_menu ul li {
  position: relative;
}
.header .header_inner .header_inner_menu ul li:not(:last-child)::after {
  position: absolute;
  display: block;
  content: "";
  width: 1px;
  height: 56px;
  background-color: #ffffff;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.header .header_inner .header_inner_menu ul li a {
  font-weight: 500;
  font-size: clamp(12px, 1.1111111111vw, 1.1111111111vw);
  letter-spacing: 0.05em;
  transition: all 0.3s;
  padding: 30px 20px;
  color: #ffffff;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 900px) {
  .header .header_inner .header_inner_menu ul li a {
    flex-direction: column;
    gap: 4px;
  }
}
@media screen and (max-width: 768px) {
  .header .header_inner .header_inner_menu ul li a {
    padding: 12px 5px;
  }
}
.header .header_inner .header_inner_menu ul li a .tel-icon {
  width: 2.4rem;
  height: 2.4rem;
}
.header .header_inner .header_inner_menu ul li a img {
  width: 1.8rem;
  height: 1.8rem;
  margin-right: 0.8rem;
}
@media screen and (max-width: 900px) {
  .header .header_inner .header_inner_menu ul li a img {
    margin-right: 0;
  }
}
.header .header_inner .header_inner_menu ul li a:hover {
  opacity: 0.7;
}
.header .header_inner .header_inner_menu ul li .tel {
  font-size: clamp(14px, 0.9722222222vw, 1.25vw);
}
.header .header_inner .header_inner_menu ul .header__tel_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .header .header_inner .header_inner_menu ul .header__tel_sp {
    display: block;
  }
}
.header .header_inner .header_inner_menu ul .header__tel_sp a {
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header .header_inner .header_inner_menu ul .header__tel_pc {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  .header .header_inner .header_inner_menu ul .header__line_pc {
    display: none;
  }
}
.header .header_inner .header_inner_menu ul .header__line_sp {
  display: none;
}
@media screen and (max-width: 900px) {
  .header .header_inner .header_inner_menu ul .header__line_sp {
    display: block;
    text-align: center;
  }
}
@media screen and (max-width: 900px) {
  .header .header_inner .header_inner_menu ul .header__line_pc {
    display: none;
  }
}

.download_header {
  width: 100%;
  height: 82px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .download_header {
    height: 63px;
  }
}
.download_header .header_inner {
  max-width: 100%;
  margin: 0 auto 0 50px;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  align-items: center;
}
@media screen and (max-width: 1330px) {
  .download_header .header_inner {
    margin: 0 auto 0 20px;
  }
}
.download_header .header_inner .logo {
  width: 216px;
  height: auto;
  padding: 2rem 0;
}
@media screen and (max-width: 768px) {
  .download_header .header_inner .logo {
    width: 100px;
    height: auto;
  }
}
.download_header .header_inner .logo a {
  transition: all 0.3s;
}
.download_header .header_inner .logo a:hover {
  opacity: 0.7;
}

/*************************************************
footer
*************************************************/
footer {
  position: sticky;
  top: 100%;
}

/*************************************************
top
*************************************************/
main {
  overflow-x: hidden;
}

.bg-filter {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: -10;
  background: url(../images/fixd_img.png) no-repeat center/cover;
}

.fv {
  width: 100%;
  height: 100vh;
  margin-top: 82px;
  position: relative;
  border-bottom: 1px solid #BDBDBD;
}
@media screen and (max-width: 768px) {
  .fv {
    margin-top: 63px;
  }
}
.fv .fv__txt {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 3%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.fv .fv__txt .catchcopy {
  width: 52.5694444444vw;
  height: auto;
}
@media screen and (max-width: 768px) {
  .fv .fv__txt .catchcopy {
    width: 95.4666666667vw;
    min-width: 340px;
    filter: drop-shadow(0 2px 10px rgba(255, 255, 255, 0.25)) drop-shadow(2px 0 10px rgba(255, 255, 255, 0.25)) drop-shadow(0 -2px 10px rgba(255, 255, 255, 0.25)) drop-shadow(-2px 0 10px rgba(255, 255, 255, 0.25));
  }
}
.fv .fv__txt p {
  font-size: clamp(72px, 10.4166666667vw, 150px);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 110%;
  font-family: "Barlow Semi Condensed", sans-serif;
}
@media screen and (max-width: 768px) {
  .fv .fv__txt p {
    filter: drop-shadow(0 2px 10px rgba(255, 255, 255, 0.25)) drop-shadow(2px 0 10px rgba(255, 255, 255, 0.25)) drop-shadow(0 -2px 10px rgba(255, 255, 255, 0.25)) drop-shadow(-2px 0 10px rgba(255, 255, 255, 0.25));
  }
}
.fv .fv__img-box {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 70%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .fv .fv__img-box {
    width: 85%;
  }
}
.fv .fv__img-box .video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.fv .fv__img-box .video-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* クリック操作を邪魔しない */
  background: linear-gradient(92deg, rgba(255, 255, 255, 0.6) 1.29%, rgba(255, 255, 255, 0) 49.93%);
}
.fv .fv__img-box video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* 画像全体を表示、縦横比維持 */
  -o-object-position: top center;
     object-position: top center;
}

.about__sec {
  min-height: 504px;
  height: 35vw;
}
@media screen and (max-width: 768px) {
  .about__sec {
    min-height: auto;
    height: auto;
  }
}
.about__sec .title__wrap .title__en {
  display: initial;
}
.about__sec .title__wrap h2 {
  font-size: clamp(20px, 2.3611111111vw, 34px);
}

.about__sec__right {
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 200%;
  font-weight: 500;
}
@media screen and (min-width: 1440px) {
  .about__sec__right {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 768px) {
  .about__sec__right {
    padding-top: 24px;
    text-align: center;
  }
}

.about__sec__img {
  width: 100%;
  height: auto;
}
.about__sec__img img {
  width: 100%;
  height: auto;
  content: url("../images/about_img.jpg");
}
@media screen and (max-width: 768px) {
  .about__sec__img img {
    content: url("../images/about_img_sp.jpg");
  }
}

.about__sec_second {
  min-height: 532px;
  height: 36.9444444444vw;
}
@media screen and (max-width: 768px) {
  .about__sec_second {
    min-height: auto;
    height: auto;
  }
}
.about__sec_second .title__wrap_sec {
  position: relative;
  font-size: clamp(44px, 4.4444444444vw, 64px) !important;
  font-weight: 700;
  line-height: 130%;
  display: inline-block;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .about__sec_second .title__wrap_sec {
    text-align: center;
  }
}
.about__sec_second .title__wrap_sec::after {
  position: absolute;
  display: block;
  content: "";
  background: url(../images/sharp-icon.svg) no-repeat center/contain;
  width: 44px;
  height: 82px;
  right: 10px;
  top: -20px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .about__sec_second .title__wrap_sec::after {
    width: 35px;
    height: 70px;
    right: 0px;
    top: -16px;
  }
}
.about__sec_second .title__wrap_sec .about__sec_second_title {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about__sec_second .title__wrap_sec .title__about {
  margin-top: 0;
  line-height: 100%;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .about__sec_second .about__sec__right_second {
    text-align: left;
  }
}

.full__contents .full__contents__text {
  padding: 20px;
  text-align: center;
  font-size: clamp(20px, 2.2222222222vw, 32px);
  font-weight: 500;
  transform: skewX(-7deg); /* X軸方向に-7度傾斜 */
  transform-origin: bottom; /* 下を基準に回転 */
  color: #164580;
}
@media screen and (max-width: 768px) {
  .full__contents .full__contents__text {
    line-height: 150%;
  }
}

.about__sec_third {
  min-height: 680px;
  height: 47.2222222222vw;
  justify-content: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .about__sec_third {
    min-height: auto;
    height: auto;
    align-items: baseline;
    flex-direction: row;
    padding: 72px 0;
  }
  .about__sec_third::before {
    display: block;
  }
}
.about__sec_third .content-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 0;
  gap: 40px;
}
.about__sec_third .content-item .content-item__title {
  font-size: clamp(13px, 2.3611111111vw, 34px) !important;
  font-weight: 600;
  text-align: center;
  line-height: 170%;
  margin-top: 9.7222222222vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about__sec_third .content-item .content-item__title {
    margin-top: 0;
  }
}
.about__sec_third .content-item .content-item__title::before {
  position: absolute;
  content: "";
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 21px;
  height: 123px;
  background: url(../images/brackets-left.png) no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .about__sec_third .content-item .content-item__title::before {
    left: -10px;
    width: 9px;
    height: 50px;
  }
}
.about__sec_third .content-item .content-item__title::after {
  position: absolute;
  content: "";
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 21px;
  height: 123px;
  background: url(../images/brackets-right.png) no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .about__sec_third .content-item .content-item__title::after {
    right: -10px;
    width: 9px;
    height: 50px;
  }
}
.about__sec_third .content-item .content-item__img1 {
  width: 20.8333333333vw;
  min-width: 300px;
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(214, 224, 236, 0.3));
}
@media screen and (max-width: 768px) {
  .about__sec_third .content-item .content-item__img1 {
    min-width: 150px;
  }
}
.about__sec_third .content-item .content-item__img2 {
  width: 16.9444444444vw;
  min-width: 244px;
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(214, 224, 236, 0.3));
}
@media screen and (max-width: 768px) {
  .about__sec_third .content-item .content-item__img2 {
    min-width: 130px;
  }
}

.scroll-text-wrapper {
  width: 100vw;
  overflow: hidden;
}
.scroll-text-wrapper .scroll-text-swiper {
  width: 100%;
  height: auto;
}
.scroll-text-wrapper .scroll-text-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}
.scroll-text-wrapper .scroll-text-swiper .swiper-wrapper .scroll-text-slide {
  width: auto !important;
  flex-shrink: 0;
  margin-right: 32px;
}
@media screen and (max-width: 768px) {
  .scroll-text-wrapper .scroll-text-swiper .swiper-wrapper .scroll-text-slide {
    margin-right: 24px;
  }
}
.scroll-text-wrapper .scroll-text-swiper .swiper-wrapper .scroll-text-slide .scroll-text {
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 600;
  transform: skewX(0deg);
  padding: 13px 0;
  white-space: nowrap;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .scroll-text-wrapper .scroll-text-swiper .swiper-wrapper .scroll-text-slide .scroll-text {
    font-size: 2rem;
    padding: 8px 0;
  }
}

.image-scroll-wrapper {
  width: 100vw;
  overflow: hidden;
}
.image-scroll-wrapper .image-scroll-swiper {
  width: 100%;
  height: 28vw; /* 1440pxで400px */
  min-height: 220px; /* スマホ最小高さ */
  max-height: 500px; /* PC最大高さ */
}
.image-scroll-wrapper .image-scroll-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}
.image-scroll-wrapper .image-scroll-swiper .swiper-wrapper .image-scroll-slide {
  width: auto !important;
  height: 100%;
  flex-shrink: 0;
}
.image-scroll-wrapper .image-scroll-swiper .swiper-wrapper .image-scroll-slide .scroll-image {
  width: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border: none;
  outline: none;
}

.system__sec {
  display: flex !important;
  align-items: flex-start !important;
}
@media screen and (max-width: 768px) {
  .system__sec {
    padding: 72px 0 0 0;
  }
}
.system__sec::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  bottom: 0;
  height: 1px;
  width: 100vw;
  background-color: #BDBDBD;
}
.system__sec .content-item {
  padding-top: 9.7222222222vw;
  padding-left: 0 !important;
}
@media screen and (max-width: 768px) {
  .system__sec .content-item {
    padding-top: 0;
    text-align: center;
  }
}
.system__sec .content-item:first-child {
  position: sticky;
  align-self: flex-start;
  padding-top: 0 !important;
}
@media screen and (max-width: 768px) {
  .system__sec .content-item:first-child {
    position: static;
    transform: none;
    transition: none;
  }
}
.system__sec .content-item:last-child {
  flex: 1;
}
.system__sec .title__wrap {
  padding-left: 5.5555555556vw;
}
@media screen and (max-width: 768px) {
  .system__sec .title__wrap {
    padding: 0 20px;
  }
}
.system__sec .title__wrap .title__system_sub {
  color: #222222;
  font-size: clamp(24px, 2.3611111111vw, 34px);
  position: relative;
  z-index: 1;
}
.system__sec .title__wrap .system__sec_title {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .system__sec .title__wrap .system__sec_title {
    align-items: center;
  }
}
.system__sec .title__wrap .title__system {
  font-size: clamp(44px, 4.4444444444vw, 64px);
  line-height: 100%;
  padding-top: 12px;
}
.system__sec .title__wrap .title__system:last-child {
  padding-top: 0;
  margin-top: 0;
}
.system__sec .title__wrap .sharp {
  position: relative;
  display: initial;
  overflow: visible;
}
.system__sec .title__wrap .sharp::after {
  position: absolute;
  display: block;
  content: "";
  background: url(../images/sharp-icon.svg) no-repeat center/contain;
  width: 44px;
  height: 82px;
  right: 100px;
  top: -20px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .system__sec .title__wrap .sharp::after {
    width: 35px;
    height: 70px;
    right: -20px;
  }
}
.system__sec .student_wrap {
  display: flex;
  align-items: flex-end;
  justify-content: left;
  position: relative;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .system__sec .student_wrap {
    padding: 24px 20px 0;
  }
}
.system__sec .student_wrap .student_img_container {
  width: 22.0138888889vw;
  height: 31.7361111111vw;
}
@media screen and (max-width: 768px) {
  .system__sec .student_wrap .student_img_container {
    width: 220px;
    height: auto;
  }
}
.system__sec .student_wrap .student_img {
  width: 100%;
  height: auto;
}
.system__sec .student_wrap .student_txt {
  margin-right: 20px;
  z-index: 0;
  position: relative;
  margin: auto 20px 0 0;
  line-height: 100%;
}
@media screen and (max-width: 768px) {
  .system__sec .student_wrap .student_txt {
    margin: auto 0 0 -20px;
  }
}
.system__sec .student_wrap .student_txt .wavy-line {
  font-size: clamp(18px, 2.2222222222vw, 32px);
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 768px) {
  .system__sec .student_wrap .student_txt .wavy-line {
    white-space: nowrap;
  }
}
.system__sec .student_wrap .student_txt .wavy-line::after {
  position: absolute;
  content: "";
  background: url(../images/wavy-line.svg) no-repeat center/contain;
  width: 100%;
  height: 20px;
  bottom: -10px;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .system__sec .student_wrap .student_txt .wavy-line::after {
    bottom: -4px;
  }
}
.system__sec .student_wrap .student_txt .slant {
  color: #164580;
  font-weight: 500;
  font-size: clamp(14px, 3.5vw, 20px);
  transform: skewX(-7deg); /* X軸方向に-7度傾斜 */
  transform-origin: bottom; /* 下を基準に回転 */
  display: inline-block; /* インライン要素の場合に必要 */
  padding-top: 16px;
}
@media screen and (max-width: 768px) {
  .system__sec .student_wrap .student_txt .slant {
    padding-top: 0px;
    white-space: nowrap;
  }
}
.system__sec .student_wrap2 {
  display: flex;
  align-items: flex-end;
  justify-content: right;
  padding-top: 50px;
  position: relative;
  transform: translateY(0px);
  will-change: transform;
}
@media screen and (max-width: 768px) {
  .system__sec .student_wrap2 {
    padding: 0 20px;
    position: static;
    transform: none;
    transition: none;
  }
}
.system__sec .student_wrap2 .student_txt {
  margin-right: 20px;
  z-index: 0;
  position: relative;
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .system__sec .student_wrap2 .student_txt {
    margin-right: -20px;
  }
}
.system__sec .student_wrap2 .student_txt .wavy-line {
  font-size: clamp(18px, 2.2222222222vw, 32px);
  font-weight: 500;
  position: relative;
  line-height: 100%;
}
@media screen and (max-width: 768px) {
  .system__sec .student_wrap2 .student_txt .wavy-line {
    white-space: nowrap;
  }
}
.system__sec .student_wrap2 .student_txt .wavy-line::after {
  position: absolute;
  content: "";
  background: url(../images/wavy-line.svg) no-repeat center/contain;
  width: 100%;
  height: 20px;
  bottom: -10px;
  left: 0;
  z-index: -1;
}
.system__sec .student_wrap2 .student_txt .slant {
  color: #164580;
  font-weight: 500;
  font-size: clamp(14px, 3.5vw, 20px);
  transform: skewX(-7deg); /* X軸方向に-7度傾斜 */
  transform-origin: bottom; /* 下を基準に回転 */
  display: inline-block; /* インライン要素の場合に必要 */
  padding-top: 16px;
}
@media screen and (max-width: 768px) {
  .system__sec .student_wrap2 .student_txt .slant {
    padding-top: 0px;
    white-space: nowrap;
  }
}
.system__sec .student_wrap2 .student_img_container {
  position: sticky;
  left: 0;
  top: 80px;
  bottom: 0;
  width: 21.6666666667vw;
  height: 32.2222222222vw;
  overflow: hidden;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .system__sec .student_wrap2 .student_img_container {
    width: 230px;
    height: auto;
  }
}
.system__sec .student_wrap2 .student_img_container .student_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.system__sec .content-item__text {
  font-size: clamp(14px, 1.25vw, 18px);
  line-height: 200%;
  font-weight: 500;
  width: 31.9444444444vw;
  padding-left: 5.5555555556vw;
  padding-bottom: 9.7222222222vw;
}
@media screen and (min-width: 1440px) {
  .system__sec .content-item__text {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 768px) {
  .system__sec .content-item__text {
    padding: 24px 20px 40px;
    width: 100%;
    text-align: left;
  }
}
.system__sec .content-item__img_wrap {
  border-top: 1px solid #BDBDBD;
}
.system__sec .content-item__img_wrap .content-item__imgs {
  display: flex;
  align-items: center;
}
.system__sec .content-item__img_wrap .content-item__imgs .content-item__img {
  flex: 1;
}
.system__sec .content-item__img_wrap .content-item__imgs .content-item__img_text {
  flex: 1;
  text-align: center;
}
.system__sec .content-item__img_wrap .content-item__imgs .content-item__img_text img {
  margin-bottom: 20px;
  width: 40px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .system__sec .content-item__img_wrap .content-item__imgs .content-item__img_text img {
    margin-bottom: 12px;
  }
}
.system__sec .content-item__img_wrap .content-item__imgs .content-item__img_text .number-one {
  width: 34px;
  height: auto;
}
.system__sec .content-item__img_wrap .content-item__imgs .content-item__img_text p {
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (min-width: 1440px) {
  .system__sec .content-item__img_wrap .content-item__imgs .content-item__img_text p {
    font-size: 1.3888888889vw;
  }
}
@media screen and (max-width: 768px) {
  .system__sec .content-item__img_wrap .content-item__imgs .content-item__img_text p {
    font-size: 16px;
  }
}

.system__sec_second {
  align-items: flex-start !important;
}
.system__sec_second .content-item {
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  .system__sec_second .content-item {
    border-bottom: 1px solid #BDBDBD;
    width: 100%;
  }
}
.system__sec_second .content-item__img_wrap {
  border-top: none !important;
}
@media screen and (max-width: 768px) {
  .system__sec_second .content-item__img_wrap {
    min-height: auto;
  }
}

.system__sec_third {
  padding: 80px 0;
  border-left: 1px solid #BDBDBD;
  border-right: 1px solid #BDBDBD;
  margin: 0 auto;
  width: calc(100vw - 40px);
}
@media (min-width: 1200px) {
  .system__sec_third {
    width: calc(100vw - 200px);
  }
}
@media screen and (max-width: 768px) {
  .system__sec_third {
    padding: 72px 20px;
  }
}
.system__sec_third::after {
  display: none;
}
.system__sec_third .content-item {
  max-width: 1080px;
  margin: 0 auto;
  padding-top: 0;
}
@media screen and (max-width: 1100px) {
  .system__sec_third .content-item {
    margin: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .system__sec_third .content-item {
    padding-left: 0 !important;
  }
}
.system__sec_third .content-item__text {
  font-size: clamp(14px, 1.25vw, 18px);
  line-height: 200%;
  font-weight: 500;
  width: initial;
  padding-bottom: 24px;
  padding-left: initial;
}
@media screen and (min-width: 1440px) {
  .system__sec_third .content-item__text {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 768px) {
  .system__sec_third .content-item__text {
    padding: 0 0 16px 0;
  }
}
.system__sec_third .content-item__text-second {
  background-color: #fff;
  font-size: 18px;
  line-height: 160%;
  font-weight: 500;
  padding: 16px 20px;
  border: 1px solid #164580;
  border-radius: 5px;
}
@media screen and (min-width: 1440px) {
  .system__sec_third .content-item__text-second {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 768px) {
  .system__sec_third .content-item__text-second {
    font-size: 13px;
    padding: 10px;
    text-align: left;
  }
}
.system__sec_third .content-item__text-second .navy {
  color: #164580;
  border-bottom: 1px solid #164580;
}

.cta__sec {
  background: var(--grade_cta, linear-gradient(101deg, #FBF5E5 8.77%, #F9EDF9 53.74%, #D6E0EC 99.59%));
}
.cta__sec .cta__sec__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 120px 0;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
@media screen and (max-width: 1100px) {
  .cta__sec .cta__sec__inner {
    margin: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .cta__sec .cta__sec__inner {
    padding: 56px 0;
    gap: 24px;
  }
}
.cta__sec .cta__sec__inner .cta__sec__text {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: clamp(20px, 3.0555555556vw, 44px);
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .cta__sec .cta__sec__inner .cta__sec__text {
    text-align: center;
    gap: 0px;
    line-height: 130%;
    white-space: nowrap;
  }
}
.cta__sec .cta__sec__inner .cta__sec__text::before {
  content: "";
  width: 65px;
  height: 3px;
  transform: rotate(45deg);
  box-sizing: border-box;
  background-color: #222222;
}
@media screen and (max-width: 768px) {
  .cta__sec .cta__sec__inner .cta__sec__text::before {
    width: 50px;
    height: 2px;
  }
}
.cta__sec .cta__sec__inner .cta__sec__text::after {
  content: "";
  width: 65px;
  height: 3px;
  transform: rotate(-45deg);
  box-sizing: border-box;
  background-color: #222222;
}
@media screen and (max-width: 768px) {
  .cta__sec .cta__sec__inner .cta__sec__text::after {
    width: 50px;
    height: 2px;
  }
}
.cta__sec .cta__sec__inner .cta__sec__btn {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}
@media screen and (max-width: 768px) {
  .cta__sec .cta__sec__inner .cta__sec__btn {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .cta__sec .cta__sec__inner .cta__sec__btn {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.cta__sec .cta__sec__inner .cta__sec__btn .btn {
  width: 100%;
}
.cta__sec .cta__sec__inner .cta__sec__btn a {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 80px;
  border-radius: 5px;
  font-weight: 500;
  padding: 18px 16px;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .cta__sec .cta__sec__inner .cta__sec__btn a {
    padding: 12px 16px;
    height: 70px;
  }
}
.cta__sec .cta__sec__inner .cta__sec__btn a:hover {
  opacity: 0.7;
}
.cta__sec .cta__sec__inner .cta__sec__btn .btn--tel {
  background-color: #4477B9;
  color: white;
  font-size: clamp(18px, 1.6666666667vw, 24px);
  font-family: "Barlow Semi Condensed", sans-serif;
}
.cta__sec .cta__sec__inner .cta__sec__btn .btn--tel img {
  width: 29px;
  height: 29px;
}
.cta__sec .cta__sec__inner .cta__sec__btn .btn--line {
  background-color: #06C755;
  color: white;
  font-size: clamp(14px, 1.25vw, 18px);
  white-space: nowrap;
}
.cta__sec .cta__sec__inner .cta__sec__btn .btn--line img {
  width: 38px;
  height: 38px;
}
.cta__sec .cta__sec__inner .cta__sec__btn .btn--school {
  background-color: #E58283;
  color: #fff;
  font-size: clamp(16px, 1.25vw, 18px);
  position: relative;
}
.cta__sec .cta__sec__inner .cta__sec__btn .btn--school::after {
  position: absolute;
  content: "";
  background: url(../images/arrow.svg) no-repeat center/cover;
  width: 29px;
  height: 29px;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.cta__sec .cta__sec__inner .cta__sec__btn .btn--school img {
  width: 30px;
  height: 30px;
}
.cta__sec .cta__sec__inner .cta__sec__btn .btn--document {
  background-color: #F0AD37;
  color: #fff;
  font-size: clamp(16px, 1.25vw, 18px);
  position: relative;
}
.cta__sec .cta__sec__inner .cta__sec__btn .btn--document::after {
  position: absolute;
  content: "";
  background: url(../images/arrow.svg) no-repeat center/cover;
  width: 29px;
  height: 29px;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.cta__sec .cta__sec__inner .cta__sec__btn .btn--document img {
  width: 24px;
  height: 24px;
}
.cta__sec .cta__sec__inner .banner__wrap {
  width: 100%;
  height: auto;
}
.cta__sec .cta__sec__inner .banner__wrap a {
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.cta__sec .cta__sec__inner .banner__wrap a:hover {
  opacity: 0.7;
}

.features__sec {
  min-height: 465px;
  height: 32.2916666667vw;
}
@media screen and (max-width: 768px) {
  .features__sec {
    min-height: auto;
    height: auto;
  }
}
.features__sec .title__wrap .title__en {
  font-size: clamp(68px, 7.2222222222vw, 104px);
  display: initial;
}
.features__sec .title__wrap .title__en::after {
  right: -30px;
}
.features__sec .title__wrap .title__ja {
  font-size: clamp(24px, 2.3611111111vw, 34px);
}
@media screen and (max-width: 768px) {
  .features__sec .title__wrap .title__ja {
    text-align: center;
  }
}
.features__sec .title__wrap .title__ja span {
  font-size: 20px;
  color: #164580;
  transform: skewX(-7deg); /* X軸方向に-7度傾斜 */
  transform-origin: bottom; /* 下を基準に回転 */
  display: inline-block; /* インライン要素の場合に必要 */
}
@media screen and (max-width: 768px) {
  .features__sec .title__wrap .title__ja span {
    font-size: 18px;
  }
}
@media (min-width: 1440px) {
  .features__sec .title__wrap .title__ja { /* 大画面での制限 */
    font-size: 34px;
  }
}
.features__sec .features__sec__right {
  font-size: clamp(22px, 2.2222222222vw, 32px);
  font-weight: 500;
  line-height: 160%;
}
@media screen and (min-width: 1440px) {
  .features__sec .features__sec__right {
    font-size: 2.2222222222vw;
  }
}
@media screen and (max-width: 768px) {
  .features__sec .features__sec__right {
    padding-top: 40px;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .features__sec_second {
    padding: 0;
  }
}
.features__sec_second::before {
  width: 0px;
}
@media screen and (max-width: 768px) {
  .features__sec_second::before {
    position: absolute;
    content: "";
    width: 100vw;
    height: 1px;
    background: #BDBDBD;
    top: 66.67%; /* 2/3の位置 */
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 1;
  }
}
@media (max-width: 480px) {
  .features__sec_second::before {
    display: none;
  }
}
.features__sec_second::after {
  position: absolute;
  content: "";
  width: 100vw;
  height: 1px;
  background: #BDBDBD;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .features__sec_second::after {
    top: 33.33%;
  }
}
@media (max-width: 480px) {
  .features__sec_second::after {
    display: none;
  }
}
.features__sec_second .content-list-container {
  display: grid;
  gap: 0 20px;
  /* 768px以上: 3列2行 */
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  position: relative;
  /* さらに小さい画面では1列 */
}
.features__sec_second .content-list-container::before {
  position: absolute;
  content: "";
  width: 100vw;
  height: 1px;
  top: 0;
  left: 50%;
  background: #BDBDBD;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.features__sec_second .content-list-container::after {
  position: absolute;
  content: "";
  width: 100vw;
  height: 1px;
  bottom: 0;
  left: 50%;
  background: #BDBDBD;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .features__sec_second .content-list-container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .features__sec_second .content-list-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}
.features__sec_second .content-list-container .content-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-left: 1px solid #BDBDBD;
  border-right: 1px solid #BDBDBD;
  padding: 40px 0;
  position: relative;
}
.features__sec_second .content-list-container .content-list:nth-child(1), .features__sec_second .content-list-container .content-list:nth-child(4) {
  border-left: none; /* 最初の要素の左ボーダーを削除 */
}
.features__sec_second .content-list-container .content-list:nth-child(3n) {
  border-right: none; /* 3の倍数の要素の右ボーダーを削除 */
}
@media screen and (max-width: 768px) {
  .features__sec_second .content-list-container .content-list {
    border-left: 1px solid #BDBDBD;
    padding: 24px 0;
  }
  .features__sec_second .content-list-container .content-list:nth-child(1), .features__sec_second .content-list-container .content-list:nth-child(4) {
    border-left: 1px solid #BDBDBD;
  }
  .features__sec_second .content-list-container .content-list:nth-child(1), .features__sec_second .content-list-container .content-list:nth-child(3), .features__sec_second .content-list-container .content-list:nth-child(5) {
    border-left: none;
  }
  .features__sec_second .content-list-container .content-list:nth-child(3n) {
    border-right: 1px solid #BDBDBD; /* スマホでは右ボーダーを復活 */
  }
  .features__sec_second .content-list-container .content-list:nth-child(2n) {
    border-right: none; /* 2の倍数の要素の右ボーダーを削除 */
  }
}
@media (max-width: 480px) {
  .features__sec_second .content-list-container .content-list {
    border-left: none; /* 全てのborder-leftを非表示 */
    border-right: none; /* スマホでは右ボーダーを削除 */
  }
  .features__sec_second .content-list-container .content-list::after {
    position: absolute;
    content: "";
    width: 100vw;
    height: 1px;
    background: #BDBDBD;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  .features__sec_second .content-list-container .content-list:last-child::after {
    display: none;
  }
}
.features__sec_second .content-list-container .content-list .features__sec__img {
  width: 100%;
  height: 267px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .features__sec_second .content-list-container .content-list .features__sec__img {
    margin-bottom: 24px;
  }
}
.features__sec_second .content-list-container .content-list .content-item__wrap {
  padding: 0 20px;
}
.features__sec_second .content-list-container .content-list .content-item__title {
  font-size: clamp(18px, 1.6666666667vw, 24px);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: #222222;
  margin-bottom: 24px;
  line-height: 150%;
  text-align: center;
  text-underline-offset: 6px;
}
@media screen and (min-width: 1440px) {
  .features__sec_second .content-list-container .content-list .content-item__title {
    font-size: 1.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .features__sec_second .content-list-container .content-list .content-item__title {
    text-underline-offset: 4px;
    margin-bottom: 16px;
  }
}
.features__sec_second .content-list-container .content-list .content-item__text {
  font-size: clamp(15px, 1.1111111111vw, 16px);
  line-height: 200%;
}
@media screen and (min-width: 1440px) {
  .features__sec_second .content-list-container .content-list .content-item__text {
    font-size: 1.1111111111vw;
  }
}

.support__sec {
  min-height: 433px;
  height: 30.0694444444vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  .support__sec {
    min-height: auto;
    height: auto;
  }
}
.support__sec::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  bottom: 0;
  height: 1px;
  width: 100vw;
  background-color: #BDBDBD;
}
@media screen and (max-width: 768px) {
  .support__sec .title__wrap {
    align-items: center;
  }
}
.support__sec .title__wrap .title__en {
  font-size: clamp(72px, 7.2222222222vw, 104px);
  display: initial;
}
.support__sec .title__wrap .title__en::after {
  right: -30px;
}
.support__sec .title__wrap .title__ja {
  font-size: clamp(24px, 2.3611111111vw, 34px);
}
.support__sec .support__sec__right {
  font-size: clamp(22px, 2.2222222222vw, 32px);
  font-weight: 500;
  line-height: 160%;
}
@media screen and (min-width: 1440px) {
  .support__sec .support__sec__right {
    font-size: 2.2222222222vw;
  }
}
@media screen and (max-width: 768px) {
  .support__sec .support__sec__right {
    padding-top: 40px;
  }
}

.support__sec_second {
  display: flex;
  align-items: flex-start;
  overflow: visible;
  position: relative;
}
@media screen and (max-width: 768px) {
  .support__sec_second {
    padding: 0;
  }
}
.support__sec_second::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  bottom: 0;
  height: 1px;
  width: 100vw;
  background-color: #BDBDBD;
}
.support__sec_second .content-item__left {
  padding-left: 0;
  flex: 0 0 50%;
  position: sticky;
  top: 20px;
  height: -moz-fit-content;
  height: fit-content;
  align-self: flex-start;
}
@media screen and (max-width: 768px) {
  .support__sec_second .content-item__left {
    position: relative;
    height: auto;
    flex: none;
    top: auto;
  }
}
.support__sec_second .content-item__left .content-item__img {
  transform: translateY(0px);
  will-change: transform;
  aspect-ratio: 620/413;
  width: 100%;
  transform: translateY(0px);
  will-change: transform;
}
@media screen and (max-width: 768px) {
  .support__sec_second .content-item__left .content-item__img {
    position: relative;
    top: 0;
    transform: none;
    transition: none;
  }
}
.support__sec_second .content-item__right {
  padding-left: 0;
  flex: 1;
}
.support__sec_second .content-item__right .support__sec_second__right {
  padding: 140px 5.5555555556vw;
}
@media screen and (max-width: 768px) {
  .support__sec_second .content-item__right .support__sec_second__right {
    padding: 24px 20px 72px 20px;
  }
}
.support__sec_second .content-item__right .support__sec_second__right .support__sec__right_heading {
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .support__sec_second .content-item__right .support__sec_second__right .support__sec__right_heading {
    padding-bottom: 16px;
  }
}

.support__sec_third {
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .support__sec_third {
    padding: 0;
  }
}
.support__sec_third .content-item__left {
  padding-left: 0;
  position: sticky;
  top: 0;
  height: -moz-fit-content;
  height: fit-content;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .support__sec_third .content-item__left {
    position: relative;
    height: auto;
  }
}
.support__sec_third .content-item__left .content-item__img {
  aspect-ratio: 620/413;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .support__sec_third .content-item__left .content-item__img {
    position: relative;
    top: 0;
    transform: none;
    transition: none;
  }
}
.support__sec_third .content-item__right {
  padding-left: 0;
}
.support__sec_third .content-item__right .support__sec_second__right .support__sec_second__right_top {
  border-bottom: 1px solid #BDBDBD;
  padding: 140px 5.5555555556vw;
}
@media screen and (max-width: 768px) {
  .support__sec_third .content-item__right .support__sec_second__right .support__sec_second__right_top {
    padding: 24px 20px 72px 20px;
  }
}
.support__sec_third .content-item__right .support__sec_second__right .support__sec_second__right_top .support__sec__right_heading {
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .support__sec_third .content-item__right .support__sec_second__right .support__sec_second__right_top .support__sec__right_heading {
    padding-bottom: 16px;
  }
}
.support__sec_third .content-item__right .support__sec_second__right .support__sec_second__right_bottom {
  padding: 80px 0 80px 5.5555555556vw;
}
@media screen and (max-width: 768px) {
  .support__sec_third .content-item__right .support__sec_second__right .support__sec_second__right_bottom {
    padding: 40px 0;
  }
}

.link-btn {
  width: 300px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .link-btn {
    margin: 0 auto;
  }
}
.link-btn::after {
  position: absolute;
  content: "";
  background: url(../images/link-icon.svg) no-repeat center/cover;
  width: 28px;
  height: 28px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.link-btn a {
  background-color: #222222;
  color: #fff;
  border-radius: 999px;
  width: 100%;
  display: inline-block;
  height: 60px;
  font-weight: 500;
  padding: 18px 70px;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .link-btn a {
    font-size: 16px;
    height: 56px;
  }
}
.link-btn a:hover {
  background-color: #fff;
  color: #222222;
  border: 1px solid #222222;
  opacity: 1;
}
.link-btn:hover::after {
  background: url(../images/arrow_bk.svg) no-repeat center/cover;
}

.cta__sec .cta__sec__inner .document_banner_text {
  font-size: clamp(24px, 3.0555555556vw, 44px);
  font-weight: 500;
  text-align: center;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .cta__sec .cta__sec__inner .document_banner_text {
    line-height: 130%;
  }
}

.graduate__sec {
  min-height: 434px;
  height: 30.1388888889vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  .graduate__sec {
    min-height: auto;
    height: auto;
  }
}
.graduate__sec::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  bottom: 0;
  height: 1px;
  width: 100vw;
  background-color: #BDBDBD;
}
@media screen and (max-width: 768px) {
  .graduate__sec .title__wrap {
    text-align: center;
  }
}
.graduate__sec .title__wrap .title__en {
  font-size: clamp(67px, 7.2222222222vw, 104px);
  display: initial;
}
.graduate__sec .title__wrap .title__en::after {
  right: -30px;
}
.graduate__sec .title__wrap .title__ja {
  font-size: clamp(24px, 2.3611111111vw, 34px);
}
.graduate__sec .graduate__sec__right {
  font-size: clamp(22px, 2.2222222222vw, 32px);
  font-weight: 500;
  line-height: 160%;
}
@media screen and (min-width: 1440px) {
  .graduate__sec .graduate__sec__right {
    font-size: 2.2222222222vw;
  }
}
@media screen and (max-width: 768px) {
  .graduate__sec .graduate__sec__right {
    padding-top: 40px;
  }
}

.interview {
  position: relative;
}
@media screen and (max-width: 768px) {
  .interview {
    padding: 0;
  }
}
.interview::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  bottom: 0;
  height: 1px;
  width: 100vw;
  background-color: #BDBDBD;
}
.interview .interview__left {
  height: -webkit-fill-available; /* Safari用 */
  height: -moz-available;
  height: fill-available; /* 標準仕様（未対応が多い） */
  height: stretch;
}
.interview .interview__left .content-item__img {
  width: auto;
  height: 100%;
}
.interview .interview__left .content-item__img img {
  -o-object-position: top;
     object-position: top;
}
.interview .interview__right {
  padding: 140px 5.5555555556vw;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .interview .interview__right {
    padding: 40px 20px 72px;
  }
}
.interview .interview__right .interview__right_inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .interview .interview__right .interview__right_inner {
    gap: 24px;
  }
}
.interview .interview__right .interview__right_inner h3 {
  line-height: 160%;
}
@media screen and (max-width: 768px) {
  .interview .interview__right .interview__right_inner h3 {
    font-size: 22px;
  }
}
.interview .interview__right .interview__right_inner .name__wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .interview .interview__right .interview__right_inner .name__wrap {
    margin-bottom: 16px;
  }
}
.interview .interview__right .interview__right_inner .name__wrap .name__sub {
  font-size: clamp(12px, 0.9722222222vw, 14px);
  line-height: 100%;
}
@media (min-width: 1440px) {
  .interview .interview__right .interview__right_inner .name__wrap .name__sub { /* 大画面での制限 */
    font-size: 0.9722222222vw;
  }
}
.interview .interview__right .interview__right_inner .name__wrap .name {
  font-size: clamp(18px, 1.6666666667vw, 24px);
  line-height: 100%;
}
@media (min-width: 1440px) {
  .interview .interview__right .interview__right_inner .name__wrap .name { /* 大画面での制限 */
    font-size: 1.6666666667vw;
  }
}
.interview .interview__right .interview__right_inner .name__wrap .name span {
  font-size: clamp(14px, 1.1111111111vw, 16px);
}
@media (min-width: 1440px) {
  .interview .interview__right .interview__right_inner .name__wrap .name span { /* 大画面での制限 */
    font-size: 1.1111111111vw;
  }
}

.popup-btn {
  margin: 0 auto;
  position: relative;
}
.popup-btn::after {
  position: absolute;
  content: "";
  background: url(../images/arrow.svg) no-repeat center/cover;
  width: 28px;
  height: 28px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.popup-btn a:hover {
  opacity: 0.7;
}

.white-btn::after {
  background: url(../images/arrow_bk.svg) no-repeat center/cover;
}
.white-btn a {
  background-color: #fff;
  color: #222222;
}
.white-btn a:hover {
  background-color: #C6C6C6;
}

.graduate__sec_third .graduate__sec_second__right {
  padding-right: 5.5555555556vw;
}
.graduate__sec_third .graduate__sec_second__right .graduate_third__right .name__wrap {
  max-width: 160px;
}

.interview__sec {
  background-color: #3A3A3A;
  overflow: hidden;
}
.interview__sec .content-wrapper {
  min-height: 426px;
  height: 29.5833333333vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  .interview__sec .content-wrapper {
    min-height: auto;
    height: auto;
  }
}
.interview__sec .content-wrapper::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  bottom: 0;
  height: 1px;
  width: 100vw;
  background-color: #dddddd;
}
@media screen and (max-width: 768px) {
  .interview__sec .content-wrapper .title__wrap {
    text-align: center;
  }
}
.interview__sec .content-wrapper .title__wrap .title__en {
  font-size: clamp(64px, 6.6666666667vw, 96px);
  display: initial;
  color: #fff;
}
.interview__sec .content-wrapper .title__wrap .title__en::after {
  right: -30px;
}
.interview__sec .content-wrapper .title__wrap .title__ja {
  font-size: clamp(24px, 2.3611111111vw, 34px);
  color: #fff;
}
.interview__sec .content-wrapper .interview__sec__right {
  font-size: clamp(22px, 2.2222222222vw, 32px);
  font-weight: 500;
  line-height: 160%;
  color: #fff;
}
@media screen and (min-width: 1440px) {
  .interview__sec .content-wrapper .interview__sec__right {
    font-size: 2.2222222222vw;
  }
}
@media screen and (max-width: 768px) {
  .interview__sec .content-wrapper .interview__sec__right {
    padding-top: 40px;
    text-align: center;
  }
}

.full__contents_bk {
  background-color: #3A3A3A;
}
.full__contents_bk .scroll-text_white {
  color: #fff;
  margin-bottom: 0;
}

.student-interview-scroll-section {
  width: 100vw;
  overflow: hidden;
  background-color: #3A3A3A;
}
.student-interview-scroll-section .student-interview-swiper {
  width: 100%;
  height: auto;
}
.student-interview-scroll-section .student-interview-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}
.student-interview-scroll-section .student-interview-swiper .swiper-wrapper .scroll-text-slide {
  width: auto !important;
  flex-shrink: 0;
  margin-right: 32px;
}
@media screen and (max-width: 768px) {
  .student-interview-scroll-section .student-interview-swiper .swiper-wrapper .scroll-text-slide {
    margin-right: 24px;
  }
}
.student-interview-scroll-section .student-interview-swiper .swiper-wrapper .scroll-text-slide .student-interview-text {
  font-size: 24px;
  letter-spacing: 0.1em;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 600;
  transform: skewX(0deg);
  padding: 13px 0;
  white-space: nowrap;
  margin-bottom: 0;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .student-interview-scroll-section .student-interview-swiper .swiper-wrapper .scroll-text-slide .student-interview-text {
    font-size: 20px;
    padding: 8px 0;
  }
}

.interview__sec_second {
  height: auto !important;
}
.interview__sec_second .name__sub .name__sub_arrow::before {
  content: ">";
  color: #fff;
  font-weight: normal;
  margin: 0 8px; /* 左右に余白 */
}

.white-btn {
  margin: 0 auto;
}

.department__sec {
  min-height: 432px;
  height: 30vw;
}
@media screen and (max-width: 768px) {
  .department__sec {
    min-height: auto;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .department__sec .title__wrap {
    align-items: center;
    text-align: center;
  }
}
.department__sec .title__wrap .title__department {
  font-size: clamp(48px, 4.4444444444vw, 64px);
  position: relative;
  display: initial;
  width: -moz-fit-content;
  width: fit-content;
}
.department__sec .title__wrap .title__department::after {
  position: absolute;
  display: block;
  content: "";
  background: url(../images/sharp-icon.svg) no-repeat center/contain;
  width: 44px;
  height: 82px;
  right: -30px;
  top: -20px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .department__sec .title__wrap .title__department::after {
    width: 35px;
    height: 70px;
    right: -20px;
    top: -16px;
  }
}
.department__sec .title__wrap .title__department_sub {
  color: #222222;
  font-size: clamp(24px, 2.3611111111vw, 34px);
  z-index: 1;
  white-space: nowrap;
}
.department__sec .department__sec__right {
  font-size: clamp(22px, 2.2222222222vw, 32px);
  font-weight: 500;
  line-height: 160%;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 768px) {
  .department__sec .department__sec__right {
    text-align: center;
  }
}
.department__sec .department__sec__right::after {
  position: absolute;
  content: "";
  background: url(../images/bubble.svg) no-repeat center/cover;
  width: clamp(80px, 10.0694444444vw, 145px);
  height: clamp(80px, 10.0694444444vw, 145px);
  top: -70px;
  right: -150px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .department__sec .department__sec__right::after {
    top: -10px;
    right: -80px;
  }
}
@media (min-width: 1440px) {
  .department__sec .department__sec__right { /* 大画面での制限 */
    font-size: 2.2222222222vw;
  }
}

.content__inner .department__title {
  padding: 13px 0;
  font-size: clamp(18px, 1.6666666667vw, 24px);
}
@media screen and (max-width: 768px) {
  .content__inner .department__title {
    padding: 8px 0;
  }
}

.content-list-container2 {
  display: grid;
  gap: 0 20px;
  /* 768px以上: 3列2行 */
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  border-left: 1px solid #BDBDBD;
  border-right: 1px solid #BDBDBD;
  margin: 0 auto;
  width: calc(100vw - 40px);
}
@media (min-width: 1200px) {
  .content-list-container2 {
    width: calc(100vw - 200px);
  }
}
@media screen and (max-width: 768px) {
  .content-list-container2 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 0 10px;
    position: relative;
  }
  .content-list-container2::before {
    content: "";
    position: absolute;
    top: 33.33%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #BDBDBD;
    z-index: 1;
  }
  .content-list-container2::after {
    content: "";
    position: absolute;
    top: 66.66%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #BDBDBD;
    z-index: 1;
  }
}
.content-list-container2 .content-list2 {
  border-left: 1px solid #BDBDBD;
  border-right: 1px solid #BDBDBD;
  padding: 20px 0;
  position: relative;
}
.content-list-container2 .content-list2:nth-child(1) {
  border-left: none; /* 最初の要素の左ボーダーを削除 */
}
.content-list-container2 .content-list2:nth-child(5) {
  border-right: none;
}
@media screen and (max-width: 768px) {
  .content-list-container2 .content-list2:nth-child(5) {
    border-right: 1px solid #BDBDBD;
    border-left: none;
  }
}
@media screen and (max-width: 768px) {
  .content-list-container2 .content-list2:nth-child(2), .content-list-container2 .content-list2:nth-child(4) {
    border-right: none;
  }
  .content-list-container2 .content-list2:nth-child(3) {
    border-left: none;
  }
}
.content-list-container2 .content-list2 a {
  transition: all 0.3s;
  cursor: pointer;
}
.content-list-container2 .content-list2 a:hover {
  opacity: 0.7;
}
.content-list-container2 .content-list2 .department__img {
  width: 100%;
  aspect-ratio: 1/1;
}
.content-list-container2 .content-list2 .department__title__wrap {
  background: var(--pink-grade_re, linear-gradient(180deg, #F3BFBF 0%, #EC9696 100%));
  padding: 0.625vw 0.8333333333vw;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
@media (min-width: 1440px) {
  .content-list-container2 .content-list2 .department__title__wrap { /* 大画面での制限 */
    padding: 9px 12px;
  }
}
.content-list-container2 .content-list2 .department__title__wrap::after {
  position: absolute;
  content: "";
  background: url(../images/link-icon.svg) no-repeat center/contain;
  width: 24px;
  height: 24px;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  filter: drop-shadow(-2px 0 2px rgba(226, 109, 109, 0.2)) drop-shadow(0 -2px 2px rgba(226, 109, 109, 0.2)) drop-shadow(2px 0 2px rgba(226, 109, 109, 0.2)) drop-shadow(0 2px 2px rgba(226, 109, 109, 0.2));
}
@media screen and (max-width: 768px) {
  .content-list-container2 .content-list2 .department__title__wrap::after {
    right: 8px;
  }
}
.content-list-container2 .content-list2 .department__title {
  font-size: 1.25vw;
  font-weight: 600;
  color: #ffffff;
  text-shadow: -2px 0 2px rgba(226, 109, 109, 0.2), 0 -2px 2px rgba(226, 109, 109, 0.2), 2px 0 2px rgba(226, 109, 109, 0.2), 0 2px 2px rgba(226, 109, 109, 0.2);
  margin-bottom: 0;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .content-list-container2 .content-list2 .department__title {
    font-size: 13px;
  }
}
.content-list-container2 .content-list2 .orange_grade {
  background: var(--otange_grade, linear-gradient(180deg, #EDCE9F 20.47%, #E4B570 85.2%));
}
.content-list-container2 .content-list2 .orange_grade::after {
  filter: drop-shadow(-2px 0 2px rgba(213, 153, 64, 0.2)) drop-shadow(0 -2px 2px rgba(213, 153, 64, 0.2)) drop-shadow(2px 0 2px rgba(213, 153, 64, 0.2)) drop-shadow(0 2px 2px rgba(213, 153, 64, 0.2));
}
.content-list-container2 .content-list2 .orange_grade .department__title {
  text-shadow: 0 -2px 2px rgba(213, 153, 64, 0.2), -2px 0 2px rgba(213, 153, 64, 0.25), 2px 0 2px rgba(213, 153, 64, 0.2), 0 2px 2px rgba(213, 153, 64, 0.2);
}
.content-list-container2 .content-list2 .blue_grade {
  background: linear-gradient(180deg, #92A7C2 0%, #5A779C 100%);
}
.content-list-container2 .content-list2 .blue_grade::after {
  filter: drop-shadow(-2px 0 2px rgba(37, 74, 121, 0.2)) drop-shadow(0 -2px 2px rgba(37, 74, 121, 0.2)) drop-shadow(2px 0 2px rgba(37, 74, 121, 0.2)) drop-shadow(0 2px 2px rgba(37, 74, 121, 0.2));
}
.content-list-container2 .content-list2 .blue_grade .department__title {
  text-shadow: -2px 0 2px rgba(37, 74, 121, 0.2), 0 -2px 2px rgba(37, 74, 121, 0.2), 2px 0 2px rgba(37, 74, 121, 0.2), 0 2px 2px rgba(37, 74, 121, 0.2);
}
.content-list-container2 .content-list2 .green_grade {
  background: var(--green_grade, linear-gradient(180deg, #BAD3C9 0%, #97BAAC 100%));
}
.content-list-container2 .content-list2 .green_grade::after {
  filter: drop-shadow(-2px 0 2px rgba(92, 138, 119, 0.2)) drop-shadow(0 -2px 2px rgba(92, 138, 119, 0.2)) drop-shadow(2px 0 2px rgba(92, 138, 119, 0.2)) drop-shadow(0 2px 2px rgba(92, 138, 119, 0.2));
}
.content-list-container2 .content-list2 .green_grade .department__title {
  text-shadow: -2px 0 2px rgba(92, 138, 119, 0.2), 0 -2px 2px rgba(92, 138, 119, 0.2), 2px 0 2px rgba(92, 138, 119, 0.2), 0 2px 2px rgba(92, 138, 119, 0.2);
}

@media screen and (max-width: 768px) {
  .content-list-container_doublecolumn {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    position: relative;
  }
  .content-list-container_doublecolumn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #BDBDBD;
    z-index: 1;
  }
  .content-list-container_doublecolumn::after {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .pc-container {
    display: none;
  }
}

.sp-container {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    border-bottom: 1px solid #BDBDBD;
    position: relative;
  }
  .sp-container::before {
    content: "";
    position: absolute;
    top: 33.33%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #BDBDBD;
    z-index: 1;
  }
  .sp-container::after {
    content: "";
    position: absolute;
    top: 66.66%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #BDBDBD;
    z-index: 1;
  }
}
.sp-container .content-list2:nth-child(6) {
  border-right: none;
}

@media screen and (max-width: 768px) {
  .sp-container.last-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, 1fr);
  }
  .sp-container.last-container::before {
    display: none;
  }
  .sp-container.last-container::after {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .sp-container.last-container2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    border-bottom: none;
  }
  .sp-container.last-container2::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #BDBDBD;
    z-index: 1;
  }
  .sp-container.last-container2::after {
    display: none;
  }
}

.department__title.fs15 {
  font-size: 1.0416666667vw !important;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .department__title.fs15 {
    font-size: 13px !important;
  }
}

.department__title.fs16 {
  font-size: 1.1111111111vw !important;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .department__title.fs16 {
    font-size: 13px !important;
  }
}

.pc-container {
  border-bottom: 1px solid #BDBDBD;
}

.last-container {
  border-bottom: none;
}

.classroom__img {
  padding-top: 80px;
  border-top: 1px solid #BDBDBD;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .classroom__img {
    padding-top: 40px;
  }
}

.visit-career__sec {
  min-height: 460px;
  height: 31.9444444444vw;
}
@media screen and (max-width: 768px) {
  .visit-career__sec {
    min-height: auto;
    height: auto;
  }
}
.visit-career__sec .title__wrap .title__visit-career {
  font-size: clamp(46px, 4.4444444444vw, 64px);
  position: relative;
  display: initial;
  width: -moz-fit-content;
  width: fit-content;
}
.visit-career__sec .title__wrap .title__visit-career::after {
  position: absolute;
  display: block;
  content: "";
  background: url(../images/sharp-icon.svg) no-repeat center/contain;
  width: 44px;
  height: 82px;
  right: -30px;
  top: -20px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .visit-career__sec .title__wrap .title__visit-career::after {
    width: 35px;
    height: 70px;
    right: -20px;
    top: -16px;
  }
}
.visit-career__sec .title__wrap .title__visit-career_sub {
  color: #222222;
  font-size: clamp(22px, 2.3611111111vw, 34px);
  z-index: 1;
}
.visit-career__sec .visit-career__sec__right {
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 500;
  line-height: 200%;
}
@media (min-width: 1440px) {
  .visit-career__sec .visit-career__sec__right { /* 大画面での制限 */
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 768px) {
  .visit-career__sec .visit-career__sec__right {
    padding-top: 40px;
  }
}

.image-scroll-wrapper {
  width: 100vw;
  overflow: hidden;
}
.image-scroll-wrapper .image-scroll-swiper2 {
  width: 100%;
  height: 28vw; /* 1440pxで400px */
  min-height: 220px; /* スマホ最小高さ */
  max-height: 500px; /* PC最大高さ */
}
.image-scroll-wrapper .image-scroll-swiper2 .swiper-wrapper {
  transition-timing-function: linear !important;
}
.image-scroll-wrapper .image-scroll-swiper2 .swiper-wrapper .image-scroll-slide {
  width: auto !important;
  height: 100%;
  flex-shrink: 0;
}
.image-scroll-wrapper .image-scroll-swiper2 .swiper-wrapper .image-scroll-slide .scroll-image {
  width: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border: none;
  outline: none;
}

.footers__sec {
  background-color: #3A3A3A;
}
.footers__sec .content-list-container3 {
  display: grid;
  gap: 0 20px;
  /* 768px以上: 3列2行 */
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  margin: 0 auto;
  width: calc(100vw - 40px);
  /* さらに小さい画面では1列 */
}
@media (min-width: 1200px) {
  .footers__sec .content-list-container3 {
    width: calc(100vw - 200px);
  }
}
.footers__sec .content-list-container3::before {
  position: absolute;
  content: "";
  width: 100vw;
  height: 1px;
  top: 0;
  left: 50%;
  background: #BDBDBD;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.footers__sec .content-list-container3::after {
  position: absolute;
  content: "";
  width: 100vw;
  height: 1px;
  bottom: 0;
  left: 50%;
  background: #BDBDBD;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .footers__sec .content-list-container3 {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}
.footers__sec .content-list-container3 .content-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-left: 1px solid #BDBDBD;
  border-right: 1px solid #BDBDBD;
  padding: 100px 0 50px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footers__sec .content-list-container3 .content-list {
    padding: 40px 0;
  }
}
@media (max-width: 480px) {
  .footers__sec .content-list-container3 .content-list {
    align-items: baseline;
  }
  .footers__sec .content-list-container3 .content-list::after {
    position: absolute;
    content: "";
    width: 100vw;
    height: 1px;
    background: #BDBDBD;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  .footers__sec .content-list-container3 .content-list:last-child::after {
    display: none;
  }
}
.footers__sec .content-list-container3 .content-list .footers__sec__img {
  width: 100%;
  height: 267px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .footers__sec .content-list-container3 .content-list .footers__sec__img {
    width: 100%;
    height: 230px;
    margin-bottom: 24px;
  }
}
.footers__sec .content-list-container3 .content-list .content-item__wrap {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .footers__sec .content-list-container3 .content-list .content-item__wrap {
    gap: 16px;
  }
}
.footers__sec .content-list-container3 .content-list .content-item__title {
  font-size: clamp(18px, 1.6666666667vw, 24px);
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0;
}
.footers__sec .content-list-container3 .content-list .content-item__text {
  font-size: clamp(15px, 1.1111111111vw, 16px);
  line-height: 200%;
  color: #ffffff;
}
.footers__sec .content-list-container3 .content-list .link a {
  font-size: clamp(15px, 1.1111111111vw, 16px);
  padding: 0 30px 4px 0;
  display: inline-block;
  position: relative;
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
}
@media screen and (max-width: 768px) {
  .footers__sec .content-list-container3 .content-list .link a {
    padding: 0 24px 4px 0;
  }
}
.footers__sec .content-list-container3 .content-list .link a::after {
  position: absolute;
  content: "";
  background: url(../images/link-icon2.svg) no-repeat center/contain;
  width: 16px;
  height: 12px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.footers__sec .content-list-container3 .content-list .sosial__wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
}
.footers__sec .content-list-container3 .content-list .sosial__wrap a {
  display: block;
  width: 18px;
  height: 18px;
  transition: all 0.3s;
}
.footers__sec .content-list-container3 .content-list .sosial__wrap a:hover {
  opacity: 0.7;
}
.footers__sec .content-list-container3 .content-list .sosial__wrap .facebook {
  width: 20px;
  height: 20px;
}
.footers__sec .content-list-container3 .content-list .sosial__wrap .youtube {
  width: 20px;
  height: 13px;
}
.footers__sec .content-list-container3 .content-list .sosial__wrap .youtube img {
  -o-object-fit: contain;
     object-fit: contain;
}
.footers__sec .content-list-container3 .content-list .sosial__wrap .x {
  width: 16px;
  height: 16px;
}
.footers__sec .content-list-container3 .content-list .sosial__wrap .tiktok {
  width: 20px;
  height: 20px;
}

footer {
  background-color: #3A3A3A;
}
footer .footer__inner {
  padding: 32px 0;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  width: calc(100vw - 40px);
}
@media (min-width: 1200px) {
  footer .footer__inner {
    width: calc(100vw - 200px);
  }
}
@media screen and (max-width: 768px) {
  footer .footer__inner {
    padding: 24px 0;
  }
}
footer .footer__inner .footer__logo {
  width: 217px;
  height: auto;
}
@media screen and (max-width: 768px) {
  footer .footer__inner .footer__logo {
    width: 132px;
  }
}
footer .footer__inner .footer__logo a {
  transition: all;
}
footer .footer__inner .footer__logo a:hover {
  opacity: 0.7;
}
footer .footer__inner .copyright {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 400;
  font-size: clamp(11px, 0.8333333333vw, 12px);
}

.simple-modal {
  display: none;
  /* PC向けレイアウト */
  /* スマホ向けレイアウト */
}
.simple-modal .modal-close, .simple-modal .custom-close-btn {
  position: fixed !important;
  top: 40px !important;
  right: 40px !important;
  font-size: 40px !important;
  cursor: pointer !important;
  color: #222222 !important;
  background: none !important;
  border: none !important;
  z-index: 10000 !important;
}
@media screen and (max-width: 768px) {
  .simple-modal .modal-close, .simple-modal .custom-close-btn {
    top: 16px !important;
    right: 16px !important;
    font-size: 32px !important;
  }
}
@media screen and (max-width: 900px) {
  .simple-modal .modal-body {
    position: relative;
  }
  .simple-modal .modal-body::before {
    content: "";
    position: absolute;
    width: 90vw;
    height: 1px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    background: #BDBDBD;
    z-index: -1;
  }
}
@media screen and (max-width: 768px) {
  .simple-modal .modal-body::before {
    width: 95vw;
  }
}
.simple-modal .modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #F5F5FA;
  overflow-y: auto;
  max-height: 90vh;
  overflow-x: hidden;
}
.simple-modal .modal-content .modal-body .modal-content-wrapper {
  margin: 0 5.5555555556vw;
  padding-left: 5.5555555556vw;
  border-left: 1px solid #BDBDBD;
  border-right: 1px solid #BDBDBD;
  position: relative;
}
@media screen and (max-width: 900px) {
  .simple-modal .modal-content .modal-body .modal-content-wrapper {
    padding-right: 5.5555555556vw;
  }
}
@media screen and (max-width: 768px) {
  .simple-modal .modal-content .modal-body .modal-content-wrapper {
    padding: 0 20px;
    margin: 0 20px;
  }
}
.simple-modal .modal-content .modal-body .modal-content-wrapper::after {
  content: "";
  position: absolute;
  width: 90vw;
  height: 1px;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  background: #BDBDBD;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .simple-modal .modal-content .modal-body .modal-content-wrapper::after {
    width: 95vw;
    bottom: 72px;
  }
}
@media screen and (max-width: 900px) {
  .simple-modal .modal-content .modal-body .modal-content-wrapper .modal-content-inner {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 900px) {
  .simple-modal .modal-content .modal-body .modal-content-wrapper .modal-content-inner_reverse {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 900px) {
  .simple-modal .modal-content .modal-body .modal-content-wrapper .modal-content-left {
    position: relative;
  }
  .simple-modal .modal-content .modal-body .modal-content-wrapper .modal-content-left::before {
    content: "";
    position: absolute;
    width: 90vw;
    height: 1px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    background: #BDBDBD;
    z-index: -1;
  }
}
@media screen and (max-width: 768px) {
  .simple-modal .modal-content .modal-body .modal-content-wrapper .modal-content-left {
    text-align: center;
  }
  .simple-modal .modal-content .modal-body .modal-content-wrapper .modal-content-left::before {
    width: 95vw;
  }
}
.simple-modal .modal-content .modal-body .modal-content-wrapper .title__wrap {
  display: inline-flex;
  flex-direction: column;
  padding-top: 120px;
}
@media screen and (max-width: 768px) {
  .simple-modal .modal-content .modal-body .modal-content-wrapper .title__wrap {
    padding-top: 72px;
  }
}
.simple-modal .modal-content .modal-body .modal-content-wrapper .title__wrap .title__en {
  position: relative;
  font-size: clamp(62px, 7.2222222222vw, 104px);
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 600;
  display: inline-block;
  z-index: 1;
  line-height: 100%;
}
.simple-modal .modal-content .modal-body .modal-content-wrapper .title__wrap .title__en::after {
  position: absolute;
  display: block;
  content: "";
  background: url(../images/sharp-icon.svg) no-repeat center/contain;
  width: 44px;
  height: 82px;
  right: -20px;
  top: -20px;
  z-index: -1;
}
.simple-modal .modal-content .modal-body .modal-content-wrapper .title__wrap .title__ja {
  color: #164580;
  font-weight: 700;
  transform: skewX(-7deg); /* X軸方向に-7度傾斜 */
  transform-origin: bottom; /* 下を基準に回転 */
  display: inline-block; /* インライン要素の場合に必要 */
  margin-top: 16px;
  font-size: clamp(24px, 2.3611111111vw, 34px);
}
.simple-modal .modal-content .modal-body .modal-content-wrapper .heading__wrap {
  padding-top: 80px;
  margin-top: 120px;
  position: relative;
}
@media screen and (max-width: 900px) {
  .simple-modal .modal-content .modal-body .modal-content-wrapper .heading__wrap {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .simple-modal .modal-content .modal-body .modal-content-wrapper .heading__wrap {
    padding-top: 72px;
    margin-top: 72px;
    text-align: left;
  }
}
.simple-modal .modal-content .modal-body .modal-content-wrapper .heading__wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: -11.1111111111vw;
  height: 1px;
  width: 90vw;
  background-color: #BDBDBD;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .simple-modal .modal-content .modal-body .modal-content-wrapper .heading__wrap::before {
    width: 95vw;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}
.simple-modal .modal-content .modal-body .modal-content-wrapper .heading__wrap h3 {
  margin-bottom: 24px;
  font-size: 2.2222222222vw;
  line-height: 160%;
}
@media (min-width: 1440px) {
  .simple-modal .modal-content .modal-body .modal-content-wrapper .heading__wrap h3 {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .simple-modal .modal-content .modal-body .modal-content-wrapper .heading__wrap h3 {
    margin-bottom: 24px;
    font-size: 22px;
  }
}
.simple-modal .modal-content .modal-body .modal-content-wrapper .heading__wrap p {
  font-size: 14px;
  font-weight: 500;
}
.simple-modal .modal-content .modal-body .modal-content-wrapper .heading__wrap p span {
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .simple-modal .modal-content .modal-body .modal-content-wrapper .heading__wrap p {
    font-size: 14px;
  }
}
.simple-modal .modal-content .modal-body .modal-content-wrapper .modal-content-right {
  position: absolute;
  top: 0;
  right: -5.5555555556vw;
  max-width: 50%;
  height: auto;
}
@media screen and (max-width: 900px) {
  .simple-modal .modal-content .modal-body .modal-content-wrapper .modal-content-right {
    position: static;
    max-width: 100%;
    width: 100%;
  }
}
.simple-modal .modal-content .modal-body .modal-content-wrapper .modal-content-inner2 {
  padding: 120px 5.5555555556vw 240px 0;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media screen and (max-width: 900px) {
  .simple-modal .modal-content .modal-body .modal-content-wrapper .modal-content-inner2 {
    padding: 40px 0 240px 0;
  }
}
@media screen and (max-width: 768px) {
  .simple-modal .modal-content .modal-body .modal-content-wrapper .modal-content-inner2 {
    gap: 40px;
    padding: 40px 0 144px 0;
  }
}
.simple-modal .modal-content .modal-body .modal-content-wrapper .modal-content-inner2 .modal-heading {
  font-size: clamp(18px, 1.6666666667vw, 24px);
  font-weight: 500;
  padding-left: 36px;
  margin-bottom: 24px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .simple-modal .modal-content .modal-body .modal-content-wrapper .modal-content-inner2 .modal-heading {
    padding-left: 24px;
    margin-bottom: 16px;
  }
}
.simple-modal .modal-content .modal-body .modal-content-wrapper .modal-content-inner2 .modal-heading::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background-color: #222222;
  top: 12px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .simple-modal .modal-content .modal-body .modal-content-wrapper .modal-content-inner2 .modal-heading::before {
    top: 4px;
    width: 15px;
    height: 15px;
  }
}
@media screen and (max-width: 768px) {
  .simple-modal .modal-content .modal-body .modal-content-wrapper .modal-content-inner2 p {
    font-size: 14px;
  }
}
.simple-modal .modal-content .custom-close-btn {
  position: fixed !important;
  top: 20px !important;
  right: 20px !important;
  background: #fff !important;
  border: 2px solid #fff !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
  color: white !important;
  font-size: 24px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  transform: translate(15px, -15px) !important;
  z-index: 1000;
}
.simple-modal .modal-pc {
  width: 90vw;
  max-width: 1240px;
  margin: 0 auto;
}
.simple-modal .modal-sp {
  width: 95vw;
  max-width: 95vw;
}

.modal-content-left_img {
  position: absolute;
  top: 0;
  left: -5.5555555556vw;
  max-width: 50%;
  height: auto;
}
@media screen and (max-width: 900px) {
  .modal-content-left_img {
    position: static;
    max-width: 100%;
    width: 100%;
  }
}

.modal-content-right_text {
  margin: 0 5.5555555556vw 0 auto;
  width: 50%;
}
@media screen and (max-width: 900px) {
  .modal-content-right_text {
    position: relative;
    width: 100%;
    text-align: center;
  }
  .modal-content-right_text::before {
    content: "";
    position: absolute;
    width: 90vw;
    height: 1px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    background: #BDBDBD;
    z-index: -1;
  }
}
@media screen and (max-width: 768px) {
  .modal-content-right_text {
    text-align: center;
    margin: 0 auto;
  }
  .modal-content-right_text::before {
    width: 95vw;
  }
}
.modal-content-right_text .heading__wrap {
  max-width: 100% !important;
}

.current-student-inner2 {
  padding-bottom: 80px !important;
}
@media screen and (max-width: 768px) {
  .current-student-inner2 {
    padding-bottom: 40px !important;
  }
}

.modal-content-inner3 {
  padding: 80px 5.5555555556vw 240px 0;
  position: relative;
}
@media screen and (max-width: 900px) {
  .modal-content-inner3 {
    padding: 80px 0 240px 0;
  }
}
@media screen and (max-width: 768px) {
  .modal-content-inner3 {
    padding: 40px 0 144px 0;
  }
}
.modal-content-inner3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  height: 1px;
  width: 90vw;
  background-color: #BDBDBD;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .modal-content-inner3::before {
    width: 95vw;
  }
}
.modal-content-inner3 .modal-content_title_wrap .modal_en {
  font-size: clamp(24px, 2.7777777778vw, 40px);
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 600;
}
.modal-content-inner3 .modal-content_title_wrap .modal_ja {
  font-size: clamp(20px, 2.3611111111vw, 34px);
  color: #164580;
  font-weight: 700;
  transform: skewX(-7deg); /* X軸方向に-7度傾斜 */
  transform-origin: bottom; /* 下を基準に回転 */
  display: inline-block; /* インライン要素の場合に必要 */
  margin-top: 12px;
}
.modal-content-inner3 .schedule-container {
  /* スケジュール部分のコンテナ */
  /* 画像セクション */
}
.modal-content-inner3 .schedule-container .schedule-row {
  display: flex;
  min-height: 200px;
  gap: 25px;
  margin-top: 56px;
}
@media screen and (max-width: 900px) {
  .modal-content-inner3 .schedule-container .schedule-row {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .modal-content-inner3 .schedule-container .schedule-row {
    margin-top: 40px;
    flex-direction: column;
  }
}
.modal-content-inner3 .schedule-container .schedule-row:last-child {
  border-bottom: none;
}
.modal-content-inner3 .schedule-container .day-columns {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 54px;
}
@media screen and (max-width: 768px) {
  .modal-content-inner3 .schedule-container .day-columns {
    gap: 40px;
  }
}
.modal-content-inner3 .schedule-container .day-column {
  display: flex;
  min-height: 80px;
  position: relative;
  flex-direction: column;
}
.modal-content-inner3 .schedule-container .day-column::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 30px;
  background-color: #222;
  bottom: -30px;
  left: 36px;
}
.modal-content-inner3 .schedule-container .day-column:last-child::after {
  display: none;
}
.modal-content-inner3 .schedule-container .day-header {
  display: flex;
  flex-direction: column;
  min-width: 200px;
}
@media screen and (max-width: 1200px) {
  .modal-content-inner3 .schedule-container .day-header {
    min-width: 150px;
  }
}
@media screen and (max-width: 768px) {
  .modal-content-inner3 .schedule-container .day-header {
    border-right: none;
    min-width: auto;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
}
.modal-content-inner3 .schedule-container .day-name-en {
  font-size: clamp(20px, 2.3611111111vw, 34px);
  margin-bottom: 8px;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 600;
}
.modal-content-inner3 .schedule-container .day-name-ja {
  font-size: clamp(12px, 0.9722222222vw, 14px);
}
.modal-content-inner3 .schedule-container .schedule-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .modal-content-inner3 .schedule-container .schedule-content {
    padding: 10px 0;
  }
}
.modal-content-inner3 .schedule-container .schedule-item {
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
}
.modal-content-inner3 .schedule-container .schedule-item:last-child {
  margin-bottom: 0;
}
.modal-content-inner3 .schedule-container .time {
  font-size: clamp(18px, 1.6666666667vw, 24px);
  margin-right: 15px;
  white-space: nowrap;
  font-weight: 500;
  min-width: 150px;
}
@media (min-width: 1440px) {
  .modal-content-inner3 .schedule-container .time {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .modal-content-inner3 .schedule-container .time {
    min-width: 80px;
  }
}
.modal-content-inner3 .schedule-container .subject {
  font-size: clamp(18px, 1.6666666667vw, 24px);
}
@media (min-width: 1440px) {
  .modal-content-inner3 .schedule-container .subject {
    font-size: 24px;
  }
}
.modal-content-inner3 .schedule-container .image-section {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.modal-content-inner3 .schedule-container .image-item {
  display: flex;
}
@media screen and (max-width: 900px) {
  .modal-content-inner3 .schedule-container .image-item {
    width: 100%;
    height: auto;
  }
}

.current-student2 .schedule-container .day-column {
  display: flex;
  flex-direction: row;
  min-height: 40px;
  align-items: baseline;
  gap: 16px;
}
.current-student2 .schedule-container .day-column:nth-last-child(-n+2)::after {
  display: none;
}
@media screen and (max-width: 768px) {
  .current-student2 .schedule-container .schedule-row__text {
    font-size: 14px;
  }
}

.download-main {
  background-color: #ffffff;
}

.contents__wrap {
  padding: 180px 0;
  max-width: 1080px;
  margin: 0 auto;
}
@media screen and (max-width: 1100px) {
  .contents__wrap {
    margin: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .contents__wrap {
    padding: 120px 0;
  }
}
.contents__wrap .download-title__wrap p {
  font-size: 16px;
  margin-bottom: 12px;
  color: #164580;
}
@media screen and (max-width: 768px) {
  .contents__wrap .download-title__wrap p {
    font-size: 14px;
    margin-bottom: 8px;
  }
}
.contents__wrap .download-title__wrap h2 {
  font-size: 40px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .contents__wrap .download-title__wrap h2 {
    font-size: 28px;
  }
}
.contents__wrap .contents__inner {
  display: flex;
  justify-content: space-between;
  padding-top: 80px;
  gap: 40px;
}
@media screen and (max-width: 1100px) {
  .contents__wrap .contents__inner {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .contents__wrap .contents__inner {
    padding-top: 40px;
    flex-direction: column;
    gap: 40px;
  }
}
.contents__wrap .contents__inner .contents__wrap_left {
  max-width: 552px;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .contents__wrap .contents__inner .contents__wrap_left {
    max-width: none;
  }
}
.contents__wrap .contents__inner .download__img {
  width: 100%;
  height: auto;
}
.contents__wrap .contents__inner h3 {
  padding-top: 40px;
  color: #164580;
  font-size: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #BDBDBD;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .contents__wrap .contents__inner h3 {
    font-size: 18px;
    margin-bottom: 24px;
  }
}
.contents__wrap .contents__inner ul {
  margin-left: 20px;
}
.contents__wrap .contents__inner ul li {
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .contents__wrap .contents__inner ul li {
    font-size: 15px;
    margin-bottom: 12px;
  }
}
.contents__wrap .contents__inner ul li:last-child {
  margin-bottom: 0;
}
.contents__wrap .contents__inner .form-container {
  padding: 64px 40px;
  background-color: #F5F5FA;
  flex: 1;
}
@media screen and (max-width: 1100px) {
  .contents__wrap .contents__inner .form-container {
    padding: 64px 20px;
  }
}
@media screen and (max-width: 768px) {
  .contents__wrap .contents__inner .form-container {
    padding: 40px 20px;
  }
}
.contents__wrap .contents__inner .form-container .form-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .contents__wrap .contents__inner .form-container .form-text {
    font-size: 15px;
  }
}
.contents__wrap .contents__inner .form-container form {
  /* レスポンシブ対応 */
}
.contents__wrap .contents__inner .form-container form .form-group {
  margin-bottom: 24px;
}
.contents__wrap .contents__inner .form-container form .form-group .form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 12px;
  font-size: 14px;
}
.contents__wrap .contents__inner .form-container form .form-group .required {
  background-color: #F03648;
  color: #ffffff;
  font-size: 12px;
  padding: 2px 4px;
  border-radius: 3px;
  margin-left: 12px;
  line-height: 100%;
}
.contents__wrap .contents__inner .form-container form .form-group .form-input {
  width: 100%;
  padding: 12px 24px;
  border: 1px solid #BDBDBD;
  border-radius: 3px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  background-color: #fff;
  line-height: 100%;
}
@media screen and (max-width: 768px) {
  .contents__wrap .contents__inner .form-container form .form-group .form-input {
    padding: 12px;
    font-size: 15px;
  }
}
.contents__wrap .contents__inner .form-container form .form-group .form-input:focus {
  outline: none;
  border-color: #222222;
}
.contents__wrap .contents__inner .form-container form .form-group .form-input .form-input:invalid {
  border-color: #F03648;
}
.contents__wrap .contents__inner .form-container form .form-group .checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
}
.contents__wrap .contents__inner .form-container form .form-group .checkbox-input {
  width: 20px;
  height: 20px;
  margin: 0;
  cursor: pointer;
  accent-color: #222222;
}
.contents__wrap .contents__inner .form-container form .form-group .checkbox-label {
  font-size: 14px;
  cursor: pointer;
  line-height: 1.5;
}
.contents__wrap .contents__inner .form-container form .form-group .checkbox-label a {
  text-decoration: underline;
  transition: all 0.3s;
}
.contents__wrap .contents__inner .form-container form .form-group .checkbox-label a:hover {
  opacity: 0.7;
}
.contents__wrap .contents__inner .form-container form .submit-btn {
  background-color: #ffffff;
  color: #164580;
  border: 1px solid #164580;
  padding: 18px 24px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 999px;
  width: 300px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 24px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .contents__wrap .contents__inner .form-container form .submit-btn {
    font-size: 16px;
    margin-top: 8px;
  }
}
.contents__wrap .contents__inner .form-container form .submit-btn::after {
  position: absolute;
  content: "";
  background: url(../images/arrow_navy.svg) no-repeat center/cover;
  width: 28px;
  height: 28px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.contents__wrap .contents__inner .form-container form .submit-btn:hover:not(:disabled) {
  background-color: #164580;
  color: #ffffff;
  transform: all 0.3s;
}
.contents__wrap .contents__inner .form-container form .submit-btn:hover:not(:disabled)::after {
  background: url(../images/arrow.svg) no-repeat center/cover;
  transform: translateY(-50%);
}
.contents__wrap .contents__inner .form-container form .submit-btn:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.contents__wrap .contents__inner .form-container form .form-input.error + .error-message {
  display: block;
}
@media (max-width: 768px) {
  .contents__wrap .contents__inner .form-container form .form-container {
    padding: 30px 20px;
    margin: 10px;
  }
  .contents__wrap .contents__inner .form-container form .form-title {
    font-size: 20px;
  }
  .contents__wrap .contents__inner .form-container form .form-input {
    font-size: 16px; /* iOSのズーム防止 */
  }
}

.privacy-container {
  height: 160px;
  overflow-y: auto;
  padding: 20px;
  border: 1px solid #ddd;
  font-size: 14px;
}
.privacy-container .privacy-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 16px;
}
.privacy-container .privacy-intro {
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}
.privacy-container .section {
  margin-bottom: 16px;
}
.privacy-container .section .section-title {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 8px;
}
.privacy-container .section .section-content {
  font-size: 14px;
}
.privacy-container .section .section-content p {
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}
.privacy-container .section .numbered-list {
  counter-reset: item;
  margin-left: 16px;
}
.privacy-container .section .numbered-list > li {
  display: block;
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}
.privacy-container .section .numbered-list > li::before {
  content: counter(item) ".";
  counter-increment: item;
  position: absolute;
  left: 0;
  top: 0;
}
.privacy-container .section .usage-list {
  counter-reset: usage-item;
  margin-left: 16px;
  margin-top: 8px;
}
.privacy-container .section .usage-list > li {
  display: block;
  margin-bottom: 4px;
  padding-left: 16px;
  position: relative;
}
.privacy-container .section .usage-list > li::before {
  content: counter(usage-item) ".";
  counter-increment: usage-item;
  position: absolute;
  left: 0;
  top: 0;
}
.privacy-container .section .signature {
  margin-top: 16px;
  text-align: right;
  font-size: 12px;
}
.privacy-container .section .date-info {
  margin-bottom: 4px;
}
.privacy-container .section .director-info {
  font-weight: bold;
}

.download_thanks {
  height: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #fff;
}
.download_thanks .download-main {
  flex: 1; /* ヘッダーとフッター以外を伸ばす */
  display: grid; /* 中央寄せ（任意） */
  place-items: center; /* 中央寄せ（任意） */
  padding: 40px 20px; /* 余白（任意） */
}
.download_thanks .thanks-container {
  width: min(920px, 100%);
  text-align: center;
}
.download_thanks .thanks-container .thanks-title {
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.5;
  margin-bottom: 40px;
  font-weight: 700;
}
.download_thanks .thanks-container .thanks-text {
  font-size: clamp(15px, 3vw, 16px);
  line-height: 1.5;
  margin-bottom: 40px;
}
.download_thanks .thanks-container #downloadButtons {
  font-size: clamp(15px, 3vw, 16px);
  line-height: 1.5;
  margin-bottom: 40px;
}
.download_thanks .thankspage-button {
  background-color: #ffffff;
  color: #164580;
  border: 1px solid #164580;
  font-size: 18px;
  font-weight: 700;
  border-radius: 999px;
  width: 300px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 24px;
  text-align: center;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .download_thanks .thankspage-button {
    font-size: 16px;
    margin-top: 8px;
  }
}
.download_thanks .thankspage-button a {
  display: inline-block;
  padding: 18px 24px;
}
.download_thanks .thankspage-button::after {
  position: absolute;
  content: "";
  background: url(../images/arrow_navy.svg) no-repeat center/cover;
  width: 28px;
  height: 28px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.download_thanks .thankspage-button:hover:not(:disabled) {
  background-color: #164580;
  color: #ffffff;
  transform: all 0.3s;
}
.download_thanks .thankspage-button:hover:not(:disabled)::after {
  background: url(../images/arrow.svg) no-repeat center/cover;
  transform: translateY(-50%);
}
.download_thanks footer {
  margin-top: auto; /* 念のため：フッターを最下部へ */
}/*# sourceMappingURL=style.css.map */