
/* ------------------------------
utilty
---------------------------------- */

body{
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  color: #262626;
}

.wrapper-company,.wrapper-event,.wrapper-flow,
.wrapper-question,.wrapper-footer{
  max-width: 1100px;
  margin: 0 auto;
  /* padding: 80px 0 80px; */
}

h1,h2{
  font-weight: 500;
}

h2{
  text-align: center;
  font-size: 50px;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 1px;
}

h3{
  font-family: 'M PLUS 1p', sans-serif;
  font-family: 'Roboto', sans-serif;
}

p,dd{
  font-weight: 400;
}

a{
  text-decoration:none;
}

img{
  width: 100%;
}

.br-sp{
  display: none;
}

.pc-no{
  display: none;
}

.sp-no{
  display: block;
}

.nav-pc-no{
  display: none;
}

#company,#flow,#question{
  padding-top: 80px;
  margin-top: -80px;
}

@media screen and (max-width: 768px) {
  .wrapper-company,.wrapper-event,
  .wrapper-question,.wrapper-footer{
    width: 95%;
    margin: 0 auto;
    /* padding: 0 0 80px; */
  }

  .wrapper-flow{
    width: 90%;
  }

  .nav-pc-no{
    display: block;
  }

}


@media screen and (max-width: 767px){
  .br-sp{
    display: block;
  }

  .pc-no{
    display: block;
  }

  .sp-no{
    display: none;
  }
}



/* ------------------------------
header
---------------------------------- */

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.16);
  z-index: 2;
}


.wrapper-header{
  padding: 8px 40px;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  /* border-top: 8px solid #FEE600; */
}

.company-name{
  width: 200px;
  padding: 8px 0;
}

.requestbtn-fixed{
  width: 100%;
  background-color: rgba(255,255,255,0.7);
  position: fixed;
  bottom: 0;
  padding: 8px 0;
  z-index: 10;
}

.requestbtn-fixed p{
  width: 40%;
  margin: 0 auto;
  text-align: center;
}

.requestbtn-fixed p a{
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 12px 0;
  background-color: #D3464B;
  border-bottom: 8px solid #A52126;
  border-radius: 50px;
  display: inline-block;
  width: 100%;
}

.requestbtn-fixed p a::after{
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  content: "\f0a9";
  width: 18px;
  height: 20px;
  margin-left: 16px;
  font-size: 20px;
  color: #fff;
  transition: .3s;
}

.requestbtn-fixed p a:hover::after{
  margin-left: 26px;
}


.nav_pc{
    width: 32%;
}

.nav_pc nav ul{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* -webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between; */
  -ms-flex-pack: distribute;
justify-content: space-around;
}

.nav_pc nav ul li{
  text-align: center;
}

.nav_pc ul li a p{
  /* font-family: 'M PLUS 1p', sans-serif; */
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 4px;
  color: #262626;
  transition: .3s;
}

.nav_pc ul li a p:hover{
  color: #19398C;
}

/* .nav_pc ul li:nth-child(1) a p{
  color: #2695D1;
}

.nav_pc ul li:nth-child(2) a p{
  color: #00B168;
}

.nav_pc ul li:nth-child(3) a p{
  color: #F15A25;
}

.nav_pc ul li:nth-child(4) a p{
  color: #2667B2;
} */

/* .nav_pc ul li a span{
  font-size: 12px;
  color: #171717;
} */

@media screen and (max-width: 1100px){
  .nav_pc{
      width: 60%;
  }
}

@media screen and (max-width: 1024px){
  .nav_pc{
      width: 55%;
  }
}
@media screen and (max-width: 768px){
  .wrapper-header{
    padding: 8px;
  }

  .requestbtn-fixed p{
    width: 81%;
  }

  /*============
  nav
  =============*/
  nav {
    display: block;
    position: fixed;
    top: 0;
    left: -300px;
    bottom: 0;
    width: 300px;
    background: #ffffff;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: all .5s;
    z-index: 3;
    opacity: 0;
  }
  .open nav {
    left: 0;
    opacity: 1;
  }
  nav .inner {
    padding: 25px;
  }
  nav .inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  nav .inner ul li {
    position: relative;
    margin: 0;
    border-bottom: 1px solid #333;
  }
  nav .inner ul li a {
    display: block;
    color: #333;
    font-size: 14px;
    padding: 1em;
    text-decoration: none;
    transition-duration: 0.2s;
  }
  nav .inner ul li a:hover {
    background: #e4e4e4;
  }
  @media screen and (max-width: 767px) {
    nav {
      left: -220px;
      width: 220px;
    }
  }
  /*============
  .toggle_btn
  =============*/
  .toggle_btn {
    display: block;
    position: fixed;
    top: 21px;
    right: 16px;
    width: 30px;
    height: 30px;
    transition: all .5s;
    cursor: pointer;
    z-index: 20;
  }
  .toggle_btn span {
    display: block;
    position: absolute;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #2861A3;
    border-radius: 4px;
    transition: all .5s;
  }
  .toggle_btn span:nth-child(1) {
    top: 4px;
  }
  .toggle_btn span:nth-child(2) {
    top: 14px;
  }
  .toggle_btn span:nth-child(3) {
    bottom: 4px;
  }
  .open .toggle_btn span {
    background-color: #fff;
  }
  .open .toggle_btn span:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(-315deg);
    transform: translateY(10px) rotate(-315deg);
  }
  .open .toggle_btn span:nth-child(2) {
    opacity: 0;
  }
  .open .toggle_btn span:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(315deg);
    transform: translateY(-10px) rotate(315deg);
  }
  /*============
  #mask
  =============*/
  #mask {
    display: none;
    transition: all .5s;
  }
  .open #mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .8;
    z-index: 2;
    cursor: pointer;
  }

  .inner ul li{
    text-align: center;
  }

  .inner ul li a p{
    /* font-family: 'Lato', sans-serif; */
    font-size: 20px;
    /* padding-bottom: 4px; */
  }

  .inner ul li a p{
    /* font-family: 'M PLUS 1p', sans-serif; */
    font-size: 16px;
    font-weight: bold;
    /* padding-bottom: 4px; */
    color: #262626;
  }

  .inner ul li a span{
    font-size: 12px;
    color: #171717;
  }

  .company-name{
    width: 145px;
  }
}

