/*

【CSS記述ルール】

① font-sizeはpxで指定してください
　（rem、%等の指定はしないようお願いいたします）

② xxxxxx はディレクトリ名に変更してください

③ 必ずディレクトリ名が付いたidセレクタを先頭に記述した後に、要素を記述してください
　（例：#oneday .inner、#oneday .page-title 等）

④ CSS内の画像指定パスは、CSSファイルから見た相対パスで指定してください
　（例：../images/ディレクトリ名/画像名.拡張子）

*/
#information {
  background-color: #fff100;
  font-size: 13px;
  line-height: 1.6;
  position: relative;
  z-index: 0;
  padding-bottom: 75px;
}

#information * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

#information img {
  line-height: 1;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

#information p {
  text-align: left;
}

#information.font-noto {
  font-family: 'Noto Sans JP', Futura, "Century Gothic", 游ゴシック体, YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", 游ゴシック, "Yu Gothic", メイリオ, Meiryo, sans-serif;
  font-weight: 500;
  font-style: normal;
}

#information .font-cinema {
  font-family: tbcinergothic-std, Futura, "Century Gothic", 游ゴシック体, YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", 游ゴシック, "Yu Gothic", メイリオ, Meiryo, sans-serif;
  font-weight: 600;
  font-style: normal;
}

#information .font-mic{
  font-family: mic-32-new-rounded-web, sans-serif;
  font-weight: 400;
  font-style: normal;
}

#information .font-iroha{
  font-family: "irohamaru-mikami", sans-serif;
  font-weight: 500;
  font-style: normal;
}

/*css fadeIn Up*/
/*=================================================*/
@keyframes fadeInUp {
  from {
    transform: translate3d(0, 150px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

}

#information .animated {
  animation-duration: 1.5s;
  animation-fill-mode: both;
}

#information .fadeInUp {
  opacity: 0;
  animation-name: fadeInUp;
}

/*=================================================*/
#information .txt-red {
  color: #ea0000;
}

#information .flex {
  display: flex;
  flex-wrap: wrap;
}

#information .information-tab-contents.close {
  display: none;
}

#information .information-tab-contents.open {
  display: block;
}

#information .inner {
  margin: 0 auto;
  max-width: 500px;
  padding: 0px 12px;
}

#information .information-tab {
  position: relative;
  background-color: #fff;
  border-radius: 10px;
}

#information .information-tab:after {
  position: absolute;
  content: "";
  background: url("../images/information/information_bg_img01_sp.png") bottom right;
  background-size: 11px 11px;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 6px;
  right: -6px;
  border-radius: 10px;
}

#information .information-tab-contents {
  position: relative;
}

#information .information-ttl {
  padding: 0 0 15px;
  text-align: center;
}

#information .information-ttl .en{
  display: block;
  color: #5c7ce5;
  font-size: 15px;
  font-weight: 600;
}

#information .information-ttl .ja{
  position: relative;
  display:inline-block;
  color: #000;
  font-size: 25px;
}

#information .information-ttl .ja::before{
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: #000;
  border-radius: 99px;
}
@media screen and (max-width: 767px) { /* ---------- スマホ以下 ---------- */
  #information .pc-br ,
  #information .pc-only {
    display: none;
  }

  #information .information-tab-contents:before {
    position: absolute;
    content: "";
    background: url("../images/information/information_bg_img02_sp.png");
    background-size: contain;
    width: 59px;
    height: 69px;
    bottom: -71px;
    left: -12px;
    z-index: 1;
  }

  #information .information-tab-contents:after {
    position: absolute;
    content: "";
    background: url("../images/information/information_bg_img03_sp.png");
    background-size: contain;
    width: 70px;
    height: 71px;
    bottom: -75px;
    right: -12px;
    z-index: 1;
  }

}

@media print, screen and (min-width: 768px) { /* ---------- タブレット・PC以上 ---------- */
  #information {
    padding-bottom: 190px;
  }

  #information .pc-br ,
  #information .pc-only{
    display: inline;
  }

  #information .sp-br {
    display: none;
  }

  #information .information-ttl {
    padding: 0 0 40px;
  }

  
  #information .information-ttl .en{
    font-size: 30px;
  }

  #information .information-ttl .ja{
    font-size: 50px;
  }

  #information .information-ttl .ja::before{
    height: 6px;
  }
  
  #information .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  #information .information-tab:after {
    background: url("../images/information/information_bg_img01_pc.png") bottom left;
    background-size: 18px 18px;
    z-index: -1;
    top: 10px;
    right: -10px;
    border-radius: 20px;
  }

  #information .content-box {
    width: 100%;
    max-width: 1490px;
    margin: 0 auto;
    position: relative;
  }

  #information .content-box:before {
    position: absolute;
    content: "";
    background: url("../images/information/information_bg_img02_pc.png");
    background-size: contain;
    width: 160px;
    height: 200px;
    bottom: -160px;
    left: 0;
    z-index: 1;
  }

  #information .content-box:after {
    position: absolute;
    content: "";
    background: url("../images/information/information_bg_img03_pc.png");
    background-size: contain;
    width: 176px;
    height: 212px;
    bottom: -165px;
    right: 17px;
    z-index: 1;
  }

  #information .information-tab {
    border-radius: 20px;
  }

  .pc-text {
    font-size: 20px;
  }

}

/*========================
  -------メニューボタン------------
  =======================*/
#information .info-intern-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 270px;
  margin: 0 auto 10px;
}

#information .info-intern-item {
  position: relative;
  padding-top: 15px;
}

#information .info-intern-item::after {
  position: absolute;
  content: "New";
  color: #FF3990;
  font-family: mic-32-new-rounded-web, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  line-height: 1;
  top: 0;
  left: 6px;
}

