@charset "UTF-8";
@media screen and (max-width: 1024px) {
  .l-header-wrap{
    background-color: #fff;
  }
}
body.modal {
  position: fixed;
  width: 100%;
}
@media screen and (max-width: 768px) {
  main{
    padding-top: 60px;
  }
}

#pageMain{
  background-color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.l-footer{
  position: relative;
  z-index: 1;
}

.font-teko{
  font-family: "Teko", sans-serif;
}

#pageMain .sp{
  display: none;
}
@media screen and (max-width: 768px) {
  #pageMain .sp{
    display: block;
  }
  #pageMain br.sp{
    display: initial;
  }
  #pageMain .pc{
    display: none;
  }
}

.cw01{
  padding-left: 60px;
  padding-right: 60px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .cw01{
    padding-left: 4.8vw;
    padding-right: 4.8vw;
  }
}

.common_section_style{
  position: relative;
}

.h201{
  text-align: center;
}

.h202{
  display: flex;
  flex-direction: column;
  text-align: center;
}

.h202 .en{
  font-size: 90px;
  font-weight: 400;
  letter-spacing: 0.18em;
}
.h202 .jp{
  font-size: 22px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .h202 .en{
    font-size: 13.3333vw;
    letter-spacing: 0.15em;
  }
  .h202 .jp{
    font-size: 4.2667vw;
  }
}


.text_loop_box{
  font-size: 400px;
  line-height: 1;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.15);
  letter-spacing: 0.17em;
  position: absolute;
  overflow: hidden;
  display: flex;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}

.text_loop_box .loop_item{
  flex-shrink: 0;
  white-space: nowrap;
}

.text_loop_box .loop_item:nth-child(odd){
  animation: MoveLeft 60s -30s infinite linear;
}
.text_loop_box .loop_item:nth-child(even){
  animation: MoveLeft2 60s infinite linear;
}

