@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 170%;
  color: #222222;
  overflow-x: hidden;
  background-color: #f4f4f4;
  overscroll-behavior-y: contain;
  overscroll-behavior-x: contain;
}
body .raleway {
  font-family: "Raleway";
  font-style: italic;
  font-weight: 700;
}
body .roboto {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 700;
}
body h1 {
  font-size: 224px;
}
body h2 {
  font-size: 48px;
}
body h3 {
  font-size: 38px;
  line-height: 170%;
}
body h4 {
  font-size: 32px;
  line-height: 170%;
}
body h5 {
  font-size: 22px;
  line-height: 170%;
}
@media screen and (max-width: 1023px) {
  body h1 {
    font-size: 168px;
  }
  body h2 {
    font-size: 40px;
  }
  body h3 {
    font-size: 32px;
  }
  body h4 {
    font-size: 28px;
  }
  body h5 {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  body h1 {
    font-size: 112px;
  }
  body h2 {
    font-size: 32px;
  }
  body h3 {
    font-size: 28px;
  }
  body h4 {
    font-size: 24px;
  }
  body h5 {
    font-size: 18px;
  }
}

header {
  background-color: #022b4d;
  width: 100%;
  height: 80px;
  position: fixed;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  header {
    height: 65px;
  }
}
header .header__wrap {
  max-width: 1280px;
  width: 90%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .header__wrap .header__logo {
  width: 350px;
}
@media screen and (max-width: 768px) {
  header .header__wrap .header__logo {
    width: 280px;
  }
}
header .header__wrap .header__logo {
  display: flex;
  align-items: center;
}
header .header__wrap .header__logo img {
  width: 100%;
}
header .header__wrap .header__link-wrap {
  display: flex;
  align-items: center;
  gap: 2rem;
}
header .header__wrap .header__link-wrap ul {
  display: flex;
  gap: 1.5rem;
}
header .header__wrap .header__link-wrap ul li a {
  text-decoration: none;
  color: #eaeaea;
  position: relative;
}
header .header__wrap .header__link-wrap ul li a::after {
  position: absolute; /*親要素であるaタグを基準に位置を指定*/
  left: 0; /*アンダーラインを各メニュー（aタグ）の左端に指定*/
  content: ""; /*本来は、擬似要素に入るテキストなどを’’内に指定。今回はアンダーラインなので何も記載しない*/
  width: 100%; /*アンダーラインを各aタグの幅に合わせる*/
  height: 1px; /*アンダーラインの高さ（太さ）*/
  background: #fff; /*アンダーラインの色*/
  background: #fff;
  bottom: 4px; /*アンダーラインが現れ始める位置（aタグの下辺からの高さ）*/
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
header .header__wrap .header__link-wrap ul li a:hover {
  color: #fff;
}
header .header__wrap .header__link-wrap ul li a:hover::after {
  visibility: visible;
  bottom: -3px;
  opacity: 1;
}
header .header__wrap .header__link-wrap a.entry-header {
  text-decoration: none;
  color: #eaeaea;
  border: 1px solid #eaeaea;
  width: 180px;
  height: 50px;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
header .header__wrap .header__link-wrap a.entry-header .entry-header-img {
  width: 22px;
  height: 100%;
  position: relative;
  overflow: hidden;
}
header .header__wrap .header__link-wrap a.entry-header .entry-header-img img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
header .header__wrap .header__link-wrap a.entry-header:hover {
  color: #022b4d;
  transition: all 0.3s;
  background-color: #fff;
}
header .header__wrap .header__link-wrap a.entry-header:hover .entry-header-img img:nth-of-type(2) {
  opacity: 0;
}
header .header__wrap .hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 30px;
  height: 25px;
  cursor: pointer;
  z-index: 1001;
  transition: transform 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
header .header__wrap .hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
header .header__wrap .hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
header .header__wrap .hamburger.active span:nth-child(2) {
  opacity: 0;
}
header .header__wrap .hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}
@media (max-width: 1200px) {
  header .header__wrap .header__link-wrap {
    display: none;
    flex-direction: column;
    background-color: rgba(34, 34, 34, 0.8);
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    padding: 150px 0;
    height: 100vh;
  }
}
@media screen and (max-width: 1200px) and (max-width: 768px) {
  header .header__wrap .header__link-wrap {
    top: 65px;
    padding: 120px 0;
  }
}
@media (max-width: 1200px) {
  header .header__wrap .header__link-wrap ul {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  header .header__wrap .header__link-wrap a.entry-header {
    margin-top: 2rem;
    margin-left: auto;
    margin-right: auto;
  }
  header .header__wrap .header__link-wrap.active {
    display: flex;
  }
  header .header__wrap .hamburger {
    display: flex;
  }
}

.fadein {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 2s;
}
.fadein.fadein-bottom {
  transform: translate(0, 50px);
}
.fadein.scrollin {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

.fadein4s {
  transition: all 4s;
}
@media screen and (max-width: 1023px) {
  .fadein4s {
    transition: all 2s;
  }
}
@media screen and (max-width: 768px) {
  .fadein4s {
    transition: all 2s;
  }
}

.fadein6s {
  transition: all 6s;
}
@media screen and (max-width: 1023px) {
  .fadein6s {
    transition: all 2s;
  }
}
@media screen and (max-width: 768px) {
  .fadein6s {
    transition: all 2s;
  }
}
.fadein6s .fadein1s {
  transition: all 1.2s;
}

.hero {
  background-image: url(../image/fv-bg.jpg);
  background-size: cover;
  background-position: center;
  height: 100vh;
  width: 100%;
  position: relative;
}
.hero h2 {
  padding-top: 140px;
  text-align: center;
  color: #fff;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.hero h2 .hidden-pc {
  display: none;
}
.hero .hero__consent {
  width: clamp(200px, 28vw, 250px);
  margin: 0 auto;
  margin-top: 40px;
}
.hero .hero__consent img {
  will-change: transform, opacity;
  transform-origin: center center;
  display: block;
  width: 100%;
}
.hero .hero__overlay {
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 1023px) {
  .hero h2 {
    line-height: 1.8;
  }
  .hero h2 .hidden-pc {
    display: block;
  }
}

.message {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  overflow-y: hidden;
  opacity: 0;
  background: rgba(244, 244, 244, 0.5);
  padding: 0 0 10rem;
}
.message__wrap {
  max-width: 500px;
  margin: auto;
  padding: 0 40px;
}
.message__catchcopy {
  margin: 0 auto 3rem;
  text-align: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  height: fit-content;
  padding: 50px;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 16px;
}
.message__catchcopy .text-line {
  background-color: #fff;
  color: #022b4d;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.8;
  padding: 10px 0;
  white-space: nowrap;
  align-self: flex-start;
}
.message__body p {
  color: #222222;
  font-size: clamp(15px, 1.2vw, 16px);
  line-height: 2;
  margin-bottom: 1.5em;
}
.message__body ul li {
  font-size: 20px;
  margin-bottom: 1em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .message {
    padding: 2rem 0 8rem;
  }
  .message__wrap {
    padding: 0 32px;
  }
  .message__body p {
    text-align: justify;
  }
}

.about-lead {
  padding: 12rem 0 10rem;
  margin: 0 auto;
}
.about-lead__wrap {
  width: 90%;
  margin: 0 auto;
  border: 1px solid #222222;
  position: relative;
}
.about-lead__title {
  position: absolute;
  top: -4rem;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
}
.about-lead__title h3 {
  text-align: center;
  color: #022b4d;
  font-weight: 700;
}
.about-lead__title h3 .hidden-pc {
  display: none;
}
.about-lead__txt-en {
  font-size: 96px;
  line-height: 100%;
  margin-bottom: 1rem;
  color: #022b4d;
  text-align: center;
  background-color: #f4f4f4;
  padding: 1rem 2rem;
}
.about-lead__message {
  margin-bottom: 6rem;
}
.about-lead__message h3 {
  line-height: 170%;
  font-weight: 600;
  text-align: center;
  color: #022b4d;
}
.about-lead__message h3 .font-small {
  font-size: 28px;
  font-weight: 400;
}
.about-lead__message h3 .hidden-pc {
  display: none;
}
.about-lead .generation-img__area {
  display: flex;
  gap: 3rem;
  padding-top: 11.5rem;
  margin-bottom: 3rem;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.about-lead .generation-img__area .generation-img__wrap {
  position: relative;
  flex: 1;
}
.about-lead .generation-img__area .generation-img__wrap .generation-img {
  width: 100%;
  height: 350px;
}
.about-lead .generation-img__area .generation-img__wrap .generation-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 100% 0%;
}
.about-lead .generation-img__area .generation-img__wrap .generation-img-txt {
  font-size: 24px; /*spは16px?*/
  font-weight: 600;
  line-height: 110%;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  background-color: #eaeaea;
  padding: 1rem 0.5rem;
  position: absolute;
  top: -1.5rem;
  left: 1.5rem;
}
.about-lead .generation-img__area .generation-img__wrap:nth-child(2) {
  margin-top: 6rem;
}
.about-lead .generation-img__area .generation-img__wrap:last-of-type {
  margin-top: 3rem;
}
@media screen and (max-width: 1023px) {
  .about-lead__title {
    top: -3rem;
  }
  .about-lead__txt-en {
    font-size: 64px;
  }
  .about-lead .generation-img__area {
    gap: 1.5rem;
    margin-top: 0;
    flex-direction: column;
    padding-top: 10rem;
    margin-bottom: 5rem;
  }
  .about-lead .generation-img__area .generation-img__wrap {
    width: 450px;
  }
  .about-lead .generation-img__area .generation-img__wrap .generation-img {
    height: 280px;
  }
  .about-lead .generation-img__area .generation-img__wrap .generation-img-txt {
    font-size: 18px;
    padding: 0.5rem 5px;
    top: -1rem;
    left: 1rem;
  }
  .about-lead .generation-img__area .generation-img__wrap:nth-child(2) {
    margin: 0 auto;
  }
  .about-lead .generation-img__area .generation-img__wrap:last-of-type {
    margin: 0 0 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .about-lead {
    padding: 7rem 0;
  }
  .about-lead__title {
    top: -1.5rem;
  }
  .about-lead__title h3 {
    font-size: 24px;
  }
  .about-lead__title h3 .hidden-pc {
    display: block;
  }
  .about-lead__txt-en {
    font-size: 32px;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
  }
  .about-lead__message {
    margin-bottom: 4rem;
  }
  .about-lead__message h3 {
    font-size: 24px;
  }
  .about-lead__message h3 .font-small {
    font-size: 20px;
  }
  .about-lead__message h3 .hidden-pc {
    display: block;
  }
  .about-lead .generation-img__area {
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 10rem;
    margin-bottom: 3rem;
  }
  .about-lead .generation-img__area .generation-img__wrap {
    width: 80%;
    max-width: 350px;
  }
  .about-lead .generation-img__area .generation-img__wrap .generation-img {
    height: 200px;
  }
  .about-lead .generation-img__area .generation-img__wrap .generation-img-txt {
    font-size: 16px;
    padding: 8px 5px;
    top: -0.5rem;
    left: 1rem;
  }
}

.about .about__txt-area {
  position: relative;
  padding-bottom: 7rem;
  max-width: 1064px;
  width: 90%;
  margin: 0 auto;
  margin-top: -7rem;
  padding-top: 7rem;
}
@media screen and (max-width: 1023px) {
  .about .about__txt-area {
    margin-top: -5rem;
    padding-top: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .about .about__txt-area {
    margin-top: -4rem;
    padding-top: 4rem;
  }
}
.about .about__txt-area .about__txt-en {
  font-size: 128px;
  color: rgba(34, 34, 34, 0.1019607843);
  position: absolute;
  top: 100;
  left: -12rem;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  line-height: 170%;
}
.about .about__txt-area h4 {
  font-size: 170%;
  font-weight: 600;
  color: #022b4d;
  margin-bottom: 5rem;
  text-align: center;
}
.about .about__txt-area h4 .hidden-pc {
  display: none;
}
.about .about__txt-area .about__txt-wrap {
  border-top: 1px solid #222222;
}
.about .about__txt-area .about__txt-wrap .about__txt-content {
  border-bottom: 1px solid #222222;
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.about .about__txt-area .about__txt-wrap .about__txt-content h5 {
  color: #222222;
  line-height: 170%;
  font-weight: 600;
  margin-bottom: 2rem;
}
.about .about__txt-area .about__txt-wrap .about__txt-content p {
  color: #222222;
  font-weight: 300;
  line-height: 170%;
  text-align: justify;
}
.about .about__txt-area .about__txt-wrap .about__txt-content p .hidden-pc {
  display: none;
}
.about .about__txt-area .about__txt-wrap .about__txt-content .about__txt-content-num {
  font-size: 256px;
  color: rgba(34, 34, 34, 0.1019607843);
  line-height: 100%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media screen and (max-width: 1023px) {
  .about .about__txt-area {
    padding-bottom: 5rem;
  }
  .about .about__txt-area .about__txt-en {
    display: none;
  }
  .about .about__txt-area h4 {
    margin-bottom: 3rem;
  }
  .about .about__txt-area .about__txt-wrap .about__txt-content {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .about .about__txt-area .about__txt-wrap .about__txt-content h5 {
    margin-bottom: 1rem;
  }
  .about .about__txt-area .about__txt-wrap .about__txt-content .about__txt-content-num {
    font-size: 176px;
    line-height: 150%;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
}
@media screen and (max-width: 768px) {
  .about .about__txt-area {
    padding-bottom: 2rem;
  }
  .about .about__txt-area h4 {
    font-size: 20px;
    margin-bottom: 2rem;
  }
  .about .about__txt-area h4 .hidden-pc {
    display: block;
  }
  .about .about__txt-area .about__txt-wrap .about__txt-content {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .about .about__txt-area .about__txt-wrap .about__txt-content h5 {
    margin-bottom: 10px;
  }
  .about .about__txt-area .about__txt-wrap .about__txt-content p .hidden-pc {
    display: block;
  }
  .about .about__txt-area .about__txt-wrap .about__txt-content .about__txt-content-num {
    font-size: 144px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
}
@media screen and (max-width: 768px) and (max-width: 466px) {
  .about .about__txt-area .about__txt-wrap .about__txt-content .about__txt-content-num {
    bottom: 0;
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
  }
}

.internship-lead__lead-txt-wrap {
  padding-top: 3rem;
  padding-bottom: 5rem;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 3rem;
  position: relative;
  height: max-content;
}
.internship-lead__lead-txt-wrap .internship-lead__lead-txt {
  display: flex;
  flex-direction: row-reverse;
  gap: 1rem;
}
.internship-lead__lead-txt-wrap .internship-lead__lead-txt h4 {
  font-weight: 700;
  line-height: 110%;
  color: #022b4d;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  margin: 0;
  z-index: 2;
}
.internship-lead__lead-txt-wrap .internship-lead__lead-txt-img {
  position: absolute;
  bottom: 140px;
  width: 100%;
  z-index: 0;
}
.internship-lead__lead-txt-wrap .internship-lead__lead-txt-img img {
  width: 100%;
}
.internship-lead__main-wrap {
  height: 600px;
  background-image: url(../image/lead-image.jpg);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  background-position: 50% 0%;
  position: relative;
}
.internship-lead__main-wrap .internship-lead__main-txt-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.internship-lead__main-wrap .internship-lead__main-txt-wrap h4 {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  line-height: 170%;
}
.internship-lead__main-wrap .internship-lead__main-txt-wrap h4 .txt-bg {
  background-color: #fff;
  padding: 8px;
  width: fit-content;
  margin: 0 auto;
}
.internship-lead__main-wrap .internship-lead__main-txt-wrap h4 .mr {
  margin-right: 8px;
}
.internship-lead__main-wrap .internship-lead__main-txt-wrap .hidden-pc {
  display: none;
}
.internship-lead__en-wrap {
  background: linear-gradient(#e8e8e8, #f3f3f3);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}
.internship-lead__en-wrap .internship-lead__en {
  display: flex;
  animation: loop-text 40s linear infinite;
  margin-bottom: 100px;
}
.internship-lead__en-wrap .internship-lead__en .double-content {
  display: inline-block;
  font-size: 128px;
  line-height: 100%;
  margin-top: -1rem;
  white-space: nowrap;
  padding-right: 3rem;
  color: rgba(34, 34, 34, 0.0509803922);
}
@keyframes loop-text {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.internship-lead__recommend {
  background: linear-gradient(#f2f2f2, #f3f3f3);
}
.internship-lead__recommend-caption {
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  color: #3e3e3e;
}
.internship-lead__recommend-caption .dots {
  background-image: radial-gradient(circle at center, #d9d9d9 20%, transparent 20%); /* 点の色とサイズ調整 */
  background-position: top right; /* 点の位置 */
  background-repeat: repeat-x; /* 横方向に繰り返し */
  background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
  padding-top: 8px; /* 縦方向の位置調整 */
}
.internship-lead__recommend-content-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 848px;
  margin: 0 auto;
}
.internship-lead__recommend-content-wrap .internship-lead__recommend-content {
  background-color: #fff;
  padding-top: 1.5rem;
  padding-bottom: 2rem;
  width: 400px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.internship-lead__recommend-content-wrap .internship-lead__recommend-content-icon {
  height: 32px;
  margin: 0 auto;
  z-index: 0;
}
.internship-lead__recommend-content-wrap .internship-lead__recommend-content-icon img {
  height: 100%;
}
.internship-lead__recommend-content-wrap .internship-lead__recommend-content-txt {
  text-align: center;
  font-weight: 500;
  line-height: 170%;
  color: #3e3e3e;
}
.internship-lead__recommend-content-wrap .internship-lead__recommend-content-txt .bold {
  font-weight: 600;
  color: #222222;
}
@media screen and (max-width: 1023px) {
  .internship-lead__lead-txt-wrap {
    padding-top: 7rem;
  }
  .internship-lead__main-wrap {
    height: 450px;
  }
  .internship-lead__main-wrap .internship-lead__main-txt-wrap {
    gap: 1rem;
    bottom: 3rem;
  }
  .internship-lead__main-wrap .internship-lead__main-txt-wrap h4 .txt-bg {
    padding: 5px;
  }
  .internship-lead__main-wrap .internship-lead__main-txt-wrap h4 .mr {
    margin-right: 5px;
  }
  .internship-lead__en-wrap .internship-lead__en {
    margin-bottom: 100px;
    animation: loop-text 30s linear infinite;
  }
  .internship-lead__en-wrap .internship-lead__en .double-content {
    font-size: 112px;
    margin-top: -1rem;
    padding-right: 2rem;
  }
  .internship-lead__recommend-caption {
    margin-bottom: 2rem;
  }
  .internship-lead__recommend-content-wrap {
    gap: 1.5rem;
    width: 94%;
    margin: 0 auto;
  }
  .internship-lead__recommend-content-wrap .internship-lead__recommend-content {
    width: 360px;
  }
  .internship-lead__recommend-content-wrap .internship-lead__recommend-content-icon {
    height: 30px;
  }
}
@media screen and (max-width: 768px) {
  .internship-lead__lead-txt-wrap {
    padding-top: 3rem;
    padding-bottom: 3rem;
    gap: 2rem;
  }
  .internship-lead__lead-txt-wrap .internship-lead__lead-txt {
    gap: 10px;
  }
  .internship-lead__lead-txt-wrap .internship-lead__lead-txt-img {
    bottom: 100px;
  }
  .internship-lead__main-wrap {
    height: 275px;
    background-image: url(../image/lead-image.jpg);
    background-position: 50% 100%;
    position: relative;
  }
  .internship-lead__main-wrap .internship-lead__main-txt-wrap {
    gap: 0.5rem;
    bottom: 1rem;
  }
  .internship-lead__main-wrap .internship-lead__main-txt-wrap h4 {
    font-size: 20px;
  }
  .internship-lead__main-wrap .internship-lead__main-txt-wrap h4 .txt-bg {
    padding: 3px 5px;
  }
  .internship-lead__main-wrap .internship-lead__main-txt-wrap h4 .mr {
    margin-right: 3px;
  }
  .internship-lead__main-wrap .internship-lead__main-txt-wrap .hidden-sp {
    display: none;
  }
  .internship-lead__main-wrap .internship-lead__main-txt-wrap .hidden-pc {
    display: block;
  }
  .internship-lead__en-wrap .internship-lead__en {
    animation: loop-text 30s linear infinite;
    margin-bottom: 4rem;
  }
  .internship-lead__en-wrap .internship-lead__en .double-content {
    font-size: 96px;
    padding-right: 1.5rem;
  }
  .internship-lead__recommend-caption {
    margin-bottom: 1.5rem;
  }
  .internship-lead__recommend-caption .dots {
    padding-top: 5px; /* 縦方向の位置調整 */
  }
  .internship-lead__recommend-content-wrap {
    gap: 1rem;
    width: auto;
    margin: 0 1rem;
  }
  .internship-lead__recommend-content-wrap .internship-lead__recommend-content {
    padding-top: 1rem;
    padding-bottom: 1.5rem;
    width: 380px;
    gap: 8px;
  }
  .internship-lead__recommend-content-wrap .internship-lead__recommend-content-icon {
    height: 28px;
  }
}

.interview {
  background: linear-gradient(#f3f3f3, #f6f6f6);
}
.interview .interview__wrap {
  max-width: 1064px;
  width: 90%;
  margin: 0 auto;
  padding-top: 7rem;
}
.interview .interview__wrap .interview__caption-en {
  font-size: 96px;
  line-height: 100%;
  margin-bottom: 1rem;
  color: #022b4d;
}
.interview .interview__wrap h4 {
  font-weight: 600;
  margin-bottom: 3rem;
  color: #022b4d;
}
.interview .interview__wrap .interview__content-wrap {
  display: flex;
  gap: 3rem;
}
.interview .interview__wrap .interview__content-wrap .interview__content {
  position: relative;
  border: 1px solid rgba(34, 34, 34, 0.5019607843);
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.interview .interview__wrap .interview__content-wrap .interview__content .num {
  color: rgba(34, 34, 34, 0.1019607843);
  font-size: 128px;
  position: absolute;
  top: -15px;
  right: 0;
  line-height: 100%;
}
.interview .interview__wrap .interview__content-wrap .interview__content .interview-icon-name {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-bottom: 1.5rem;
}
.interview .interview__wrap .interview__content-wrap .interview__content .interview-icon-name .interview-icon {
  width: 150px;
  margin-bottom: 1px;
}
.interview .interview__wrap .interview__content-wrap .interview__content .interview-icon-name .interview-icon img {
  width: 100%;
}
.interview .interview__wrap .interview__content-wrap .interview__content .interview-icon-name .interview-name {
  font-size: 22px;
  color: #222;
  text-align: center;
}
.interview .interview__wrap .interview__content-wrap .interview__content .interview-icon-name .interview-name span {
  font-size: 15px;
  font-family: "Noto Serif JP", sans-serif;
}
.interview .interview__wrap .interview__content-wrap .interview__content .interview-caption {
  margin-bottom: 2rem;
}
.interview .interview__wrap .interview__content-wrap .interview__content .interview-caption h5 {
  font-weight: 600;
  background-color: #fff;
  width: fit-content;
  padding: 3px 8px;
}
.interview .interview__wrap .interview__content-wrap .interview__content .interview-caption h5:nth-child(2) {
  margin-top: 8px;
  margin-bottom: 8px;
}
.interview .interview__wrap .interview__content-wrap .interview__content #popup01,
.interview .interview__wrap .interview__content-wrap .interview__content #popup02 {
  display: none; /* label でコントロールするので input は非表示に */
}
.interview .interview__wrap .interview__content-wrap .interview__content .popup-open {
  font-weight: 600;
  border: 1px solid rgba(34, 34, 34, 0.8);
  width: 180px;
  padding-top: 8px;
  padding-bottom: 8px;
  text-align: center;
  cursor: pointer; /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
  transition: all 0.3s;
}
.interview .interview__wrap .interview__content-wrap .interview__content .popup-open:hover {
  background-color: #022b4d;
  color: #fff;
  transition: all 0.3s;
}
.interview .interview__wrap .interview__content-wrap .interview__content .popup-overlay {
  display: none; /* input にチェックが入るまでは非表示に */
}
.interview .interview__wrap .interview__content-wrap .interview__content #popup01:checked ~ .popup-overlay {
  display: block;
  z-index: 99999;
  background-color: rgba(34, 34, 34, 0.5019607843);
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}
.interview .interview__wrap .interview__content-wrap .interview__content #popup02:checked ~ .popup-overlay {
  display: block;
  z-index: 99999;
  background-color: rgba(34, 34, 34, 0.5019607843);
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}
.interview .interview__wrap .interview__content-wrap .interview__content .popup-window {
  width: 90%;
  max-width: 848px;
  height: 70vh;
  padding: 3rem;
  background-color: #f9f9f9;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.interview .interview__wrap .interview__content-wrap .interview__content .popup-window-inner {
  margin: 0;
  height: 100%;
  overflow: auto;
  /*スクロールバー非表示（IE・Edge）*/
  -ms-overflow-style: none;
  /*スクロールバー非表示（Firefox）*/
  scrollbar-width: none;
}
.interview .interview__wrap .interview__content-wrap .interview__content .popup-window-inner .popup__upper {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(34, 34, 34, 0.2509803922);
}
.interview .interview__wrap .interview__content-wrap .interview__content .popup-window-inner .popup__upper-prof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}
.interview .interview__wrap .interview__content-wrap .interview__content .popup-window-inner .popup__upper-prof-icon {
  width: 120px;
}
.interview .interview__wrap .interview__content-wrap .interview__content .popup-window-inner .popup__upper-prof-icon img {
  width: 100%;
}
.interview .interview__wrap .interview__content-wrap .interview__content .popup-window-inner .popup__upper-prof-name span {
  font-size: 15px;
  font-weight: 600;
  font-family: "Noto Serif JP", sans-serif;
}
.interview .interview__wrap .interview__content-wrap .interview__content .popup-window-inner .popup__upper-prof-caption h5 {
  background-color: #fff;
  font-weight: 600;
  padding: 3px 8px;
  width: fit-content;
}
.interview .interview__wrap .interview__content-wrap .interview__content .popup-window-inner .popup__upper-prof-caption h5:nth-child(1) {
  margin-bottom: 8px;
}
.interview .interview__wrap .interview__content-wrap .interview__content .popup-window-inner .popup__interview-txt {
  padding-top: 2rem;
}
.interview .interview__wrap .interview__content-wrap .interview__content .popup-window-inner .popup__interview-txt p {
  margin-bottom: 1.5rem;
  text-align: justify;
}
.interview .interview__wrap .interview__content-wrap .interview__content .popup-window-inner .popup__lower {
  width: fit-content;
  margin: 0 0 0 auto;
}
.interview .interview__wrap .interview__content-wrap .interview__content .popup-window-inner .popup__lower p {
  width: fit-content;
  color: rgba(34, 34, 34, 0.8);
}
.interview .interview__wrap .interview__content-wrap .interview__content .popup-window-inner .popup__lower p:first-child {
  font-weight: 600;
  color: #222222;
}
.interview .interview__wrap .interview__content-wrap .interview__content {
  /*スクロールバー非表示（Chrome・Safari）*/
}
.interview .interview__wrap .interview__content-wrap .interview__content .popup-window-inner::-webkit-scrollbar {
  display: none;
}
.interview .interview__wrap .interview__content-wrap .interview__content .popup-text:not(:last-of-type) {
  margin-bottom: 1em;
}
.interview .interview__wrap .interview__content-wrap .interview__content .popup-close {
  cursor: pointer;
  position: absolute;
  top: -26px;
  right: 0;
}
@media screen and (max-width: 1023px) {
  .interview .interview__wrap {
    width: 94%;
  }
  .interview .interview__wrap .interview__caption-en {
    font-size: 80px;
    margin-bottom: 0.5rem;
  }
  .interview .interview__wrap h4 {
    margin-bottom: 2rem;
  }
  .interview .interview__wrap .interview__content-wrap {
    gap: 2rem;
  }
  .interview .interview__wrap .interview__content-wrap .interview__content {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .interview .interview__wrap .interview__content-wrap .interview__content .num {
    font-size: 112px;
  }
  .interview .interview__wrap .interview__content-wrap .interview__content .interview-icon-name .interview-icon {
    width: 130px;
  }
  .interview .interview__wrap .interview__content-wrap .interview__content .interview-icon-name .interview-name {
    font-size: 20px;
  }
  .interview .interview__wrap .interview__content-wrap .interview__content .interview-caption {
    margin-bottom: 2rem;
  }
  .interview .interview__wrap .interview__content-wrap .interview__content .interview-caption h5 {
    padding: 3px 5px;
  }
  .interview .interview__wrap .interview__content-wrap .interview__content .interview-caption h5:nth-child(2) {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .interview .interview__wrap .interview__content-wrap .interview__content .popup-window {
    width: 80%;
    height: 70vh;
    padding: 2rem;
  }
  .interview .interview__wrap .interview__content-wrap .interview__content .popup-window-inner .popup__upper {
    gap: 1.5rem;
  }
  .interview .interview__wrap .interview__content-wrap .interview__content .popup-window-inner .popup__upper-prof-icon {
    width: 100px;
  }
  .interview .interview__wrap .interview__content-wrap .interview__content .popup-window-inner .popup__upper-prof-caption h5 {
    padding: 3px 5px;
  }
  .interview .interview__wrap .interview__content-wrap .interview__content .popup-window-inner .popup__upper-prof-caption h5:nth-child(1) {
    margin-bottom: 5px;
  }
  .interview .interview__wrap .interview__content-wrap .interview__content .popup-window-inner .popup__interview-txt {
    padding-top: 1.5rem;
  }
  .interview .interview__wrap .interview__content-wrap .interview__content .popup-window-inner .popup__interview-txt p {
    margin-bottom: 1rem;
  }
  .interview .interview__wrap .interview__content-wrap .interview__content .popup-close {
    top: -28px;
  }
}
@media screen and (max-width: 768px) {
  .interview .interview__wrap {
    width: auto;
    margin: 0 1rem;
    padding-top: 5rem;
  }
  .interview .interview__wrap .interview__caption-en {
    font-size: 64px;
    margin-bottom: 5px;
  }
  .interview .interview__wrap h4 {
    margin-bottom: 2rem;
  }
  .interview .interview__wrap .interview__content-wrap {
    flex-direction: column;
    gap: 1.5rem;
  }
  .interview .interview__wrap .interview__content-wrap .interview__content {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .interview .interview__wrap .interview__content-wrap .interview__content .num {
    font-size: 96px;
    top: -12px;
  }
  .interview .interview__wrap .interview__content-wrap .interview__content .interview-icon-name {
    margin-bottom: 10px;
  }
  .interview .interview__wrap .interview__content-wrap .interview__content .interview-icon-name .interview-icon {
    width: 100px;
    margin-bottom: 1px;
  }
  .interview .interview__wrap .interview__content-wrap .interview__content .interview-icon-name .interview-name {
    font-size: 20px;
  }
  .interview .interview__wrap .interview__content-wrap .interview-caption {
    margin-bottom: 1rem;
  }
  .interview .interview__wrap .interview__content-wrap .interview-caption h5 {
    padding: 3px 5px;
  }
  .interview .interview__wrap .interview__content-wrap .interview-caption h5:nth-child(2) {
    margin-top: 3px;
    margin-bottom: 3px;
  }
  .interview .interview__wrap .interview__content-wrap .popup-window {
    width: 84% !important;
    height: 75vh !important;
    padding: 1.5rem 1rem 1.5rem 1rem !important;
  }
  .interview .interview__wrap .interview__content-wrap .popup-window-inner .popup__upper {
    flex-direction: column;
    gap: 0.5rem !important;
    padding-bottom: 1rem !important;
  }
  .interview .interview__wrap .interview__content-wrap .popup-window-inner .popup__upper-prof {
    gap: 1px;
  }
  .interview .interview__wrap .interview__content-wrap .popup-window-inner .popup__upper-prof-icon {
    width: 80px !important;
  }
  .interview .interview__wrap .interview__content-wrap .popup-window-inner .popup__upper-prof-caption h5 {
    padding: 3px 5px;
  }
  .interview .interview__wrap .interview__content-wrap .popup-window-inner .popup__interview-txt {
    padding-top: 1rem !important;
  }
  .interview .interview__wrap .interview__content-wrap .popup-window-inner .popup__interview-txt p {
    margin-bottom: 10px !important;
  }
}

.slideshow {
  background: linear-gradient(#f6f6f6, #f7f7f7);
  width: 100%;
  overflow: hidden;
}
.slideshow .slide {
  display: flex;
  width: 6000px; /* 画像数 × 幅 */
  animation: scroll-left 40s linear infinite;
  margin-top: 7rem;
}
.slideshow .slide .slide-img {
  width: 500px;
  height: 350px;
  flex-shrink: 0;
  margin-right: 1.5rem; /* 任意の間隔 */
}
.slideshow .slide .slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slideshow .slide .slide-img02 {
  margin-top: 6rem;
}
.slideshow .slide .slide-img03 {
  margin-top: 3rem;
}
@media screen and (max-width: 1023px) {
  .slideshow .slide {
    width: 4800px; /* 画像数 × 幅 */
    animation: scroll-left 30s linear infinite;
    margin-top: 5rem;
  }
  .slideshow .slide .slide-img {
    width: 400px;
    height: 250px;
  }
  .slideshow .slide .slide-img02 {
    margin-top: 4rem;
  }
  .slideshow .slide .slide-img03 {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .slideshow .slide {
    width: 3600px; /* 画像数 × 幅 */
    animation: scroll-left 30s linear infinite;
    margin-top: 4rem;
  }
  .slideshow .slide .slide-img {
    width: 300px;
    height: 200px;
    margin-right: 1rem; /* 任意の間隔 */
  }
  .slideshow .slide .slide-img02 {
    margin-top: 3rem;
  }
  .slideshow .slide .slide-img03 {
    margin-top: 1rem;
  }
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.program {
  background: linear-gradient(#f7f7f7, #fefefe);
}
.program__wrap {
  padding-top: 7rem;
  padding-bottom: 7rem;
}
.program__wrap .program__caption-wrap {
  margin-bottom: 2rem;
}
.program__wrap .program__caption-wrap .program__caption-en {
  font-size: 128px;
  line-height: 100%;
  margin-bottom: 1rem;
  text-align: center;
  color: #022b4d;
}
.program__wrap .program__caption-wrap h5 {
  text-align: center;
  color: #022b4d;
}
.program__wrap .program__catch {
  font-weight: 600;
  text-align: center;
  background-color: #fff;
  padding-top: 8px;
  padding-bottom: 8px;
  margin-bottom: 3rem;
}
.program .program__scroll-down-wrap {
  max-width: 848px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}
.program .program__scroll-down-wrap a {
  border-left: 1px solid rgba(62, 62, 62, 0.2509803922);
  margin: 0 auto;
  text-decoration: none;
  color: #222222;
  flex: 1;
  text-align: center;
  transition: all 0.3s;
}
.program .program__scroll-down-wrap a .program__scroll-down-num {
  font-size: 32px;
  line-height: 170%;
  color: rgba(62, 62, 62, 0.2509803922);
  margin-bottom: 3px;
  text-align: center;
  transition: all 0.3s;
}
.program .program__scroll-down-wrap a h5 {
  font-weight: 600;
  text-align: center;
  margin-bottom: 8px;
  color: #3e3e3e;
}
.program .program__scroll-down-wrap a .dli-chevron-down {
  display: inline-block;
  vertical-align: middle;
  color: #3e3e3e;
  line-height: 1;
  width: 1em;
  height: 1em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
}
.program .program__scroll-down-wrap a:last-of-type {
  border-right: 1px solid rgba(62, 62, 62, 0.2509803922);
}
.program .program__scroll-down-wrap a:hover {
  background-color: #fff;
  transition: all 0.3s;
}
.program .program__scroll-down-wrap a:hover .program__scroll-down-num {
  color: #222222;
  transition: all 0.3s;
}
.program .program__content-area {
  max-width: 1064px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: row-reverse;
}
.program .program__content-area .program__content-wrap {
  border-left: 1px solid #222222;
  padding-left: 3rem;
  flex: 1;
}
.program .program__content-area .program__content-wrap .program__content h4 {
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.program .program__content-area .program__content-wrap .program__content h5 {
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 170%;
  margin-top: 2rem;
  color: #222222;
}
.program .program__content-area .program__content-wrap .program__content h5:first-of-type {
  margin-top: 0;
}
.program .program__content-area .program__content-wrap .program__content .program__content-inner-wrap {
  padding-left: 1rem;
}
.program .program__content-area .program__content-wrap .program__content .program__content-inner-wrap .program-date {
  font-size: 22px;
  font-weight: 600;
  line-height: 170%;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px;
  color: #3e3e3e;
}
.program .program__content-area .program__content-wrap .program__content .program__content-inner-wrap .program-date::before {
  content: "";
  width: 18px;
  height: 18px;
  background-color: #3e3e3e;
}
.program .program__content-area .program__content-wrap .program__content .program__content-inner-wrap .program__content-inner-txt-sub {
  line-height: 170%;
  color: #222222;
  margin-bottom: 5px;
  text-align: justify;
}
.program .program__content-area .program__content-wrap .program__content .program__content-inner-wrap .program__content-inner-txt-bs {
  line-height: 170%;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px;
  text-align: justify;
  color: #3e3e3e;
}
.program .program__content-area .program__content-wrap .program__content .program__content-inner-wrap .program__content-inner-txt-bs::before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #3e3e3e;
}
.program .program__content-area .program__content-wrap .program__content .program__content-inner-wrap .program__content-inner-txt {
  color: #222222;
  line-height: 170%;
  text-align: justify;
  color: #3e3e3e;
}
.program .program__content-area .program__content-wrap .program__content .program__content-inner-wrap .program__content-inner-txt-mt {
  margin-top: 11px;
  text-align: justify;
}
.program .program__content-area .program__content-wrap .program__content .program__content-inner-wrap .program__content-inner-txt-ws {
  line-height: 170%;
  color: #222222;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px;
  text-align: justify;
}
.program .program__content-area .program__content-wrap .program__content .program__content-inner-wrap .program__content-inner-txt-ws::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 1px solid #222222;
}
.program .program__content-area .program__content-wrap .program__content:not(:last-of-type) {
  margin-bottom: 5rem;
}
.program .program__content-area .program__content-wrap #program-content01,
.program .program__content-area .program__content-wrap #program-content02,
.program .program__content-area .program__content-wrap #program-content03 {
  margin-top: -6rem;
  padding-top: 6rem;
}
@media screen and (max-width: 768px) {
  .program .program__content-area .program__content-wrap #program-content01,
  .program .program__content-area .program__content-wrap #program-content02,
  .program .program__content-area .program__content-wrap #program-content03 {
    margin-top: -5rem;
    padding-top: 5rem;
  }
}
.program .program__content-area .program__menu-wrap {
  width: 216px;
  position: sticky;
  top: 100px;
  height: 100vh; /* 画面全体の高さを確保 */
}
.program .program__content-area .program__menu-wrap #toc-widget-3 {
  position: sticky;
  top: 100px;
}
.program .program__content-area .program__menu-wrap #toc-widget-3 .toc_widget_list li a {
  text-decoration: none;
}
.program .program__content-area .program__menu-wrap #toc-widget-3 .toc_widget_list li a p {
  color: rgba(62, 62, 62, 0.2509803922);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 170%;
  font-weight: 600;
  transition: color 0.3s ease;
}
.program .program__content-area .program__menu-wrap #toc-widget-3 .toc_widget_list li a p span {
  font-size: 22px;
}
.program .program__content-area .program__menu-wrap #toc-widget-3 .toc_widget_list li a.current p {
  color: #3e3e3e;
  font-weight: bold;
}
.program .program__content-area .program__menu-wrap #toc-widget-3 .toc_widget_list li:nth-child(2) {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1023px) {
  .program__wrap .program__caption-wrap {
    margin-bottom: 1.5rem;
  }
  .program__wrap .program__caption-wrap .program__caption-en {
    font-size: 100px;
    margin-bottom: 0.5rem;
  }
  .program__wrap .program__catch {
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 2rem;
  }
  .program .program__scroll-down-wrap {
    width: 94%;
    display: flex;
    margin-bottom: 3rem;
  }
  .program .program__scroll-down-wrap a .program__scroll-down-num {
    font-size: 28px;
  }
  .program .program__content-area {
    width: 94%;
  }
  .program .program__content-area .program__content-wrap {
    padding-left: 1.5rem;
  }
  .program .program__content-area .program__content-wrap .program__content .program__content-inner-wrap {
    padding-left: 0.5rem;
  }
  .program .program__content-area .program__content-wrap .program__content .program__content-inner-wrap .program-date {
    font-size: 20px;
    gap: 3px;
    margin-bottom: 3px;
  }
  .program .program__content-area .program__content-wrap .program__content .program__content-inner-wrap .program-date::before {
    width: 15px;
    height: 15px;
  }
  .program .program__content-area .program__content-wrap .program__content .program__content-inner-wrap .program__content-inner-txt-sub {
    margin-bottom: 3px;
  }
  .program .program__content-area .program__content-wrap .program__content .program__content-inner-wrap .program__content-inner-txt-bs {
    gap: 3px;
    margin-bottom: 3px;
  }
  .program .program__content-area .program__content-wrap .program__content .program__content-inner-wrap .program__content-inner-txt-bs::before {
    width: 10px;
    height: 10px;
  }
  .program .program__content-area .program__content-wrap .program__content .program__content-inner-wrap .program__content-inner-txt-mt {
    margin-top: 8px;
  }
  .program .program__content-area .program__content-wrap .program__content .program__content-inner-wrap .program__content-inner-txt-ws {
    gap: 3px;
    margin-bottom: 3px;
  }
  .program .program__content-area .program__content-wrap .program__content .program__content-inner-wrap .program__content-inner-txt-ws::before {
    width: 10px;
    height: 10px;
  }
  .program .program__content-area .program__content-wrap .program__content:not(:last-of-type) {
    margin-bottom: 3rem;
  }
  .program .program__content-area .program__menu-wrap {
    width: 162px;
  }
  .program .program__content-area .program__menu-wrap #toc-widget-3 .toc_widget_list li a p {
    gap: 5px;
  }
  .program .program__content-area .program__menu-wrap #toc-widget-3 .toc_widget_list li a p span {
    font-size: 20px;
  }
  .program .program__content-area .program__menu-wrap #toc-widget-3 .toc_widget_list li:nth-child(2) {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .program__wrap {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .program__wrap .program__caption-wrap {
    margin-bottom: 1rem;
  }
  .program__wrap .program__caption-wrap .program__caption-en {
    font-size: 42px;
    margin-bottom: 0.5rem;
  }
  .program__wrap .program__catch {
    font-size: 18px;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 1.5rem;
  }
  .program .program__scroll-down-wrap {
    width: 214px;
    margin: 0 auto;
    flex-direction: column;
    margin-bottom: 2rem;
  }
  .program .program__scroll-down-wrap a {
    border-left: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(34, 34, 34, 0.2509803922);
    scroll-behavior: smooth;
  }
  .program .program__scroll-down-wrap a .program__scroll-down-num {
    font-size: 24px;
    margin-bottom: 0;
  }
  .program .program__scroll-down-wrap a h5 {
    text-align: center;
    margin-bottom: 0;
  }
  .program .program__scroll-down-wrap a .dli-chevron-down {
    width: 0.5em;
    height: 0.5em;
  }
  .program .program__scroll-down-wrap a:last-of-type {
    border-right: none;
  }
  .program .program__scroll-down-wrap a:not(:last-of-type) {
    margin-bottom: 5px;
  }
  .program .program__scroll-down-wrap a:hover {
    background-color: #fff;
    transition: all 0.3s;
  }
  .program .program__scroll-down-wrap a:hover .program__scroll-down-num {
    color: #222222;
    transition: all 0.3s;
  }
  .program .program__content-area {
    width: auto;
    margin: 0 1rem;
  }
  .program .program__content-area .program__content-wrap {
    border-left: none;
    padding-left: 0;
  }
  .program .program__content-area .program__content-wrap .program__content h4 {
    margin-bottom: 0.5rem;
  }
  .program .program__content-area .program__content-wrap .program__content h5 {
    margin-bottom: 3px;
    margin-top: 1rem;
  }
  .program .program__content-area .program__content-wrap .program__content .program__content-inner-wrap {
    padding-left: 0.5rem;
  }
  .program .program__content-area .program__content-wrap .program__content .program__content-inner-wrap .program-date {
    font-size: 18px;
    line-height: 150%;
    gap: 3px;
    margin-bottom: 3px;
  }
  .program .program__content-area .program__content-wrap .program__content .program__content-inner-wrap .program-date::before {
    width: 15px;
    height: 15px;
  }
  .program .program__content-area .program__content-wrap .program__content .program__content-inner-wrap .program__content-inner-txt-sub {
    line-height: 150%;
    margin-bottom: 3px;
  }
  .program .program__content-area .program__content-wrap .program__content .program__content-inner-wrap .program__content-inner-txt-bs {
    line-height: 150%;
    gap: 3px;
    margin-bottom: 5px;
    align-items: baseline;
  }
  .program .program__content-area .program__content-wrap .program__content .program__content-inner-wrap .program__content-inner-txt-bs::before {
    display: inline-block;
    width: 12px;
    height: 12px;
    vertical-align: middle;
    flex-shrink: 0; /* ← 親が flex のときに縮むのを防止 */
  }
  .program .program__content-area .program__content-wrap .program__content .program__content-inner-wrap .program__content-inner-txt {
    line-height: 150%;
  }
  .program .program__content-area .program__content-wrap .program__content .program__content-inner-wrap .program__content-inner-txt-mt {
    margin-top: 8px;
  }
  .program .program__content-area .program__content-wrap .program__content .program__content-inner-wrap .program__content-inner-txt-ws {
    line-height: 150%;
    gap: 3px;
    margin-bottom: 3px;
    align-items: baseline;
  }
  .program .program__content-area .program__content-wrap .program__content .program__content-inner-wrap .program__content-inner-txt-ws::before {
    width: 12px;
    height: 12px;
    vertical-align: middle;
    flex-shrink: 0; /* ← 親が flex のときに縮むのを防止 */
  }
  .program .program__content-area .program__content-wrap .program__content:not(:last-of-type) {
    margin-bottom: 2rem;
  }
  .program .program__content-area .program__menu-wrap {
    display: none;
  }
}

.entry .entry__wrap {
  padding-top: 7rem;
  height: calc(600px - 7rem);
  background-image: url(../image/entry-bg.jpg);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  padding-top: 7rem;
  position: relative;
}
.entry .entry__wrap .entry__upper-wrap {
  display: flex;
  justify-content: space-between;
  max-width: 1064px;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 1rem;
}
.entry .entry__wrap .entry__upper-wrap .entry__caption-wrap .entry__caption-en {
  font-size: 128px;
  line-height: 100%;
  color: #eaeaea;
  margin-bottom: 10px;
}
.entry .entry__wrap .entry__upper-wrap .entry__caption-wrap h5 {
  font-weight: 600;
  line-height: 170%;
  color: #eaeaea;
}
.entry .entry__wrap .entry__upper-wrap .entry__btn {
  margin-top: 1rem;
}
.entry .entry__wrap .entry__upper-wrap .entry__btn .entry__btn-wrap {
  background: #eaeaea;
  border: 1px solid #eaeaea;
  color: #022b4d;
  overflow: hidden;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 450px;
  height: 80px;
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 1rem;
}
.entry .entry__wrap .entry__upper-wrap .entry__btn .entry__btn-wrap .entry__btn-arrow {
  position: absolute;
  top: 50%;
  right: 58px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transition: 0.3s;
}
.entry .entry__wrap .entry__upper-wrap .entry__btn .entry__btn-wrap .entry__btn-arrow .dli-chevron-round-right {
  display: block;
  vertical-align: middle;
  color: #022b4d;
  line-height: 1;
  position: relative;
  width: 16px;
  height: 16px;
  transform: translateX(-25%) rotate(45deg);
}
.entry .entry__wrap .entry__upper-wrap .entry__btn .entry__btn-wrap .entry__btn-arrow .dli-chevron-round-right::before,
.entry .entry__wrap .entry__upper-wrap .entry__btn .entry__btn-wrap .entry__btn-arrow .dli-chevron-round-right::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 0.1em;
}
.entry .entry__wrap .entry__upper-wrap .entry__btn .entry__btn-wrap .entry__btn-arrow .dli-chevron-round-right::before {
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
}
.entry .entry__wrap .entry__upper-wrap .entry__btn .entry__btn-wrap .entry__btn-arrow .dli-chevron-round-right::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
}
.entry .entry__wrap .entry__upper-wrap .entry__btn .entry__btn-wrap::after {
  background: #022b4d;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.entry .entry__wrap .entry__upper-wrap .entry__btn .entry__btn-wrap:hover {
  color: #eaeaea;
}
.entry .entry__wrap .entry__upper-wrap .entry__btn .entry__btn-wrap:hover .entry__btn-arrow {
  right: 50px;
}
.entry .entry__wrap .entry__upper-wrap .entry__btn .entry__btn-wrap:hover .entry__btn-arrow .dli-chevron-round-right {
  color: #eaeaea;
}
.entry .entry__wrap .entry__upper-wrap .entry__btn .entry__btn-wrap:hover::after {
  transform: scale(1, 1);
}
.entry .entry__wrap .entry__upper-wrap .entry__btn .secondary__btn {
  background: #022b4d;
  border: none;
  color: #eaeaea;
  margin-top: 32px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 450px;
  height: 80px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 1rem;
}
.entry .entry__wrap .entry__upper-wrap .entry__btn .secondary__btn::after {
  content: "";
  display: inline-block;
  background: url(../image/link-icon_white.png) 100% 100%/cover;
  width: 16px;
  height: 16px;
  margin-left: 24px;
}
.entry .entry__wrap .entry__upper-wrap .entry__btn p {
  line-height: 170%;
  color: rgba(234, 234, 234, 0.8);
}
.entry .entry__wrap .entry__lower-wrap {
  background-color: rgba(34, 34, 34, 0.8);
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
  justify-content: center;
}
.entry .entry__wrap .entry__lower-wrap p {
  font-size: 18px;
  font-weight: 600;
  line-height: 170%;
  color: rgba(255, 255, 255, 0.8);
  width: fit-content;
}
.entry .entry__wrap .entry__light-img {
  height: 204px;
  position: absolute;
  bottom: -21px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.entry .entry__wrap .entry__light-img img {
  height: 100%;
}
@media screen and (max-width: 1023px) {
  .entry .entry__wrap {
    height: calc(500px - 5rem);
    padding-top: 5rem;
  }
  .entry .entry__wrap .entry__upper-wrap {
    width: 94%;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 1rem;
  }
  .entry .entry__wrap .entry__upper-wrap .entry__caption-wrap .entry__caption-en {
    font-size: 112px;
    margin-bottom: 8px;
  }
  .entry .entry__wrap .entry__upper-wrap .entry__btn .entry__btn-wrap {
    width: 100%;
    height: 64px;
    font-size: 20px;
    margin-bottom: 10px;
  }
  .entry .entry__wrap .entry__upper-wrap .entry__btn .entry__btn-wrap .entry__btn-arrow {
    right: 38px;
  }
  .entry .entry__wrap .entry__upper-wrap .entry__btn .entry__btn-wrap .entry__btn-arrow .dli-chevron-round-right {
    width: 12px;
    height: 12px;
  }
  .entry .entry__wrap .entry__upper-wrap .entry__btn .entry__btn-wrap:hover .entry__btn-arrow {
    right: 30px;
  }
  .entry .entry__wrap .entry__upper-wrap .entry__btn .secondary__btn {
    width: 100%;
    height: 64px;
    font-size: 20px;
    margin-bottom: 10px;
  }
  .entry .entry__wrap .entry__lower-wrap {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .entry .entry__wrap .entry__lower-wrap p {
    font-size: 16px;
  }
  .entry .entry__wrap .entry__light-img {
    height: 160px;
    bottom: -16px;
  }
}
@media screen and (max-width: 768px) {
  .entry .entry__wrap {
    height: calc(580px - 5rem);
    padding-top: 3rem;
  }
  .entry .entry__wrap .entry__upper-wrap {
    flex-direction: column;
    gap: 1.5rem;
    width: auto;
    margin: 0 1rem;
    margin-bottom: 2rem;
  }
  .entry .entry__wrap .entry__upper-wrap .entry__caption-wrap .entry__caption-en {
    font-size: 96px;
    margin-bottom: 3px;
  }
  .entry .entry__wrap .entry__upper-wrap .entry__btn {
    margin-top: 0;
  }
  .entry .entry__wrap .entry__upper-wrap .entry__btn .entry__btn-wrap {
    width: 100%;
    height: 65px;
    font-size: 18px;
    margin-bottom: 1rem;
  }
  .entry .entry__wrap .entry__upper-wrap .entry__btn .entry__btn-wrap .entry__btn-arrow {
    right: 48px;
  }
  .entry .entry__wrap .entry__upper-wrap .entry__btn .entry__btn-wrap .entry__btn-arrow .dli-chevron-round-right {
    width: 13px;
    height: 13px;
  }
  .entry .entry__wrap .entry__upper-wrap .entry__btn .entry__btn-wrap::after {
    background: #222222;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1;
  }
  .entry .entry__wrap .entry__upper-wrap .entry__btn .entry__btn-wrap:hover .entry__btn-arrow {
    right: 50px;
  }
  .entry .entry__wrap .entry__upper-wrap .entry__btn .entry__btn-wrap:hover::after {
    transform: scale(1, 1);
  }
  .entry .entry__wrap .entry__upper-wrap .entry__btn p {
    font-size: 14px;
    line-height: 150%;
  }
  .entry .entry__wrap .entry__upper-wrap .entry__btn .secondary__btn {
    width: 100%;
    height: 65px;
    font-size: 18px;
    margin-bottom: 1rem;
  }
  .entry .entry__wrap .entry__lower-wrap {
    padding: 0.5rem 1rem;
  }
  .entry .entry__wrap .entry__lower-wrap p {
    font-size: 15px;
    line-height: 150%;
  }
  .entry .entry__wrap .entry__light-img {
    height: 100px;
    bottom: -10px;
  }
}

.contact {
  background-color: #fff;
  padding-top: 160px;
  padding-bottom: 5rem;
}
.contact .contact__wrap {
  max-width: 632px;
  width: 90%;
  margin: 0 auto;
  position: relative;
  border: 1px solid #3e3e3e;
  padding-top: 4rem;
  padding-bottom: 5rem;
}
.contact .contact__wrap .contact___caption-en {
  font-size: 96px;
  line-height: 100%;
  color: #022b4d;
  background-color: #fff;
  padding-left: 2rem;
  padding-right: 2rem;
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.contact .contact__wrap h4 {
  font-weight: 600;
  text-align: center;
  color: #022b4d;
  margin-bottom: 4rem;
}
.contact .contact__wrap .contact___content-inner {
  width: fit-content;
  margin: 0 auto;
}
.contact .contact__wrap .contact___content-inner .contact___content {
  display: flex;
  gap: 3rem;
}
.contact .contact__wrap .contact___content-inner .contact___content-txt {
  font-weight: 600;
  line-height: 170%;
  color: #3e3e3e;
  width: 150px;
}
.contact .contact__wrap .contact___content-inner .contact___content-subtxt {
  line-height: 170%;
  color: #3e3e3e;
}
.contact .contact__wrap .contact___content-inner .contact___content a {
  color: #3e3e3e;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact .contact__wrap .contact___content-inner .contact___content a::after {
  content: "";
  display: inline-block;
  background: url(../image/link-icon.png) 100% 100%/cover;
  width: 16px;
  height: 16px;
}
.contact .contact__wrap .contact___content-inner .contact___content:not(:last-of-type) {
  margin-bottom: 2rem;
}
@media screen and (max-width: 1023px) {
  .contact {
    padding-top: 8rem;
    padding-bottom: 4rem;
  }
  .contact .contact__wrap {
    width: 94%;
    padding-top: 3rem;
    padding-bottom: 4rem;
  }
  .contact .contact__wrap .contact___caption-en {
    font-size: 80px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    top: -2rem;
  }
  .contact .contact__wrap h4 {
    margin-bottom: 3rem;
  }
  .contact .contact__wrap .contact___content-inner .contact___content {
    gap: 2rem;
  }
  .contact .contact__wrap .contact___content-inner .contact___content a {
    gap: 8px;
  }
  .contact .contact__wrap .contact___content-inner .contact___content:not(:last-of-type) {
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .contact {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .contact .contact__wrap {
    width: auto;
    margin: 0 1.5rem;
    padding-top: 2rem;
    padding-bottom: 3rem;
    margin-top: 5rem;
    margin-bottom: 4rem;
  }
  .contact .contact__wrap .contact___caption-en {
    font-size: 64px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    top: -2rem;
  }
  .contact .contact__wrap h4 {
    margin-bottom: 1.5rem;
  }
  .contact .contact__wrap .contact___content-inner .contact___content {
    flex-direction: column;
    gap: 5px;
  }
  .contact .contact__wrap .contact___content-inner .contact___content-txt {
    line-height: 150%;
    width: auto;
  }
  .contact .contact__wrap .contact___content-inner .contact___content-subtxt {
    line-height: 150%;
  }
  .contact .contact__wrap .contact___content-inner .contact___content a {
    gap: 5px;
  }
  .contact .contact__wrap .contact___content-inner .contact___content a::after {
    width: 13px;
    height: 13px;
  }
  .contact .contact__wrap .contact___content-inner .contact___content:not(:last-of-type) {
    margin-bottom: 1rem;
  }
}

.company__wrap {
  background-color: #f2f2f2;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.company__wrap .company__caption-wrap {
  margin-bottom: 1.5rem;
}
.company__wrap .company__caption-wrap .company__caption-en {
  font-size: 80px;
  line-height: 100%;
  text-align: center;
  color: #022b4d;
  margin-bottom: 1rem;
}
.company__wrap .company__caption-wrap h5 {
  font-weight: 600;
  text-align: center;
  line-height: 170%;
  color: #022b4d;
}
.company__wrap .company__content-wrap {
  width: fit-content;
  margin: 0 auto;
}
.company__wrap .company__content-wrap .company__content {
  padding-bottom: 1rem;
  border-bottom: 1px solid #4e4e4e;
  display: flex;
  gap: 3rem;
}
.company__wrap .company__content-wrap .company__content .company__content-ttl {
  font-weight: 600;
  line-height: 170%;
  width: 60px;
  color: #4e4e4e;
}
.company__wrap .company__content-wrap .company__content .company__content-txt {
  line-height: 170%;
  color: #4e4e4e;
}
.company__wrap .company__content-wrap .company__content .company__content-txt-wrap p {
  display: flex;
  align-items: baseline;
  text-align: justify;
}
.company__wrap .company__content-wrap .company__content .company__content-txt-wrap p::before {
  content: "・";
}
.company__wrap .company__content-wrap .company__content .company__content-txt-wrap p:not(:last-of-type) {
  margin-bottom: 8px;
}
.company__wrap .company__content-wrap .company__content:last-of-type {
  border-bottom: none;
}
.company__wrap .company__content-wrap .company__content:not(:last-of-type) {
  margin-bottom: 1rem;
}
@media screen and (max-width: 1023px) {
  .company__wrap {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .company__wrap .company__caption-wrap .company__caption-en {
    font-size: 64px;
    margin-bottom: 0.5rem;
  }
  .company__wrap .company__content-wrap .company__content {
    gap: 3rem;
  }
  .company__wrap .company__content-wrap .company__content .company__content-txt-wrap p:not(:last-of-type) {
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 768px) {
  .company__wrap {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .company__wrap .company__caption-wrap {
    margin-bottom: 1.5rem;
  }
  .company__wrap .company__caption-wrap .company__caption-en {
    font-size: 64px;
    margin-bottom: 0.5rem;
  }
  .company__wrap .company__content-wrap {
    width: auto;
    margin: 0 1.5rem;
  }
  .company__wrap .company__content-wrap .company__content {
    padding-bottom: 10px;
    gap: 1rem;
  }
  .company__wrap .company__content-wrap .company__content .company__content-ttl {
    line-height: 150%;
    width: 60px;
  }
  .company__wrap .company__content-wrap .company__content .company__content-txt {
    line-height: 150%;
    flex: 1;
  }
  .company__wrap .company__content-wrap .company__content .company__content-txt-wrap {
    flex: 1;
  }
  .company__wrap .company__content-wrap .company__content .company__content-txt-wrap p:not(:last-of-type) {
    margin-bottom: 8px;
  }
  .company__wrap .company__content-wrap .company__content:last-of-type {
    border-bottom: none;
  }
  .company__wrap .company__content-wrap .company__content:not(:last-of-type) {
    margin-bottom: 10px;
  }
}

.copyright-wrap {
  background-color: #fff;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: center;
}
.copyright-wrap small {
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  color: #3e3e3e;
}
@media screen and (max-width: 1023px) {
  .copyright-wrap {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .copyright-wrap {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}

.sp__entry {
  display: none;
}
@media screen and (max-width: 1023px) {
  .sp__entry {
    display: block;
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 100;
    background-color: #022b4d;
    width: 120px;
    height: 120px;
    border-radius: 100px;
    border: 1px solid #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
  }
  .sp__entry a {
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    position: absolute;
    inset: 0;
    text-align: center;
    line-height: 120px;
  }
  .sp__entry a::after {
    content: "";
    display: inline-block;
    background-image: url(../image/entry-btn-light.png);
    background-size: cover;
    width: 15px;
    height: 24px;
    margin-left: 7px;
    vertical-align: sub;
  }
  .sp__entry:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 768px) {
  .sp__entry {
    bottom: 16px;
    right: 16px;
    width: 90px;
    height: 90px;
  }
  .sp__entry a {
    font-size: 16px;
    line-height: 90px;
  }
  .sp__entry a::after {
    width: 12px;
    height: 19px;
  }
}