#information .info-intern-item:last-of-type a{
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
}

#information .info-intern-link {
  position: relative;
  display: block;
  width: 130px;
  height: 40px;
  padding-top: 3px;
  background-color: #FFA800;
  border-radius: 8px;
  color: #000000;
  font-size: 12px;
  letter-spacing: .08em;
  line-height: 1.42;
  text-align: center;
  z-index: 0;
}

#information .info-intern-item:nth-of-type(2) .info-intern-link {
  background-color: #B7EB09;
}

#information .info-intern-link::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url("../images/information/information_intern_bg_sp.png") no-repeat center center / contain;
  top: 0;
  left: 0;
  z-index: 0;
}

#information .info-intern-link:hover {
  text-decoration: none;
}

#information .info-intern-link .small{
  font-size: 10px;
}

#information .info-intern-link .small02{
  font-size: 10px;
  letter-spacing: 0;
}

#information .info-intern-item.comingsoon::after{
  content: "Coming Soon";
}

#information .info-intern-item.comingsoon .info-intern-link{
  background-color: transparent;
  pointer-events: none;
}

#information .information-tab-menu {
  justify-content: space-between;
  margin-bottom: 6px;
}

#information .information-tab-menu-btn {
  width: 20%;
  text-align: center;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.25;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 8px;
  background: url("../images/information/information_tab_menu_un_sp.png") no-repeat top center/contain;
  color: #000;
}

#information .information-tab-menu-btn.active .tab-menu-img {
  opacity: 0;
}

#information .information-tab-menu-btn.active,
#information .information-tab-menu-btn:nth-of-type(5).active{
  background: url("../images/information/information_tab_menu01_sp.png") no-repeat top center/contain;
  color: #fff;
}

#information .information-tab-menu-btn:nth-of-type(2).active,
#information .information-tab-menu-btn:nth-of-type(4).active{
  background: url("../images/information/information_tab_menu02_sp.png") no-repeat top center/contain;
  color: #fff;
}

#information .information-tab-menu-btn:nth-of-type(3).active {
  background: url("../images/information/information_tab_menu03_sp.png") no-repeat top center/contain;
  color: #fff;
}



@media print, screen and (min-width: 768px) { /* ---------- タブレット・PC以上 ---------- */
  #information .info-intern-menu {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 34px;
    padding: 0 20px;
    justify-content: flex-end;
  }

  #information .info-intern-item {
    margin-right: 20px;
    padding-top: 30px;
  }

  #information .info-intern-item:last-of-type {
    margin-right: 0;
  }
  
  #information .info-intern-item::after {
    font-size: 26px;
    left: 13px;
  }
  
  #information .info-intern-link {
    width: 260px;
    height: 84px;
    padding-top: 11px;
    background-color: transparent;
    border-radius: 15px;
    font-size: 24px;
    line-height: 1.307;
    transition: background-color .3s;
  }

  #information .info-intern-item:nth-of-type(2) .info-intern-link {
    background-color: transparent;
  }

  #information .info-intern-link::before {
    background: url("../images/information/information_intern_bg_pc.png") no-repeat center center / contain;
  }
  
  #information .info-intern-item:hover .info-intern-link{
    background-color: #FF6000;
    border-radius: 15px;
    color: #fff;
  }
  
  #information .info-intern-item:nth-of-type(2):hover .info-intern-link{
    background-color: #70E512;
  }
  
  #information .info-intern-item:hover .info-intern-link::before{
    background: none;
    border: 3px solid #000000;
    border-radius: 15px;
    box-sizing: border-box;
  }
  
  #information .info-intern-link .small{
    font-size: 20px;
  }

  #information .info-intern-link .small02{
    font-size: 20px;
    letter-spacing: 0;
  }
  
  #information .info-intern-item.comingsoon:hover .info-intern-link{
    background: transparent;
    color: #000;
  }
  
  #information .info-intern-item.comingsoon:hover .info-intern-link::before{
    background: url("../images/information/information_intern_bg_pc.png") no-repeat center center / contain;
    border: none;
  }
  
  #information .information-tab-menu-btn {
    width: 190px;
    height: 88px;
    text-align: center;
    background: url("../images/information/information_tab_menu_un_pc.png") no-repeat top center/contain;
    font-size: 24px;
    padding: 0 0 14px;
    letter-spacing: .05em;
  }

  #information .information-tab-menu {
    margin-bottom: 30px;
  }

  #information .information-tab-menu-btn.active,
  #information .information-tab-menu-btn:nth-of-type(5).active{
    width: 190px;
    background: url("../images/information/information_tab_menu01_pc.png") no-repeat top center/contain;
    height: 88px;
  }

  #information .information-tab-menu-btn:nth-of-type(2).active,
  #information .information-tab-menu-btn:nth-of-type(4).active {
    width: 190px;
    background: url("../images/information/information_tab_menu02_pc.png") no-repeat top center/contain;
    height: 88px;
  }

  #information .information-tab-menu-btn:nth-of-type(3).active {
    width: 190px;
    background: url("../images/information/information_tab_menu03_pc.png") no-repeat top center/contain;
    height: 88px;
  }


}

/*========================
  -------研修制度-------------
  =======================*/
#information #info-training {
  padding: 30px 0 20px;
}

#information #info-training .content01 {
  margin-bottom: 30px;
}

#information #info-training .content02 {
  max-width: 321px;
  margin: 0 auto;
}

#information #info-training .content02 .item01 {
  padding: 0 5px 16px;
  background: url("../images/information/information_dot_sp.png") repeat-x;
  background-size: 5px 3px;
  background-position: bottom left;
}

