@charset "UTF-8";
/* CSS Document */
/*---------------------------------------------
インターンシップページ
  ---------------------------------------------*/
.white {
  color: #fff;
}

/* スクロール時フェードイン（common.js が .elem に .isAnimate を付与） */
.elem {
  opacity: 0;
  transition: opacity 1s ease;
}

.elem.isAnimate {
  opacity: 1;
}

.contents.internship {
  background-color: #FFFBEA;
  overflow: hidden;
}
@media all and (max-width: 480px) {
  .contents.internship {
    padding-top: 50px;
  }
}

/*-------　共通：セクションタイトル（筆記体＋日本語）　-------*/
.intern_ttl {
  text-align: center;
  font-feature-settings: "palt";
}
.intern_ttl .ttl_img {
  position: relative;
  top: 15px;
  opacity: 0.2;
}
.intern_ttl .ttl_img img {
  width: auto;
  height: 115px;
  display: inline-block;
}
@media all and (max-width: 480px) {
  .intern_ttl .ttl_img img {
    height: 95px;
  }
}
.intern_ttl .ttl_sub {
  margin-top: 10px;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media all and (max-width: 480px) {
  .intern_ttl .ttl_sub {
    font-size: 1.8rem;
  }
}
.intern_ttl .ttl_jp {
  display: inline-block;
  margin-top: 8px;
  font-size: 3.4rem;
  /* 交差 37 */
  line-height: 1.4em;
  letter-spacing: 0.1em;
}
@media all and (max-width: 480px) {
  .intern_ttl .ttl_jp {
    font-size: 2.6rem;
  }
}
.intern_ttl .ttl_jp {
  /* 背景が濃い色のセクションでは白文字に戻す */
}
.intern_ttl .ttl_jp.white {
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
}

/*---------------------------------------------
	メインビジュアル
  ---------------------------------------------*/
.intern_hero {
  width: 100%;
  height: 600px;
  position: relative;
  background: url("/recruit/sp/assets/img/internship/img_main.jpg") center center no-repeat;
  background-size: cover;
}
@media all and (max-width: 480px) {
  .intern_hero {
    height: 120vw;
  }
}
.intern_hero .intern_hero_ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: max-content;
  white-space: nowrap;
}
.intern_hero .intern_hero_ttl img {
  position: absolute;
  left: -75px;
  top: -40px;
  width: 270px;
  height: auto;
  display: block;
  z-index: -1;
  opacity: 0.6;
}
@media all and (max-width: 480px) {
  .intern_hero .intern_hero_ttl img {
    width: 45vw;
    left: -15px;
    top: -11vw;
  }
}
.intern_hero .intern_hero_ttl span {
  display: block;
  color: #fff;
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media all and (max-width: 480px) {
  .intern_hero .intern_hero_ttl span {
    font-size: 2.8rem;
  }
}

/*---------------------------------------------
	リード文
  ---------------------------------------------*/
.intern_lead {
  padding: 75px 0;
  background-color: #FFF4C7;
}
@media all and (max-width: 480px) {
  .intern_lead {
    padding: 40px 20px;
  }
}
.intern_lead p {
  line-height: 1.9em;
}
@media all and (max-width: 480px) {
  .intern_lead p {
    text-align: left;
    line-height: 1.9em;
  }
}

/*---------------------------------------------
	3つのポイント
  ---------------------------------------------*/
.intern_point {
  position: relative;
  padding: 20px 0 90px;
}
@media all and (max-width: 480px) {
  .intern_point {
    padding: 10px 0 60px;
  }
}
.intern_point {
  /* 装飾：スラッシュ＋人物 */
}
.intern_point:before {
  content: "";
  position: absolute;
  top: 40px;
  left: 50%;
  width: 475px;
  height: 480px;
  background: url("/recruit/sp/assets/img/internship/bg_slash.png") top center no-repeat;
  background-size: contain;
  z-index: 0;
}
@media all and (max-width: 480px) {
  .intern_point:before {
    display: none;
  }
}
.intern_point .ttl_sub {
  background: none;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: #2762D0;
  color: #2762D0;
}
.intern_point .ttl_jp {
  font-size: 4.6rem;
  background: none;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: #2762D0;
  color: #2762D0;
}
@media all and (max-width: 480px) {
  .intern_point .ttl_jp {
    font-size: 3.6rem;
  }
}
.intern_point .intern_ttl,
.intern_point .intern_point_list {
  position: relative;
  z-index: 1;
}
.intern_point .person {
  position: absolute;
  top: 110px;
  left: calc(50% + 240px);
  width: 45px;
  z-index: 1;
}
@media all and (max-width: 480px) {
  .intern_point .person {
    width: 34px;
    top: 15px;
    left: auto;
    right: 45px;
  }
}

.intern_point_list {
  width: 1000px;
  margin: 25px auto 0;
  display: flex;
  justify-content: space-between;
}
@media all and (max-width: 480px) {
  .intern_point_list {
    width: 90%;
    display: block;
  }
}
.intern_point_list .point_box {
  width: 320px;
  background-color: #fff;
  border: 1px solid #D8A400;
  padding: 35px 28px 30px;
  text-align: center;
}
@media all and (max-width: 480px) {
  .intern_point_list .point_box {
    width: 100%;
    margin-bottom: 25px;
  }
  .intern_point_list .point_box:last-child {
    margin-bottom: 0;
  }
}
.intern_point_list .point_box .no {
  text-align: center;
}
.intern_point_list .point_box .no img {
  width: auto;
  height: 40px;
  display: inline-block;
}
.intern_point_list .point_box h3 {
  line-height: 1.4em;
  margin-bottom: 18px;
}
.intern_point_list .point_box h3:before {
  content: "";
  display: block;
  width: 100%;
  height: 12px;
  margin: 15px 0 18px;
  background: url("/recruit/sp/assets/img/internship/bar_stripe.png") center repeat-x;
  background-size: auto 12px;
}
.intern_point_list .point_box p {
  text-align: left;
  line-height: 1.8em;
  color: #333;
}

/*---------------------------------------------
	体験できるプログラム
  ---------------------------------------------*/
.intern_program {
  position: relative;
  padding: 70px 0 90px;
  background: linear-gradient(rgba(39, 98, 208, 0.82), rgba(39, 98, 208, 0.82)), url("/recruit/sp/assets/img/internship/bg_program.jpg") center center no-repeat;
  background-size: cover;
}
@media all and (max-width: 480px) {
  .intern_program {
    padding: 50px 0 60px;
  }
}
.intern_program {
  /* 装飾：人物イラスト */
}
.intern_program .intern_ttl {
  position: relative;
}
.intern_program .intern_ttl:before {
  content: "";
  position: absolute;
  top: -25px;
  left: calc(50% - 320px);
  width: 140px;
  height: 198px;
  background: url("/recruit/sp/assets/img/internship/pic_02.png") top center no-repeat;
  background-size: contain;
}
@media all and (max-width: 480px) {
  .intern_program .intern_ttl:before {
    top: -60px;
    left: 10px;
    width: 90px;
    height: 117px;
  }
}

.intern_program_list {
  width: 1000px;
  margin: 35px auto 0;
  display: flex;
  justify-content: space-between;
}
@media all and (max-width: 480px) {
  .intern_program_list {
    width: 90%;
    display: block;
  }
}
.intern_program_list .program_card {
  width: 310px;
  display: flex;
  flex-direction: column;
}
@media all and (max-width: 480px) {
  .intern_program_list .program_card {
    width: 100%;
    margin-bottom: 35px;
  }
  .intern_program_list .program_card:last-child {
    margin-bottom: 0;
  }
}
.intern_program_list .program_card .catch {
  text-align: center;
  background-color: #2762D0;
  color: #fff;
  line-height: 1.5em;
  padding: 10px;
  letter-spacing: 0.08em;
}
.intern_program_list .program_card .card_ttl {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #03014C;
  padding: 16px 0;
  line-height: 1.4em;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
  /* 横並び時にタイトルの高さを揃える（2行分を確保） */
  min-height: 77px;
}
@media all and (max-width: 480px) {
  .intern_program_list .program_card .card_ttl {
    min-height: 0;
  }
}
.intern_program_list .program_card .card_ttl {
  /* 左下のリボン状ノッチ（画像の上に重なる三角） */
}
.intern_program_list .program_card .card_ttl:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 17px;
  height: 17px;
  background-color: #03014C;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.intern_program_list .program_card .card_img {
  margin-top: 10px;
}
.intern_program_list .program_card .card_img img {
  display: block;
}
.intern_program_list .program_card .card_body {
  flex: 1;
  background-color: #fff;
  padding: 22px 22px 28px;
}
.intern_program_list .program_card .card_body .lead {
  margin-bottom: 8px;
}
.intern_program_list .program_card .card_body ul li {
  line-height: 1.9em;
  color: #333;
  padding-left: 1em;
  text-indent: -1em;
}
.intern_program_list .program_card .card_body .note {
  margin-top: 15px;
  line-height: 1.8em;
  color: #333;
}

