@charset "UTF-8";
/* -----------------------
breakpoint
pc (min-width: 1280px)
smallPc (min-width: 960px) and (max-width: 1279px)
tab (min-width: 768px) and (max-width: 959px)
tab-sp screen and (max-width: 959px)
sp (max-width: 767px)
smallSp (max-width: 374px)
-------------------------*/
/* none */
@media screen and (min-width: 1280px) {
  .pc-none {
    display: none;
  }
}

@media screen and (min-width: 960px) and (max-width: 1279px) {
  .smallPc-none {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 959px) {
  .tab-none {
    display: none;
  }
}

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

/* color */
.text-red {
  color: #fc1900;
}

.text-yellow {
  color: #f8f075;
}

/* ディレクトリ*/
/* googleFont */
.noto-sans-jp-bold {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.02em;
}

.noto-sans-jp-black {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  letter-spacing: -0.02em;
}

.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.anton-regular {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* setting */
*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

a:link,
a:visited {
  text-decoration: none;
  word-break: break-all;
  color: #0027a5;
}

ol,
ul {
  list-style: none;
}

/* common */
.textBold {
  font-weight: bold;
}

/* body */
body {
  width: 100%;
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  color: #000;
  line-height: 2;
  word-break: break-all;
  position: relative;
  -webkit-text-size-adjust: 100%;
  background: #fff;
}
@media screen and (min-width: 960px) and (max-width: 1279px) {
  body {
    font-size: 15px;
    line-height: 1.8;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  body {
    font-size: 15px;
    line-height: 1.8;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
    line-height: 1.6;
  }
}
@media screen and (max-width: 959px) {
  body.fixed-modal {
    /* modal表示時背景を固定 */
    overflow: hidden;
  }
}

/* inner */
.inner {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.wideInner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* heading */
h2 {
  margin-bottom: 50px;
  font-size: 76px;
  line-height: 1.4;
  color: #0f218b;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  h2 {
    font-size: 70px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 48px;
    margin-bottom: 20px;
  }
}
h2 .ruby {
  font-size: 24px;
  display: block;
}
@media screen and (max-width: 767px) {
  h2 .ruby {
    font-size: 18px;
  }
}

h3 {
  font-size: 36px;
  line-height: 1.4;
  color: #0f218b;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  h3 {
    font-size: 34px;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  h3 {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 374px) {
  h3 {
    font-size: 22px;
  }
}

/* フェードイン表示 */
.fade-top {
  opacity: 0;
  transform: translate3d(0, -50px, 0);
  transition: all 0.75s linear 0.25s;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .fade-top {
    transform: translate3d(0, -40px, 0);
  }
}
@media screen and (max-width: 767px) {
  .fade-top {
    transform: translate3d(0, -20px, 0);
  }
}
.fade-top.fade-scroll {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* header */
header {
  position: relative;
}

.overlay {
  display: none;
}
@media screen and (max-width: 959px) {
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 100;
  }
}

/* navi */
#navi {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  background: #fff;
  box-shadow: 0px 2px 3px 0 rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 959px) {
  #navi {
    height: 56px;
  }
}
@media screen and (max-width: 767px) {
  #navi {
    padding: 0 15px;
  }
}

.logo {
  display: block;
  margin: 0 30px 10px 0;
  width: 130px;
}
@media screen and (max-width: 959px) {
  .logo {
    width: 90px;
  }
}
@media screen and (max-width: 767px) {
  .logo {
    margin-bottom: 5px;
  }
}

/* お問い合わせ */
#header-entry {
  display: none;
}
@media screen and (max-width: 959px) {
  #header-entry {
    display: block;
    position: absolute;
    top: 0;
    right: 56px;
  }
}
#header-entry a {
  display: block;
  width: 140px;
  height: 56px;
  font-size: 17px;
  line-height: 56px;
  background-color: #fc1900;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 959px) {
  #header-entry a {
    width: 130px;
    font-size: 14px;
  }
  #header-entry a:before {
    content: "";
    background: url("/job/fresh/internship/img/icon-arrow.svg") center center/contain no-repeat;
    display: inline-block;
    width: 18px;
    height: 6px;
    vertical-align: 3px;
    margin-right: 5px;
  }
}

