@charset "utf-8";

/* general */
*{margin:0;padding:0;}
ul,ol{list-style-type: none;}
a{color: #000; text-decoration: none;}

html{
    font-family: "游ゴシック", "Yu Gothic", YuGothic, Helvetica, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    scroll-behavior: smooth;
}

body{
    width: 100%;
    /*min-width: 1200px;*/
}

main{}
@media screen and (max-width: 1280px) {
    main{
        margin-top: 5rem;
    }
    a{
        scroll-margin-top: 130px;
    }
}

/* header */
header{z-index: 5;background-color: #fff;}
header > div{
    width: 1200px;
    height: 58px;
    margin: 1rem auto 1rem auto;
}
header > .pc_nav{
    background-color: #0086e5;
}
header > .pc_nav > ul{
    width: 1200px;
    margin: auto;
    display: flex;
}
header > .pc_nav > ul > li{
    width: 11%;
}
header > .pc_nav > ul > li > a{
    display: block;
    width: 100%;
    text-align: center;
    color: #fff;
    padding: .5rem 0;
}
header > .pc_nav > ul > li > a:hover{
    background-color: #036db8;
}
header > .pc_nav{
    display: block;
}
header > .sp_nav{
    display: none;
} 
@media screen and (max-width: 1280px) {
    header > div{
        width: 100%;
        z-index: 20;
    }
    header > div > a > img,header > div > a > h1 > img{
        margin-left: 1.5rem;
        z-index: 20;
    }
    header > nav > ul{
        width: 100%;
    }
    header{
        position: fixed;
        display: flex;
        top: 0;
        width: 100%;
    }
    header > .pc_nav{
        display: none;
    }
    header > .sp_nav{
        display: block;
        position: relative;
        z-index: 20;
    }
    /* ハンバーガーボタンのスタイル */
.hamburger {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 30px;
    cursor: pointer;
    z-index: 20;
  }
  
  .hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333;
    margin: 5px 0;
    transition: 0.4s;
  }
  
  /* バツ印に変化するスタイル */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  /* メニューのスタイル */
  .menu {
    position: fixed;
    top: -120%; /* 初期状態でメニューを画面の外に */
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    padding: 4rem 2rem 0;
    box-sizing: border-box;
    transition: top 0.3s ease; /* スライドアニメーション */
  }
  .menu > ul{
    text-align: center;
    height: 100%;
  }
  .menu > ul > li{
  }
  .menu > ul > li > a{
    padding: 1.5vh 0;
    display: block;
  }
  
  /* メニューが表示される時 */
  .menu.open {
    top: 0; /* メニューが表示される位置 */
    z-index: 5;
  }
  
}
@media screen and (max-width: 768px) {
}

/* footer */
.footer_top{
    width: 1200px;
    margin: 3rem auto 0;
    padding: 1rem 0;
    display: flex;
}
.footer_top a{
    color: #838383;
}
.footer_top a:hover{
    text-decoration: underline;
}
.footer_top > img{
    width: 11rem;
    margin-right: 1rem;
}
.footer_top > ul{
    display: flex;
    flex-wrap: wrap;
}
.footer_top > ul > li{
    padding: 0 .8rem;
    border-right: #838383 solid 1px;
}
.footer_top > ul > li:last-of-type{
    border: none;
}
.footer_bottom{
    color: #fff;
    font-size: .8rem;
    background-color: #828282;
    text-align: center;
    padding: .5rem;
}
.footer_bottom a{
    color: #fff;
}
#slider-1 li > a > p:nth-of-type(3){}
@media screen and (max-width: 1280px) {
    .footer_top{
        width: 100%;
        display: block;
    }
    .footer_top > img{
        margin-left: 3rem;
    }
}
@media screen and (max-width: 768px) {
    .footer_top{
        text-align: center;
    }
    .footer_top > img{
        margin: 0 auto 1rem;
    }
}



/* TOP */

.slider-container {
  width: 100%;
  margin: auto;
  position: relative;
  /*background: #fff;*/
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  overflow: hidden;
}

.indicator {
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* ← 中央揃え */
  z-index: 2;
  pointer-events: none;
  border-radius: 50%;
}

.indicator span {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #fff;
  /*border: 2px solid #333;*/
  text-align: center;
  line-height: 90px;
  font-size: 14px;
  font-weight: bold;
  color: #0086e4;
  cursor: pointer;
  pointer-events: auto; /* 個々はクリック可能に */
    top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.3s ease, background 0.3s;

  display: flex;                /* ← フレックスボックスで中央配置 */
  flex-direction: column;      /* ← 縦方向に並べる（デフォルトでもOK） */
  align-items: center;         /* 横方向中央揃え */
  justify-content: center;     /* 縦方向中央揃え */
  white-space: pre-wrap;       /* ← 改行を許可（必要に応じて） */
  line-height: 1.2;            /* 行間調整（必要なら） */
}
.indicator span.active {
  background: #0086e4;
  color: #fff;
  transform: translate(-50%, -50%) scale(1.5); /* 拡大 */
  z-index: 99;
}
.slider {
    position: relative;
    width: 1400px;
    height: 650px;
    margin: auto;
}
.slide {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    color: white;
    font-size: 30px;
    text-align: center;
    line-height: 300px;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 0;
}
.slide.active {
    display: block;
    opacity: 1;
    z-index: 1;
}
#slide00{
    background: url(/images/slide_top.jpg);
    background-position: center;
}
#slide01{
    background: url(/images/slide_workshop.jpg);
    background-position: center;
}
#slide02{
    background: url(/images/slide_analysis.jpg);
    background-position: center;
}
#slide03{
    background: url(/images/slide_about.jpg);
    background-position: center;
}
#slide04{
    background: url(/images/slide_company.jpg);
    background-position: center;
}
#slide05{
    background: url(/images/slide_event.jpg);
    background-position: center;
}
#slide06{
    background: url(/images/slide_support.jpg);
    background-position: center;
}
#slide07{
    background: url(/images/slide_industry.jpg);
    background-position: center;
}
#slide08{
    background: url(/images/slide_movie.jpg);
    background-position: center;
}
#slide09{
    background: url(/images/slide_column.jpg);
    background-position: center;
}
@media screen and (max-width: 1280px) {
    .slider {
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .indicator {
        width: 0vw;
        height: 0vw;
    }
    .indicator span {
        width: 15vw;
        height: 15vw;
        font-size: 3vw;
    }
    .slider{
        height: 100vw;
    }
}

.top_section{
    width: 1200px;
    margin: 3rem auto;
}
.top_section > ul{
    display: flex;
    margin-left: 2.5rem;
}
.top_section > ul > li{
    width: 22rem;
    height: 15rem;
    margin-right: 1.5rem;
    background-color: #000;
    background: url(/images/slide_movie.jpg);
    background-size: cover;
    background-position: center center; 
    border-radius: 1rem;
    transition: all .5s ease;
}
.top_section > ul > li:hover{
    transform: scale(1.05);
}
.top_section > ul > li:last-of-type{
    margin: 0;
}
.top_section > ul > li:nth-of-type(2){
    background: url(/images/slide_industry.jpg);
    background-size: cover;
    background-position: center center; 
}
.top_section > ul > li:nth-of-type(3){
    background: url(/images/slide_workshop.jpg);
    background-size: cover;
    background-position: center center; 
}
.top_section > ul > li > a{
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
    width: 100%;
    height: 100%;
    color: #fff;
    text-align: center;
    background-color: rgba(0,0,0,0.5);
    border-radius: 1rem;
}
.top_section > ul > li > a > p{
    padding-top: 6rem;
}
@media screen and (max-width: 1280px) {
    .top_section{
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .top_section > ul{
        display: block;
        width: 80vw;
        margin: 3rem auto;
    }
    .top_section > ul > li{
        width: 80vw;
        margin: 0 0 1rem 0;
    }
}


.top_news{
    background-color: #f4f3ef;
    padding: 3rem 0;
}
.top_news > div{
    width: 1200px;
    margin: auto;
    border-bottom: 1px solid #000;
    text-align: center;
    margin-bottom: 1.5rem;
}
.top_news > ol{
    width: 1200px;
    margin: auto;
    list-style-type: disc;
    padding-left: 3rem;
}
.top_news > ol > li > span{
    margin-right: 1rem;
}
@media screen and (max-width: 1280px) {
    .top_news > div{
        width: 100%;
    }
    .top_news > ol{
        width: 100%;
        padding: 0;
    }
    .top_news > ol > li{
        padding: 1rem;
    }
}

.top_industry{
    padding: 3rem 0;
}
.top_industry > div{
    width: 1200px;
    margin: auto;
    text-align: center;
    display: flex;
}
.top_industry > div > div{
    margin: auto;
    display: flex;
    margin-bottom: 2.5rem;
}
.top_industry > div > div > img:nth-of-type(1){
    margin-right: 1rem;
}
.top_industry > div > div > img:nth-of-type(2){
    margin-left: .5rem;
}
.top_industry > div > div > h2{
    color: #0284e2;
    font-size: 2.3rem;
}
.top_industry > ul{
    width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    font-size: 1.2rem;
}
.top_industry > ul img{
    width: 100%;
    border-radius: 2rem;
    box-sizing: border-box;
    border: 1px solid #0086e4;
} 
.top_industry > ul > li{
    width: 32%;
    margin-right: 2%;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}
.top_industry > ul > li:nth-of-type(3n){
    margin-right: 0;
}
.top_industry > ul > li > a:hover{
    text-decoration: underline;
}
@media screen and (max-width: 1280px) {
    .top_industry > div{
        width: 100%;
    }
    .top_industry > ul{
        width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
    }
    .top_industry > ul > li{
        width: 48%;
        margin-right: 2%;
    }
    .top_industry > ul > li:nth-of-type(2n){
        margin-right: 0;
    }
    .top_industry > ul > li:nth-of-type(3n){
        margin-right: 2%;
    }
}

.top_company{
    background-color: #f8f7f3;
    padding: 3rem 0 4rem;
}
.top_company > div{
    width: 1200px;
    margin: auto;
    text-align: center;
}
.top_company > div:first-of-type{
    display: flex;
}
.top_company > div > div{
    margin: auto;
    display: flex;
}
.top_company > div > div > img:nth-of-type(1){
    margin-right: 1rem;
}
.top_company > div > div > img:nth-of-type(2){
    margin-left: .5rem;
}
.top_company > div >div > h2{
    color: #0284e2;
    font-size: 2.3rem;
}
.top_company > .slider-1-wrap{
    width: 100%;
    margin-bottom: 4rem;
}
#slider-1 li > a{
    display: block;
    margin: 2rem;
    padding: 1rem;
    background-color: #fff;
    border-radius: 1rem;
    text-align: left;
    filter: drop-shadow(5px 5px 5px #757575);
}
#slider-1 li > a > img{
    width: 100%;
}
#slider-1 li > a > p:nth-of-type(1){
    font-size: 1.2rem;
    font-weight: bold;
    border-bottom: 2px solid #dcdcdc;
    padding: .8rem 0 .5rem;
}
#slider-1 li > a > p:nth-of-type(2){
    color: #ed6555;
    font-weight: bold;
    padding: .8rem 0 0;
}
.progress-bar-wrap {
    width: 10%;
    height: 5px;
    background: #eee;
    position: relative;
    margin-top: 1rem;
    border-radius: 3px;
    overflow: hidden;
}
.progress-bar {
    height: 100%;
    width: 0%;
    background: #0086e4;
    transition: width 0.3s ease;
}
.slick-arrow{
    position: absolute;
    top: 97%;
    cursor: pointer;
}
.prev{
    left: 40%;
}
.next{
    right: 40%;
}
.slick-prev:before, .slick-next:before{
    color: #0086e4;
}
.top_company > .search{}
fieldset.search-block{
    border: 1px solid #0086e4;
    padding: .5rem 1rem 1rem 1rem;
    background-color: #eef3f5;
}
.search-block > div{
    display: flex;
    flex-wrap: wrap;
    margin-top: .5rem;
}
.search-block{
    margin-bottom: 1rem;
}
.search-block legend{
    color:#0086e4;
    font-weight: bold;
}
.search-block > input{
    width: 30rem;
    font-size: 1.1rem;
    padding: .5rem;
    margin-left: .5rem;
}
.search-block > button{
    width: 4.5rem;
}
.search-block > div > .area-group{
    margin-right: 1rem;
    text-align: left;
}
.search-block > div > .jobcat-group{
    margin-right: 1rem;
    text-align: left;
}
.search-actions > button{
    font-size: 1.3rem;
    width: 10rem;
    padding: .5rem;
    background-color: #0086e4;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all .5s ease;
}
.search-actions > button:hover{
    background-color: #0065ad;
}