#information #info-training .content02 .item01-ttl, #information #info-training .content02 .item02-ttl, #information #info-training .content02 .item03-ttl {
  text-align: center;
}

#information #info-training .content02 .item01-txt {
  margin: 15px 10px;
  font-size: 13px;
}

#information #info-training .content02 .item01-txt:last-of-type {
  margin-bottom: 0;
  padding-left: 50px;
  font-size: 12px;
}

#information #info-training .content02 .item02 {
  padding: 14px 5px 16px;
  background: url("../images/information/information_dot_sp.png") repeat-x;
  background-size: 5px 3px;
  background-position: bottom left;
}

#information #info-training .content02 .item02-subttl {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}

#information #info-training .content02 .item02-txt-box {
  width: calc(100% - 62px);
}

#information #info-training .content02 .item02-txt {
  font-size: 13px;
  line-height: 1.54;
}

#information #info-training .content02 .item02-txt-box .txt-red {
  margin-top: 10px;
  padding-left: 40px;
  font-size: 12px;
  line-height: 1.5;
}

#information #info-training .content02 .item02-txt-box .txt-small {
  position: relative;
  margin-top: 12px;
  padding-left: 34px;
  font-size: 12px;
}

#information #info-training .content02 .item02-txt-box .txt-small02 {
  margin-top: 12px;
  font-size: 12px;
}

#information #info-training .content02 .item02-txt-box .txt-red .inversion {
  display: inline-block;
  width: 30px;
  margin-right: 9px;
  margin-left: -39px;
  text-align: center;
  color: #fff;
  background-color: #ef4040;
  font-weight: 400;
}

#information #info-training .content02 .item02-txt-box .txt-small .inversion {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 30px;
  text-align: center;
  background-color: #efc440;
}

#information #info-training .content02 .item02-item {
  justify-content: space-between;
  margin: 10px 0;
}

#information #info-training .content02 .item02-item:last-of-type {
  margin-bottom: 0;
}

#information #info-training .content02 .item03 {
  padding: 14px 5px 0;
}

#information #info-training .content02 .item03-txt {
  margin: 15px 10px 12px;
  font-size: 13px;
}

#information #info-training .content02 .item03-txt:last-of-type {
  margin: 0px 10px;
  font-size: 12px;
}

@media screen and (max-width: 767px) { /* ---------- スマホ以下 ---------- */
  #information #info-training .content01-txt {
    margin: 20px 18px;
    font-size: 12px;
    line-height: 1.67;
  }

  #information #info-training .content02 .item01-txt .ml-50, #information #info-training .content02 .item03-txt .ml-50 {
    margin-left: -50px;
  }

  #information #info-training .content02 .item02-txt-box {
    display: flex;
    flex-wrap: wrap;
  }

  #information #info-training .content02 .item02-txt-box .txt-small {
    letter-spacing: 0.2px;
    font-feature-settings: "palt";
  }

  #information #info-training .content02 .item02-item:first-of-type {
    margin-top: 15px;
  }

  #information #info-training .content02 .item02-subttl {
    background-color: #7bc1ea;
  }

  #information #info-training .content02 .item02-txt {
    margin-top: 3px;
  }

}

@media print, screen and (min-width: 768px) { /* ---------- タブレット・PC以上 ---------- */
  #information #info-training {
    padding: 64px 0 76px;
  }

  #information #info-training .content01 {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 82px;
  }

  #information #info-training .content01-img {
    display: flex;
    width: 412px;
    margin-right: 30px;
    align-items: center;
  }

  #information #info-training .content01-txt {
    width: calc(100% - 482px);
    margin-top: 32px;
    font-size: 20px;
    line-height: 1.8;
  }

  #information #info-training .content02 {
    max-width: 940px;
    margin: 0 auto;
  }

  #information #info-training .content02 .item01 {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 0 4px 36px;
    background: url("../images/information/information_dot_sp.png") repeat-x;
    background-size: 11px 6px;
    background-position: bottom left;
  }

  #information #info-training .content02 .item01-ttl, #information #info-training .item03-ttl {
    width: 310px;
  }

  #information #info-training .content02 .item01-txt {
    margin: 20px 0 0 22px;
    font-size: 20px;
  }

  #information #info-training .content02 .item01-txt:last-of-type {
    margin-top: 60px;
    padding-left: 0;
    font-size: 16px;
  }

  #information #info-training .content02 .item01-txt-box, #information #info-training .content02 .item03-txt-box {
    width: calc(100% - 310px);
  }

  #information #info-training .content02 .item02 {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 30px 24px 36px 4px;
    background: url("../images/information/information_dot_sp.png") repeat-x;
    background-size: 11px 6px;
    background-position: bottom left;
  }

  #information #info-training .content02 .item02-ttl {
    width: 144px;
  }

  #information #info-training .content02 .item02-subttl {
    width: 156px;
  }

  #information #info-training .content02 .item02-list {
    width: calc(100% - 154px);
    margin: 0 0 0 10px;
  }

  #information #info-training .content02 .item02-item {
    margin: 13px 0 0;
  }

  #information #info-training .content02 .item02-item:first-of-type {
    margin-top: 0;
  }

  #information #info-training .content02 .item02-txt-box {
    width: calc(100% - 186px);
  }

  #information #info-training .content02 .item02-txt {
    font-size: 20px;
    line-height: 1.8;
  }

  #information #info-training .content02 .item02-txt-box .txt-red {
    margin-top: 16px;
    padding-left: 34px;
    font-size: 16px;
    letter-spacing: 0.75px;
  }

  #information #info-training .content02 .item02-txt-box .txt-small {
    margin-top: 12px;
    padding-left: 50px;
    font-size: 16px;
    line-height: 1.125;
  }

  #information #info-training .content02 .item02-txt-box .txt-small02 {
    margin-top: 12px;
    font-size: 16px;
  }

  #information #info-training .content02 .item02-txt-box .txt-red .inversion {
    display: inline-block;
    width: 40px;
    height: 26px;
    margin-left: -34px;
    margin-right: 8px;
    text-align: center;
    color: #fff;
    background-color: #ef4040;
  }

  #information #info-training .content02 .item02-txt-box .txt-small .inversion {
    top: 6px;
    left: 0;
    display: inline-block;
    width: 40px;
    margin-left: 0;
    margin-right: 8px;
    padding: 4px 0;
    text-align: center;
    background-color: #efc440;
  }

  #information #info-training .content02 .item03 {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 30px 24px 0 4px;
  }

  #information #info-training .content02 .item03-txt {
    margin: 0 0 0 22px;
    font-size: 20px;
  }

  #information #info-training .content02 .item03-txt:last-of-type {
    margin: 20px 22px 0;
    padding-left: 0;
    font-size: 16px;
  }

}