/* ハンバーガーボタン */
#navi-hamburger {
  display: none;
}
@media screen and (max-width: 959px) {
  #navi-hamburger {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 56px;
    height: 56px;
    z-index: 120;
  }
  #navi-hamburger div {
    position: relative;
    width: 26px;
    margin: 0 auto;
  }
  #navi-hamburger div span {
    display: block;
    position: absolute;
    width: 100%;
    border-bottom: solid 2px #000;
    transition: 0.35s ease-in-out;
  }
  #navi-hamburger div span:nth-child(1) {
    top: 10px;
  }
  #navi-hamburger div span:nth-child(2) {
    top: 19px;
  }
  #navi-hamburger div span:nth-child(3) {
    top: 28px;
  }
  #navi-hamburger div p {
    display: inline;
    position: absolute;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: #000;
    white-space: nowrap;
  }
  #navi-hamburger.open-menu {
    width: 56px;
    height: 56px;
    background: #fff;
  }
  #navi-hamburger.open-menu div span:nth-child(1) {
    top: 19px;
    transform: rotate(-315deg);
  }
  #navi-hamburger.open-menu div span:nth-child(2), #navi-hamburger.open-menu div span:nth-child(3) {
    top: 19px;
    transform: rotate(315deg);
  }
}

/* ナビメニュー */
#navi-menu {
  display: flex;
  font-weight: bold;
  flex-wrap: wrap;
  align-items: center;
  line-height: 1.2;
}
@media screen and (min-width: 960px) {
  #navi-menu {
    right: 20px !important;
    top: 0;
    height: 80px;
  }
}
@media screen and (max-width: 959px) {
  #navi-menu {
    z-index: 101;
    width: 100%;
    right: -100%;
    background: #fff;
    padding: 50px 0 30px;
    display: block;
    margin: 0;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    position: absolute;
    top: 0;
  }
}
#navi-menu .btn-apply {
  padding: 15px 20px;
}
@media screen and (max-width: 959px) {
  #navi-menu .btn-apply {
    border-radius: 100px;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  #navi-menu .btn-apply {
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  #navi-menu .btn-apply {
    width: 80%;
  }
}
#navi-menu li {
  margin-right: 30px;
}
@media screen and (min-width: 960px) and (max-width: 1279px) {
  #navi-menu li {
    margin-right: 20px;
  }
}
@media screen and (max-width: 959px) {
  #navi-menu li {
    position: relative;
    font-size: 15px;
    text-align: center;
    line-height: 25px;
    margin: 30px 0 0 0;
  }
  #navi-menu li:first-child {
    margin-top: 20px;
  }
  #navi-menu li a,
  #navi-menu li > span {
    display: inline-block;
    color: #000;
    font-weight: bold;
  }
}
@media screen and (max-width: 767px) {
  #navi-menu li {
    font-size: 14px;
  }
}
#navi-menu li a,
#navi-menu li > span {
  color: #000;
  position: relative;
  display: inline-block;
}
@media screen and (min-width: 960px) and (max-width: 1279px) {
  #navi-menu li {
    margin-right: 20px;
  }
}
#navi-menu li:last-child {
  margin-right: 0;
}
#navi-menu li:nth-child(-n+6) a:after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #0f218b;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
@media (hover: hover) {
  #navi-menu li:nth-child(-n+6) a:hover:after {
    transform: scale(1, 1);
  }
}
@media (hover: none) {
  #navi-menu li:nth-child(-n+6) a:hover:after {
    transform: scale(0, 1);
  }
}

/* お申込みボタン */
.btn-apply {
  display: inline-block;
  background: #fc1900;
  border-radius: 10px;
  font-weight: bold;
  color: #fff !important;
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-width: 150px;
}
.btn-apply:before {
  content: "";
  background: url("/job/fresh/internship/img/icon-arrow.svg") center center/contain no-repeat;
  display: inline-block;
  width: 20px;
  height: 8px;
  vertical-align: 3px;
  margin-right: 10px;
}
.btn-apply:after {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  transform: translateX(-100%);
}
@media (hover: none) {
  .btn-apply:after {
    display: none;
  }
}
.btn-apply:hover:after {
  transform: translateX(0);
  transition: all 0.3s;
  background: #a01203;
}

/* main */
#main {
  margin-top: 80px;
}
@media screen and (max-width: 959px) {
  #main {
    margin-top: 56px;
  }
}
#main > section {
  padding: 80px 20px;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  #main > section {
    padding: 60px 20px;
  }
}
@media screen and (max-width: 767px) {
  #main > section {
    padding: 40px 15px;
  }
}

