@charset "UTF-8";
.page_body {
  background-color: #ebebeb;
  padding: 60px 0;
}
@media all and (min-width: 751px) {
  .page_body {
    padding: 88px 0 120px;
  }
}

/* タブ
---------------------------------------------------------- */
.tab_container {
  background-color: #fff;
}
.tab_container .tab_button_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.tab_container .tab_button_list .tab_button_item {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  --bg_color: #bbbdbd;
  background-color: var(--bg_color);
  color: #343231;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.04em;
  padding: 10px;
  cursor: pointer;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media (hover: hover) {
  .tab_container .tab_button_list .tab_button_item {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .tab_container .tab_button_list .tab_button_item:hover {
    opacity: 0.7;
  }
}
@media all and (min-width: 751px) {
  .tab_container .tab_button_list .tab_button_item {
    font-size: 17px;
    padding: 29px 10px;
  }
}
.tab_container .tab_button_list .tab_button_item::before {
  position: absolute;
  content: "";
  background-color: var(--bg_color);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  aspect-ratio: 12/13;
  width: 12px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media all and (min-width: 751px) {
  .tab_container .tab_button_list .tab_button_item::before {
    width: 12px;
  }
}
.tab_container .tab_button_list .tab_button_item.is_active {
  --bg_color: #a9161b;
  color: #fff;
}
.tab_container .tab_button_list .tab_button_item.is_active::before {
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
}
.tab_container .tab_content_list {
  margin-top: 10px;
}
@media all and (min-width: 751px) {
  .tab_container .tab_content_list {
    margin-top: 24px;
  }
}
.tab_container .tab_content_item {
  display: none;
  opacity: 0;
  padding: 20px 10px 47px;
}
@media all and (min-width: 751px) {
  .tab_container .tab_content_item {
    padding: 15px 70px 80px;
  }
}
.tab_container .tab_content_item.is_active {
  display: block;
  -webkit-animation: fadeUpAnime 0.6s forwards;
          animation: fadeUpAnime 0.6s forwards;
}

/* 募集要項
---------------------------------------------------------- */
.info .list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
  border-bottom: 1px solid #d2d2d2;
  font-size: 15px;
  line-height: 1.6;
  padding: 18px 5px;
}
@media all and (min-width: 751px) {
  .info .list > li {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
    padding: 30px 18px;
  }
}
.info .list > li h4 {
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media all and (min-width: 751px) {
  .info .list > li h4 {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 140px;
  }
}
.info .list > li .cont {
  font-weight: 400;
}
@media all and (min-width: 751px) {
  .info .list > li .cont {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.info .list > li .cont p {
  line-height: inherit;
}
.info .list > li .cont p:not(:last-child) {
  margin-bottom: 2em;
}
.info .list > li .cont a {
  position: relative;
  color: #a9161b;
  background-image: -webkit-gradient(linear, left top, right top, from(#a9161b), to(#a9161b));
  background-image: linear-gradient(90deg, #a9161b, #a9161b);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 1px;
  margin-right: 1em;
}
@media (hover: hover) {
  .info .list > li .cont a {
    -webkit-transition: background-size 0.4s;
    transition: background-size 0.4s;
  }
  .info .list > li .cont a:hover {
    background-size: 0 1px;
    background-position: right bottom;
  }
}
.info .list > li .cont a::before {
  position: absolute;
  content: "";
  background-image: url(../images/icon/arrow03.svg);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 1;
  width: 16px;
  top: 55%;
  right: -4px;
  -webkit-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
}

/* intern
---------------------------------------------------------- */
.intern {
  margin-top: 60px;
}
@media all and (max-width: 750px) {
  .intern {
    padding: 0 10px;
  }
}
@media all and (min-width: 751px) {
  .intern {
    margin-top: 100px;
  }
}
.intern .sec_ttl {
  text-align: center;
  font-size: 22px;
  line-height: 1.8;
  margin-bottom: 30px;
}
@media all and (min-width: 751px) {
  .intern .sec_ttl {
    font-size: 32px;
    margin-bottom: 50px;
  }
}
.intern .sec_ttl .ttl {
  color: #fff;
  background-color: #a9161b;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background-color: #a9161b;
  padding: 0 12px 1px;
}
@media all and (min-width: 751px) {
  .intern .sec_ttl .ttl {
    padding: 0 20px 1px;
  }
}
.intern .lead .image {
  margin-bottom: 20px;
}
@media all and (min-width: 751px) {
  .intern .lead .image {
    margin-bottom: 34px;
  }
}
@media all and (max-width: 750px) {
  .intern .lead .text p {
    line-height: 1.6;
  }
}
.intern .program {
  margin-top: 40px;
}
@media all and (min-width: 751px) {
  .intern .program {
    margin-top: 60px;
  }
}
.intern .program .item:not(:last-child) {
  margin-bottom: 40px;
}
@media all and (min-width: 751px) {
  .intern .program .item:not(:last-child) {
    margin-bottom: 60px;
  }
}
.intern .program .item .image {
  position: relative;
  margin-bottom: 20px;
}
@media all and (min-width: 751px) {
  .intern .program .item .image {
    margin-bottom: 34px;
  }
}
.intern .program .item .image .ttl_en {
  position: absolute;
  top: 9px;
  left: 0;
  background-color: #a9161b;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  font-size: 18px;
  padding: 3px 5px 4px;
}
@media all and (min-width: 751px) {
  .intern .program .item .image .ttl_en {
    top: 15px;
    font-size: 33px;
    padding: 4px 23px 10px;
  }
}
@media screen and (min-width: 751px) and (max-width: 1080px) {
  .intern .program .item .image .ttl_en {
    font-size: 26px;
  }
}
.intern .program .item .image .ttl_en span {
  font-size: 1.22em;
  margin-left: 2px;
}
@media all and (min-width: 751px) {
  .intern .program .item .image .ttl_en span {
    font-size: 1.33em;
    margin-left: 6px;
  }
}
.intern .program .item .image .ttl_jp {
  position: absolute;
  right: 0;
  bottom: 7px;
  text-align: right;
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media all and (min-width: 751px) {
  .intern .program .item .image .ttl_jp {
    bottom: 21px;
    font-size: 22px;
  }
}
.intern .program .item .image .ttl_jp span {
  color: #fff;
  background-color: #a9161b;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background-color: #a9161b;
  padding: 0 8px 1px;
}
@media all and (min-width: 751px) {
  .intern .program .item .image .ttl_jp span {
    padding: 0 14px 1px;
  }
}
@media all and (max-width: 750px) {
  .intern .program .item .text p {
    line-height: 1.6;
  }
}