/*========================
  -------福利厚生-------------
  =======================*/
#information #info-welfare {
  padding: 30px 10px 25px;
}

#information #info-welfare .welfare-img {
  margin-bottom: 15px;
  text-align: center;
}

#information #info-welfare .box-list {
  max-width: 311px;
  margin: 0 auto;
}

#information #info-welfare .welfare-item {
  width: 100%;
  margin-bottom: 15px;
}

#information #info-welfare .welfare-item:last-of-type {
  margin-bottom: 0;
}

#information #info-welfare .welfare-item .box-toggle{
  position: relative;
  padding: 10px 15px;
  background-color: #c6eaff;
  border-radius: 5px;
  overflow: hidden;
  transition: all .3s;
}

#information #info-welfare .welfare-item .box-toggle.is-open{
  background-color:#7ac9f8;
  color: #fff;
}

#information #info-welfare .welfare-item .box-toggle::before{
  position: absolute;
  content: "";
  width: 25px;
  height: 100%;
  top: 0;
  right: 0;
  background-color: #9ad7ff;
  z-index: 1;
  transition: all .3s;
}

#information #info-welfare .welfare-item .box-toggle::after{
  position: absolute;
  content: "";
  background: url("../images/information/information_welfare_item_more_sp.png")no-repeat center center / contain;
  width: 9px;
  height: 33px;
  top: calc(50% - 16.5px);
  right: 8px;
  z-index: 2;
  transition: all .3s;
}

#information #info-welfare .welfare-item .box-toggle.is-open::before,
#information #info-welfare .welfare-item .box-toggle.is-open::after{
  content: none;
}

#information #info-welfare .welfare-item .box-toggle .txt{
  order: 1;
  padding-left: 20px;
  font-size: min(15px,calc(0.8125rem + ((1vw - 3.2px) * 3.6364)));
  letter-spacing: .1em;
}

#information #info-welfare .list-contents {
  display: none;
}

#information #info-welfare .text-toggle {
  position: relative;
  margin-top: 15px;
  padding: 15px 10px;
  font-size: 12px;
  border: 5px solid #9ad7ff;
  border-radius: 3px;
}

#information #info-welfare .text-toggle:before {
  position: absolute;
  content: "";
  background: url("../images/information/information_welfare_arrow_sp.png") no-repeat;
  width: 14px;
  height: 17px;
  background-size: contain;
  top: -12px;
  left: calc(50% - 7px);
}

#information #info-welfare .inline-block, #information #info-welfare .sp-ib {
  display: inline-block;
}

#information #info-welfare .welfare-item:first-of-type .list-contents-detail {
  width: calc(100% - 51px);
  letter-spacing: 0;
}

#information #info-welfare .welfare-item:nth-of-type(2) .list-contents-detail {
  padding-left: 15px;
  align-items: flex-start;
}

#information #info-welfare .list-contents-txt {
  width: 100%;
}

#information #info-welfare .list-contents-txt-m {
  margin-top: 20px;
  font-size: 11px;
}

#information #info-welfare .txt-m {
  font-size: 11px;
}

@media screen and (max-width: 767px) { /* ---------- スマホ以下 ---------- */
  #information #info-welfare .welfare-item:first-of-type .text-toggle, 
  #information #info-welfare .welfare-item:nth-of-type(2) .text-toggle, 
  #information #info-welfare .welfare-item:nth-of-type(3) .text-toggle {
    padding: 15px 0;
  }

  #information #info-welfare .welfare-item:nth-of-type(2) .inline-block {
    width: calc(100% - 60px);
    letter-spacing: 0;
  }

  #information #info-welfare .welfare-item:nth-of-type(2) .inline-block:last-of-type {
    width: calc(100% - 102px);
    letter-spacing: 0;
  }

  #information #info-welfare .welfare-item:nth-of-type(2) .list-contents-txt {
    margin-bottom: 10px;
  }

  #information #info-welfare .welfare-item:nth-of-type(2) .list-contents-txt:last-of-type {
    margin-bottom: 0;
  }

  #information #info-welfare .welfare-item:nth-of-type(3) .list-contents-detail {
    padding-left: 20px;
  }
  
  #information #info-welfare .welfare-item .box-toggle{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

}