/* kv */
#kv {
  position: relative;
  height: 490px;
  overflow: hidden;
  background: #202333;
  display: flex;
  align-items: center;
  padding: 20px;
}
@media screen and (max-width: 959px) {
  #kv {
    height: auto;
    padding: 25px 20px 20px;
  }
}
@media screen and (max-width: 767px) {
  #kv {
    padding: 15px;
  }
}
#kv-wrap {
  line-height: 1.2;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 959px) {
  #kv-wrap {
    display: block;
  }
}
#kv-wrap .year {
  font-size: 28px;
}
@media screen and (min-width: 960px) and (max-width: 1279px) {
  #kv-wrap .year {
    font-size: 26px;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  #kv-wrap .year {
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  #kv-wrap .year {
    font-size: 17px;
  }
}
@media screen and (max-width: 374px) {
  #kv-wrap .year {
    font-size: 4.533vw;
  }
}
#kv-titleArea {
  flex: 0 0 auto;
  position: relative;
  z-index: 2;
}
#kv-imgArea {
  max-width: 594px;
  position: relative;
  margin-left: 30px;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  #kv-imgArea {
    margin: 20px auto 0;
    max-width: 420px;
  }
}
@media screen and (max-width: 767px) {
  #kv-imgArea {
    margin: 20px auto 0;
    max-width: 230px;
  }
}
#kv-imgArea::after {
  content: "";
  background: url("/job/fresh/internship/img/bg-kv.svg") center center/contain no-repeat;
  width: 760px;
  height: 597px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  #kv-imgArea::after {
    width: 550px;
    height: 440px;
  }
}
@media screen and (max-width: 767px) {
  #kv-imgArea::after {
    width: 300px;
    height: 236px;
  }
}
#kv-imgArea > img {
  position: relative;
  z-index: 1;
}
#kv-title {
  display: inline-block;
  position: relative;
}
#kv-title .title {
  font-size: 28px;
  color: #0f218b;
  background: #fff;
  padding: 15px 25px;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 12%;
}
@media screen and (min-width: 960px) and (max-width: 1279px) {
  #kv-title .title {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  #kv-title .title {
    font-size: 27px;
    padding: 15px 20px;
  }
}
@media screen and (max-width: 767px) {
  #kv-title .title {
    font-size: 17px;
    padding: 8px 10px;
    top: 9%;
  }
}
@media screen and (max-width: 374px) {
  #kv-title .title {
    font-size: 4.533vw;
    padding: 2.133vw 2.667vw;
  }
}
#kv-title .title-en {
  font-size: 102px;
  line-height: 1.02;
}
@media screen and (min-width: 960px) and (max-width: 1279px) {
  #kv-title .title-en {
    font-size: 88px;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  #kv-title .title-en {
    font-size: 94px;
  }
}
@media screen and (max-width: 767px) {
  #kv-title .title-en {
    font-size: 58px;
  }
}
@media screen and (max-width: 374px) {
  #kv-title .title-en {
    font-size: 15.467vw;
  }
}
#kv-text {
  font-size: 32px;
  line-height: 1.4;
  margin-top: 20px;
}
@media screen and (min-width: 960px) and (max-width: 1279px) {
  #kv-text {
    font-size: 27px;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  #kv-text {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  #kv-text {
    font-size: 18px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 374px) {
  #kv-text {
    font-size: 4.8vw;
    margin-top: 2.667vw;
  }
}
#kv-text .text-sub {
  font-size: 26px;
}
@media screen and (min-width: 960px) and (max-width: 1279px) {
  #kv-text .text-sub {
    font-size: 23px;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  #kv-text .text-sub {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  #kv-text .text-sub {
    font-size: 15px;
  }
}
@media screen and (max-width: 374px) {
  #kv-text .text-sub {
    font-size: 4vw;
  }
}
#kv-text .text-em {
  font-size: 40px;
}
@media screen and (min-width: 960px) and (max-width: 1279px) {
  #kv-text .text-em {
    font-size: 36px;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  #kv-text .text-em {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  #kv-text .text-em {
    font-size: 23px;
  }
}
@media screen and (max-width: 374px) {
  #kv-text .text-em {
    font-size: 6.133vw;
  }
}