@media screen and (max-width: 1280px) {
    .top_company > div{
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .top_industry > ul > li{

    }
    .progress-bar-wrap {
        width: 70%;
    }
    .prev{
        left: 5%;
    }
    .next{
        right: 5%;
    }
    .search-block > input{
        width: 90%;
        box-sizing: border-box;
        margin: 0;
    }
}


/* contents */
.h1_area{
    width: 100%;
    background-color: #e0f2ff;
    text-align: center;
    padding: 1.5rem 0;
}
.h1_area > h1{
    font-weight: normal;
}
.breadcrumbs{
    width: 1200px;
    margin: 0 auto 3rem;
}
.breadcrumbs ul{
    display: flex;
    font-size: .8rem;
}
.breadcrumbs ul li a {
    color:#0086e4;
}
.breadcrumbs ul li a::after {
    content: "＞";
    margin-left: 5px;
    margin-right: 5px;
}


/* workshop ワークショップ */
.workshop > section{
    padding-bottom: 3rem; 
}
.workshop > section > div{
    width: 1200px;
    margin: auto;
}
.workshop > section > div > a,
.workshop > section > div > form > button,
.workshop > top_section > div > form > button{
    text-align: center;
    font-weight: bold;
    display: block;
    color: #fff;
    background-color: #0086e4;
    width: 10rem;
    padding: .5rem;
    margin: 0 auto 2rem;
    cursor: pointer;
    border: none;
}
.workshop > section > div > a:hover,
.workshop > section > div > form > button:hover,
.workshop > top_section > div > form > button:hover{
    background-color: #0065ad;
}
.workshop > section > div > ul{
    display: flex;
    flex-wrap: wrap;
}
.workshop > section > div > ul > li{
    width: 23.5%;
    margin-right: 2%;
    margin-bottom: 2rem;
}
.workshop > section > div > ul > li:nth-of-type(4n){
    margin-right: 0;
}
.workshop > section > div > ul > li > a > img{
    border: 1px solid #0086e4;
    width: 100%;
}
.workshop > top_section > div{
    width: 1200px;
    margin: auto;
    text-align: center;
}
.workshop > top_section > div > form{
    margin: auto;
    text-align: center;
    width: 14rem;
}
.workshop > top_section > div > form > input{
    display: block;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

@media screen and (max-width: 1280px) {
    .workshop > section > div{
        width: 100%;
        padding: 1rem;
        box-sizing: border-box;
    }
    .workshop > section > div > ul > li{
        width: 32%;
        margin-right: 2%;
    }
    .workshop > section > div > ul > li:nth-of-type(3n){
        margin-right: 0;
    }
    .workshop > section > div > ul > li:nth-of-type(4n){
        margin-right: 2%;
    }
    .workshop > top_section > div{
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .workshop > section > div > ul > li{
        width: 49%;
        margin-right: 2%;
    }
    .workshop > section > div > ul > li:nth-of-type(3n){
        margin-right: 2%;
    }
    .workshop > section > div > ul > li:nth-of-type(2n){
        margin-right: 0;
    }
}

/* about 就職マップとは */
.about > section:first-of-type{
    text-align: center;
    padding: 0 0 3rem;
}
.about > section:first-of-type > p:first-of-type{
    color: #16a6b6;
    font-size: 1.5rem;
    margin-bottom: 3rem;
}
.about > section > h2{
    padding: .5rem 0;
    background-color: #0086e4;
    color: #fff;
    text-align: center;
    margin: 3rem 0;
}
.about > section >img{
    margin-top: 2rem;
}
.howto_Box{
    width: 1200px;
    margin: 0 auto 3rem;
}
.howto_Box > p{
    margin-bottom: 1rem;
}
.howto_Box > p:last-of-type{
    text-align: end;
}
.howto_Box2{
    width: 1200px;
    margin: 0 auto 3rem;
}
.howto_Box2 > ul{
    display: flex;
    flex-wrap: wrap;
}
.howto_Box2 > ul > li{
    width: 23.5%;
    margin-right: 2%;
    margin-bottom: 1.5rem;
}
.howto_Box2 > ul > li:nth-of-type(4n){
    margin-right: 0;
}
.howto_Box2 > ul > li > a > img{
    width: 100%;
}


@media screen and (max-width: 1280px) {
    .breadcrumbs{
        width: 100%;
    }
    .point_Box{
        width: 100%;
    }
    .img_p > img{
        width: 100%;
    }
    .about > section >img{
        width: 100%;
    }
    .howto_Box{
        width: 100%;
        padding: 1rem;
        box-sizing: border-box;
    }
    .howto_Box2{
        width: 100%;
        padding: 1rem;
        box-sizing: border-box;
    }
    .howto_Box2 > ul > li{
        width: 32%;
        margin-right: 2%;
    }
    .howto_Box2 > ul > li:nth-of-type(3n){
        margin-right: 0;
    }
    .howto_Box2 > ul > li:nth-of-type(4n){
        margin-right: 2%;
    }
}
@media screen and (max-width: 768px) {
    .point_Box{
        display: block;
        padding: 0;
    }
    .point_Box .inBox{
        width: 90%;
        margin: 1rem 5%;
    }
    .howto_Box{
        display: none;
    }
    .howto_Box_sp{
        display: flex;
        margin: 0 auto 3rem;
    }
    .howto_Box_sp > div{
        width: 50%;
    }
    .howto_Box_sp > .box2{
        width: 48%;
        margin-left: 2%;
    }
    .howto_Box2 > ul > li{
        width: 49%;
        margin-right: 2%;
    }
    .howto_Box2 > ul > li:nth-of-type(3n){
        margin-right: 2%;
    }
        .howto_Box2 > ul > li:nth-of-type(2n){
        margin-right: 0;
    }
}

/* company 企業情報 */
.company > section{
    width: 1200px;
    margin: auto;
}
.company > form{
    width: 1200px;
    margin: 0 auto 2.5rem;
    text-align: center;
}
.company h2{
    width: 100%;
    text-align: center;
    padding: .5rem 0;
    background-color: #0086e4;
    color: #fff;
}
.company > section > ul{
    display: flex;
    flex-wrap: wrap;
    padding: 2rem 0;
}
.company > section > ul > li{
    width:32%;
    margin-right: 2%;
    margin-bottom: 1rem;
}
.company > section > ul > li:nth-of-type(3n){
    margin: 0;
}
.company > section > ul > li > a {
    display: block;
}
.company > section > ul > li > a:hover{
    opacity: 0.8;
    transition-duration: 500ms;
}
.company > section > ul > li > a > p{
    background-color: #e5f4ff;
    border-top: solid 2px #0086e4;
    text-align: center;
}
.company > section > ul > li > a > div{
    position: relative;
}
.company > section > ul > li > a > div > img{
    width: 100%;
    height: 6rem;
    object-fit: cover;
    filter: brightness(50%);
}
.company > section > ul > li > a > div > p {
    color: #fff;
    font-weight: bold;
    position: absolute;
    top: 0;
    bottom: 0;
    height: fit-content;
    margin: auto;
    width: 100%;
    text-align: center;
    padding: 0 1rem 0 1rem;
    box-sizing: border-box;
}
@media screen and (max-width: 1280px) {
    .company > section{
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .company > section > ul > li{
        width: 100%;
    }
    .company > section > ul > li{
        padding: 0 1rem;
        margin-right: 0;
    }
    .company > section > ul > li:nth-of-type(3n){
        margin-bottom: 1rem;
    }
}

/* company_sub 企業情報（下層） */
.company_sub >.h1_area{
    width: 100%;
    background-color: #5db6f4;
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 1.5rem 0;
}
.company_sub > section{
    width: 1200px;
    margin: auto;
}
.company_sub >.h1_area > p {
    background-color: #fff;
    color: #0086e4;
    display: inline-block;
    padding: 0 .5rem;
}
.company_sub > .sec_1{
    margin-bottom: 4rem;
}
.company_sub > .sec_1 > img {
    width: 100%;
}
.company_sub > .sec_1 > div{
    margin: 2rem 0;
}
.company_sub > .sec_1 > div > h2{
    color: #0086e4;
    font-size: 1.1rem;
}
.company_sub > .sec_2{
    margin-bottom: 3rem;
}
.company_sub > .sec_2 > h2{
    width: 100%;
    background-color: #e0f2ff;
    text-align: center;
    padding: .5rem 0;
}
.company_sub > .sec_2 > table{
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 5px;
}
.company_sub > .sec_2 > table tr{
    height: 7rem;
}
.company_sub > .sec_2 > table th{
    width: 30%;
    text-align: center;
    font-weight: bold;
    background-color: #e0e0e0;
}
.company_sub > .sec_2 > table td{
    width: 70%;
    border: 1px solid #e0e0e0;
    padding: 0 1.5rem;
}
.company_sub > .sec_3 > div {
    color: #0086e4;
    border: #0086e4 solid 2px;
    text-align: center;
    padding: 1.5rem 0;
}
.company_sub > .sec_3 > div > h2{
    font-size: 1.2rem;
}
.company_sub > .sec_3 > div > div{
    display: flex;
    margin: auto;
    width:fit-content;
}
.company_sub > .sec_3 > div > div > p{
    font-size: 2.4rem;
    font-weight: bold;
    padding-left: .5rem;
    word-break: break-all;
}
@media screen and (max-width: 1280px) {
    .company_sub > section{
        width: 100%;
    }
    .company_sub > .sec_1 > div {
        padding: 0 1rem;
    }
}

/* event イベント情報 */
.event > section > div{
    width: 1200px;
    margin: 0 auto 2rem;
}
.event > section > div > p{
    margin-bottom: 2rem;
}
.event > .sec_1 > div > a{
    display: block;
    margin: auto;
    width: 1000px;
}
.event > section > div > a > img{
    width: 100%;
}
.event > section > div > div > h2{
    color: #0284e2;
    font-size: 2.3rem;
}
.event > section > div > div{
    margin: auto;
    display: flex;
}
.event > .sec_2 > a{
    display: none;
    color: #fff;
    background-color: #0086e4;
    font-weight: bold;
    padding: .1rem .5rem;
    margin: 0 auto 2rem;
    width: 80%;
    text-align: center;
}
.event > .sec_2 > .sec_2_1{
    display: flex;
}
.event > .sec_2 > .sec_2_1 > div{
    position: relative;
}
.event > .sec_2 > .sec_2_1 > div > a{
    display: block;
    position: absolute;
    right: -13rem;
    top: .9rem;
    color: #fff;
    background-color: #0086e4;
    font-weight: bold;
    padding: .1rem .5rem;
}
.event > .sec_2 > .sec_2_2 > ul > li{
    border-top: #0086e4 3px solid;
    font-size: 1.2rem;
}
.event > .sec_2 > .sec_2_2 > ul > li > dl > dt{
    background-color: #e5f4ff;
    display: flex;
    padding: .5rem;
    font-weight: bold;
}
.event > .sec_2 > .sec_2_2 > ul > li > dl > dt > p{
    padding: .2rem .5rem;
}
.event > .sec_2 > .sec_2_2 > ul > li > dl > dt > p:first-of-type{
    background-color: #fff;
    color: #0086e4;
    margin-right: .5rem;
}
.event > .sec_2 > .sec_2_2 > ul > li > dl > dd{
    display: flex;
    padding: .7rem 1rem;
}
.event > .sec_2 > .sec_2_2 > ul > li > dl > dd > p{
    display: flex;
}
.event > .sec_2 > .sec_2_2 > ul > li > dl > dd > p:first-of-type{
    margin-right: 1rem;
}
.event > .sec_2 > .sec_2_2 > ul > li > dl > dd > p:first-of-type::before{
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    background-image: url(../event/images/event_time_button.jpg);
    margin-right: .5rem;
}
.event > .sec_2 > .sec_2_2 > ul > li > dl > dd > p:last-of-type::before{
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    background-image: url(../event/images/event_access_button.jpg);
    margin-right: .5rem;
}
.event > .sec_2 > .sec_2_3 a{
    color:#0086e4;
}
.event > .sec_2 > .sec_2_3 a:hover{
    text-decoration: underline;
}
.event > .sec_2 > .sec_2_3 > ul{
    padding: .5rem 1rem;
}
.event_about > section > div{
    width: 1200px;
    margin: 0 auto 3rem;
}
.event_about > section > div > h2{
    color: #0284e2;
}

@media screen and (max-width: 1280px) {
    .event > section > div{
        width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
    }
    .event > .sec_1 > div > a{
        width: 100%;
    }
    .event_about > section > div{
        width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
    }
}
@media screen and (max-width: 768px) {
    .event > .sec_2 > .sec_2_1 > div > a{
        display: none;
    }
    .event > .sec_2 > a{
        display: block;
    }
    .event > .sec_2 > .sec_2_2 > ul > li > dl > dt > p:first-of-type{
        min-width: 4rem;
        height: 2rem;
    }
    .event > .sec_2 > .sec_2_2 > ul > li > dl > dd{
        display: block;
    }
    .event > .sec_2 > .sec_2_2 > ul > li > dl > dd > p:first-of-type{
        margin-bottom: .5rem;
    }
}

/* support 就職対策 */
.support > section{
    width: 1200px;
    margin: auto;
}
.support > section > ul{
    display: flex;
    flex-wrap: wrap;
    padding: 2rem 0;
}
.support > section > ul > li{
    width:32%;
    margin-right: 2%;
    margin-bottom: 1.5rem;
}
.support > section > ul > li:nth-of-type(3n){
    margin: 0;
}
.support > section > ul > li > a {
    display: block;
    text-align: center;
}
.support > section > ul > li > a:hover{
    opacity: 0.8;
    transition-duration: 500ms;
}
.support > section > ul > li img{
    width: 100%;
    display: block;
}
.support > section > ul > li h2{
    font-size: 1.1rem;
    font-weight: normal;
    background-color: #e5f4ff;
    padding: .5rem 0;
    border-bottom: solid 2px #0086e4;
}
@media screen and (max-width: 1280px) {
    .support > section{
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .support > section > ul > li{
        width: 49%;
        margin-right: 2%;
    }
    .support > section > ul > li:nth-of-type(2n){
        margin-right: 0;
    }
    .support > section > ul > li:nth-of-type(3n){
        margin-right: 2%;
    }
}

/* support 就職対策（下層） */
.support_sub > .h1_area{
    padding: 0;
}
.support_sub > .h1_area h1 img{
    width: 1000px;
    display: block;
    margin: auto;
}
.support_sub > section{
    margin-bottom: 3rem;
}
.support_sub > section > h2{
    text-align: center;
    padding: 1rem 0;
    font-size: 1.5rem;
    font-weight: normal;
    background-color: #16A6B6;
    color: #fff;
}
.support_sub > section > div {
    width: 1200px;
    margin: auto;
}
@media screen and (max-width: 1280px) {
    .support_sub > .h1_area h1 img{
        width: 100%;
    }
    .support_sub > section > div {
        width: 100%;
    }
}
@media screen and (max-width: 768px) {

}

/* latest 高校就職 最新動向 */
.latest > section > div > h3{
    font-weight: 1.6rem;
    color:#16A6B6;
    text-align: center;
    border-bottom: 1px #16A6B6 solid;
    margin: 2rem 0 1.5rem;
}
.latest> .sec_1 > div > div{
    display: flex;
    padding: 0 1rem;
}
.latest> .sec_1 > div:first-of-type > div > img{
    width: 400px;
    height: auto;
}
.latest> .sec_1 > div > div > p{
    margin-right: 3rem;
}
.latest> .sec_2 > div > div{
    padding: 0 1rem;
}
.latest> .sec_2 > div > div > p {
    margin-bottom: 2rem;
}
.latest> .sec_2 > div > div > div > table {
    width: 100%;
    background-color: #FFFFFF;
    box-sizing: border-box;
}
.latest> .sec_2 > div > div > div > table th,
.latest> .sec_2 > div > div > div > table td{
    padding-top: 1rem;
    padding-bottom: 1rem;
    border: 1px dotted #CCCCCC;
}
.latest> .sec_2 > div > div > div > table th{
    background-color: #adede6;
}
.latest> .sec_2 > div > div > div > table td{
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: right;
}
@media screen and (max-width: 1280px) {}
@media screen and (max-width: 768px) {
    .latest> .sec_1 > div > div{
        display:block;
    }
    .latest> .sec_1 > div > div > p{
        margin-right: 0;
    }
    .latest> .sec_1 > div:first-of-type > div > img{
        width: 100%;
    }
    .latest> .sec_2 > div > div > div > table{
        font-size: 0.7rem;
    }
    .latest> .sec_2 > div > div > div > table td{
        padding-left: .5rem;
        padding-right: .5rem;
    }
}

/* jobvote 高卒求人票の見方 */
.jobvote > .sec_2 > div{
    display: flex;
    flex-wrap: wrap;
}
.jobvote > .sec_2 > div > div.sec_2_1{
    width: 60%;
}
.jobvote > .sec_2 > div dl dt{
    background-color: #16A6B6;
    color: #FFFFFF;
    font-size: 1.3rem;
    padding: .5rem 1.5rem .5rem;
    display: flex;
}
.jobvote > .sec_2 > div dl dt span{
    background-color: #fff;
    color: #16A6B6;
    display: block;
    width: 1.9rem;
    height: 1.9rem;
    text-align: center;
    font-weight: bold;
    border-radius: 5px;
    margin-right: 1rem;
}
.jobvote > .sec_2 > div dl dd{
    padding: 1rem;
    margin-bottom: 1.5rem;
}
.jobvote > .sec_2 > div > div.sec_2_2{
    width: 40%;
    text-align: center;
}
.jobvote > .sec_2 > div > div.sec_2_sp{
    display: none;
    text-align: center;
}
@media screen and (max-width: 1280px) {
    .support_sub > section > div{
        padding: 0 1rem;
        box-sizing: border-box;
    }
}
@media screen and (max-width: 768px) {
    .jobvote > .sec_2 > div{
        display: block;
    }
    .jobvote > .sec_2 > div > div.sec_2_1,
    .jobvote > .sec_2 > div > div.sec_2_2{
        width: 100%;
    }
    .jobvote > .sec_2 > div > div.sec_2_2{
        display: none;
    }
    .jobvote > .sec_2 > div > div.sec_2_sp{
        display: block;
    }
    .jobvote > .sec_2 > div > div.sec_2_sp > img{
        width: 100%;
    }
}

/* resume 履歴書の正しい書き方 */
.resume > .sec_1 > div{
    margin-bottom: 2.5rem;
}
.resume > .sec_1 > div:nth-of-type(2){
    text-align: center;
}
.resume > .sec_1 > ul{
    width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
}
.resume > .sec_1 > ul h2{
    color: #fff;
    font-size: 1.2rem;
    font-weight: normal;
    border-radius: 15px;
    line-height: 30px;
    padding-left: 1rem;
    margin-bottom: 1rem;
}
.resume > .sec_1 > ul > li{
    width: 23%;
    margin-right: 2%;
}
.resume > .sec_1 > ul > li > p{
    margin-bottom: 2rem;
    padding: 0 1rem;
}
.resume > .sec_1 > ul > li:nth-of-type(4n){
    margin-right: 0;
}
.resume > .sec_2 > h2{
    margin-bottom: 2rem;
}
.resume > .sec_2 > div{
    margin-bottom: 2rem;
}
.resume > .sec_2 > .sec_2_2{
    display: flex;
    flex-wrap: wrap;
}
.resume > .sec_2 > div.sec_2_2 > .sec_2_2_1{
    width: 25%;
    margin-right: 5%;
}
.resume > .sec_2 > div.sec_2_2 > .sec_2_2_1 > h3{
    color: #fff;
    border-radius: 15px;
    padding-left: 1rem;
    margin-bottom: 1rem;
}
.resume > .sec_2 > div.sec_2_2 > .sec_2_2_2{
    width: 64%;
    background-color: #FFFFFF;
    border: 1px solid #333333;
    padding: 1.5rem;
}
.resume > .sec_2 > div.sec_2_2 > .sec_2_2_2 > h3{
    text-align: center;
    margin-bottom: 2rem;
}
.resume > .sec_2 > div.sec_2_2 > .sec_2_2_2 > p > span{
    background-color: #FFF8A5;
}
@media screen and (max-width: 1280px) {
    .resume > .sec_1 > ul {
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .resume > .sec_1 > div:nth-of-type(2) > img{
        width: 100%;
    }
    .resume > .sec_1 > ul > li{
        width: 100%;
        margin-right: 0;
    }
    .resume > .sec_2 > div.sec_2_2 > .sec_2_2_1{
        width: 100%;
        margin-right: 0;
        margin-bottom: 1rem;
    }
    .resume > .sec_2 > div.sec_2_2 > .sec_2_2_2{
        width: 100%;
    }
}

/* interview 面接チェックポイント */
.interview > .sec_2 > h2{
    margin-bottom: 2rem;
}
.interview > .sec_2 > .sec_2_1 {
    margin-bottom: 1.5rem;
}
.interview > .sec_2 > .sec_2_2{
    display: flex;
    flex-wrap: wrap;
}
.interview > .sec_2 > .sec_2_2 > div{
    width: 50%;
    text-align: center;
}
.interview > .sec_2 > .sec_2_3{
    text-align: center;
    font-size: 0.9rem;
}
.interview > .sec_3 > h2{
    margin-bottom: 2rem;
}
.interview > .sec_4 > h2{
    margin-bottom: 2rem;
}
.interview > .sec_4 > .sec_4_1{
    margin-bottom: 1.5rem;
}
.interview > .sec_4 > .sec_4_2{
    display: flex;
    flex-wrap: wrap;
}
.interview > .sec_4 > .sec_4_2 > div{
    width: 50%;
    text-align: center;
}
.interview > .sec_5 > h2{
    margin-bottom: 2rem;
}
.interview > .sec_5 > ul{
    width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
}
.interview > .sec_5 > ul > li{
    width: 30%;
    margin-right: 5%;
    margin-bottom: 2rem;
}
.interview > .sec_5 > ul > li:nth-of-type(3),
.interview > .sec_5 > ul > li:nth-of-type(7),
.interview > .sec_5 > ul > li:nth-of-type(10){
    margin-right: 0;
}
.interview > .sec_5 > ul > li > h3{
    background-color: #adede6;
    color: #16A6B6;
    font-weight: bold;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    border: 1px solid #16A6B6;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    display: flex;
}
.interview > .sec_5 > ul > li > h3 > span{
    font-size: 1rem;
    background-color: #16A6B6;
    color: #fff;
    text-align: center;
    display: block;
    padding: .2rem .9rem 0;
    margin-right: .5rem;
}
.interview > .sec_5 > ul > li > p{
    margin-bottom: 1rem;
}
.interview > .sec_5 > ul > li > img{
    width: 100%;
}
.interview > .sec_5 > ul > li:nth-of-type(4){
    width: 100%;
    margin-right: 0;
    margin-bottom: .5rem;
}
.interview > .sec_5 > ul > li:nth-of-type(4) > img:nth-of-type(2){
    display: none;
}
@media screen and (max-width: 1280px) {
    .interview > .sec_5 > ul{
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .interview > .sec_2 > .sec_2_2 > div{
        width: 100%;
    }
    .interview > .sec_2 > .sec_2_2 > div > img{
        width: 100%;
    }
    .interview > .sec_4 > .sec_4_2 > div{
        width: 100%;
    }
    .interview > .sec_4 > .sec_4_2 > div > img{
        width: 100%;
    }
    .interview > .sec_5 > ul {
        display: block;
    }
    .interview > .sec_5 > ul > li{
        width: 100%;
    }
    .interview > .sec_5 > ul > li:nth-of-type(4){
        margin-bottom: 2rem;
    }
    .interview > .sec_5 > ul > li:nth-of-type(4) > img:nth-of-type(1){
        display: none;
    }
    .interview > .sec_5 > ul > li:nth-of-type(4) > img:nth-of-type(2){
        display: block;
    }
    .interview > .sec_5 > ul > li:nth-of-type(5),
    .interview > .sec_5 > ul > li:nth-of-type(6),
    .interview > .sec_5 > ul > li:nth-of-type(7){
        display: none;
    }
}

/* glossary 就職関連用語集 */
.glossary > section > div{
    margin-bottom: 2rem;
}
.glossary > section > div > h2{
    display: inline-block;
    background-color: #03B4BD;
    color: #fff;
    border-radius: .5rem;
    padding: .2rem 1rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}
.glossary > section > div > ul{
    list-style-type: disc;
    color: #FF0000;
    padding-left: 2rem;
}
.glossary > section > div > ul > li > p{
    color: #000;
}
.glossary > section > div > ul > li > p > span{
    font-weight: bold;
}
@media screen and (max-width: 1280px) {
    .glossary > section > div > ul{
        padding-right: 2rem;
    }
}

/* industry 業界について */
.industry > section{
    width: 1200px;
    margin: auto;
}
.industry > section > ul{
    display: flex;
    flex-wrap: wrap;
    padding: 2rem 0;
}
.industry > section > ul > li{
    width:32%;
    margin-right: 2%;
    margin-bottom: 1rem;
}
.industry > section > ul > li:nth-of-type(3n){
    margin: 0;
}
.industry > section > ul > li > a {
    display: block;
    text-align: center;
}
.industry > section > ul > li > a> img{
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #0086e4;
    border-radius: 1rem;
}
.industry > section > ul > li > a:hover{
    text-decoration: underline;
    transition-duration: 500ms;
}
@media screen and (max-width: 1280px) {
    .industry > section{
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .industry > section > ul > li{
        width:48%;
        margin-right: 4%;
    }
    .industry > section > ul > li:nth-of-type(3n){
        margin-right: 4%;
    }
    .industry > section > ul > li:nth-of-type(2n){
        margin-right: 0;
    }
}

/* industry_sub 業界について（下層） */
.industry_sub > .sec_1{
    margin-bottom: 3rem;
}
.industry_sub > section > div{
    margin: auto;
    width: 1200px;
}
.industry_sub > .sec_1 > .sec_1_1{
    display: flex;
    text-align: center;
}
.industry_sub > .sec_1 > .sec_1_1 > div{
    margin: auto;
    display: flex;
}
.industry_sub > section h1{
    color: #0284e2;
    font-size: 2.3rem;
}
.industry_sub > section > .sec_1_1 > div > img:nth-of-type(1){
    margin-right: 1rem;
}
.industry_sub > section > .sec_1_1 > div > img:nth-of-type(2){
    margin-left: .5rem;
}
.industry_sub > section > .sec_1_2 > video{
    width: 900px;
    display: block;
    margin: 1rem auto 2rem;
}
.industry_sub > section > .sec_1_2 > img{
    display: block;
    margin: 2rem auto;
    width: 80%;
}
.industry_sub > section > .h2_area{
    border-bottom: solid 1px #000;
    margin-bottom: 1.5rem;
}
.industry_sub > section > .h2_area > h2{
    text-align: center;
}
.industry_sub > .sec_2 > .sec_2_2 > img{
    display: block;
    margin: 1rem auto;
}
.industry_sub > .sec_2 > .sec_2_2 > ul{
    display: flex;
    flex-wrap: wrap;
}
.industry_sub > .sec_2 > .sec_2_2 > ul > li{
    width: 49%;
    margin-right: 2%;
    margin-bottom: 1.5rem;
}
.industry_sub > .sec_2 > .sec_2_2 > ul > li:nth-of-type(2n){
    margin-right: 0;
}
.industry_sub > .sec_2 > .sec_2_2 > ul > li > dl > dt{
    text-align: center;
    background-color: #e5f4ff;
    border-top: 2px solid #0086e4;
    font-size: 1.3rem;
    font-weight: bold;
    padding: .2rem 0;
}
.industry_sub > .sec_2 > .sec_2_2 > ul > li > dl > dd{
    padding: 1rem 1.5rem;
}
.industry_sub > .sec_3 > .sec_3_2 > ul{
    display: flex;
    flex-wrap: wrap;
}
.industry_sub > .sec_3 > .sec_3_2 > ul > li{
    width: 32%;
    margin-right: 2%;
    margin-bottom: 1.5rem;
    border-radius: 1rem;
    background-color: #e0f2ff;
    padding: 1rem;
    box-sizing: border-box;
}
.industry_sub > .sec_3 > .sec_3_2 > ul > li:nth-of-type(3n){
    margin-right: 0;
}
.industry_sub > .sec_3 > .sec_3_2 > ul > li > a{
    display: block;
}
.industry_sub > .sec_3 > .sec_3_2 > ul > li > a:hover{
    opacity: 0.8;
    transition-duration: 500ms;
}
.industry_sub > .sec_3 > .sec_3_2 > ul > li > a > img{
    width: 100%;
    height: 15rem;
    border-radius: 1rem;
    object-fit:cover;
}
.industry_sub > .sec_3 > .sec_3_2 > ul > li > a > p{
    font-size: 1.3rem;
    text-align: center;
}
@media screen and (max-width: 1280px) {
    .industry_sub > section > div{
        width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
    }
    .industry_sub > section > .sec_1_2 > video{
        width: 100%;
    }
    .industry_sub > section > .sec_1_2 > img{
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .industry_sub > .sec_2 > .sec_2_2 > img{
        width: 100%;
    }
    .industry_sub > .sec_2 > .sec_2_2 > ul{
        display: block;
    }
    .industry_sub > .sec_2 > .sec_2_2 > ul > li{
        width: 100%;
        margin-right: 0;
    }
    .industry_sub > .sec_3 > .sec_3_2 > ul > li{
        width: 100%;
        margin-right: 0;
    }
    .industry_sub > .sec_3 > .sec_3_2 > ul > li > a{
        padding: 0 1rem;
    }
    .industry_sub > .sec_3 > .sec_3_2 > ul > li > a > img{
        height: 60vw;
    }
}

/* movie 就職マップ動画 */
.movie > section > h2 {
    padding: .5rem 0;
    background-color: #0086e4;
    color: #fff;
    text-align: center;
    margin: 3rem 0;
}
.movie > section > div{
    display: flex;
    flex-wrap: wrap;
    width: 1200px;
    margin: 0 auto 2rem;
    border: 3px solid #0086e4;
    border-radius: 1rem;
    box-sizing: border-box;
}
.movie > section > div > div{
    width: 50%;
    box-sizing: border-box;
    padding: 2rem;
}
.movie > section > div > div > h3{
    text-align: center;
    margin-bottom: 2rem;
}
.movie > section > div > div > video{
    width: 100%;
}
.movie > section > div > div > iframe{
    width: 100%;
    height: 20rem;
}
.movie > section > div > div > a > img{
    width: 100%;
}
.movie > section > p{
    width: 1200px;
    margin: 0 auto 2rem;
    text-align: center;
}
.movie > section > p > a{
    color: #0086e4;
    text-decoration: underline;
}
.movie > section > p > a:hover{
    color: #0365aa;
}
@media screen and (max-width: 1280px) {
    .movie > section > div{
        width: 100%;
    }
    .movie > section > div > div{
        width: 100%;
    }
    .movie > section > div > div > iframe{
        height: auto;
    }
}