@media print, screen and (min-width: 768px) { /* ---------- タブレット・PC以上 ---------- */
  #information #info-welfare {
    padding-top: 64px;
  }

  #information #info-welfare .welfare-img {
    max-width: 822px;
    margin: 0 auto 60px;
  }

  #information #info-welfare .box-list {
    max-width: 820px;
    margin: 0 auto;
    justify-content: space-between;
  }

  #information #info-welfare .welfare-item {
    width: 240px;
  }

  #information #info-welfare .welfare-item .box-toggle{
    height: 300px;
    padding: 20px 0;
    border-radius: 10px;
    line-height: 1.2;
  }
  
  #information #info-welfare .welfare-item:nth-of-type(8) .box-toggle{
    padding-top: 10px;
  }
  
  #information #info-welfare .welfare-item .box-toggle::before{
    top: auto;
    bottom: 0;
    width: 100%;
    height: 32px;
  }
  
  #information #info-welfare .welfare-item .box-toggle::after{
    background: url("../images/information/information_welfare_item_more_pc.png")no-repeat center center / contain;
    width: 54px;
    height: 14px;
    top: auto;
    bottom: 9px;
    right: calc(50% - 27px);
  }
  
  #information #info-welfare .welfare-item .box-toggle .txt{
    padding: 0;
    font-size: 20px;
    text-align: center;
  }
  
  #information #info-welfare .welfare-item .box-toggle .image-wrap{
    width: 170px;
    position: absolute;
    top: 66px;
    left: calc(50% - 85px);
    transition: all .3s;
  }
  
  #information #info-welfare .welfare-item .box-toggle.is-open .image-wrap{
    transform: translateY(20px);
  }
  
  #information #info-welfare .list-contents {
    width: 820px;
  }

  #information #info-welfare .sp-ib {
    display: inline;
  }

  #information #info-welfare .welfare-item:nth-of-type(3n-1) .list-contents {
    margin-left: -290px;
  }

  #information #info-welfare .welfare-item:nth-of-type(3n) .list-contents {
    margin-left: -580px;
  }

  #information #info-welfare .text-toggle {
    position: relative;
    margin-top: 30px;
    padding: 36px;
    font-size: 20px;
    border: 10px solid #9ad7ff;
    border-radius: 5px;
  }

  #information #info-welfare .text-toggle:before {
    position: absolute;
    content: "";
    background: url("../images/information/information_welfare_arrow_pc.png") no-repeat;
    width: 27.5px;
    height: 33px;
    background-size: contain;
    top: -24px;
    left: calc(50% - 13.75px);
  }

  #information #info-welfare .welfare-item:nth-of-type(3n-2) .text-toggle:before {
    left: calc(50% - 303.75px);
  }

  #information #info-welfare .welfare-item:nth-of-type(3n) .text-toggle:before {
    left: calc(50% + 276.25px);
  }

  #information #info-welfare .welfare-item {
    margin-bottom: 30px;
    cursor: pointer;
  }

  #information #info-welfare .welfare-item:first-of-type .list-contents-detail {
    width: calc(100% - 83px);
  }

  #information #info-welfare .welfare-item:nth-of-type(2) .list-contents-txt {
    display: flex;
    margin-bottom: 40px;
  }

  #information #info-welfare .welfare-item:nth-of-type(2) .list-contents-txt:last-of-type {
    margin-bottom: 0;
  }

  #information #info-welfare .welfare-item:nth-of-type(2) .list-contents-ttl {
    width: 260px;
  }

  #information #info-welfare .welfare-item:nth-of-type(2) .list-contents-detail {
    width: calc(100% - 260px);
    display: inline-block;
  }

  #information #info-welfare .welfare-item:nth-of-type(3) .list-contents-txt {
    display: flex;
  }

  #information #info-welfare .list-contents-txt-m {
    margin-top: 30px;
    font-size: 16px;
    letter-spacing: -0.5px;
  }

  #information #info-welfare .txt-m {
    font-size: 20px;
  }

  #information #info-welfare .pc-txt-m {
    font-size: 16px;
  }

}

/*========================
  -------よくある質問-------------
  =======================*/
#information #info-faq {
  padding: 30px 10px 15px;
}

#information #info-faq .faq-img {
  margin-bottom: 15px;
  text-align: center;
}

#information #info-faq .faq-list-ttl {
  background: url("../images/information/information_dot_sp.png") repeat-x;
  background-size: 5px 3px;
  background-position: top left;
}

#information #info-faq .faq-list-ttl:first-of-type {
  background: none;
}

#information #info-faq .faq-list-ttl-btn {
  position: relative;
  display: block;
  width: 100%;
  padding: 30px 46px 20px 34px;
  background-color: transparent;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  border: none;
  outline: none;
  font-weight: 500;
  margin-top: 10px;
  font-family: 'Noto Sans JP', Futura, "Century Gothic", 游ゴシック体, YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", 游ゴシック, "Yu Gothic", メイリオ, Meiryo, sans-serif;
}

#information #info-faq .faq-list-ttl:first-of-type .faq-list-ttl-btn {
  margin-top: 0;
}

#information #info-faq .faq-list-ttl-btn.active {
  margin-bottom: 0;
}

#information #info-faq .faq-list-ttl-btn:before {
  position: absolute;
  content: "";
  background: url("../images/information/information_faq_icon01_sp.png") no-repeat;
  background-size: contain;
  width: 25px;
  height: 25px;
  top: 28px;
  left: 0;
}

#information #info-faq .faq-list-ttl-btn:after {
  position: absolute;
  content: "";
  background: url("../images/information/information_faq_icon03_sp.png") no-repeat;
  background-size: contain;
  width: 25px;
  height: 25px;
  top: 28px;
  right: 5px;
}

#information #info-faq .faq-list-ttl-btn.active:after {
  position: absolute;
  content: "";
  background: url("../images/information/information_faq_icon04_sp.png") no-repeat;
  background-size: contain;
  width: 25px;
  height: 25px;
  top: 28px;
  right: 5px;
}

#information #info-faq .txt-box {
  position: relative;
  padding: 15px 10px 15px 40px;
  background-color: #ecf1ff;
  border-radius: 3px;
}