/* apply */
.apply {
  background: #0f218b;
  padding: 20px;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .apply {
    padding: 15px 20px 20px;
  }
}
@media screen and (max-width: 767px) {
  .apply {
    padding: 15px;
  }
}
.apply > div {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 959px) {
  .apply > div {
    display: block;
  }
}
.apply > div .text-apply {
  color: #fff;
  font-size: 36px;
  line-height: 1.4;
  border-bottom: 1px solid #fff;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 959px) {
  .apply > div .text-apply {
    margin: auto;
  }
}
@media screen and (max-width: 767px) {
  .apply > div .text-apply {
    font-size: 19px;
  }
}
@media screen and (max-width: 374px) {
  .apply > div .text-apply {
    font-size: 5.067vw;
  }
}
.apply > div .btn-apply {
  width: 420px;
  font-size: 22px;
  border-radius: 50px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3);
  margin-left: 60px;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .apply > div .btn-apply {
    height: 90px;
  }
}
@media screen and (max-width: 767px) {
  .apply > div .btn-apply {
    font-size: 18px;
    height: 60px;
    width: 100%;
    max-width: 280px;
  }
}
@media screen and (min-width: 960px) and (max-width: 1279px) {
  .apply > div .btn-apply {
    margin-left: 30px;
  }
}
@media screen and (max-width: 959px) {
  .apply > div .btn-apply {
    margin: 20px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .apply > div .btn-apply {
    margin: 15px auto 0;
  }
}

/* program */
#program {
  background: #eff1fd;
}
#program-wrap {
  text-align: center;
}
#program-wrap p {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  #program-wrap p {
    margin-top: 15px;
  }
}
#program-list {
  display: flex;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  #program-list {
    flex-direction: column;
    margin-top: 30px;
  }
}
#program-list li {
  width: 33.33%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  flex: 0 0 auto;
}
@media screen and (max-width: 767px) {
  #program-list li {
    width: 100%;
    align-items: center;
    margin-top: 10px;
  }
  #program-list li:first-child {
    margin-top: 0;
  }
}
#program-list li dl {
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3);
  padding: 30px;
  width: 90%;
  max-width: 320px;
  position: relative;
}
@media screen and (min-width: 960px) and (max-width: 1279px) {
  #program-list li dl {
    padding: 25px;
  }
}
@media screen and (max-width: 959px) {
  #program-list li dl {
    padding: 20px;
    border-radius: 20px;
  }
}
#program-list li dl::before {
  content: "";
  display: block;
  background: url("/job/fresh/internship/img/pic-mark.svg") left top/contain no-repeat;
  width: 60px;
  height: 60px;
  position: absolute;
  top: -20px;
  left: -20px;
}
@media screen and (min-width: 960px) and (max-width: 1279px) {
  #program-list li dl::before {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 959px) {
  #program-list li dl::before {
    width: 40px;
    height: 40px;
    top: -15px;
    left: -15px;
  }
}
#program-list li dl dt {
  font-size: 22px;
  color: #0f218b;
  line-height: 1.4;
}
@media screen and (min-width: 960px) and (max-width: 1279px) {
  #program-list li dl dt {
    font-size: 20px;
  }
}
@media screen and (max-width: 959px) {
  #program-list li dl dt {
    font-size: 20px;
  }
}
#program-list li dl dd {
  margin-top: 10px;
  position: relative;
  z-index: 1;
}
#program-list li:nth-child(1) .pic-program {
  bottom: -120px;
}
@media screen and (min-width: 960px) and (max-width: 1279px) {
  #program-list li:nth-child(1) .pic-program {
    bottom: -90px;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  #program-list li:nth-child(1) .pic-program {
    bottom: -90px;
  }
}
@media screen and (max-width: 767px) {
  #program-list li:nth-child(1) .pic-program {
    bottom: 20px;
  }
}
#program-list li:nth-child(2) .pic-program {
  bottom: -130px;
}
@media screen and (min-width: 960px) and (max-width: 1279px) {
  #program-list li:nth-child(2) .pic-program {
    bottom: -105px;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  #program-list li:nth-child(2) .pic-program {
    bottom: -95px;
  }
}
@media screen and (max-width: 767px) {
  #program-list li:nth-child(2) .pic-program {
    bottom: 35px;
  }
}
#program-list li:nth-child(3) .pic-program {
  bottom: -130px;
}
@media screen and (min-width: 960px) and (max-width: 1279px) {
  #program-list li:nth-child(3) .pic-program {
    bottom: -100px;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  #program-list li:nth-child(3) .pic-program {
    bottom: -90px;
  }
}
@media screen and (max-width: 767px) {
  #program-list li:nth-child(3) .pic-program {
    bottom: 30px;
  }
}
#program-list li .pic-program {
  position: absolute;
  left: 0;
  width: 75%;
  max-width: 300px;
}
@media screen and (min-width: 960px) and (max-width: 1279px) {
  #program-list li .pic-program {
    bottom: -110px;
    width: 80%;
    max-width: 250px;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  #program-list li .pic-program {
    bottom: -110px;
    width: 90%;
    max-width: 220px;
  }
}
@media screen and (max-width: 767px) {
  #program-list li .pic-program {
    position: relative;
    bottom: 25px;
    width: 70%;
    max-width: 220px;
  }
}
#program .summary {
  margin-top: 170px;
}
@media screen and (min-width: 960px) and (max-width: 1279px) {
  #program .summary {
    margin-top: 140px;
  }
}
@media screen and (max-width: 767px) {
  #program .summary {
    margin-top: 0;
  }
}