/*---------------------------------------------
	プログラム参加者の声
  ---------------------------------------------*/
.intern_voice {
  position: relative;
  padding: 75px 0 90px;
}
@media all and (max-width: 480px) {
  .intern_voice {
    padding: 50px 0 60px;
  }
}
.intern_voice {
  /* 装飾：人物イラスト */
}
.intern_voice .intern_ttl {
  position: relative;
}
.intern_voice .intern_ttl:after {
  content: "";
  position: absolute;
  top: -5px;
  left: calc(50% + 200px);
  width: 190px;
  height: 165px;
  background: url("/recruit/sp/assets/img/internship/pic_03.png") top center no-repeat;
  background-size: contain;
}
@media all and (max-width: 480px) {
  .intern_voice .intern_ttl:after {
    top: -20px;
    left: auto;
    right: 20px;
    width: 100px;
    height: 84px;
  }
}
.intern_voice .intern_ttl .ttl_jp {
  color: #2762D0;
}

.intern_voice_list {
  width: 1000px;
  margin: 35px auto 0;
}
@media all and (max-width: 480px) {
  .intern_voice_list {
    width: 90%;
  }
}
.intern_voice_list .voice_item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}
.intern_voice_list .voice_item:last-child {
  margin-bottom: 0;
}
@media all and (max-width: 480px) {
  .intern_voice_list .voice_item {
    margin-bottom: 28px;
  }
}
.intern_voice_list .voice_item .thum {
  width: 140px;
  flex-shrink: 0;
}
@media all and (max-width: 480px) {
  .intern_voice_list .voice_item .thum {
    width: 70px;
  }
}
.intern_voice_list .voice_item .thum img {
  display: block;
}
.intern_voice_list .voice_item .balloon {
  position: relative;
  flex: 1;
  background-color: #fff;
  border-radius: 8px;
  padding: 25px 30px;
}
@media all and (max-width: 480px) {
  .intern_voice_list .voice_item .balloon {
    padding: 18px 18px;
  }
}
.intern_voice_list .voice_item .balloon p {
  line-height: 1.8em;
  color: #333;
}
.intern_voice_list .voice_item .balloon .info {
  margin-top: 12px;
  color: #03014C;
  font-weight: 700;
}
.intern_voice_list .voice_item {
  /* 吹き出しの三角 */
}
.intern_voice_list .voice_item.left .thum {
  margin-right: 28px;
}
.intern_voice_list .voice_item.left .balloon:before {
  content: "";
  position: absolute;
  top: 60px;
  left: -19px;
  border-style: solid;
  border-width: 9px 20px 9px 0;
  border-color: transparent #fff transparent transparent;
}
@media all and (max-width: 480px) {
  .intern_voice_list .voice_item.left .balloon:before {
    top: 30px;
    left: -11px;
    border-width: 7px 12px 7px 0;
  }
}
.intern_voice_list .voice_item.right {
  flex-direction: row-reverse;
}
.intern_voice_list .voice_item.right .thum {
  margin-left: 28px;
}
.intern_voice_list .voice_item.right .balloon:before {
  content: "";
  position: absolute;
  top: 60px;
  right: -19px;
  border-style: solid;
  border-width: 9px 0 9px 20px;
  border-color: transparent transparent transparent #fff;
}
@media all and (max-width: 480px) {
  .intern_voice_list .voice_item.right .balloon:before {
    top: 30px;
    right: -11px;
    border-width: 7px 0 7px 12px;
  }
}
@media all and (max-width: 480px) {
  .intern_voice_list .voice_item.left .thum {
    margin-right: 15px;
  }
  .intern_voice_list .voice_item.right .thum {
    margin-left: 15px;
  }
}