#information #info-faq .txt-box:before {
  position: absolute;
  content: "";
  background: url("../images/information/information_faq_icon02_sp.png") no-repeat;
  background-size: contain;
  width: 25px;
  height: 25px;
  top: 20px;
  left: 0;
}

#information #info-faq .faq-list-box .txt {
  font-size: 14px;
}

@media screen and (max-width: 767px) { /* ---------- スマホ以下 ---------- */
  #information #info-faq .faq-list-ttl:first-of-type .faq-list-ttl-btn:before, #information #info-faq .faq-list-ttl:first-of-type .faq-list-ttl-btn:after, #information #info-faq .faq-list-ttl:nth-of-type(1) .faq-list-ttl-btn:before, #information #info-faq .faq-list-ttl:nth-of-type(1) .faq-list-ttl-btn:after {
    top: 34px;
  }

  #information #info-faq .txt-small {
    font-size: 13px;
  }

}

@media print, screen and (min-width: 768px) { /* ---------- タブレット・PC以上 ---------- */
  #information #info-faq {
    padding-top: 64px;
  }

  #information #info-faq .faq-img {
    max-width: 822px;
    margin: 0 auto 60px;
  }

  #information #info-faq .faq-list-container {
    max-width: 930px;
    margin: 0 auto;
  }

  #information #info-faq .faq-list-ttl {
    background: url("../images/information/information_dot_sp.png") repeat-x;
    background-size: 11px 6px;
    background-position: top left;
  }

  #information #info-faq .faq-list-ttl-btn {
    padding: 50px 60px 40px 80px;
    font-size: 20px;
    margin-top: 10px;
  }

  #information #info-faq .faq-list-ttl-btn:before {
    position: absolute;
    content: "";
    background: url("../images/information/information_faq_icon01_pc.png") no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    top: 40px;
    left: 0;
  }

  #information #info-faq .faq-list-ttl-btn:after {
    position: absolute;
    content: "";
    background: url("../images/information/information_faq_icon03_pc.png") no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    top: 40px;
    right: 0;
  }

  #information #info-faq .faq-list-ttl-btn.active:after {
    position: absolute;
    content: "";
    background: url("../images/information/information_faq_icon04_pc.png") no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    top: 40px;
    right: 0;
  }

  #information #info-faq .txt-box {
    padding: 30px 30px 30px 80px;
    border-radius: 5px;
  }

  #information #info-faq .txt-box:before {
    position: absolute;
    content: "";
    background: url("../images/information/information_faq_icon02_pc.png") no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    top: calc(50% - 25px);
    left: 0;
  }

  #information #info-faq .faq-list-box .txt {
    font-size: 20px;
  }

}

/*========================
  -------募集要項-------------
  =======================*/
#information #info-recruit {
  padding: 17px 10px 10px;
}

#information #info-recruit .banner-box {
  margin-bottom: 15px;
  justify-content: space-between;
}

#information #info-recruit .banner-box .banner-box{
  margin-top: 20px;
}

#information #info-recruit .essentials-banner {
  width: 220px;
  margin-bottom: 10px;
  padding: 2px 10px;
  background-color: #5ab1e5;
  color: #fff;
  font-size: 13px;
  border-radius: 2px;
}

#information #info-recruit .entry-banner-block{
  display: inline-block;
}

#information #info-recruit .accepting-txt{
  font-size: 12px;
}

#information #info-recruit .accepting-txt .large{
  font-size: 12px;
}

#information #info-recruit .accepting-txt .small{
  font-size: 12px;
}

#information #info-recruit .accepting-txt .orange{
  margin-right: 4px;
  color: #fa6f00;
}

#information #info-recruit .entry-banner {
  position: relative;
  width: 220px;
  z-index: 0;
}

#information #info-recruit .entry-banner a{
  display: block;
  width: 100%;
  height: 100%;
  padding: 2px 10px;
  background-color: #fa984a;
  border-radius: 2px;
  color: #fff;
  font-size: 13px;
}

#information #info-recruit .entry-banner::before{
  position: absolute;
  z-index: 1;
  height: 12px;
  width: 12px;
  content: '';
  top: 2px;
  right: 5px;
  background: url("../images/information/information_link_ico@2x.png")no-repeat center center / contain;
}

#information #info-recruit .entry-banner::after{
  position: absolute;
  z-index: 1;
  height: 12px;
  width: 12px;
  content: '＞';
  top: 2px;
  right: 24px;
  color: #fff;
}

#information #info-recruit .list {
  justify-content: space-between;
  font-size: 12px;
}

#information #info-recruit .list-ttl, #information #info-recruit .list-txt {
  margin-top: 5px;
}

#information #info-recruit .list-txt .time-margin {
  display: block;
  margin-left: 5em;
}

#information #info-recruit .list-ttl:first-of-type, #information #info-recruit .list-txt:first-of-type {
  margin-top: 0;
}

#information #info-recruit .list-ttl {
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #d1e6f2;
  border-radius: 3px;
  padding: 10px 6px;
}

#information #info-recruit .list-txt {
  width: calc(100% - 35px);
  padding: 15px 10px;
  align-items: center;
  background: #f3f3f3;
  border-radius: 3px;
}

#information #info-recruit .txt-ml {
  margin-left: 12px;
  display: inline-block;
}

@media screen and (max-width: 767px) { /* ---------- スマホ以下 ---------- */
  #information #info-recruit .list-ttl {
    writing-mode: vertical-rl;
  }

  #information #info-recruit .sp-txt-ml {
    margin-left: 48px;
  }
  


}