/* schedule */
#schedule {
  background: #f7f7f7;
}
#schedule table {
  width: 100%;
  background: #fff;
  border: 2px solid #0f218b;
}
#schedule table th {
  background: #0f218b;
  color: #fff;
  font-size: 26px;
  line-height: 1.4;
  padding: 10px 15px 15px;
  border: 1px solid #999;
  vertical-align: middle;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  #schedule table th {
    font-size: 20px;
    padding: 8px 12.5px 12.5px;
  }
}
@media screen and (max-width: 767px) {
  #schedule table th {
    font-size: 15px;
    padding: 5px 8px 8px;
  }
}
@media screen and (max-width: 374px) {
  #schedule table th {
    font-size: 14px;
    padding: 5px 8px 8px;
  }
}
#schedule table th.text-tableTitle {
  font-size: 36px;
  background: #202333;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  #schedule table th.text-tableTitle {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  #schedule table th.text-tableTitle {
    font-size: 20px;
  }
}
@media screen and (max-width: 374px) {
  #schedule table th.text-tableTitle {
    font-size: 16px;
  }
}
#schedule table td {
  font-size: 26px;
  line-height: 1.4;
  padding: 20px;
  vertical-align: middle;
  border: 1px solid #999;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  #schedule table td {
    font-size: 20px;
    padding: 15px;
  }
}
@media screen and (max-width: 767px) {
  #schedule table td {
    font-size: 15px;
    padding: 8px;
  }
}
@media screen and (max-width: 374px) {
  #schedule table td {
    font-size: 14px;
    padding: 8px;
  }
}
#schedule table td.text-year {
  width: 20%;
  text-align: center;
  background: #eff1fd;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  #schedule table td.text-year {
    width: 16%;
  }
}
@media screen and (max-width: 767px) {
  #schedule table td.text-year {
    width: 16%;
  }
}
@media screen and (max-width: 374px) {
  #schedule table td.text-year {
    width: 17%;
  }
}
#schedule table td.text-date {
  width: 55%;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  #schedule table td.text-date {
    width: 57%;
  }
}
@media screen and (max-width: 767px) {
  #schedule table td.text-date {
    width: 59%;
  }
}
@media screen and (max-width: 374px) {
  #schedule table td.text-date {
    width: 58%;
  }
}
#schedule table td.text-time {
  width: 25%;
  text-align: center;
  color: #0f218b;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  #schedule table td.text-time {
    width: 26%;
  }
}
@media screen and (max-width: 767px) {
  #schedule table td.text-time {
    width: 24%;
  }
}
@media screen and (max-width: 374px) {
  #schedule table td.text-time {
    width: 25%;
  }
}

/* benefit */
#benefit {
  background: #0f218b;
  color: #fff;
  text-align: center;
}
#benefit .benefit-wrap {
  position: relative;
  padding: 35px 20px 30px;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  #benefit .benefit-wrap {
    padding: 30px 20px;
  }
}
@media screen and (max-width: 767px) {
  #benefit .benefit-wrap {
    padding: 20px 15px;
  }
}
#benefit .benefit-wrap::after {
  content: "";
  background: url("/job/fresh/internship/img/pic-schedule01.png") left top/contain no-repeat;
  display: block;
  width: 160px;
  height: 176px;
  position: absolute;
  bottom: 0;
  left: -30px;
}
@media screen and (min-width: 960px) and (max-width: 1279px) {
  #benefit .benefit-wrap::after {
    left: -20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  #benefit .benefit-wrap::after {
    left: 30px;
    width: 140px;
    height: 153px;
  }
}
@media screen and (max-width: 767px) {
  #benefit .benefit-wrap::after {
    left: 0;
    width: 120px;
    height: 132px;
  }
}
#benefit .benefit-cont {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  #benefit .benefit-cont {
    flex-direction: column;
  }
}
#benefit .benefit-text {
  font-size: 28px;
  position: relative;
  color: #0f218b;
  margin-right: 40px;
  flex: 0 0 auto;
  align-self: center;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  #benefit .benefit-text {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  #benefit .benefit-text {
    font-size: 20px;
    margin-right: 0;
    background: #fff;
    width: 100%;
  }
}
#benefit .benefit-text::before {
  content: "";
  display: inline-block;
  background: #fff;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  #benefit .benefit-text::before {
    content: none;
  }
}
#benefit .benefit-text-cont {
  font-size: 36px;
  line-height: 1.4;
  z-index: 1;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  #benefit .benefit-text-cont {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  #benefit .benefit-text-cont {
    font-size: 24px;
    margin-top: 5px;
  }
}
@media screen and (max-width: 374px) {
  #benefit .benefit-text-cont {
    font-size: 22px;
  }
}
#benefit .btn-apply {
  width: 420px;
  font-size: 22px;
  border-radius: 50px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3);
  margin: 20px auto 0;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  #benefit .btn-apply {
    height: 90px;
  }
}
@media screen and (max-width: 767px) {
  #benefit .btn-apply {
    font-size: 18px;
    height: 60px;
    width: 100%;
    max-width: 280px;
  }
}