@keyframes MoveLeft {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes MoveLeft2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

@media screen and (max-width: 768px) {
  .text_loop_box{
    font-size: 33.3333vw;
  }
}


.main_container{
  position: relative;
  z-index: 1;
}

.infoenginee_link_btn{
  display: inline-block;
  width: 450px;
  height: 90px;
  border: 1px solid #fff;
  border-radius: 45px;
  padding: 0 20px;
}

.infoenginee_link_btn_inner{
  display: flex;
  align-items: center;
  height: 100%;
}

.infoenginee_link_btn .text{
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  width: calc(100% - 50px);
  transition: all 0.3s;
}
.infoenginee_link_btn .icon{
  width: 50px;
  height: 50px;
  display: block;
  position: relative;
}
.infoenginee_link_btn .icon .circle{
  border-radius: 100%;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgb(31,41,49);
  background-image: linear-gradient(90deg, rgba(50,59,67,1) 0%, rgba(255,255,255,1) 100%);
  transition: all 0.3s;
  position: relative;
  z-index: 1;
  transform: scale(1);
  transition: all 0.15s 0.15s;
}
.infoenginee_link_btn .icon::before{
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background-color: #00f900;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: -15px;
  transform: translateX(0);
  transition: all 0.3s;
}
.infoenginee_link_btn .icon::after{
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  background-color: #00f900;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  z-index: 2;
  top: calc(50% - 4.5px);
  left: calc(50% - 4.5px);
  transform: translateX(0);
  transition: all 0.3s;
}

@media (hover: hover) {
  .infoenginee_link_btn:hover .text{
    color: #00f900;
  }
  .infoenginee_link_btn:hover .icon .circle{
    transform: scale(1.1);
  }
  .infoenginee_link_btn:hover .icon::before,
  .infoenginee_link_btn:hover .icon::after{
    transform: translateX(5px);
  }
}

@media screen and (max-width: 768px) {
  .infoenginee_link_btn{
    width: 80vw;
    height: 13.3333vw;
    border-radius: 6.6667vw;
    padding: 0 3.2vw;
  }
  .infoenginee_link_btn .text{
    font-size: 3.4667vw;
    width: calc(100% - 8vw);
  }
  .infoenginee_link_btn .icon{
    width: 8vw;
    height: 8vw;
  }
  .infoenginee_link_btn .icon::before{
    width: 4.8vw;
    left: -2.4vw;
  }
  .infoenginee_link_btn .icon::after{
    width: 1.4667vw;
    height: 1.4667vw;
    top: calc(50% - 0.7333vw);
    left: calc(50% - 0.7333vw);
  }
}

.infoenginee_link_btn02{
  display: inline-block;
  width: 450px;
  height: 90px;
  background-color: rgba(31,41,49,1);
  transition: all 0.3s;
  border-radius: 45px;
  padding: 0 20px;
}

.infoenginee_link_btn02_inner{
  display: flex;
  align-items: center;
  height: 100%;
}

.infoenginee_link_btn02 .text{
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  width: calc(100% - 50px);
  text-align: center;
  transition: all 0.3s;
}
.infoenginee_link_btn02 .icon{
  width: 50px;
  height: 50px;
  display: block;
  position: relative;
}
.infoenginee_link_btn02 .icon .circle{
  border-radius: 100%;
  width: 100%;
  height: 100%;
  display: block;
  background-color: #fff;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}
.infoenginee_link_btn02 .icon .icon-pdf{
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-image: url(../img/academics/gakubuinfoenginee/2408/icon_pdf.png);
  background-size: 23px 28px;
  background-repeat: no-repeat;
  background-position: center center;
  transform: scale(1);
  transition: all 0.3s;
}
@media (hover: hover) {
  .infoenginee_link_btn02:hover{
    background-color: rgba(31,41,49,0.9);
  }
  .infoenginee_link_btn02:hover .icon .circle{
    transform: scale(1.1);
  }
}

@media screen and (max-width: 768px) {
  .infoenginee_link_btn02{
    width: 80vw;
    height: 13.3333vw;
    border-radius: 6.6667vw;
    padding: 0 3.2vw;
  }
  .infoenginee_link_btn02 .text{
    font-size: 3.4667vw;
    width: calc(100% - 8vw);
  }
  .infoenginee_link_btn02 .icon{
    width: 8vw;
    height: 8vw;
  }
  .infoenginee_link_btn02 .icon .icon-pdf{
    background-size: 3.8667vw 4.5333vw;
  }
}



/* mv */
.mv_video_box{
  width: 100%;
  height: calc(56.4583vw - 15vw);
  min-height: 600px;
  position: fixed;
  top: 135px;
  left: 0;
  z-index: 0;
}
@media screen and (max-width: 1280px) {
  .mv_video_box{
    top: 75px;
  }
}
@media screen and (max-width: 1180px) {
  .mv_video_box{
    top: 75px;
  }
}
@media screen and (max-width: 1024px) {
  .mv_video_box{
    top: 60px;
  }
}
@media screen and (max-width: 996px) {
  .mv_video_box{
    width: 996px;
    height: 550px;
    min-height: auto;
  }
}
@media screen and (max-width: 768px) {
  .mv_video_box{
    width: 100%;
    height: 54vh;
    min-height: auto;
    top: 60px;
  }
}
.mv_video_box_inner{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mv_video_box_inner video{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}
.mv_video_box_inner img {
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .mv_video_box_inner video{
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .mv_video_box_inner video{
    width: 200%;
  }
}

.mv_area{
  width: 100%;
  padding-top: 139px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1280px) {
  .mv_area{
    padding-top: 75px;
  }
}
@media screen and (max-width: 1024px) {
  .mv_area{
    padding-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .mv_area{
    padding-top: 0;
  }
}

.mv_area_text_block{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: calc(62.5vw - 15vw);
}

@media screen and (max-width: 1280px) {
  .mv_area_text_block{
    height: calc(53vw - 5vw);
  }
}
@media screen and (max-width: 996px) {
  .mv_area_text_block{
    height: 475px;
  }
}

.mv_area_text_block .mv_text01{
  order: 2;
  margin-top: 139px;
  margin-right: 5vw;
  width: auto;
  height: calc(100% + 110px);
}
.mv_area_text_block .mv_text02{
  order: 1;
  width: auto;
  height: min(300px,15.625vw);
  min-height: 240px;
}
.mv_area_text_block .mv_text01 img,
.mv_area_text_block .mv_text02 img{
  width: auto;
  height: 100%;
}

@media screen and (max-width: 1280px) {
  .mv_text01{
    margin-top: 75px;
  }
}
@media screen and (max-width: 1024px) {
  .mv_text01{
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .mv_area_text_block{
    display: block;
    height: 133.3vw;
    min-height: auto;
    padding-bottom: 17.6vw;
  }
  .mv_area_text_block .mv_text01{
    margin-top: 3.2vw;
    margin-right: 0;
    margin-left: calc(100% - 50.9333vw - 2px);
    width: 50.9333vw;
    height: auto;
  }
  .mv_area_text_block .mv_text02{
    margin-top: 8vw;
    margin-left: 2px;
    width: 56.3333vw;
    height: auto;
    min-height: auto;
  }
  .mv_area_text_block .mv_text01 img,
  .mv_area_text_block .mv_text02 img{
    width: 100%;
    height: auto;
  }
}

.mv_scroll{
  position: absolute;
  left: 2.5vw;
  bottom: 30px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px 0;
}
.mv_scroll .text{
  display: inline-block;
  writing-mode: vertical-lr;
  font-size: 24px;
  color: #fff;
}
.mv_scroll .ball{
  display: inline-block;
  position: relative;
  height: 60px;
  width: 10px;
  overflow: hidden;
}
.mv_scroll .ball::before{
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: rgb(81,98,101);
  background: linear-gradient(180deg, rgba(81,98,101,1) 0%, rgba(255,255,255,1) 100%);
  position: absolute;
  top: 0;
  left: 0;
  animation: mv_scroll 2s infinite;
}

@keyframes mv_scroll {
  0% {
    transform: translateY(-10px);
  }
  25% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(50px);
  }
}

@keyframes mv_scroll2 {
  0% {
    transform: translateY(-0.8333vw);
  }
  25% {
    transform: translateY(-0.8333vw);
  }
  100% {
    transform: translateY(4.1667vw);
  }
}

@keyframes mv_scroll3 {
  0% {
    transform: translateY(-2.1333vw);
  }
  25% {
    transform: translateY(-2.1333vw);
  }
  100% {
    transform: translateY(6.6667vw);
  }
}

@media screen and (max-width: 1200px) {
  .mv_scroll{
    bottom: 2.5vw;
    gap: 1.25vw 0;
  }
  .mv_scroll .text{
    font-size: 2vw;
  }
  .mv_scroll .ball{
    height: 5vw;
    width: 0.8333vw;
  }
  .mv_scroll .ball::before{
    width: 0.8333vw;
    height: 0.8333vw;
    animation: mv_scroll2 2s infinite;
  }

}

@media screen and (max-width: 768px) {
  .mv_scroll{
    left: auto;
    right: 4.2vw;
    bottom: 4vw;
    gap: 2vw 0;
  }
  .mv_scroll .text{
    font-size: 4.5333vw;
  }
  .mv_scroll .ball{
    height: 12vw;
    width: 2.1333vw;
  }
  .mv_scroll .ball::before{
    width: 2.1333vw;
    height: 2.1333vw;
    animation: mv_scroll3 2s infinite;
  }

}

/* section01 */
.section01{
  background-color: #1f2931;
  padding-top: 375px;
  padding-bottom: 130px;
  overflow: hidden;
}

.section01 .text_loop_box{
  top: 130px;
  left: 0;
  z-index: 3;
}

.section01_obj1{
  position: absolute;
  top: -844px;
  left: 0;
  z-index: 1;
}
.section01_obj2{
  position: absolute;
  top: 300px;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 527px;
  overflow: hidden;
}
.section01_obj2 img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.section01_inner{
  max-width: 1340px;
  position: relative;
  z-index: 4;
  color: #fff;
}

.section01_contents{
  display: flex;
  justify-content: space-between;
  margin-top: 90px;
}

.section01_text_box{
  width: 38%;
  padding-top: 145px;
}

.section01_text_box p{
  font-size: 18px;
  font-weight: 500;
  line-height: 2.4;
}

@media screen and (max-width: 1260px) {
  .section01_text_box p .b2{
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .section01_text_box p .b1{
    display: none;
  }
}

.section01_img_box{
  width: 61.6%;
  position: relative;
  left: 55px;
}

.section01_img figcaption{
  margin-top: 18px;
  font-size: 13px;
}

.section01_img figcaption a{
  color: #fff;
  text-decoration: underline;
}
.section01_img figcaption a:hover{
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .section01{
    padding-top: 28.6667vw;
    padding-bottom: 21.3333vw;
  }
  .section01 .text_loop_box{
    top: 10.0vw;
  }
  .section01_obj1{
    top: -60vw;
  }
  .section01_obj2{
    top: 20vw;
    height: 36.9333vw;
  }
  .section01_inner .h201 img{
    width: 62.1333vw;
  }
  .section01_contents{
    display: block;
    margin-top: 12vw;
  }
  .section01_text_box{
    width: 100%;
    padding-top: 0;
  }
  .section01_text_box p{
    font-size: 3.7333vw;
  }
  .section01_img_box{
    width: 100%;
    position: static;
    margin-top: 6.4vw;
  }
  .section01_img figcaption{
    margin-top: 4.2667vw;
    font-size: 3.0667vw;
  }

}

/* section02 */
.section02_header{
  padding-top: 180px;
  padding-bottom: 170px;
}
@media screen and (max-width: 768px) {
  .section02_header{
    padding-top: 20vw;
    padding-bottom: 18vw;
  }
  .section02_header .h201 img{
    width: 74vw;
  }
}

.section02_main_block{
  padding-top: 165px;
  padding-bottom: 240px;
  background-color: #1f2931;
  overflow: hidden;
  position: relative;
  color: #fff;
}

.section02_main_block .cw01{
  max-width: 1880px;
}

.section02_obj{
  position: absolute;
  top: -844px;
  left: 0;
  z-index: 1;
}

.section02_inner{
  position: relative;
  z-index: 2;
}

.section02_contents{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 135px;
  padding-top: 135px;
  padding-bottom: 135px;
}

.section02_text_box1 h3{
  font-size: 44px;
  line-height: 1.8;
  font-weight: 700;
}

.section02_text_box2 p{
  font-size: 16px;
  line-height: 2.25;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .section02_main_block{
    padding-top: 14.6667vw;
    padding-bottom: 24.6667vw;
  }
  .section02_obj{
    top: -60vw;
  }
  .section02_contents{
    display: block;
    padding-top: 19.7333vw;
    padding-bottom: 21.3333vw;
  }
  .section02_text_box2{
    margin-top: 10vw;
  }
  .section02_text_box1 h3{
    font-size: 7.2vw;
    text-align: center;
    line-height: 1.48;
  }
  .section02_text_box2 p{
    font-size: 3.4667vw;
  }
}

/* section03 */
.section03{
  overflow: hidden;
}

.section03_obj{
  position: absolute;
  top: -600px;
  right: 0;
  z-index: 1;
}

.section03 .text_loop_box{
  top: 100px;
  left: 0;
  z-index: 3;
}

.section03_polygon01{
  width: 100%;
  height: 450px;
  background-color: #1f2931;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.section03_header{
  height: 450px;
  padding-top: 225px;
  position: relative;
  z-index: 5;
}

@media screen and (max-width: 768px) {
  .section03_obj{
    top: -40vw;
  }
  .section03 .text_loop_box{
    top: 18.6667vw;
  }
  .section03_polygon01{
    height: 60vw;
  }
  .section03_header{
    height: 60vw;
    padding-top: 34.2667vw;
  }
  .section03_header img{
    width: 33.7333vw;
  }
}

.section03_main_block{
  display: flex;
}

.section03_contents{
  max-width: 1248px;
  position: relative;
  padding-bottom: 255px;
}

.section03_contents_img{
  background: #1f2931;
}

.section03_polygon02{
  width: calc((100% - 1248px) / 2);
  background-color: #1f2931;
}

@media screen and (max-width: 1248px) {
  .section03_polygon02{
    width: 0;
  }
}

.section03_polygon03{
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 100%;
  background-color: #1f2931;
}
.section03_polygon04{
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 100%;
  background-color: #1f2931;
}
.section03_polygon05{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 255px;
  background-color: #1f2931;
}

.section03_text_block{
  position: absolute;
  top: 0;
  left: 60px;
  width: 100%;
  max-width: 1128px;
  height: 100%;
}

.section03_text_item{
  position: absolute;
}

.section03_text_item.item01{
  top: 412px;
  left: 40px;
}
.section03_text_item.item02{
  top: 646px;
  left: 598px;
}
.section03_text_item.item03{
  top: 1138px;
  left: 40px;
}
.section03_text_item.item04{
  top: 1386px;
  left: 598px;
}
.section03_text_item.item05{
  top: 1842px;
  left: 40px;
}

.section03_img{
  display: none;
}

@media screen and (max-width: 768px) {
  .section03_contents{
    width: 100%;
    padding-bottom: 0;
  }
  .section03_polygon03{
    width: 4.8vw;
  }
  .section03_polygon04{
    width: 4.8vw;
  }
  .section03_polygon05{
    display: none;
  }

  .section03_contents_img{
    display: none;
  }
  .section03_text_block{
    position: static;
  }

  .section03_text_item{
    position: static;
  }

  .section03_img{
    display: flex;
    text-align: center;
    position: relative;
    background: #1f2931;
  }
  .section03_img::before,
  .section03_img::after{
    content: "";
    display: block;
    background-color: #1f2931;
  }
}

.section03_text{
  display: flex;
  gap: 0 22px
}
.section03_text .text{
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  padding-top: 26px;
}

.section03_text_link{
  margin-top: 25px;
}
.section03_text_link_inner{
  display: flex;
  align-items: center;
  gap: 0 30px
}
.section03_text_link a{
  display: inline-block;
}
.section03_text_link a .text{
  font-size: 18px;
  color: #fff;
  transition: all 0.3s;
}
.section03_text_link a .icon{
  width: 84px;
  height: 84px;
  display: block;
  position: relative;
}
.section03_text_link a .icon .circle{
  border-radius: 100%;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgb(31,41,49);
  background-image: linear-gradient(135deg, rgba(31,41,49,1) 20%, rgba(19,123,30,1) 50%, rgba(0,249,0,1) 85%, rgba(0,249,0,1) 100%);
  transition: all 0.3s;
  position: relative;
  z-index: 1;
  transform: scale(1);
  transition: all 0.15s 0.15s;
}
.section03_text_link a .icon::before{
  content: "";
  display: block;
  width: 55px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: -22.5px;
  transform: translateX(0);
  transition: all 0.3s;
}
.section03_text_link a .icon::after{
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  z-index: 2;
  top: calc(50% - 6px);
  left: calc(50% - 5.5px);
  transform: translateX(0);
  transition: all 0.3s;
}

.section03_text_item.item01 .section03_text_link,
.section03_text_item.item03 .section03_text_link,
.section03_text_item.item05 .section03_text_link{
  margin-left: 130px;
}
.section03_text_item.item02 .section03_text_link,
.section03_text_item.item04 .section03_text_link{
  margin-left: 225px;
}

@media (hover: hover) {
  .section03_text_link a:hover .text{
    color: #00f900;
  }
  .section03_text_link a:hover .icon .circle{
    transform: scale(1.05);
  }
  .section03_text_link a:hover .icon::before,
  .section03_text_link a:hover .icon::after{
    transform: translateX(5px);
  }
}

.section03_link_btn_block{
  padding-top: 60px;
  padding-bottom: 120px;
  background-color: #1f2931;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 60px;
}

.section03_link_btn_block .cw01 {
    margin: 0;
    padding-right: 0;
    padding-left: 0;
}

@media screen and (max-width: 1024px) {
  .section03_link_btn_block{
    flex-direction: column;
  }
}

@media screen and (max-width: 1248px) {
  .section03_text_item.item01{
    top: 33.0128vw;
    left: 3.2052vw;
  }
  .section03_text_item.item02{
    top: 51.7628vw;
    left: 47.9167vw;
  }
  .section03_text_item.item03{
    top: 91.1859vw;
    left: 3.2052vw;
  }
  .section03_text_item.item04{
    top: 111.0577vw;
    left: 47.9167vw;
  }
  .section03_text_item.item05{
    top: 147.5962vw;
    left: 3.2052vw;
  }
  .section03_text{
    gap: 0 1.6827vw
  }
  .section03_text .text{
    font-size: 2.7244vw;
    padding-top: 2.0833vw;
  }
  .section03_text_link{
    margin-top: 0.5vw;
  }

  .section03_text_item.item01 .section03_text .num img{
    width: 6.4904vw;
  }
  .section03_text_item.item02 .section03_text .num img{
    width: 7.4519vw;
  }
  .section03_text_item.item03 .section03_text .num img{
    width: 7.4519vw;
  }
  .section03_text_item.item04 .section03_text .num img{
    width: 6.4904vw;
  }
  .section03_text_item.item05 .section03_text .num img{
    width: 6.4904vw;
  }

  .section03_text_link_inner{
    gap: 0 2.4038vw;
  }
  .section03_text_link a .text{
    font-size: 1.4423vw;
  }
  .section03_text_link a .icon{
    width: 6.7308vw;
    height: 6.7308vw;
  }
  .section03_text_link a .icon::before{
    width: 4.4071vw;
    left: -2.2035vw;
  }
  .section03_text_link a .icon::after{
    width: 0.9615vw;
    height: 0.9615vw;
    top: calc(50% - 0.4808vw);
    left: calc(50% - 0.4808vw);
  }
}

@media screen and (max-width: 768px) {
  .section03_text{
    flex-direction: column;
    gap: 0 22px
  }
  .section03_text .num{
    background-color: #1f2931;
    text-align: center;
  }
  .section03_text_block .section03_text_item .section03_text .num{
    padding-top: 9vw;
  }
  .section03_text_block .section03_text_item:first-child .section03_text .num{
    padding-top: 0;
  }

  .section03_text .text{
    font-size: 5.8667vw;
    line-height: 1.32;
    padding-top: 3.6vw;
    text-align: center;
    background-color: #1f2931;
  }

  .section03_text_link{
    background-color: #1f2931;
    margin-top: 0;
    padding-top: 4.8vw;
    text-align: center;
  }

  .section03_text_item.item01 .section03_text_link,
  .section03_text_item.item03 .section03_text_link,
  .section03_text_item.item05 .section03_text_link{
    margin-left: 0;
  }
  .section03_text_item.item02 .section03_text_link,
  .section03_text_item.item04 .section03_text_link{
    margin-left: 0;
  }

  .section03_text_item.item01 .section03_text .num{
    padding-bottom: 3.2vw;
  }
  .section03_text_item.item01 .section03_text .num img{
    width: 10.8vw;
  }
  .section03_text_item.item02 .section03_text .num{
    padding-bottom: 3.2vw;
  }
  .section03_text_item.item02 .section03_text .num img{
    width: 12.4vw;
  }
  .section03_text_item.item03 .section03_text .num{
    padding-bottom: 1.6vw;
  }
  .section03_text_item.item03 .section03_text .num img{
    width: 12.4vw;
  }
  .section03_text_item.item04 .section03_text .num{
    padding-bottom: 4vw;
  }
  .section03_text_item.item04 .section03_text .num img{
    width: 10.8vw;
  }
  .section03_text_item.item05 .section03_text .num{
    padding-bottom: 3.2vw;
  }
  .section03_text_item.item05 .section03_text .num img{
    width: 10.8vw;
  }

  .section03_text_item.item01 .section03_text .section03_img img{
    width: 76.4vw;
  }
  .section03_text_item.item01 .section03_text .section03_img::before,
  .section03_text_item.item01 .section03_text .section03_img::after{
    width: calc((100% - 76.4vw) / 2);
  }
  .section03_text_item.item02 .section03_text .section03_img img{
    width: 59.4667vw;
  }
  .section03_text_item.item02 .section03_text .section03_img::before,
  .section03_text_item.item02 .section03_text .section03_img::after{
    width: calc((100% - 59.4667vw) / 2);
  }
  .section03_text_item.item03 .section03_text .section03_img img{
    width: 68.2667vw;
  }
  .section03_text_item.item03 .section03_text .section03_img::before,
  .section03_text_item.item03 .section03_text .section03_img::after{
    width: calc((100% - 68.2667vw) / 2);
  }
  .section03_text_item.item04 .section03_text .section03_img img{
    width: 53.0667vw;
  }
  .section03_text_item.item04 .section03_text .section03_img::before,
  .section03_text_item.item04 .section03_text .section03_img::after{
    width: calc((100% - 53.0667vw) / 2);
  }
  .section03_text_item.item05 .section03_text .section03_img img{
    width: 61.0667vw;
  }
  .section03_text_item.item05 .section03_text .section03_img::before,
  .section03_text_item.item05 .section03_text .section03_img::after{
    width: calc((100% - 61.0667vw) / 2);
  }

  .section03_text_link_inner{
    gap: 0 5.3333vw;
  }
  .section03_text_link a .text{
    font-size: 3.7333vw;
  }
  .section03_text_link a .icon{
    width: 14.1333vw;
    height: 14.1333vw;
  }
  .section03_text_link a .icon::before{
    width: 9.3333vw;
    left: -4.6667vw;
  }
  .section03_text_link a .icon::after{
    width: 2vw;
    height: 2vw;
    top: calc(50% - 1vw);
    left: calc(50% - 1vw);
  }

  .section03_link_btn_block{
    padding-top: 9.3333vw;
    padding-bottom: 18vw;
    gap: 30px;
  }
}


/* section04 */
.section04{
  padding-top: 150px;
  padding-bottom: 160px;
  background-color: #192229;
  overflow: hidden;
}

.section04_obj1{
  position: absolute;
  top: -844px;
  left: 0;
  z-index: 1;
}

.section04_contents{
  color: #fff;
  text-align: center;
  max-width: 1320px;
  position: relative;
  z-index: 2;
}

.section04_text01{
  font-size: 16px;
  line-height: 2.25;
  font-weight: 500;
  margin-top: 85px;
}

.section04_list{
  display: flex;
  flex-wrap: wrap;
  gap: 50px 40px;
  margin-top: 90px;
}
.section04_list li{
  width: calc((100% - 120px) / 4);
}

@media screen and (max-width: 768px) {
  .section04{
    padding-top: 16.5333vw;
    padding-bottom: 23.2vw;
  }
  .section04_obj1{
    top: -60vw;
  }
  .section04_text01{
    font-size: 3.4667vw;
    margin-top: 9.6vw;
    text-align: left;
  }

  .section04_list{
    gap: 4.6667vw 5.6vw;
    margin-top: 6.4vw;
    justify-content: center;
  }
  .section04_list li{
    width: calc((100% - 11.2vw) / 2);
  }
}

/* section05 */
.section05{
  padding-top: 200px;
  padding-bottom: 100px;
  background-color: #151c24;
  background-image: url(../img/academics/gakubuinfoenginee/2408/section05_bg.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.section05_contents{
  color: #fff;
}

.section05_dean{
  position: relative;
  margin-top: 135px;
}

.section05_dean_en{
  width: 100%;
  max-width: 1739px;
  position: absolute;
  z-index: 1;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
}

.section05_dean_img_block{
  position: relative;
  z-index: 2;
  max-width: 1440px;
}

.section05_dean_img{
  position: relative;
  z-index: 1;
  text-align: center;
}
.section05_text01{
  position: absolute;
  z-index: 2;
  top: -160px;
  left: 208px;
}
.section05_text_list{
  position: absolute;
  z-index: 2;
  top: 310px;
  right: 60px;
  text-align: right;
}

.section05_text_list li:nth-child(2){
  margin-right: 88px;
  margin-top: 42px;
}
.section05_text_list li:nth-child(3){
  margin-right: 235px;
  margin-top: 42px;
}

.section05_person{
  display: flex;
  flex-direction: column;
  gap: 20px 0;
  text-align: center;
}

.section05_person .text01{
  font-size: 80px;
  font-weight: 700;
  display: inline-block;
  position: relative;
  padding-bottom: 15px;
}
.section05_person .text01::after{
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: calc(50% - 25px);
  background-color: #fff;
}
.section05_person .text02{
  font-size: 20px;
  font-weight: 500;
}

.section05_link_btn_block{
  text-align: center;
  margin-top: 64px;
}

.section05_profile{
  max-width: 616px;
  margin: 40px auto 0;
  padding: 25px 85px;
  background-color: rgb(28,66,97);
  background-image: linear-gradient(135deg, rgba(28,66,97,1) 0%, rgba(24,43,61,1) 100%);
}

.section05_profile{
  display: flex;
}
.section05_profile dt{
  font-size: 18px;
  width: 85px;
  font-weight: 700;
}
.section05_profile dd{
  font-size: 16px;
  font-weight: 500;
}
.section05_profile ul{
  position: relative;
}
.section05_profile ul::before{
  content: "";
  display: block;
  width: 1px;
  height: calc(100% - 1.2em);
  position: absolute;
  top: 0.8em;
  left: 4px;
  background-color: #00f900;
}
.section05_profile ul li{
  padding-left: 23px;
  position: relative;
  margin-top: 5px;
}
.section05_profile ul li:first-child{
  margin-top: 0;
}
.section05_profile ul li::before{
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #00f900;
  border-radius: 100%;
  position: absolute;
  top: 0.6em;
  left: 0;
}

@media screen and (max-width: 1440px) {
  .section05_text01{
    top: -11.1111vw;
    left: 14.4444vw;
  }
  .section05_text01 img{
    width: 19.3056vw;
  }
  .section05_text_list{
    top: 21.5278vw;
    right: 60px;
  }
  .section05_text_list li:nth-child(1) img{
    width: 21.25vw;
  }
  .section05_text_list li:nth-child(2){
    margin-right: 6.1111vw;
    margin-top: 2.9167vw;
  }
  .section05_text_list li:nth-child(2) img{
    width: 21.25vw;
  }
  .section05_text_list li:nth-child(3){
    margin-right: 16.3194vw;
    margin-top: 2.9167vw;
  }
  .section05_text_list li:nth-child(3) img{
    width: 18.125vw;
  }
}

@media screen and (max-width: 768px) {
  .section05{
    padding-top: 18.6667vw;
    padding-bottom: 22.6667vw;
    background-image: url(../img/academics/gakubuinfoenginee/2408/sp/section05_bg.jpg);
    background-size: cover;
  }
  .section05_dean{
    margin-top: 43.6vw;
  }
  .section05_dean_en{
    width: 83.8667vw;
    top: -4.2667vw;
  }
  .section05_text01{
    top: -31.4667vw;
    left: 2.8vw;
  }
  .section05_text01 img{
    width: 32.4vw;
  }
  .section05_dean_img{
    width: calc(100% + 4.8vw);
    left: -4.8vw;
  }
  .section05_text_list{
    position: static;
    width: 72.4vw;
    margin: 8vw auto 0;
  }

  .section05_text_list li:nth-child(1){
    margin-top: 0;
    text-align: left;
  }
  .section05_text_list li:nth-child(1) img{
    width: 56.3333vw;
  }
  .section05_text_list li:nth-child(2){
    margin-right: 0;
    margin-top: 6.4vw;
  }
  .section05_text_list li:nth-child(2) img{
    width: 56.5333vw;
  }
  .section05_text_list li:nth-child(3){
    margin-right: 0;
    margin-top: 6.4vw;
    text-align: left;
  }
  .section05_text_list li:nth-child(3) img{
    width: 48.2667vw;
  }

  .section05_person{
    gap: 2.8vw 0;
  }

  .section05_person .text01{
    font-size: 10.6667vw;
    padding-bottom: 2.8vw;
  }
  .section05_person .text01::after{
    width: 6.6667vw;
    height: 2px;
    left: calc(50% - 3.3333vw);
  }
  .section05_person .text02{
    font-size: 4vw;
  }

  .section05_link_btn_block{
    margin-top: 10.1333vw;
  }

  .section05_profile{
    max-width: 616px;
    width: calc(100% - 9.6vw);
    margin: 11.7333vw auto 0;
    padding: 5.0667vw 4.2667vw;
  }
  .section05_profile dt{
    font-size: 3.7333vw;
    width: 10.9333vw;
  }
  .section05_profile dd{
    font-size: 3.4667vw;
  }
  .section05_profile ul::before{
    height: calc(100% - 1.2em);
    top: 0.8em;
    left: 3px;
  }
  .section05_profile ul li{
    padding-left: 3.8667vw;
    margin-top: 1.0667vw;
  }
  .section05_profile ul li::before{
    width: 7px;
    height: 7px;
    top: 0.6em;
    left: 0;
  }

}

/* section06 */
.section06{
  padding-top: 120px;
  background-color: #fff;
}

.section06_contents{
  text-align: center;
  max-width: 1320px;
}

.section06_text01{
  font-size: 16px;
  line-height: 2.25;
  font-weight: 500;
  margin-top: 55px;
}

.section06_course_block{
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  margin-top: 45px;
}

.section06_course{
  max-width: 1880px;
}

.section06_course_inner{
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  display: flex;
}

.section06_course_item{
  width: 50%;
  padding: 80px 85px 90px;
}

.section06_course_inner .section06_course_item:first-child{
  border-right: 1px solid #ccc;
}

.section06_course_img{
  text-align: center;
  height: 496px;
}

.section06_course_item .section06_course_img{
margin: 0 -62px;
}

.section06_course_lead{
  font-size: 32px;
  font-weight: 700;
  line-height: 1.375;
  margin-top: 65px;
}

.section06_course_text01{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  margin-top: 40px;
}

.section06_course_item.item01 .section06_course_lead .b3{
  display: none;
}

@media screen and (max-width: 1702px) {
  .section06_course_item.item02 .section06_course_lead{
    padding: 0 0 1.375em;
  }
}
@media screen and (max-width: 1440px) {
  .section06_course_item{
    padding: 5.5556vw 5.9028vw 6.25vw;
  }
  .section06_course_img{
    height: 34.4444vw;
  }
  .section06_course_item.item01 img{
    /* width: 31.1806vw; */
    width: calc((614 / 1440) * 100vw);
  }
  .section06_course_item.item02 img{
    width: 31.25vw;
  }
}
@media screen and (max-width: 1374px) {
  .section06_course_item.item02 .section06_course_lead{
    padding: 0;
  }
}
@media screen and (max-width: 1271px) {
  .section06_course_item.item02 .section06_course_lead{
    padding: 0 0 1.375em;
  }
}
@media screen and (max-width: 1263px) {
  .section06_course_item.item02 .section06_course_lead .b1{
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .section06_course.cw01{
    padding: 0;
  }

  .section06_course_inner{
    flex-direction: column;
    border-left: none;
    border-right: none;
  }
  .section06_course_inner .section06_course_item:first-child{
    border-right: none;
  }
  .section06_course_item{
    width: 100%;
    padding: 0 5.9028vw 0;
  }
  .section06_course_item.item02{
    border-top: 1px solid #ccc;
  }
  .section06_course_item_inner{
    padding: 5.5556vw 4.8vw 6.25vw;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    max-width: 800px;
    margin: 0 auto;
  }
  .section06_course_img{
    height: auto;
    text-align: center;
  }

  .section06_course_item .section06_course_img {
    margin: 0;
  }
  
  .section06_course_item.item01 .section06_course_img img{
    width: calc(85.3vw * 0.7);
  }
  .section06_course_item.item02 .section06_course_img img{
    width: calc(66vw * 0.7);
  }
  .section06_course_item.item02 .section06_course_lead{
    padding: 0 0;
  }
  .section06_course_item.item01 .section06_course_lead .b2{
    display: none;
  }
  .section06_course_item.item01 .section06_course_lead .b3{
    display: initial;
  }
  .section06_course_item.item02 .section06_course_lead .b1{
    display: initial;
  }
}
@media screen and (max-width: 768px) {
  .section06{
    padding-top: 16.5333vw;
  }
  .section06_text01{
    font-size: 3.4667vw;
    margin-top: 11.2vw;
  }

  .section06_course_block{
    margin-top: 12vw;
  }

  .section06_course_item{
    padding: 0 4.8vw;
  }
  .section06_course_item_inner{
    padding: 17.6vw 4.8vw 15.7333vw;
  }

  .section06_course_item.item01 .section06_course_img img{
    width: 85.3vw;
  }
  .section06_course_item.item02 .section06_course_img img{
    width: 66vw;
  }
  .section06_course_lead{
    font-size: 5.6vw;
    margin-top: 8vw;
    text-align: center;
  }
  .section06_course_text01{
    font-size: 3.4667vw;
    margin-top: 4.5333vw;
  }

}

/* section07 */
.section07{
  padding-top: 120px;
  background-color: #fff;
}

.section07_contents{
  max-width: 1320px;
}

.section07_list{
  display: flex;
  gap: 0 40px;
  margin-top: 55px;
}

.section07_list li{
  width: calc((100% - 120px) / 4);
  background-color: #f4f4f4;
}
.section07_list li:nth-child(1){
  position: relative;
  z-index: 4;
}
.section07_list li:nth-child(2){
  position: relative;
  z-index: 3;
}
.section07_list li:nth-child(3){
  position: relative;
  z-index: 2;
}
.section07_list li:nth-child(4){
  position: relative;
  z-index: 1;
}

.section07_list_item_title{
  background-image: linear-gradient(90deg, rgba(33,99,131,1) 0%, rgba(113,191,188,1) 100%);
  color: #fff;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section07_list li:nth-child(1) .section07_list_item_title,
.section07_list li:nth-child(2) .section07_list_item_title,
.section07_list li:nth-child(3) .section07_list_item_title{
  width: calc(100% + 50px);
  clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 50%, calc(100% - 40px) 100%, 0 100%);
  padding-right: 50px;
}

.section07_list_item_title_inner{
  display: inline-block;
  position: relative;
  top: 0.5em
}
.section07_list_item_title_inner .text01{
  font-size: 60px;
  font-weight: 400;
}
.section07_list_item_title_inner .text02{
  font-size: 30px;
  font-weight: 700;
}

.section07_list_item_text_box{
  padding: 30px 20px;
}

.section07_list_item_text01{
  font-size: 26px;
  font-weight: 700;
  line-height: 1.38;
  text-align: center;
}

.section07_list li:nth-child(1) .section07_list_item_text01,
.section07_list li:nth-child(2) .section07_list_item_text01,
.section07_list li:nth-child(4) .section07_list_item_text01{
  padding: 0.7em 0;
}

.section07_list_item_text02{
  margin-top: 28px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.08em;
}
.section07_link_btn_block{
  text-align: center;
  margin-top: 40px;
}

@media screen and (max-width: 1260px) {
  .section07_list_item_text_box{
    padding: 30px 0;
  }
  .section07_list_item_text01{
    font-size: 2.0635vw;
  }
  .section07_list_item_text02{
    padding: 0 20px;
  }
}
@media screen and (max-width: 1024px) {
  .section07_list{
    flex-direction: column;
    gap: 4vw 0;
    margin-top: 6.6667vw;
  }
  .section07_list li{
    width: 100%;
    position: relative;
  }
  .section07_list_item_title{
    background-image: linear-gradient(180deg, rgba(33,99,131,1) 0%, rgba(113,191,188,1) 100%);
    width: 13.3333vw;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .section07_list_item_title_inner{
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .section07_list_item_title_inner .text02{
    writing-mode: vertical-lr;
  }
  .section07_list li:nth-child(1) .section07_list_item_title,
  .section07_list li:nth-child(2) .section07_list_item_title,
  .section07_list li:nth-child(3) .section07_list_item_title{
    width: 13.3333vw;
    height: calc(100% + 6.6667vw);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 5.3333vw), 50% 100%, 0 calc(100% - 5.3333vw));
    padding-bottom: 6.6667vw;
    padding-right: 0;
  }
  .section07_list_item_text_box{
    padding: 4vw 4vw 4vw 20vw;
  }
  .section07_list_item_text02{
    margin-top: 2vw;
  }
  .section07_list li:nth-child(1) .section07_list_item_text01,
  .section07_list li:nth-child(2) .section07_list_item_text01,
  .section07_list li:nth-child(4) .section07_list_item_text01{
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .section07{
    padding-top: 16vw;
  }
  .section07_list{
    gap: 5.3333vw 0;
    margin-top: 6.6667vw;
  }
  .section07_list_item_title_inner .text01{
    font-size: 9.3333vw;
  }
  .section07_list_item_title_inner .text02{
    font-size: 4.8vw;
  }
  .section07_list_item_text_box{
    padding: 6.2667vw 6.2667vw 6.2667vw 20vw;
  }
  .section07_list_item_text01{
    font-size: 4.8vw;
  }
  .section07_list_item_text02{
    font-size: 3.4667vw;
    margin-top: 4vw;
  }
}

/* section08 */
.section08{
  padding-top: 160px;
  padding-bottom: 218px;
  background-color: #fff;
}

.section08_contents{
  max-width: 1320px;
}

.section08_interview_block{
  display: flex;
  flex-wrap: wrap;
  gap: 60px 60px;
  margin-top: 55px;
}
.section08_interview_btn{
  width: calc((100% - 60px) / 2);
  padding: 0;
  height: 100%;
}

.section08_interview_title{
  margin-top: 30px;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.45;
}

.section08_interview_title .b2{
  display: none;
}

.section08_interview_info{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #171f26;
  margin-top: 45px;
  padding-bottom: 30px;
}

.section08_interview_info .icon{
  width: 70px;
  height: 70px;
  position: relative;
}
.section08_interview_info .icon .circle{
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #00f900;
  border-radius: 100%;
}
.section08_interview_info .icon .cross{
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section08_interview_info .icon .cross::before,
.section08_interview_info .icon .cross::after{
  content: "";
  display: block;
  background-color: #171f26;
  position: absolute;
}
.section08_interview_info .icon .cross::before{
  width: 15px;
  height: 3px;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.section08_interview_info .icon .cross::after{
  width: 3px;
  height: 15px;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.section08_interview_name{
  display: flex;
  align-items: center;
  gap: 15px 15px;
  width: calc(100% - 70px);
  flex-wrap: wrap;
}
.section08_interview_name .text01{
  font-size: 16px;
  line-height: 1;
  padding: 10px 20px;
  background-color: #f4f4f4;
  border-radius: 20px;
  white-space: nowrap;
}

.section08_interview_name .text02{
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.section08_interview_btn .section08_interview_img{
  overflow: hidden;
}
.section08_interview_btn .section08_interview_img img{
  transform: scale(1);
  transition: all 0.3s;
}
.section08_interview_btn .section08_interview_info .icon .cross{
  transform: rotate(0);
  transition: all 0.3s;
}

@media (hover: hover) {
  .section08_interview_btn:hover .section08_interview_img img{
    transform: scale(1.05);
  }
  .section08_interview_btn:hover .section08_interview_info .icon .cross{
    transform: rotate(90deg);
  }
  .section08_interview_btn:hover .section08_interview_info .icon .cross::after{
    top: 50%;
    left: 50%;
  }
}

@media screen and (max-width: 1280px) {
  .section08_interview_title .b1{
    display: none;
  }
}
@media screen and (max-width: 1160px) {
  .section08_interview_name{
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 10px
  }
}
@media screen and (max-width: 1024px) {
  .section08_interview_block{
    display: flex;
    flex-direction: column;
    gap: 8vw 0;
    max-width: 570px;
    margin-left: auto;
    margin-right: auto;
  }
  .section08_interview_btn{
    width: 100%;
    margin-top: 0;
  }
  .section08_interview_title .b1{
    display: initial;
  }
}
@media screen and (max-width: 768px) {
  .section08{
    padding-top: 29.3333vw;
    padding-bottom: 24.2667vw;
  }
  .section08_interview_block{
    gap: 18vw 0;
    margin-top: 10.6667vw;
  }
  .section08_interview_title{
    margin-top: 5.3333vw;
    font-size: 4.9vw;
  }
  .section08_interview_title .b2{
    display: inline;
  }

  .section08_interview_info{
    margin-top: 9.6vw;
    padding-bottom: 4.2667vw;
  }

  .section08_interview_info .icon{
    width: 12vw;
    height: 12vw;
  }
  .section08_interview_info .icon .cross::before{
    width: 2.8vw;
    height: 0.4vw;
  }
  .section08_interview_info .icon .cross::after{
    width: 0.4vw;
    height: 2.8vw;
  }
  .section08_interview_name{
    flex-direction: column;
    align-items: flex-start;
    gap: 2.8vw 1.4vw;
    width: calc(100%- 12vw);
  }
  .section08_interview_name .text01{
    font-size: 3.4667vw;
    padding: 2vw 2.8vw;
    border-radius: 8vw;
  }
  .section08_interview_name .text02{
    font-size: 3.7333vw;
    text-align: left;
  }
}


/* interview */
.modal_layer {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.modal_layer.open {
  opacity: 1;
  visibility: visible;
}


.interview_layer{
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  top: 0;
  left: 0;
}
.interview_bg{
  background-color: rgba(31,41,49,0.8);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.close_btn{
  position: absolute;
  top: 50px;
  right: 50px;
  z-index: 3;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  background-color: #00f900;
}
.close_btn .cross{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;;
  transform: rotate(45deg);
}
.close_btn .cross::before,
.close_btn .cross::after{
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background-color: #171f26;
  position: absolute;
  top: 0;
  left: 0;
}
.close_btn .cross::before{
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.close_btn .cross::after{
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
}

.interview_container{
  background-color: #fff;
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 90%;
  max-width: 1400px;
  height: 100%;
  overflow-y: scroll;
  transform: translateX(100%);
  transition: all 0.5s;
}
.modal_layer.open .interview_container{
  transform: translateX(0);
}

.modal-content{
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}
.modal-content.active {
  opacity: 1;
  position: static;
  visibility: visible;
}



.interview_item{
  padding: 135px 170px 135px 130px;
  background-image: url(../img/academics/gakubuinfoenginee/2408/text_interview.png);
  background-repeat: repeat-y;
  background-position: right top;
}

.interview_top{
  display: flex;
  align-items: center;
  gap: 0 50px;
}

.interview_img{
  width: 51.5%;
}

.interview_text{
  width: calc(100% - 51.5% - 50px);
}

.interview_title{
  font-size: 36px;
  line-height: 1.22;
  font-weight: 700;
}

.interview_name{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 50px;
}
.interview_name .text01{
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  padding: 10px 20px;
  border: 1px solid #171f26;
  border-radius: 20px;
}

.interview_name .text02{
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.interview_contents{
  margin-top: 75px;
  padding-left: 94px;
}

.interview_hl01{
  background-color: #f4f4f4;
  padding: 10px 46px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  position: relative;
}
.interview_hl01::before{
  content: "";
  display: block;
  width: 14px;
  height: 100%;
  background-color: rgb(47,114,140);
  background-image: linear-gradient(180deg, rgba(33,99,131,1) 0%, rgba(113,191,188,1) 100%);
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  position: absolute;
  top: 0;
  left: 0;
}

.interview_hl02{
  background-color: #f4f4f4;
  padding: 10px 46px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  background-color: rgb(33,99,131);
  background-image: linear-gradient(270deg, rgba(33,99,131,1) 0%, rgba(113,191,188,1) 100%);
  text-align: center;
}

.interview_contents p{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  padding: 0 25px;
}

.interview_contents .interview_hl01 + p{
  margin-top: 15px;
}
.interview_contents .interview_hl02 + p{
  margin-top: 25px;
}
.interview_contents p + .interview_hl01,
.interview_contents p + .interview_hl02{
  margin-top: 30px;
}

@media screen and (max-width: 1410px) {
  .interview_name{
    align-items: flex-start;
    flex-direction: column;
    gap: 10px 0;
  }
}
@media screen and (max-width: 1260px) {
  .interview_item{
    padding: 135px 13vw 135px 10vw;
  }
  .interview_contents{
    padding-left: 7vw;
  }
}
@media screen and (max-width: 1160px) {
  .interview_container{
    width: 96%;
  }
  .interview_item{
    padding: 135px 10vw 135px 7vw;
  }
  .interview_contents{
    padding-left: 4vw;
  }
}
@media screen and (max-width: 1024px) {
  .interview_top{
    flex-direction: column;
    gap: 0 4vw;
    padding: 0 7.2vw;
    max-width: calc(540px + 14.4vw);
    margin: 0 auto;
  }
  .interview_img{
    width: 100%;
  }
  .interview_text{
    width: 100%;
    margin-top: 4.4vw;
  }
  .interview_name{
    align-items: center;
    flex-direction: row;
    gap: 0 15px;
  }
}
@media screen and (max-width: 768px) {
  .close_btn{
    top: 3.2vw;
    right: 3.2vw;
    width: 13.3333vw;
    height: 13.3333vw;
  }
  .close_btn .cross::before,
  .close_btn .cross::after{
    width: 4.8vw;
    height: 0.4vw;
  }
  .interview_container{
    width: 100%;
  }
  .interview_item{
    padding: 16.6667vw 4vw 26.6667vw 4vw;
    background-size: 12vw auto;
  }
  .interview_title{
    font-size: 5.3333vw;
  }

  .interview_name{
    align-items: flex-start;
    flex-direction: column;
    gap: 2.8vw 0;
    margin-top: 7.6vw;
  }
  .interview_name .text01{
    font-size: 3.4667vw;
    padding: 2vw 2.8vw;
    border-radius: 8vw;
  }

  .interview_name .text02{
    font-size: 3.7333vw;
  }

  .interview_contents{
    margin-top: 8vw;
    padding-left: 0;
  }

  .interview_hl01{
    padding: 2.8vw 3.8vw 2.8vw 5vw;
    font-size: 4vw;
    clip-path: polygon(1.6vw 0, 100% 0, calc(100% - 1.6vw) 100%, 0 100%);
    position: relative;
  }
  .interview_hl01::before{
    width: 2.8vw;
    clip-path: polygon(1.6vw 0, 100% 0, calc(100% - 1.6vw) 100%, 0 100%);
  }

  .interview_hl02{
    padding: 2.8vw 5.0vw;
    font-size: 4vw;
    clip-path: polygon(1.6vw 0, 100% 0, calc(100% - 1.6vw) 100%, 0 100%);
  }

  .interview_contents p{
    font-size: 3.4667vw;
    padding: 0 4vw;
  }

  .interview_contents .interview_hl01 + p{
    margin-top: 4.8vw;
  }
  .interview_contents .interview_hl02 + p{
    margin-top: 4.8vw;
  }
  .interview_contents p + .interview_hl01,
  .interview_contents p + .interview_hl02{
    margin-top: 9.6vw;
  }
}

/* section09 */
.section09{
  padding-top: 285px;
  padding-bottom: 70px;
  overflow: hidden;
  background-color: #1f2931;
}

.section09_obj{
  position: absolute;
  top: -600px;
  right: 0;
  z-index: 1;
}

.section09 .text_loop_box{
  top: 150px;
  left: 0;
  z-index: 3;
}

.section09_contents{
  max-width: 1320px;
  display: flex;
  gap: 0 30px;
  color: #fff;
  position: relative;
  z-index: 5;
  margin-top: 175px;
}
.section09_left_box{
  width: calc(100% - 300px);
  display: flex;
  gap: 0 25px;
}
.section09_right_box{
  width: 270px;
}

.section09_list{
  padding-top: 15px;
}

.section09_list li{
  position: relative;
  padding-left: 25px;
  font-size: 16px;
  font-weight: 500;
  margin-top: 25px;
  line-height: 1.625;
}
.section09_list li:first-child{
  margin-top: 0;
}
.section09_list li::before{
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: #00f900;
  position: absolute;
  top: 0.6em;
  left: 0;
}

.section09_right_box{
  display: flex;
  flex-direction: column;
  gap: 35px 0;
}

.section09_contents02{
  max-width: 1320px;
  margin-top: 120px;
  color: #fff;
}
.section09_frame{
  max-width: 1060px;
  margin: 0 auto;
  background-color: rgb(31,42,58);
  background-image: linear-gradient(305deg, rgba(31,42,58,1) 0%, rgba(36,101,133,1) 100%);
  padding: 2px;
}
.section09_frame_title{
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  padding: 23px 25px 25px;
}
.section09_frame_inner{
  background-color: #1f2931;
  padding: 48px;
}
.section09_frame_inner .section09_list{
  display: flex;
  flex-wrap: wrap;
  gap: 20px 0;
  padding-top: 0;
}
.section09_frame_inner .section09_list li:nth-child(3n+1){
  width: 31%;
  margin-top: 0;
}
.section09_frame_inner .section09_list li:nth-child(3n+2){
  width: 31%;
  margin-top: 0;
}
.section09_frame_inner .section09_list li:nth-child(3n+3){
  width: 38%;
  margin-top: 0;
}

.section09_contents03{
  text-align: center;
  margin-top: 110px;
}

@media screen and (max-width: 1160px) {
  .section09_contents{
    gap: 8vw 0;
    flex-direction: column;
    max-width: 960px;
    margin: 175px auto 0;
  }
  .section09_left_box{
    width: 100%;
  }
  .section09_right_box{
    width: 100%;
    flex-direction: row;
    gap: 0 35px
  }
}
@media screen and (max-width: 768px) {
  .section09{
    padding-top: 39.2vw;
    padding-bottom: 9.6vw;
  }
  .section09_obj{
    top: -30vw;
  }
  .section09 .text_loop_box{
    top: 22.6667vw;
  }
  .section09_header img{
    width: 44.6667vw;
  }
  .section09_contents{
    margin-top: 12vw;
    gap: 8vw 0;
    flex-direction: column;
  }
  .section09_contents.cw01,
  .section09_contents02.cw01{
    padding-left: 12vw;
    padding-right: 12vw;
  }
  .section09_left_box{
    width: 100%;
    flex-direction: column;
    gap: 0 0;
  }
  .section09_right_box{
    width: 100%;
    flex-direction: column;
    gap: 8.5333vw 0;
  }
  .section09_list{
    padding-top: 4.8vw;
  }

  .section09_list li{
    padding-left: 4.4vw;
    font-size: 3.4667vw;
    margin-top: 2.8vw;
  }
  .section09_list li::before{
    width: 1.6vw;
    height: 1.6vw;
    top: 0.7em;
    left: 0;
  }

  .section09_contents02{
    margin-top: 15.2vw;
  }
  .section09_frame_title{
    font-size: 4.2667vw;
    padding: 2.8vw 2.8vw 3.6vw;
  }
  .section09_frame_inner{
    padding: 6.6667vw 0 6.6667vw 4.4vw;
  }
  .section09_frame_inner .section09_list{
    flex-direction: column;
    gap: 0 0;
  }
  .section09_frame_inner .section09_list li{
    white-space: nowrap;
  }
  .section09_frame_inner .section09_list li:nth-child(3n+1){
    width: 100%;
  }
  .section09_frame_inner .section09_list li:nth-child(3n+2){
    width: 100%;
  }
  .section09_frame_inner .section09_list li:nth-child(3n+3){
    width: 100%;
  }

  .section09_frame_inner .section09_list li:nth-child(1){
    order: 1;
  }
  .section09_frame_inner .section09_list li:nth-child(2){
    order: 4;
  }
  .section09_frame_inner .section09_list li:nth-child(3){
    order: 7;
  }
  .section09_frame_inner .section09_list li:nth-child(4){
    order: 2;
  }
  .section09_frame_inner .section09_list li:nth-child(5){
    order: 5;
  }
  .section09_frame_inner .section09_list li:nth-child(6){
    order: 8;
  }
  .section09_frame_inner .section09_list li:nth-child(7){
    order: 3;
  }
  .section09_frame_inner .section09_list li:nth-child(8){
    order: 6;
  }
  .section09_frame_inner .section09_list li:nth-child(9){
    order: 9;
  }

  .section09_contents03{
    margin-top: 12vw;
  }
}