@media print, screen and (min-width: 768px) { /* ---------- タブレット・PC以上 ---------- */
  #information #info-recruit {
    padding: 72px;
  }

  #information #info-recruit .banner-box {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto 15px;
    justify-content: flex-start;
    display: block;
  }
  
  #information #info-recruit .banner-box .banner-box{
    margin-top: 40px;
  }

  #information #info-recruit .essentials-banner {
    width: fit-content;
    margin-right: 60px;
    margin-bottom: 20px;
    padding: 10px 20px;
    font-size: 20px;
    border-radius: 5px;
  }
  
  #information #info-recruit .accepting-txt{
    font-size: 18px;
  }

  #information #info-recruit .accepting-txt .large{
    font-size: 22px;
  }

  #information #info-recruit .accepting-txt .small{
    font-size: 14px;
  }

  #information #info-recruit .entry-banner {
    width: 350px;
  }
  
  #information #info-recruit .entry-banner::after{
    top: 10px;
    right: 64px;
    font-size: 20px;
  }
  
  #information #info-recruit .entry-banner a{
    padding: 10px 20px 10px 50px;
    font-size: 20px;
    transition: all .3s;
    border-radius: 5px;
    box-shadow: 2px 2px 0 #cb7c3c;
  }
  
  #information #info-recruit .entry-banner a:hover{
    text-decoration: none;
    opacity: .7;
  }
  
  #information #info-recruit .list {
    max-width: 968px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.67;
  }

  #information #info-recruit .list-ttl, #information #info-recruit .list-txt {
    margin-top: 10px;
  }

  #information #info-recruit .list-txt .time-margin {
    display: block;
    margin-left: 5em;
  }

  #information #info-recruit .list-ttl {
    width: 120px;
    border-radius: 5px;
    padding: 26px 6px;
  }

  #information #info-recruit .list-txt {
    width: calc(100% - 130px);
    padding: 26px 20px;
    background: #f3f3f3;
    border-radius: 5px;
    align-items: center;
  }

  #information #info-recruit .txt01 {
    padding-left: 198px;
  }

  #information #info-recruit .txt01 .sub-ttl {
    margin-left: -198px;
  }

  #information #info-recruit .ml-1 {
    margin-left: 1em;
  }

  #information #info-recruit .ml-18 {
    margin-left: 18px;
  }

  #information #info-recruit .txt02 {
    padding-left: 72px;
  }

  #information #info-recruit .txt02 .sub-ttl {
    margin-left: -72px;
  }
  
  #information #info-recruit .pc-txt-ml6{
    margin-left: 6em;
  }
  
  #information #info-recruit .pc-txt-ml10{
    margin-left: 10em;
  }
}

/*========================
  -------セミナー情報-------------
  =======================*/
#information #info-seminar {
  margin: 0 auto;
  padding: 17px 10px 10px;
}

#information #info-seminar .content00{
  margin-bottom: 15px;
}

#information #info-seminar .content01 {
  margin-bottom: 25px;
}

#information #info-seminar .content01-txt {
  margin: 20px 0;
  padding-left: 10px;
  font-size: 12px;
}

#information #info-seminar .content01-banner-box {
  max-width: 304px;
  margin: 0 auto;
  background-color: #f3f3f3;
  border-radius: 3px;
}

#information #info-seminar .content02 {}

#information #info-seminar .content02-txt {
  margin: 0 0 50px;
  font-size: 12px;
}

#information #info-seminar .content02-item {
  padding: 0 10px;
}

#information #info-seminar .content02-list {
  position: relative;
  z-index: 0;
  font-size: 12px;
}

#information #info-seminar .content02-list.bg-green::before{
  position: absolute;
  z-index: -1;
  content: "";
  background-color: #f4ffe0;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  top: -10px;
  left: -10px;
}

#information #info-seminar .content02-list.bg-yellow::before{
  position: absolute;
  z-index: -1;
  content: "";
  background-color: #fffde0;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  top: -10px;
  left: -10px;
}

#information #info-seminar .list-ttl {
  position: relative;
  margin-bottom: 10px;
  padding-left: 13px;
}

#information #info-seminar .list-ttl:before {
  position: absolute;
  content: "";
  top: 5px;
  left: 0px;
  background-color: #597ee9;
  width: 3px;
  height: 11px;
  border-radius: 2px;
}

#information #info-seminar .list-txt {
  margin-bottom: 30px;
  padding-left: 13px;
}

#information #info-seminar .txt-ml {
  margin-left: 15px;
}

#information #info-seminar .caution {
  display: block;
  position: relative;
  margin-bottom: 18px;
  padding-left: 15px;
  font-size: 12px;
  color: #e95959;
}

#information #info-seminar .caution:before {
  position: absolute;
  content: "※";
  top: 0;
  left: 0;
  font-size: 12px;
}

#information #info-seminar .entry-btn {
  text-align: center;
}

#information #info-seminar .content02 .content02-list .list-text-inner {
  display: flex;
}

#information #info-seminar .content02 .schedule::after {
  content: "：";
  display: inline-block;
}

#information #info-seminar .essentials-banner {
  display: inline-block;
  margin-bottom: 10px;
  padding: 2px 10px;
  background-color: #597ee9;
  color: #fff;
  font-size: 13px;
  border-radius: 2px;
}

#information #info-seminar .entry-banner {
  position: relative;
  width: 220px;
  z-index: 0;
  margin: 0 auto;
}

#information #info-seminar .entry-banner a{
  display: block;
  width: 100%;
  height: 100%;
  padding: 5px 10px 5px 30px;
  background-color: #fa984a;
  border-radius: 2px;
  color: #fff;
  font-size: 13px;
  position: relative;
  z-index: 0;
}

#information #info-seminar .entry-banner a:hover{
  text-decoration: none;
}