/* recruit */
#recruit {
  background: #eff1fd;
}
#recruit table {
  width: 100%;
}
#recruit table tr {
  border-bottom: 2px solid #fff;
}
#recruit table tr:last-child {
  border-bottom: none;
}
#recruit table tr:first-child th {
  border-top-left-radius: 20px;
}
#recruit table tr:first-child td {
  border-top-right-radius: 20px;
}
#recruit table tr:last-child th {
  border-bottom-left-radius: 20px;
}
#recruit table tr:last-child td {
  border-bottom-right-radius: 20px;
}
#recruit table tr:nth-child(odd) td {
  background: #fff;
}
#recruit table tr:nth-child(even) td {
  background: #f7f7f7;
}
#recruit table th {
  background: #0f218b;
  padding: 30px;
  color: #fff;
  vertical-align: middle;
  width: 20%;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  #recruit table th {
    padding: 10px;
    width: 26%;
  }
}
#recruit table td {
  padding: 30px;
  vertical-align: middle;
  width: 80%;
}
@media screen and (max-width: 767px) {
  #recruit table td {
    padding: 10px;
    width: 74%;
  }
}
#recruit table iframe {
  width: 100%;
  height: 380px;
  margin: 15px 0 10px;
}
@media screen and (max-width: 767px) {
  #recruit table iframe {
    height: 40vw;
  }
}
#recruit table .btn-map {
  display: inline-block;
  background: #fff;
  border-radius: 10px;
  max-width: 250px;
  color: #0f218b;
  margin: auto;
  border: 1px solid #0f218b;
  padding: 10px 15px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (hover: none) {
  #recruit table .btn-map:hover {
    color: #0f218b;
  }
  #recruit table .btn-map:hover .map-pin {
    color: #0f218b;
  }
  #recruit table .btn-map:hover .map-pin :before {
    background: #fff;
  }
  #recruit table .btn-map:after {
    display: none;
  }
}
#recruit table .btn-map:link, #recruit table .btn-map:visited {
  color: #0f218b;
}
#recruit table .btn-map:after {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  transform: translateX(-100%);
}
#recruit table .btn-map:hover {
  color: #fff;
}
#recruit table .btn-map:hover:after {
  transform: translateX(0);
  transition: all 0.3s;
  background: #0f218b;
}
#recruit table .btn-map .map-pin {
  display: inline-block;
  vertical-align: middle;
  color: #0f218b;
  line-height: 1;
  position: relative;
  width: 0.8em;
  height: 0.8em;
  background: currentColor;
  border: 0.1em solid currentColor;
  border-radius: 40% 60% 0% 100%/40% 100% 0% 60%;
  box-sizing: content-box;
  transform: rotate(45deg);
  margin: -6px 5px 0 0;
}
#recruit table .btn-map .map-pin:before {
  content: "";
  position: absolute;
  top: 18%;
  left: 18%;
  width: 0.336em;
  height: 0.336em;
  background: #fff;
  border-radius: 50%;
  box-sizing: border-box;
}
#recruit table .btn-map:hover .map-pin {
  color: #fff;
}
#recruit table .btn-map:hover .map-pin:before {
  background: #0f218b;
}