/*---------------------------------------------
	写真帯
  ---------------------------------------------*/
.intern_band {
  width: 100%;
  display: flex;
}
.intern_band p {
  width: 50%;
}
.intern_band p img {
  display: block;
}

/*---------------------------------------------
	先輩社員の声
  ---------------------------------------------*/
.intern_senior {
  position: relative;
  padding: 75px 0 90px;
  background: radial-gradient(circle at 12% 18%, rgba(242, 201, 76, 0.65) 0, rgba(242, 201, 76, 0) 28%), radial-gradient(circle at 90% 85%, rgba(242, 201, 76, 0.45) 0, rgba(242, 201, 76, 0) 24%), linear-gradient(rgba(0, 193, 201, 0.6), rgba(0, 193, 201, 0.6)), url("/recruit/sp/assets/img/internship/bg_voice.jpg") center center no-repeat;
  background-size: cover;
}
@media all and (max-width: 480px) {
  .intern_senior {
    padding: 50px 0 60px;
  }
}

.intern_senior_list {
  width: 1000px;
  margin: 35px auto 0;
}
@media all and (max-width: 480px) {
  .intern_senior_list {
    width: 90%;
  }
}
.intern_senior_list .senior_card {
  display: flex;
  background-color: #fff;
  padding: 35px;
  margin-bottom: 30px;
}
.intern_senior_list .senior_card:last-child {
  margin-bottom: 0;
}
@media all and (max-width: 480px) {
  .intern_senior_list .senior_card {
    display: block;
    padding: 25px 20px;
  }
}
.intern_senior_list .senior_card .senior_photo {
  width: 300px;
  flex-shrink: 0;
  margin-right: 40px;
}
@media all and (max-width: 480px) {
  .intern_senior_list .senior_card .senior_photo {
    width: 100%;
    margin: 0 auto 20px;
  }
}
.intern_senior_list .senior_card .senior_photo .photo {
  margin-bottom: 12px;
}
.intern_senior_list .senior_card .senior_photo .photo img {
  display: block;
}
.intern_senior_list .senior_card .senior_photo .year,
.intern_senior_list .senior_card .senior_photo .dept {
  color: #333;
  line-height: 1.6em;
}
.intern_senior_list .senior_card .senior_photo .name {
  margin-top: 5px;
  color: #000;
}
.intern_senior_list .senior_card .senior_text {
  flex: 1;
}
.intern_senior_list .senior_card .senior_text h3 {
  line-height: 1.5em;
  margin-bottom: 18px;
}
.intern_senior_list .senior_card .senior_text p {
  color: #333;
  line-height: 1.8em;
  margin-bottom: 1.5em;
}
.intern_senior_list .senior_card .senior_text p:last-child {
  margin-bottom: 0;
}