#information #info-seminar .entry-banner:not(.internal) a::before{
  position: absolute;
  z-index: 1;
  height: 12px;
  width: 12px;
  content: '';
  top: 2px;
  right: 5px;
  background: url("../images/information/information_link_ico@2x.png")no-repeat center center / contain;
}

#information #info-seminar .entry-banner a::after{
  position: absolute;
  z-index: 1;
  height: 12px;
  width: 12px;
  content: '＞';
  top: 4px;
  right: 24px;
  color: #fff;
}
#information #info-seminar .entry-banner .note{
  display: block;
  color: red;
  font-size: 13px;
  text-align: center;
}
#information #info-seminar .entry-banner.long{
  width: 250px;
  margin-top: 2rem;
}
#information #info-seminar .underline{
  display: inline-block;
  position: relative;
}
#information #info-seminar .underline::before{
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: -1px;
  background-color: #000;
}
#information #info-seminar .content02-item .note{
  margin-bottom: 4px;
  text-align: center;
  font-size: 12px;
}
@media screen and (max-width: 767px) { /* ---------- スマホ以下 ---------- */
  #information #info-seminar .content01-banner {
    padding-top: 15px;
    text-align: center;
  }

  #information #info-seminar .content01-banner:last-of-type {
    padding-bottom: 15px;
  }

  #information #info-seminar .list-txt .txt-ml {
    margin-left: 36px;
  }

}

@media print, screen and (min-width: 768px) { /* ---------- タブレット・PC以上 ---------- */
  #information #info-seminar {
    padding: 72px;
  }

  #information #info-seminar .content-ttl {
    width: 446px;
  }

  #information #info-seminar .content01-txt {
    margin: 46px 0 28px;
    padding-left: 45px;
    font-size: 18px;
  }

  #information #info-seminar .content01-banner-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 968px;
    padding: 50px 30px;
    border-radius: 5px;
  }

  #information #info-seminar .content00 .content01-banner-box, #information #info-seminar .content01 .content01-banner-box {
    padding: 0;
    background-color: transparent;
  }

  #information #info-seminar .content00-banner-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 622px;
    width: 64.5%;
    padding: 50px 30px;
    background-color: #f3f3f3;
    border-radius: 5px;
    width: 330px;
  }

  #information #info-seminar .content01 .content01-banner-box .content00-banner-box {
    max-width: 681px;
    width: 100%;
  }

  #information #info-seminar .content00 .content01-banner {
    width: 48%;
    width: 270px;
  }

  #information #info-seminar .content01-banner {
    width: 29.7%;
  }

  #information #info-seminar .content01 .content01-banner:first-of-type {
    width: 53%;
  }

  #information #info-seminar .content01 .content01-banner02 {
    width: 43%;
  }

  #information #info-seminar .content01-banner {
    text-align: center;
  }

  #information #info-seminar .content01 {
    margin-bottom: 50px;
  }

  #information #info-seminar .content02-item {
    padding: 0 45px;
    letter-spacing: .01em;
  }

  #information #info-seminar .content02-txt {
    margin: 1rem 0 100px;
    font-size: 18px;
  }

  #information #info-seminar .content02-list {
    font-size: 18px;
  }

  #information #info-seminar .content02-list.bg-green::before,
  #information #info-seminar .content02-list.bg-yellow::before{
    width: calc(100% + 28px);
    height: calc(100% + 30px);
    top: -15px;
    left: -14px;
  }
  
  #information #info-seminar .caution {
    display: block;
    position: relative;
    margin-bottom: 30px;
    padding-left: 44px;
    font-size: 18px;
    color: #e95959;
  }

  #information #info-seminar .caution:before {
    position: absolute;
    content: "※";
    top: 0;
    left: 18px;
    font-size: 18px;
  }

  #information #info-seminar .list-ttl {
    position: relative;
    margin-bottom: 20px;
    padding-left: 25px;
  }

  #information #info-seminar .list-ttl:before {
    position: absolute;
    content: "";
    top: 4px;
    left: 0px;
    background-color: #597ee9;
    width: 6px;
    height: 22px;
    border-radius: 3px;
  }

  #information #info-seminar .list-txt {
    margin-bottom: 54px;
    padding-left: 25px;
  }

  #information #info-seminar .list-txt:last-of-type {
    margin-bottom: 32px;
  }

  #information #info-seminar .entry-btn {
    width: 320px;
    margin: 0 auto;
  }

  #information #info-seminar .essentials-banner {
    margin-right: 60px;
    margin-bottom: 0;
    padding: 10px 20px;
    font-size: 20px;
    border-radius: 5px;
  }
  
  #information #info-seminar .entry-banner {
    width: 320px;
  }
  
  #information #info-seminar .entry-banner a::after{
    top: 16px;
    right: 46px;
    font-size: 20px;
  }
  
  #information #info-seminar .entry-banner:not(.internal) a::before{
    top: 10px;
    right: 12px;
  }
  
  #information #info-seminar .entry-banner a{
    padding: 16px 20px 16px 50px;
    font-size: 20px;
    transition: all .3s;
    border-radius: 5px;
    box-shadow: 2px 2px 0 #cb7c3c;
  }
  
  #information #info-seminar .entry-banner a:hover{
    text-decoration: none;
    opacity: .7;
  }
  
  #information #info-seminar .entry-banner .note{
    margin-top: 5px;
    font-size: 16px;
  }
  #information #info-seminar .entry-banner.long{
    width: 410px;
  }
  #information #info-seminar .underline::before{
    bottom: -4px;
  }
  #information #info-seminar .content02-item .note{
    margin-bottom: 6px;
    font-size: 16px;
  }
}