/* voice */
#voice {
  background: #f7f7f7;
}
#voice-wrap {
  display: flex;
}
@media screen and (max-width: 767px) {
  #voice-wrap {
    flex-direction: column;
  }
}
#voice-wrap li {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
  width: 30%;
  margin-left: 5%;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  #voice-wrap li {
    width: 31%;
    margin-left: 3.5%;
  }
}
@media screen and (max-width: 767px) {
  #voice-wrap li {
    width: 100%;
    margin: 0;
  }
}
#voice-wrap li:first-child {
  margin-left: 0;
}
#voice-wrap li:nth-child(2) {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  #voice-wrap li:nth-child(2) {
    margin-top: 20px;
  }
}
#voice-wrap li:nth-child(3) {
  margin-top: -20px;
}
@media screen and (max-width: 767px) {
  #voice-wrap li:nth-child(3) {
    margin-top: 20px;
  }
}
#voice-wrap li:nth-child(3) .voice-img p {
  margin-top: 0;
}
#voice .voice-text {
  background: #fff;
  border-radius: 30px;
  padding: 30px;
  position: relative;
  margin-bottom: 40px;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.3));
}
@media screen and (min-width: 960px) and (max-width: 1279px) {
  #voice .voice-text {
    padding: 25px;
  }
}
@media screen and (max-width: 959px) {
  #voice .voice-text {
    padding: 20px;
    border-radius: 20px;
  }
}
#voice .voice-text::after {
  content: "";
  width: 40px;
  height: 40px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  display: block;
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
  background: #fff;
}
#voice .voice-img img {
  width: 170px;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  #voice .voice-img img {
    width: 150px;
  }
}
@media screen and (max-width: 767px) {
  #voice .voice-img img {
    width: 100px;
  }
}
#voice .voice-img p {
  text-align: center;
  margin-top: 10px;
  color: #0f218b;
  font-weight: bold;
}

/* entry */
#entry {
  background: #0f218b;
  color: #fff;
  position: relative;
}
#entry h2 {
  color: #fff;
}
#entry-wrap {
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#entry-wrap > div {
  margin: auto;
}
#entry-wrap > img {
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
  bottom: -50px;
  width: 11%;
}
@media screen and (min-width: 1280px) {
  #entry-wrap > img:first-child {
    left: 40px;
  }
  #entry-wrap > img:last-child {
    right: 40px;
  }
}
@media screen and (min-width: 960px) and (max-width: 1279px) {
  #entry-wrap > img {
    position: absolute;
    width: 13%;
  }
  #entry-wrap > img:last-child {
    right: 0;
  }
}
@media screen and (max-width: 959px) {
  #entry-wrap > img {
    position: absolute;
    width: 15%;
  }
  #entry-wrap > img:last-child {
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  #entry-wrap > img {
    bottom: 40px;
    width: 23%;
    max-width: 120px;
  }
}
#entry-wrap .entry-text {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
@media screen and (max-width: 767px) {
  #entry-wrap .entry-text {
    flex-direction: column;
    margin-top: -20px;
  }
}
#entry-wrap .entry-text img {
  width: 40px;
  height: auto;
}
#entry-wrap .entry-text img:first-child {
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  #entry-wrap .entry-text img:first-child {
    transform: rotate(90deg);
    margin: 0;
  }
}
#entry-wrap .entry-text img:last-child {
  transform: rotate(180deg);
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  #entry-wrap .entry-text img:last-child {
    transform: rotate(-90deg);
    margin: -20px 0 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  #entry-wrap .entry-text img {
    width: 36px;
  }
}
#entry-wrap .entry-text-cont {
  color: #f8f075;
  font-size: 36px;
  line-height: 1.4;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 960px) and (max-width: 1279px) {
  #entry-wrap .entry-text-cont {
    font-size: 32px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  #entry-wrap .entry-text-cont {
    font-size: 28px;
    line-height: 1.6;
  }
}
@media screen and (max-width: 767px) {
  #entry-wrap .entry-text-cont {
    font-size: 23px;
    line-height: 1.6;
    margin-top: -20px;
  }
}
#entry-wrap .entry-text-notes {
  margin-top: 30px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  #entry-wrap .entry-text-notes {
    font-size: 12px;
  }
}
#entry-wrap .btn-apply {
  width: 420px;
  font-size: 22px;
  border-radius: 50px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3);
  margin: 30px auto 0;
  z-index: 2;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  #entry-wrap .btn-apply {
    height: 90px;
  }
}
@media screen and (max-width: 767px) {
  #entry-wrap .btn-apply {
    font-size: 18px;
    height: 60px;
    width: 100%;
    max-width: 280px;
  }
}
@media screen and (max-width: 767px) {
  #entry-wrap .btn-apply {
    margin-top: -20px;
  }
}