/* クローズ用ここから */

.colose-top{
  background: #e4e4e4;
}
.colose-top .wrapper-top h2{
  font-size: 32px;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 40px;
}

.wrapper-top .close-text{
  font-size: 20px;
  line-height: 1.8;
  font-weight: bold;
  text-align: center;
}

.colose-top .wrapper-top{
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 0;
  height: 100vh;
}

/* クローズ用ここまで */


/* ------------------------------
top
---------------------------------- */


.top .close-text{
  font-size: 24px;
  color: #fff;
  text-align: center;
  font-weight: bold;
  line-height: 1.7;
}
.top{
  background-color: #1A3A8D;
  margin: 0 auto;
  padding-bottom: 40px;
  position: relative;
}

.top-catch-contents{
  max-width: 1100px;
  margin: 80px auto 0;
  padding-bottom: 150px;
}

.top-image{
  background-image: url(../image/top_img.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 730px;
  position: relative;
}

.top-image h2{
  text-align: left;
  padding-top: 24px;
}

.top-image h2 img{
  width: 60%;
}

.information-data{
  position: absolute;
  right: 24px;
  bottom: 100px;
  width: 45%;
}

.information-data img{

}

.top-information{
  position: absolute;
  bottom: -100px;
  right: 0;
  left: 0;
  margin: 0 auto;
  background-color: #fff;
  width: 90%;
  padding: 0 24px;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
}

.top-information .top-information__parts{
  position: relative;
  padding-top: 45px;
}

.top-information .top-information__parts .caption-text{
  position: absolute;
  top: -42px;
  width: 60%;
}

.top-information .camera-text{
  width: 85%;
}

.top-information .top-information__parts .participation-text,
.top-information .top-information__parts .target-text{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: bold;
}

.top-information .top-information__parts .participation-text{
  margin: 8px 0 4px;
}
.top-information .top-information__parts .target-text{
  margin: 4px 0 16px;
}

.top-information .top-information__parts .participation-text dt,
.top-information .top-information__parts .target-text dt{
  color: #fff;
  background-color: #213B88;
  border-radius: 5px;
  padding: 8px;
  margin-right: 8px;
  width: 12%;
  text-align: center;
}

.top-information .top-information__parts .participation-text dd,
.top-information .top-information__parts .target-text dd{
  font-weight: bold;
}

.top-information .point-parts{
  width: 34%;
  margin-top: 45px;
}

.top-information .point-parts li{
  color: #213B88;
  background-color: #FDEA3C;
  padding: 8px;
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 8px;
}

.top-schedule__btn{
  margin: 0 auto;
  width: 40%;
  max-width: 500px;
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
}

.top-schedule__btn a{
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: #1A3C93;
  background-color: #FDEA3C;
  display: block;
  padding: 12px;
  border-radius: 30px;
}

.top-schedule__btn a::after{
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  content: "\f0a9";
  width: 18px;
  height: 20px;
  margin-left: 10px;
  font-size: 17px;
  color: #1A3C93;
  transition: .3s;
}

.top-schedule__btn a:hover::after{
  margin-left: 20px;
}


@media screen and (max-width: 1024px){
 .top-catch-contents{
   width: 90%;
 }

 .top-image{
   height: 610px;
   background-size: cover;
   background-position: center;
 }

 .top-information .point-parts{
   width: 45%;
 }

 .top-information .top-information__parts .caption-text{
   top: -26px;
 }
}

@media screen and (max-width: 768px){
  .top-image{
    height: 490px;
    background-size: contain;
  }

  .top-catch-contents{
    margin: 65px auto 0;
  }
  .top-information .top-information__parts .caption-text {
      top: -25px;
      width: 75%;
  }
  .top-information .point-parts{
    width: 53%;
    margin-top: 18px;
  }
  .top-information{
    bottom: -115px;
  }

  .top-schedule__btn{
    width: 50%;
    bottom: 20px;
  }
}

@media screen and (max-width: 414px){
  .top-catch-contents{
    width: 100%;
    margin: 65px auto 0;
    padding-bottom: 100px;
  }
  .top-image{
    height: 540px;
    background-position: top;
  }
  .top-image h2{
    padding-top: 14px;
  }

  .top-image h2 img{
    width: 78%;
  }

  .information-data{
    bottom: auto;
    top: 170px;
    width: 60%;
    right: 10px;
  }

  .top-information{
    display: block;
    padding: 12px;
    bottom: -64px;
  }

  .top-information .top-information__parts{
    padding-top: 24px;
  }

  .top-information .top-information__parts .caption-text{
    top: -45px;
    width: 100%;
  }

  .top-information .camera-text{
    width: 100%;
  }

  .top-information .top-information__parts .participation-text dt,
  .top-information .top-information__parts .target-text dt{
    width: 27%;
  }

  /* .top-information .top-information__parts .target-text{
    display: block;
  } */

  .top-information .top-information__parts .target-text dd{
    line-height: 1.7;
    width: 70%;
  }

  .top-information .point-parts{
    width: 90%;
    margin: 16px auto 0;
  }

  .top-schedule__btn{
    width: 90%;
    bottom: 20px;
  }
}


/* ------------------------------
common
---------------------------------- */


/* タイトルまわり */
.title-part {
  text-align: center;
  margin-top: 100px;
}

.title-part h2{
  font-size: 30px;
  color: #2861A3;
  font-weight: bold;
  position: relative;
  margin-bottom: 64px;
  display: inline-block;
  padding: 0 8px;
}

.title-part h2::after{
  content: '';
  display: inline-block;
  border: 7px solid #FDEA3C;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  z-index: -10;
}

.company .title-part h2{
    margin-bottom: 16px;
}

.title-part .occupation-guide::before{
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  content: "\f0b1";
  width: 18px;
  height: 20px;
  margin-right: 8px;
  font-size: 17px;
  color: #1A3C93;
  background-color: #FDEA3C;
  padding: 5px;
  border-radius: 30px;
}

.title-part .occupation-guide{
  margin-bottom: 64px;
}

@media screen and (max-width: 1024px) {

}
@media screen and (max-width: 767px) {


  .title-part h2{
    font-size: 35px;
  }
}



/* -----------------------------------------
タブ切り替え
------------------------------------------*/

.list_tab{
  /* width: 90%; */
  margin: 0 auto;
}

.js-tab-contents,.js-tab-contents__schedule{
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
	display: none;
}

.js-tab-contents.current,
.js-tab-contents__schedule.current{
	display: block;
}

.js-tab-wrap{
  width: 100%;
}

.js-tab-btn{
  font-family: 'Roboto', sans-serif;
  font-size: 40px;
  background-color: #D3D3D3;
  color: #fff;
  width: 48%;
  text-align: center;
  padding: 16px;
  border-radius: 5px 5px 0 0;
  cursor: pointer;
  font-weight: bold;
  margin: 0 16px;
}

.js-tab-btn span{
 font-size: 16px;
 font-weight: bold;
 color: #D3D3D3;
 background-color: #fff;
 padding: 6px 8px;
 border-radius: 30px;
 vertical-align: middle;
}

/* IEのための記述 */
@media all and (-ms-high-contrast: none) {
  .js-tab-btn span{
   vertical-align: auto;
   position: relative;
   top: -7px;
  }

}

.company-contents .js-tab-btn.current{
  background-color: #19398C;
  color: #fff;
}

.company-contents .js-tab-btn.current span{
  color: #19398C;
}

/* .time-table-contents .js-tab-btn.current{
  background-color: #F39800;
  color: #fff;
} */

.company-contents .js-tab-contents-bg{
  background-color: #E9F0F8;
}

.company-contents .js-tab-btn__schedule.current{
  background-color:#19398C;
  color: #fff;
}

.time-table-contents .js-tab-btn__schedule.current{
  background-color: #37619E;
  color: #fff;
}

.js-tab-btn__schedule{
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  background-color: #D3D3D3;
  color: #fff;
  width: 50%;
  text-align: center;
  padding: 16px;
  border-radius: 5px 5px 0 0;
  cursor: pointer;
  font-weight: bold;
  /* margin: 0 16px; */
}

.js-tab-btn__schedule span{
 font-size: 18px;
}

.time-table-contents .time-schedule .js-tab_inner{
  background-color: #fff;
  padding: 40px 16px;
}

.time-table-contents{
  margin: 40px 0 80px;
}

.wrapper-time-schedule .time-schedule__title{
  font-size: 20px;
  font-weight: bold;
  color: #2861A3;
  background-color: #FDEA3C;
  padding: 12px 0;
  text-align: center;
  width: 45%;
  margin: 0 auto 40px;
  border-radius: 40px;
}

/* .time-table-contents .js-tab-contents-bg{
  background-color: #FCFCFC;
} */

.tab-part{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  /* position: absolute;
  top: -50px;
  left: 0;
  right: 0; */
}

/* .tab-part li:nth-child(1){
  margin-right: 8px;
}

.tab-part li:nth-child(2){
  margin-left: 8px;
} */

.js-tab-contents{
  border-radius: 0 0 8px 8px;
  /* background-color: #fff; */
  padding: 40px 0;
}

.company-contents .js-tab-contents{
  border-radius: 0 0 8px 8px;
  /* background-color: #fff; */
  padding: 64px 0;
}

@media screen and (max-width: 1024px) {
  .company-contents .js-tab-contents{
    width: 95%;
  }
}

@media screen and (max-width: 767px) {
  .list_tab{
    width: 100%;
  }

  .js-tab-contents{
    padding: 40px 10px;
  }

  .tab-part{
    overflow-y: hidden;
  }

  .js-tab-btn{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    font-size: 24px;
    padding: 16px 8px;
    margin: 0 8px;
  }

  .js-tab-btn span{
    font-size: 14px;
     padding: 5px 4.5px;
     margin-left: 4px;
  }

  .company-contents .js-tab-contents{
    width: 90%;
  }
}


/* ------------------------------
company
---------------------------------- */

.company{
  /* margin-top: 140px; */
}

.company-contents{
  /* background-color: #F4FBFF; */
  position: relative;
}

.company-list-contents{
  width: 100%;
  margin: 0 auto;
}

.company-list-parts{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  /* -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; */
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.company-list-parts .company-info-inner{
  width: 32%;
  margin: 0 8px 24px;
  padding: 16px;
  background-color: #fff;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* IEのための記述 */
@media all and (-ms-high-contrast: none) {
  .company-list-parts .company-info-inner{
    display: block;
  }
}

.company-info-inner .company-info-name{
  /* padding-top: 8px; */
}

.company-info-inner .company-info-name h4{
  font-weight: bold;
  line-height: 1.8;
  font-size: 19px;
  color: #18388B;
  padding-bottom: 4px;
}

/* .company-info-inner .company-info-name h4{
    padding-bottom: 8px;
}

.company-info-inner .company-info-name h4 a{
  font-weight: bold;
  line-height: 1.8;
  font-size: 18px;
  transition: .3s;
  color: #262626;
}

.company-info-inner .company-info-name h4 a::after{
  font-family: "Font Awesome 5 Free";
  font-weight: 100;
  font-size: 14px;
  content: "\f2d2";
  width: 20px;
  height: 20px;
  margin-left: 4px;
  color: #7C7C7C;
  transition: .3s;
}

.company-info-inner .company-info-name h4 a:hover{
  color: #1088D0;
}

.company-info-inner .company-info-name h4 a:hover::after{
  color: #1088D0;
} */

.company-info-inner .company-info-name{
  border-bottom: 3px dotted #1A3C93;
  margin-bottom: 8px;
}
.company-info-inner .company-info-name .company-industry,
.company-info-inner .company-occupation{
  font-weight: bold;
  line-height: 1.7;
  /* color: #29A7E1; */
  padding-bottom: 10px;
  height: 100%;
}

/* IE対応記述 */
@media all and (-ms-high-contrast: none) {
  .company-info-inner .company-info-name .company-industry,
  .company-info-inner .company-occupation{
    height: auto;
  }
}

.company-info-inner .company-occupation::before{
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  content: "\f0b1";
  width: 18px;
  height: 20px;
  margin-right: 8px;
  font-size: 17px;
  color: #1A3C93;
  background-color: #FDEA3C;
  padding: 5px;
  border-radius: 30px;
}


/* IE対応記述 */
@media all and (-ms-high-contrast: none) {
  .company-info-inner .company-info-btn{
    margin-top: 16px;
  }
}

.company-info-inner .company-info-btn a{
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background-color: #1A3C93;
  display: block;
  padding: 12px;
  border-radius: 30px;
}

.company-info-inner .company-info-btn a::after{
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  content: "\f0a9";
  width: 18px;
  height: 20px;
  margin-left: 10px;
  font-size: 17px;
  color: #fff;
  transition: .3s;
}

.company-info-inner .company-info-btn a:hover::after{
  margin-left: 20px;
}

.company-info-inner .target-adoption{
  height: 100%;
}

/* IE対応記述 */
@media all and (-ms-high-contrast: none) {
  .company-info-inner .target-adoption{
    height: auto;
  }
}
.company-info-inner .target-adoption li{
  font-size: 16px;
  display: inline-block;
  background-color: #E9F0F8;
  padding: 6px 9px;
  text-align: center;
  margin-right: 6px;
  border-radius: 5px;
  font-weight: bold;
  margin-bottom: 10px;
}


/* .company-info-inner .administration-parts .company-info-name{
  text-align: center;
  border-bottom: 3px dotted #29A7E1;
  padding-top: 8px;
  margin-bottom: 16px;
}

.company-info-inner .administration-parts .company-info-name{
  font-size: 18px;
}

.company-info-inner .administration-name h4{
  text-align: center;
  font-weight: bold;
  line-height: 1.8;
  font-size: 18px;
  color: #262626;
  padding-bottom: 8px;
} */

/* .company-info-details{
  padding: 10px 8px 8px;
}

.company-info-details li:first-child{
  font-weight: bold;
  line-height: 1.8;
}

.company-info-details li:first-child::before{
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  content: "\f0b1";
  width: 18px;
  height: 20px;
  margin-right: 8px;
  font-size: 17px;
  color: #a5deff;
}

.company-info-details li:nth-child(2){
  text-align: justify;
  line-height: 1.8;
  color: #7c7c7c;
} */

@media screen and (max-width: 1200px){
  .company-list-parts .company-info-inner{
    width: 48%;
  }
}

@media screen and (max-width: 768px) {
  .company-list-parts .company-info-inner{
    width: 47%;
  }
}

@media screen and (max-width: 764px) {
  .company-list-parts{
    display: block;
  }

  .wrapper-time-schedule .time-schedule__title{
    width: 85%;
  }
}

@media screen and (max-width: 414px){
  .company {
    margin-top: 80px;
  }

  .company-pdf_btn a,.group-pdf_btn a{
    width: 320px;
    font-size: 18px;
  }

  .company-list-parts .company-info-inner{
    width: 100%;
    margin: 0 0 24px;
  }
}

/* ------------------------------
time-table
---------------------------------- */


.time-table{
  background-color: #FFFBD3;
}

.time-table .title-part h2{
  color: #F39800;
}

.time-table .title-part p{
  color: #F39800;
}

.event_text{
  font-size: 18px;
  /* font-weight: bold; */
  line-height: 1.7;
  margin: 40px 0;
  text-align: center;
}

.time-schedule{
  /* border-radius: 8px;
  margin: 100px auto 40px;
  padding-bottom: 40px; */
}
.time-schedule_title{
  /* text-align: center; */
}

.time-schedule_title h3{
  /* font-size: 24px;
  color: #fff;
  padding: 10px 0;
  width: 40%;
  margin: 0 auto 40px;
  background-color: #2695d1;
  border-radius: 5px; */
}



/*-------スケジュール -----------*/
.schedule-contents table{
  width: 95%;
  margin: 0 auto;
  border-collapse: collapse;
}

/* .schedule-contents__pc .lane-title__pc{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
}

.schedule-contents__pc .lane-title__pc li{
  width: 33%;
  padding: 16px 72px;
} */

.opening__pc{
  text-align: center;
  display: block;
  width: 98%;
  margin: 0 auto 24px;
  background-color: #FFFBD3;
  padding: 12px;
}

.opening__pc dt{
  display: inline-block;
  font-weight: bold;
  color: #fff;
  background-color: #F9CC55;
  padding: 8px 12px;
  text-align: center;
  border-radius: 50px;
}

.opening__pc dd{
  display: inline-block;
  text-align: center;
  letter-spacing: 0.6px;
  /* padding: 12px; */
  font-weight: bold;
  line-height: 1.7;
  padding-left: 16px;
}


.schedule-contents .schedule-part{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 24px;
}

.schedule-contents .schedule-part li{
  width: 32%;
  margin: 0 8px;
}

.schedule-contents table tr{
  /* background-color: #d8f1ff; */
  margin-bottom: 24px;
  display: block;
  /* display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; */
}

/* .schedule-contents table tr:nth-child(4){
  background-color: #EFEFEF;
} */

 .schedule-contents table th{
  /* position: relative;
  text-align: left;
  width: 25%; */
  text-align: center;
  padding: 10px 0;
  font-size: 15px;
  font-weight: bold;
  display: block;
  width: 100%;
  color: #fff;
  /* background-color: #b4d32c; */
}

 .schedule-contents table th p{
   display: block;
   /* padding: 10px 24px; */
   font-weight: bold;
 }

.schedule-contents table td{
  display: block;
  text-align: center;
  width: 100%;
  letter-spacing: 0.6px;
  padding: 0 12px 12px;
  font-weight: bold;
  line-height: 1.7;
}

.schedule-contents table td a{
  color: #262626;
  border-bottom: 1px solid #262626;
  transition: .3s;
}

.schedule-part .lane_blue{
  background-color:#4580C4;
}

.schedule-part .lane_green{
  background-color:#82BF71;
}

.schedule-part .lane_pink{
  background-color:#F5B2C4;
}

.schedule-part .lane_blue .lane_blue__title{
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 12px;
  border-radius: 30px;
  color:#4580C4;
  background-color:#E9F0F8;
  width: 95%;
  margin: 12px auto;
}

.schedule-part .lane_green .lane_green__title{
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 12px;
  border-radius: 30px;
  color:#82BF71;
  background-color:#ECFAE5;
  width: 95%;
  margin: 12px auto;
}


.schedule-part .lane_pink .lane_pink__title{
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 12px;
  border-radius: 30px;
  color:#F5B2C4;
  background-color:#FFEFF3;
  width: 95%;
  margin: 12px auto;
}

.schedule-part li table tr{
  background-color: #fff;
}

.schedule-part .lane_blue table tr th{
  color:#4580C4;
}

.schedule-part .lane_green table tr th{
  color:#82BF71;
}

.schedule-part .lane_pink table tr th{
  color:#F5B2C4;
}

.schedule-part .lane_green table tr td.small-size{
  font-size: 14px;
}

.schedule-part .lane_green table tr td span.small-size{
  font-size: 12px;
}
/*
.schedule-part li .lane_green tr td a:hover{
  color: #B1D11C;
  border-bottom: 1px solid #B1D11C;
}

.schedule-part li .lane_pink tr td a:hover{
  color: #EB6EA5;
  border-bottom: 1px solid #EB6EA5;
}

.schedule-part li .lane_orange tr td a:hover{
  color: #F39800;
  border-bottom: 1px solid #F39800;
}

.schedule-part li .lane_orange tr.space-parts{
  height: 85px;
} */

.schedule-contents__pc{
  display: block;
}
.schedule-part li table .schedule__sp{
  display: none;
}

.schedule__sp{
  display: none;
}

.schedule-part li table .schedule__sp img{
  display: none;
}
/*
.schedule-part li .lane_green tr th{
  background-color: #B1D11C;
}

.schedule-part li .lane_green tr td{
  background-color: #F3FCCD;
}

.schedule-part li .lane_pink tr th{
  background-color: #EB6EA5;
}

.schedule-part li .lane_pink tr td{
  background-color: #FFE8F2;
}

.schedule-part li .lane_orange tr th{
  background-color: #F39800;
}

.schedule-part li .lane_orange tr td{
  background-color: #FFECCC;
} */

.consultation-contents{
  max-width: 1100px;
  margin: 0 auto 100px;

}

.consultation-contents .wrapper{
  width: 98%;
  margin: 0 auto;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
}

.consultation-contents .wrapper .booth-title{
  background-color: #29A7E1;
  width: 27%;
  position: relative;
}

.consultation-contents .wrapper .booth-title h4{
  font-size: 20px;
  color: #fff;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
}

.consultation-contents .wrapper .booth-title::after{
  content: "";
  position: absolute;
  right: -38px;
  top: 50%;
  transform: translateY(-50%);
  -webkit- transform: translateY(-50%);
  border: 15px solid transparent;
  border-left: 15px solid #2aa7e1;
  z-index: 0;
}

.booth-parts{
  width: 73%;
}

.booth-parts ul{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  border: 8px solid #29A7E1;
  background-color: #fff;
  padding: 16px 32px;
}

.booth-parts ul li{
  width: 45%;
  margin: 0 auto;
  font-weight: bold;
}

.booth-parts ul li dl dt{
  background-color: #29A7E1;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}

.booth-parts ul li dl dt span{
  padding-left: 16px;
}

.booth-parts ul li dl dt span::before{
  font-family: "Font Awesome 5 Free";
  font-weight: 100;
  content: "\f017";
  width: 18px;
  height: 20px;
  margin-right: 4px;
  color: #fff;
}

.booth-parts ul li dl dd{
  background-color: #E2F6FF;
  text-align: center;
  padding: 16px 0;
  font-weight: bold;
}

@media screen and (max-width: 1024px) {
  /* .schedule-contents__pc .lane-title__pc li{
    padding: 16px 40px;
  } */
}
@media screen and (max-width: 767px) {
  .scroll{
  height: 700px;
  overflow: auto;
  }

  .schedule-part li .lane_orange tr.space-parts{
    display: none;
  }

  .schedule-contents__pc{
    display: none;
  }

  .schedule__sp{
    display: block;
  }

  .schedule__sp img{
    padding: 0 64px 24px;
  }
  .schedule-part li table .schedule__sp{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
  }
  .schedule-contents table{
    width: 100%;
  }

  .schedule-contents table tr{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    margin-bottom: 16px;
  }
  .time-schedule_title h3{
    width: 60%;
  }

  .schedule-contents .schedule-part{
    display: block;
  }

  .schedule-contents .schedule-part li{
    width: 100%;
    margin: 0 0 40px;
    padding: 14px 8px;
  }

  .time-table-contents .time-schedule .js-tab_inner{
    padding: 40px 8px 20px;
  }

  .time-schedule_title h3{
    font-size: 23px;
    width: 100%;
  }

  .schedule-contents table th p{
    padding: 10px 4px;
    font-size: 14px;
  }

  .schedule-contents table th{
    width: 30%;
  }

  .schedule-contents table td{
    padding: 12px 4px;
    line-height: 2;
    text-align: left;
  }

  .consultation-contents{
    width: 95%;
  }

  .consultation-contents .wrapper{
    width: 100%;
    display: block;
  }

  .consultation-contents .wrapper .booth-title{
    width: 100%;
    text-align: center;
  }

  .consultation-contents .wrapper .booth-title h4{
    position: static;
    transform: none;
    padding: 18px 0 10px;
  }

  .consultation-contents .wrapper .booth-title::after{
    bottom: -34px;
    left: 50%;
    right: auto;
    top: auto;
    border: 15px solid transparent;
    border-top: 15px solid #2aa7e1;
    transform: translateY(0%) translateX(-50%);
    -webkit- transform: translateY(0%) translateX(-50%);
  }

  .booth-parts{
    width: 100%;
  }

  .booth-parts ul{
    display: block;
    padding: 16px;
  }

  .booth-parts ul li{
    width: 100%;
    padding: 8px 0;
  }
}




/* ------------------------------
flow
---------------------------------- */
.flow{
  margin: 80px 0 64px;
  /* background-color: #F4FBFF;
  background-image:
  repeating-linear-gradient( 90deg, #fff , #fff 1px, transparent 1px, transparent 32px ),
   repeating-linear-gradient( 0deg, #fff , #fff 1px, #f4fbff 1px, #f4fbff 32px ); */
}

.wrapper-flow{
  /* padding-bottom: 100px; */
}

.application h3{
  /* font-family: 'M PLUS 1p', sans-serif; */
  width: 32%;
  font-size: 20px;
  color: #1A3A8D;
  border-radius: 50px;
  padding: 10px 24px;
  margin: 0 auto 32px;
  text-align: center;
  background-color: #FDEA3C;
}

.application-part{
  width: 80%;
  margin: 32px auto;
  border-radius: 10px;
  background-color: #E9F0F8;
  position: relative;
}

/* .application-part::before {
  content: '';
  background-image: url(../image/flow-hi_suit.png);
  display: inline-block;
  width: 100px;
  height: 173px;
  background-repeat: no-repeat;
  background-size: cover;
  vertical-align: middle;
  position: absolute;
  bottom: -75px;
  right: -25px;
} */

.application-part li{
  margin: 0 auto;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; */
  /* background-color: #fff; */
  /* margin-bottom: 24px; */
  padding: 16px;
}

.application-number{
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: bold;
  padding: 12px 16px;
  border-radius: 50px;
  border: 2px solid #1A3A8D;
  background-color: #fff;
  color: #1A3A8D;
  margin: 0 24px;
}

.application-part li p{
  font-size: 16px;
  line-height: 1.7;
}

.application-part li .application-part__text p:nth-child(2){
    font-weight: bold;
}

.application-part li:first-child p span{
  color: #DB3A3A;
}

.application-part li:nth-child(2) p span{
  color: #DB3A3A;
  font-weight: bold;
}

.advance-preparation-text{
  font-size: 18px;
  line-height: 1.7;
  text-align: center;
}

.advance-preparation-contents{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  /* -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; */
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 40px auto 0;
  width: 80%;
}

.advance-preparation-contents li{
  padding: 20px 16px;
  width: 48%;
  margin: 0 8px;
  border-radius: 10px;
  position: relative;
}

.advance-preparation-contents li:first-child{
  background-color: #ECFAE5;
}

.advance-preparation-contents li:first-child dl dt{
  font-size: 18px;
  font-weight: bold;
  color: #82BF71;
  border: 2px solid #82BF71;
  background-color: #fff;
  border-radius: 40px;
  padding: 4px;
}

.advance-preparation-contents li:first-child dl dt::before{
  content: '';
  background-image: url(../image/pc_icon.png);
  display: inline-block;
  width: 30px;
  height: 27px;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: text-top;
  margin: 0 8px;
}

.advance-preparation-contents li:nth-child(2){
  background-color: #FFEFF3;
}

.advance-preparation-contents li:nth-child(2) dl dt{
  font-size: 18px;
  font-weight: bold;
  border: 2px solid #F5B2C4;
  border-radius: 40px;
  background-color: #fff;
  color: #F5B2C4;
  padding: 4px;
}

.advance-preparation-contents li:nth-child(2) dl dt::before{
  content: '';
  background-image: url(../image/sp_icon.png);
  display: inline-block;
  width: 17px;
  height: 27px;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: text-top;
  margin: 0 8px;
}

.advance-preparation-contents li dl dd{
  padding-top: 16px;
  text-align: justify;
  line-height: 1.7;
}

.advance-preparation-contents li dl dd a{
  color: #B1D11C;
  text-decoration: underline;
  transition: .3s;
}

.advance-preparation-contents li dl dd a:hover{
  color: #8ea912;
}
.enter h3,.advance-preparation h3{
  width: 30%;
  font-size: 20px;
  color: #1A3A8D;
  border-radius: 50px;
  padding: 10px 24px;
  margin: 88px auto 32px;
  text-align: center;
  background-color: #FDEA3C;
}

.enter-text{
  text-align: center;
  font-size: 18px;
  padding-bottom: 24px;
  line-height: 1.7;
}

.enter-part{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.enter-part li{
  width: 30%;
  margin: 10px;
  background-color: #E9F0F8;
  padding: 16px 8px;
  border-radius: 10px;
}

.enter-part li figure{
  padding: 8px 24px;
}

.enter-part li dl dt{
  background-color: #fff;
  border: 2px solid #213B88;
  border-radius: 40px;
  padding: 8px;
  margin: 0 auto;
  width: 65%;
}

/* .enter-part li dl dt:before {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #2aa7e1;
  z-index: 0;
} */

.enter-part li dl dt p{
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: #213B88;
  letter-spacing: 1px;
}

.enter-part li dl dd{
  line-height: 1.7;
  text-align: justify;
}

.enter-part li dl dd p{
  padding: 0 10px;
  line-height: 1.8;
}

/* .venue-access-contents ul{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
} */


.details-btn{
  margin: 0 auto;
}

.details-btn a{
  font-family: 'M PLUS 1p', sans-serif;
  text-align: center;
  color: #29A7E1;
  padding: 4px;
  border-bottom: 1px solid #29A7E1;
  transition: .3s;
}

.details-btn a::after{
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  content: "\f105";
  width: 18px;
  height: 20px;
  margin-left: 16px;
  color: #29A7E1;
}

.details-btn a:hover{
  color: #1088D0;
  border-bottom: 1px solid #1088D0;
}

.details-btn a:hover::after{
  color: #1088D0;
}

.details-btn{
  margin: 16px auto 10px;
  width: 70%;
  text-align: center;
}

.consultation{
  width: 97%;
  margin: 10px auto;
  background-color: #fff;
  padding: 16px;
  border: 8px solid #1088D0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}


.consultation h4{
  width: 50%;
  font-family: 'M PLUS 1p', sans-serif;
  font-size: 18px;
  color: #1088D0;
  text-align: center;
  line-height: 1.7;
  padding-right: 20px;
}

.consultation-text{
  border-left: dotted 3px #1088D0;
  padding: 8px 0 8px 16px;
}

.consultation-text p{
  line-height: 1.7;
}

.application-form p{
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
}

.application-form__btn a{
  font-size: 20px;
  font-weight: bold;
  display: inline-block;
  color: #fff;
  background-color: #F15A25;
  border-radius: 50px;
  border-bottom: 5px solid #FAB377;
  padding: 16px 80px;
}

.application-form__btn a::after{
  font-family: "Font Awesome 5 Free";
    font-weight: 600;
    content: "\f105";
    width: 18px;
    height: 20px;
    margin-left: 16px;
    color: #fff;
}

@media screen and (max-width: 768px) {
  .enter h3{
    width: 50%;
  }

  .application h3{
    width: 35%;
  }

  .application-part{
    width: 100%;
  }

  .enter h3, .advance-preparation h3{
    width: 45%;
  }

  .advance-preparation-contents{
    width: 100%;
  }

  .advance-preparation-contents li:nth-child(2) dl dt{
    font-size: 15px;
  }
}

@media screen and (max-width: 764px) {
  .application h3{
    width: 80%;
  }
  .application-part{
    width: 100%;
  }
  .application-part li{
    padding: 10px 10px 10px 0;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .application-number{
    font-size: 18px;
    padding: 8px 12px;
    margin: 8px 12px 0;
  }

  .application-part::before{
    bottom: -82px;
    right: -5px;
    width: 68px;
    height: 115px;
  }

  .enter h3, .advance-preparation h3{
    width: 85%;
    padding: 10px 16px;
  }

  .advance-preparation-contents{
    display: block;
  }

  .advance-preparation-contents{
    width: 100%;
  }

  .advance-preparation-contents li{
    width: 100%;
    margin: 0 auto 24px;
  }

  /* .advance-preparation-contents li:first-child::before{
    width: 80px;
    height: 133px;
    bottom: -75px;
    right: -10px;
    left: auto;
  }

  .advance-preparation-contents li:nth-child(2)::before{
    width: 56px;
    height: 125px;
    right: 0;
    bottom: -85px;
  } */

  .enter-text{
    text-align: justify;
    font-size: 16px;
  }

  .advance-preparation-contents li{
    padding: 20px 12px;
  }

  /* .advance-preparation-contents li:nth-child(2) dl dt{
    font-size: 15px;
  }

  .advance-preparation-contents li:nth-child(2) dl dt{
    font-size: 15px;
  } */

  .advance-preparation-contents li:nth-child(2) dl dt::before{
     vertical-align: middle;
  }

  .advance-preparation-contents li:first-child dl dt::before,
  .advance-preparation-contents li:nth-child(2) dl dt::before{
    margin-right: 4px;
  }

  .advance-preparation-text{
    text-align: justify;
    font-size: 16px;
  }


  .application-part li p{
    font-size: 14px;
    text-align: justify;
  }

  .enter-part li{
    width: 95%;
  }

  .enter-part li figure{
    width: 70%;
    margin: 0 auto;
  }

  .enter-part li figure{
    padding: 16px 6px 0;
  }


  .consultation{
    display: block;
  }

  .consultation h4{
    font-size: 17px;
    width: 100%;
    padding: 0 0 10px;
  }

  .consultation-text{
    border-left: none;
    border-top: dotted 3px #1088D0;
    padding: 8px 0;
    text-align: justify;
  }

  .application-form{
    padding: 40px 24px;
  }

  .application-form__btn a{
    padding: 16px 42px;
    line-height: 1.3;
    font-size: 18px;
  }
}

@media screen and (max-width: 414px){

}

/* ------------------------------
Q&A
---------------------------------- */
.question{
}

/* .question .wrapper-question .title-part{
  padding: 80px 0 0;
} */

.question .title-part h2{
  color: #2861A3;
}

.question-part{
  width: 90%;
  padding-bottom: 100px;
  margin: 0 auto;
}
/*====================================================================
.s_01 .accordion_one
====================================================================*/
.s_01 .accordion_one {
    max-width: 1024px;
    margin: 0 auto 16px;
}
.s_01 .accordion_one .accordion_header {
    background-color: #2861A3;
    font-weight: bold;
    padding: 16px;
    position: relative;
    z-index: +1;
    cursor: pointer;
    transition-duration: 0.2s;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
}

.s_01 .accordion_one .accordion_header span{
  font-family: 'Roboto', sans-serif;
  color: #fff;
  border: 2px solid #fff;
  font-size: 20px;
  padding: 4px 8px;
  border-radius: 50px;
  margin-right: 16px;
}

.s_01 .accordion_one .accordion_header:hover {
    opacity: .9;
}
.s_01 .accordion_one .accordion_header .i_box {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    right: 2%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    box-sizing: border-box;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transform-origin: center center;
    transition-duration: 0.2s;
}
.s_01 .accordion_one .accordion_header .i_box .one_i {
    display: block;
    width: 18px;
    height: 18px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transform-origin: center center;
    transition-duration: 0.2s;
    position: relative;
}
.s_01 .accordion_one .accordion_header.open .i_box {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
}
.s_01 .accordion_one .accordion_header .i_box .one_i:before, .s_01 .accordion_one .accordion_header .i_box .one_i:after {
    display: flex;
    content: '';
    background-color: #fff;
    border-radius: 10px;
    width: 18px;
    height: 4px;
    position: absolute;
    top: 7px;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transform-origin: center center;
}

.accordion_header{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.accordion_header p{
  font-weight: bold;
}

.txt_a_ac{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.txt_a_ac span{
  font-family: 'Roboto', sans-serif;
  color: #2861A3;
  border: 2px solid #2861A3;
  font-size: 20px;
  padding: 4px 8px;
  border-radius: 50px;
  margin-right: 16px;
  /* font-family: 'Lato', sans-serif;
  font-size: 20px;
  padding-right: 16px;
  color: #DB3A3A;
  display: inline-block;
  line-height: 1.4; */
}

.txt_a_ac p{
  line-height: 1.4;
}

.s_01 .accordion_one .accordion_header .i_box .one_i:before {
    width: 4px;
    height: 18px;
    top: 0;
    left: 7px;
}
.s_01 .accordion_one .accordion_header.open .i_box .one_i:before {
    content: none;
}
.s_01 .accordion_one .accordion_header.open .i_box .one_i:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.s_01 .accordion_one .accordion_inner {
    display: none;
    padding: 24px 16px;
    background-color: #E9F0F8;
    box-sizing: border-box;
    border-radius: 5px;
}

.s_01 .accordion_one .accordion_inner .box_one {
    height: auto;
}
.s_01 .accordion_one .accordion_inner p.txt_a_ac {
    margin: 0;
    line-height: 1.4;
}
@media screen and (max-width: 1024px) {
    .s_01 .accordion_one .accordion_header {
        font-size: 18px;
    }
    .s_01 .accordion_one .accordion_header .i_box {
        width: 30px;
        height: 30px;
        margin-top: -15px;
    }
}

@media screen and (max-width: 768px) {
  .question-part{
    padding-bottom: 140px;
  }

}
@media screen and (max-width: 767px) {
    .s_01 .accordion_one .accordion_header {
        font-size: 16px;
        text-align: left;
        padding: 15px 40px 15px 15px;
        line-height: 1.4;
    }

    .question-part{
      width: 95%;
    }

    .s_01 .accordion_one .accordion_header span{
      margin-right: 8px;
      padding: 1px 8px;
    }

    .s_01 .accordion_one .accordion_header{
      padding: 15px 40px 15px 10px;
    }

    .s_01 .accordion_one .accordion_inner{
      padding: 24px 10px;
    }

    .question-part {
    padding-bottom: 60px;
    }


}


/* ------------------------------
footer
---------------------------------- */

footer{
  background-color: #2861A3;
  position: relative;
  font-weight: bold;
}

.wrapper-footer {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 0;
}


.footer-part{
  width: 90%;
  margin: 0 auto;
  padding: 16px 32px;
  background-color: #fff;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer-left{
  width: 50%;
}

.footer-left p{
  width: 30%;
  padding-bottom: 8px;
}

.footer-right{
  width: 35%;
}

.footer-left ul li:first-child{
  line-height: 1.7;
  padding-bottom: 8px;
}

.footer-left ul li:nth-child(n + 1){
    line-height: 1.7;
}

.footer-left ul li span{
  background-color: #FFED31;
  padding: 2px 8px;
  border-radius: 5px;
  margin-right: 8px;
}

.footer-left ul li a{
  color: #2861A3;
}

.footer-left ul li a::after{
  font-family: "Font Awesome 5 Free";
    font-weight: 600;
    content: "\f0a9";
    width: 15px;
    height: 15px;
    margin-left: 8px;
    font-size: 15px;
    color: #2861A3;
    transition: .3s;
}

.footer-left ul li a:hover::after{
    margin-left: 16px;
}

.copyright-part p{
  text-align: center;
  padding: 10px 0;
  font-size: 12px;
}

.copyright-part{
  background-color: #fff;
  padding-bottom: 80px;
}

.footer-right p{
  background-color: #FFED31;
  text-align: center;
  padding: 5px 16px;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 4px;
  font-weight: bold;
}

.footer-tel a{
  color: #262626;
}

.footer-tel a,.footer-mail{
  line-height: 1.7;
  /* color: #2695D1; */
}


/* .footer-tel::before{
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  content: "\f095";
  width: 18px;
  height: 20px;
  margin-right: 4px;
  color: #2695D1;
}

.footer-mail::before{
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  content: "\f0e0";
  width: 18px;
  height: 20px;
  margin-right: 4px;
  color: #2695D1;
} */



.footer-part li img{
  width: 100%;
}

.footer-small{
  font-size: 12px;
  line-height: 1.4;
}

@media screen and (max-width: 768px){
  footer::before{
      background-size: contain;
      top: -180px;
  }

  footer::after{
    width: 145px;
    height: 136px;
    top: -160px;
  }

  .footer-part{
    width: 98%;
  }

  .footer-right{
    width: 42%;
  }
}

@media screen and (max-width: 745px){
  footer::before{
    height: 172px;
    top: -115px;
  }

  footer::after{
    width: 96px;
    height: 89px;
    top: -96px;
  }

  .footer-part{
    display: block;
    width: 100%;
    padding: 24px 10px;
  }

  .footer-left {
    width: 100%;
    padding-bottom: 16px;
  }

  .footer-right {
    width: 100%;
  }

  .footer-left p{
    width: 50%;
  }

  .footer-left ul li:nth-child(n + 1){
      font-size: 14px;
  }

  .footer-right p{
    display: block;
  }
  /* .footer-text{
    width: 100%;
    padding: 48px 16px;
  }

  .footer-part li {
    width: 30%;
    margin: 0 16px;
  }

  .footer-text{
    padding: 32px 16px;
  } */
}