/*---------------------------------------------
	ボタン（詳しいスケジュールはこちら）
  ---------------------------------------------*/
.link_btn {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  isolation: isolate;
  width: 480px;
  height: 70px;
  margin: 60px auto 0;
  cursor: pointer;
}
@media all and (max-width: 480px) {
  .link_btn {
    width: 86%;
    height: 60px;
    margin-top: 45px;
  }
}
.link_btn:before {
  position: absolute;
  left: 15px;
  top: 0;
  content: "";
  display: block;
  background-color: #03014C;
  width: 100%;
  height: 100%;
  transform: skewX(-30deg);
  z-index: -1;
  transition: 0.3s;
}
@media all and (max-width: 480px) {
  .link_btn:before {
    left: 0;
  }
}
.link_btn:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 24px;
  background-image: url("/recruit/sp/assets/img/environment/welfare/arrow.svg");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  right: 35px;
  top: 50%;
  transform: translate(0, -50%) rotate(-90deg);
  transition: 0.3s;
}
@media all and (max-width: 480px) {
  .link_btn:after {
    right: 25px;
  }
}
.link_btn:hover:before {
  background-color: #2762D0;
  transform: skewX(-22deg);
}
.link_btn:hover:after {
  right: 30px;
}
.link_btn.is_disabled {
  cursor: default;
  justify-content: center;
  text-align: center;
  padding-left: 30px;
}
@media all and (max-width: 480px) {
  .link_btn.is_disabled {
    padding-left: 0;
  }
}
.link_btn.is_disabled:after {
  display: none;
}
.link_btn.is_disabled:hover:before {
  background-color: #03014C;
  transform: skewX(-30deg);
}