/* contact */
#contact {
  background: #eff1fd;
}
#contact .contact-logo {
  margin: auto;
  width: 130px;
  display: block;
}
@media screen and (max-width: 767px) {
  #contact .contact-logo {
    width: 110px;
  }
}
#contact .contact-text {
  font-size: 32px;
  line-height: 1.4;
  font-weight: bold;
  margin: 20px 0 60px;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  #contact .contact-text {
    margin: 20px 0 40px;
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  #contact .contact-text {
    margin: 15px 0 20px;
    font-size: 22px;
  }
}
#contact .contact-wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #contact .contact-wrap {
    flex-direction: column;
  }
}
#contact .contact-wrap > a {
  width: 46%;
  border: 2px solid #0f218b;
  border-radius: 30px;
  padding: 30px;
  display: block;
  color: #000;
  background: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 960px) and (max-width: 1279px) {
  #contact .contact-wrap > a {
    width: 48%;
    padding: 25px;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  #contact .contact-wrap > a {
    width: 48%;
    padding: 20px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 767px) {
  #contact .contact-wrap > a {
    width: 100%;
    max-width: 320px;
    padding: 10px;
    margin: 20px auto 0;
    border-radius: 20px;
  }
  #contact .contact-wrap > a:first-child {
    margin-top: 0;
  }
}
#contact .contact-wrap > a.mail {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#contact .contact-wrap > a.mail:after {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  transform: translateX(-100%);
}
@media (hover: none) {
  #contact .contact-wrap > a.mail:after {
    display: none;
  }
}
#contact .contact-wrap > a.mail:hover:after {
  transform: translateX(0);
  transition: all 0.3s;
  background: #eff1fd;
}
#contact .contact-wrap dl {
  text-align: center;
}
#contact .contact-wrap dt {
  font-size: 32px;
  line-height: 1.2;
  color: #0f218b;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  #contact .contact-wrap dt {
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  #contact .contact-wrap dt {
    font-size: 22px;
  }
}
#contact .contact-wrap dt img {
  display: block;
  margin: 0 auto 20px;
  width: 200px;
}
@media screen and (min-width: 960px) and (max-width: 1279px) {
  #contact .contact-wrap dt img {
    width: 170px;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  #contact .contact-wrap dt img {
    width: 150px;
  }
}
@media screen and (max-width: 767px) {
  #contact .contact-wrap dt img {
    width: 80px;
    margin-bottom: 10px;
  }
}
#contact .full-width {
  display: inline-block;
  margin-right: 1em;
}
@media screen and (max-width: 767px) {
  #contact .full-width {
    margin-right: 0;
  }
}
#contact .text-tel {
  font-size: 42px;
  line-height: 1.2;
  display: block;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  #contact .text-tel {
    font-size: 38px;
  }
}
@media screen and (max-width: 767px) {
  #contact .text-tel {
    font-size: 30px;
  }
}
#contact .text-mail {
  font-size: 30px;
  line-height: 1.2;
  display: block;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  #contact .text-mail {
    font-size: 25px;
  }
}
@media screen and (max-width: 767px) {
  #contact .text-mail {
    font-size: 20px;
  }
}
#contact .tel-none {
  pointer-events: none;
}

.btn-pagetop {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 99;
}
@media screen and (min-width: 960px) and (max-width: 1279px) {
  .btn-pagetop {
    right: 20px;
    bottom: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .btn-pagetop {
    right: 15px;
    bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .btn-pagetop {
    right: 10px;
    bottom: 10px;
  }
}
@media (hover: hover) {
  .btn-pagetop:hover {
    opacity: 0.7;
    transition: opacity 0.3s;
  }
}
.btn-pagetop img {
  width: 56px;
  height: 56px;
}
@media screen and (min-width: 960px) and (max-width: 1279px) {
  .btn-pagetop img {
    width: 52px;
    height: 52px;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .btn-pagetop img {
    width: 45px;
    height: 45px;
  }
}
@media screen and (max-width: 767px) {
  .btn-pagetop img {
    width: 40px;
    height: 40px;
  }
}

footer {
  background: #303030;
  padding: 20px;
  color: #fff;
  font-size: 14px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  footer {
    font-size: 12px;
    padding: 20px 5px;
  }
}
@media screen and (max-width: 374px) {
  footer {
    font-size: 11px;
  }
}
footer ul {
  display: flex;
  justify-content: center;
  line-height: normal;
}
footer li:nth-child(-n+2) {
  margin-right: 50px;
  padding-right: 50px;
  border-right: 2px solid #fff;
}
@media screen and (max-width: 767px) {
  footer li:nth-child(-n+2) {
    margin-right: 2.5vw;
    padding-right: 2.5vw;
  }
}
footer li a {
  color: #fff !important;
  position: relative;
}
footer li a:after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
@media (hover: hover) {
  footer li a:hover:after {
    transform: scale(1, 1);
  }
}
@media (hover: none) {
  footer li a:hover:after {
    transform: scale(0, 1);
  }
}
footer p {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  footer p {
    margin-top: 20px;
  }
}/*# sourceMappingURL=style.css.map */