@charset "UTF-8";

/**
 * style_sp.css ※主に735px以下
 *
 * #common .......... 共通（ヘッダー、フッターなど）
 * #top ............. topで使用
 * #layer ........... 下層で使用
 * #news ........... ニュース一覧
 * #project ........... 入社したらこんなお仕事を
 * #company ........... 私たちについて
 * #environment ........... 働く環境について
 * #internship ........... インターンシップ
 * #contents ........... コンテンツ
 * #seminar ........... 会社説明会
 * #voice ........... 先輩の声
 * #common-style ........... 共通スタイル
 * #entry ........... エントリーページ
 *
*/


/* ==========================================================================
   #common
   ========================================================================== */
@media screen and (max-width: 735px) {

  .common-wrap {
    position: relative;
    width: 1000px;
    margin: 0 auto;
  }

  .point-txt01 { color: #615A9D; }

  .sp-none { display: none; }

}

/* ヘッダー
----------------------------------------------------------------- */
@media screen and (max-width: 1080px) {
  .l-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: block!important;
    width: 100%;
  }
  /* タイトル
   ----------------------- */
  .header-ttl-wrap {
    display: block;
    float: left;
    text-decoration: none;
  }
  .header-ttl-wrap:hover { opacity: 1; }
  /* ロゴ */
  .header-logo {
    position: relative;
    z-index: 1003;
    display: block;
    float: left;
    width: 58px;
    height: 58px;
    padding-top: 12px;
    text-align: center;
    background-color: #615A9D;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    pointer-events: auto;
  }
  .header-ttl-wrap:hover .header-logo {
    background-color: #8480d9;
  }
  .header-logo-img {
    display: none;
  }
  .header-logo-img2 {
    width: 20px;
  }
  .header-logo-txt {
    display: none;
  }
  .header-ttl {
    display: none;
  }
  /* (展開時) */
  .side-open .header-ttl {
    position: absolute;
    top: 45px;
    left: 0;
    right: 0;
    z-index: 1002;
    display: block;
    width: 100%;
    text-align: center;
    font-size: 17px;
    font-family: brandon-grotesque, sans-serif;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.08rem;
  }
  .side-open .header-ttl-wrap {
    pointer-events: none;
  }
  .side-open .header-ttl-sub {
    display: block;
    margin-bottom: 7px;
    color: #333;
    font-size: 12px;
  }
  .side-open .header-ttl-main {
    display: block;
    color: #333;
    font-size: 24px;
    font-family: brandon-grotesque, sans-serif;
    font-weight: 700;
    letter-spacing: 0.06rem;
  }
  /* ボタン
  -----------------------------*/
  .header-btn {
    position: fixed;
    right: 0;
    top: 0;
    display: block;
    z-index: 1003;
    width: 60px;
    height: 60px;
    cursor: pointer;
  }
  .header-btn span {
    position: absolute;
    left: 30px;
    width: 20px;
    height: 1px;
    margin-left: -10px;
    background-color: #333;
    -webkit-transition: all .2s;
    transition: all .2s;
  }
  .header-btn span:nth-of-type(1) {
    top: 20px;
  }
  .header-btn span:nth-of-type(2) {
    top: 28px;
  }
  .header-btn span:nth-of-type(3) {
    top: 36px;
  }
  /* (展開時) */
  .header-btn.active span {
    background-color: #333;
  }
  .header-btn.active span:nth-of-type(1) {
    top: 28px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .header-btn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .header-btn.active span:nth-of-type(3) {
    top: 28px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  /* メニュー
   -----------------------------*/
  .header-menu-wrap {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;  /* メニューの幅 */
    width: 100%; /* メニューの幅 */
    height: 100%;
    padding-top: 110px;
    background-color: #fff;
    border: 6px solid #615A9D;
    z-index: 1001;
    transition: all .5s ease;
    -webkit-overflow-scrolling: touch;
  }
  /* (展開時) */
  .side-open .header-menu-wrap {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  /* リスト */
  .header-menu {
    height: 100%;
    overflow: auto;
  }
  .header-menu-item {
    margin: 0 27px;
    line-height: 1;
    border-bottom: 1px solid #ebeff6;
  }
  .header-menu-item:first-child {
    border-top: 1px solid #ebeff6;
  }
  .header-menu-item a {
    display: block;
    padding: 27px 5px;
    color: #333;
    font-size: 15px;
    line-height: 1;
    text-decoration: none;
  }
  .header-menu-open-sp {
    display: block;
    position: relative;
    padding: 27px 5px;
    transition: all .4s;
  }

    /* アイコン */
  .header-menu-open-ico {
    position: absolute;
    top: 50%;
    right: 20px;
    display: block;
    width: 13px;
    height: 13px;
    margin-top: -6px;
    transition: all .4s;
  }

  .header-menu-open-ico span {
    position: absolute;
    display: inline-block;
    width: 13px;
    height: 1px;
    background-color: #615A9D;
    transition: all .4s;
  }

  .header-menu-open-ico span:nth-of-type(1) {
    top: 50%;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  .header-menu-open-ico span:nth-of-type(2) {
    top: 50%;
    left: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  /* (クラス「active」をもつとき) */
  .header-menu-open-sp.active {
    color: #615A9D;
  }

  .header-menu-open-sp.active .header-menu-open-ico span:nth-of-type(1) {
    display: none;
  }

  .header-menu-open-sp.active .header-menu-open-ico span:nth-of-type(2) {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  /* 新卒・中途 */
  .sp-job {
    display: none;
    overflow: hidden;
    margin-bottom: 25px;
  }
  .sp-job-item a {
    position: relative;
    display: block;
    margin-bottom: 10px;
    padding: 22px 0 23px 80px;
    color: #333;
    font-size: 13px;
    line-height: 1.2;
    background-color: #f8fafc;
  }
  .sp-job-item a img {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
  }
  /* エントリーボタン */
  .sp-entry-btn-wrap {
    overflow: hidden;
    margin: 40px 27px 35px;
  }
  .sp-entry-btn {
    display: block;
    padding: 22px 0;
    color: #333;
    text-decoration: none;
    text-align: center;
    font-size: 11px;
    font-family: "YakuHanJP", NotoSansJP-medium;
    line-height: 1;
    background-color: #faf221;
    border-radius: 2.5px;
  }
  .sp-entry-btn+.sp-entry-btn { margin-top: 10px }

  /* SNS */
  .sp-entry-btn-wrap + .header-menu-ico {
    text-align: right;
  }
  .header-menu-ico {
    display: inline-block;
    width: 49%;
    margin-bottom: 50px;
    padding: 0 15px;
    font-size: 0;
    line-height: 1;
  }
  .header-menu-ico-ig {
    color: #90949e;
    font-size: 25px;
    line-height: 1;
  }
  .header-menu-ico-fb {
    color: #90949e;
    font-size: 25px;
    line-height: 1;
  }
  /* 非表示 */
  .header-menu-open, .header-menu-list-fresh, .header-menu-list-career, .sp-header-none {
    display: none;
  }

}


/* フッター
   ----------------------------------------------------------------- */
@media screen and (max-width: 735px) {

  .l-footer {
    position: relative;
    z-index: 2;
    background-color: #fff;
  }

  /* メッセージ
     ----------------------- */
  .footer-message-wrap {
    position: relative;
    width: 100%;
    height: 120px;
    height: 32vw;
    background-color: #615A9D;
  }

  .footer-message {
    padding-top: 38px;
    padding-top: 10.1333333333vw;
    text-align: center;
    color: #fff;
    font-size: 11px;
    font-size: 2.933333333vw;
    line-height: 1;
    letter-spacing: 0.08rem;
  }

  .footer-message-main {
    margin-bottom: 15px;
    margin-bottom: 4vw;
    color: #fff;
    font-size: 23px;
    font-size: 6.133333333vw;
    font-family: brandon-grotesque, sans-serif;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1rem;
  }

  .footer-message-point { color: #00fab0; }


  /* 情報
     ----------------------- */
  .footer-info {
    padding: 89px 0 82px;
    padding: 23.7333333333vw 0 21.8666666667vw;
    text-align: center;
  }
  
  .footer-info-logo { transition: opacity 0.3s; }

  /* ロゴ */
  .footer-info-logo-img,
  .footer-info-logo-svg {
    width: 100px;
    width: 26.6666666667vw;
    fill: #615A9D;
  }

}


/* 固定バナー
   ----------------------------------------------------------------- */
@media screen and (max-width: 735px) {

  .bnr-fixed {
    position: relative;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: none;
    width: 100%;
    padding: 7.5px;
    padding: 2vw;
    color: #333;
    text-decoration: none;
    background-color: #faf221;
  }
  .bnr-fixed:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    right: 5.3333333333vw;
    width: 6px;
    width: 1.6vw;
    height: 6px;
    height: 1.6vw;
    border-top: 1px solid #222;
    border-top: 0.2666666667vw solid #222;
    border-right: 1px solid #222;
    border-right: 0.2666666667vw solid #222;
    -webkit-transform: translateX(50%) translateY(50%) rotate(45deg);
    transform: translateX(50%) translateY(-50%) rotate(45deg);
  }
  .bnr-fixed-thumb {
    display: table-cell;
    width: 80px;
    width: 21.3333333333vw;
  }
  .bnr-fixed-thumb img{ width: 100%; }
  .bnr-fixed-txt {
    display: table-cell;
    width: 250px;
    width: 66.6666666667vw;
    height: 45px;
    height: 12vw;
    padding-left: 20px;
    padding-left: 5.3333333333vw;
    vertical-align: middle;
    font-size: 11px;
    font-size: 2.9333333333vw;
  }
  .bnr-fixed-txt span { font-family: "YakuHanJP", NotoSansJP-medium; }
  .bnr-fixed-pickup {
    position: absolute;
    top: -9px;
    top: -2.4vw;
    left: 59px;
    left: 15.7333333333vw;
    width: 54px;
    width: 14.4vw;
  }

}


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

  /* ==========================================================================
     #top
     ========================================================================== */
  /* メインイメージ
     ----------------------------------------------------------------- */
  .l-top-mainimg {
    position: relative;
    width: 100%;
    height: 140vw;
    pointer-events: none
  }

  /* スライドショー
  ----------------------- */
  .top-mainimg.slick-dotted.slick-slider { margin: 0; }

  /* 画像 */
  .top-mainimg li {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 525px;
    height: 140vw;
  }

  .top-mainimg li img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
  }

  /* ドット */
  .top-mainimg .slick-dots {
    position: absolute;
    bottom: 20px;
    bottom: 5.333333333vw;
    right: 0;
    left: auto;
    width: 41.3333333333%;
            display: none;
  }

  .top-mainimg .slick-dots li {
    width: 9px;
    width: 2.4vw;
    height: 9px;
    height: 2.4vw;
    margin: 0 0 0 7px;
    margin: 0 0 0 1.8666666667vw;
  }

  .top-mainimg .slick-dots li:first-child { margin: 0; }

  .top-mainimg .slick-dots li button {
    width: 9px;
    width: 2.4vw;
    height: 9px;
    height: 2.4vw;
    margin: 0;
    padding: 5px;
    padding: 1.333333333vw;
  }

  .top-mainimg .slick-dots li button:before {
    content: "";
    position: absolute;
    top: 3px;
    top: 0.8vw;
    left: 3px;
    left: 0.8vw;
    width: 3px;
    width: 0.8vw;
    height: 3px;
    height: 0.8vw;
    margin: 0;
    padding: 0;
    border-radius: 50%;
    background-color: #fff;
    opacity: 1;
  }

  .top-mainimg .slick-dots li.slick-active button:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 9px;
    width: 2.4vw;
    height: 9px;
    height: 2.4vw;
    margin: 0;
    padding: 0;
    border-radius: 50%;
    background-color: #17d582;
    opacity: 1;
  }

  .top-mainimg .slick-dots li.slick-active button:after {
    content: "";
    position: absolute;
    top: 3px;
    top: 0.8vw;
    left: 3px;
    left: 0.8vw;
    width: 3px;
    width: 0.8vw;
    height: 3px;
    height: 0.8vw;
    margin: 0;
    padding: 0;
    border-radius: 50%;
    background-color: #fff;
    opacity: 1;
  }


  /* キャッチ
  ----------------------- */
  .top-mainimg-catch-wrap {
    width: 89.0666666667vw;
    margin: -86.4vw auto 0;
  }
  .top-mainimg-catch {
    text-align: center;
    color: #fff;
    opacity: 1;
    mix-blend-mode: overlay;
  }
  .top-mainimg-catch-top {
    display: block;
    margin-bottom: 2.4vw;
    padding-top: 3.7333333333vw;
    font-size: 4.8vw;
    font-family: urw-din, sans-serif;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.06em;
    border-top: 0.8vw solid #fff;
    white-space: nowrap;
    mix-blend-mode: overlay;
  }
  .top-mainimg-catch-top-inner { margin-left: -0.2666666667vw; }
  
  .top-mainimg-catch-top-point { color: #615A9D; }

  .top-mainimg-catch-middle {
    position: relative;
    display: block;
    font-size: 4.8vw;
    font-family: "YakuHanJP", NotoSansJP-bold;
    line-height: 1;
    letter-spacing: 0.18em;
  }

  .top-mainimg-catch-middle:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 24vw;
    height: 0.8vw;
    background-color: #fff;
    transform: translateY(-50%);
  }

  .top-mainimg-catch-middle:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 24vw;
    height: 0.8vw;
    background-color: #fff;
    transform: translateY(-50%);
  }

  /*.top-mainimg-catch-bottom {
    overflow: hidden;
    display: block;
    padding-bottom: 20px;
    padding-bottom: 5.3333333333vw;
    color: #00ffc6;
    font-size: 43px;
    font-size: 11.4666666667vw;
    font-family: urw-din, sans-serif;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.03em;
    border-bottom: 3px solid #fff;
    border-bottom: 0.8vw solid #fff;
    mix-blend-mode: overlay;
  }*/

  /*.top-mainimg-catch-bottom-left {
    float: left;
    margin-left: -4px;
    margin-left: -1.0666666667vw;
    mix-blend-mode: overlay;
  }

  .top-mainimg-catch-bottom-right {
    float: right;
    margin-right: -2px;
    margin-right: -0.5333333333vw;
    color: #00ffc6;
    mix-blend-mode: overlay;
  }*/

  .top-mainimg-catch-sub {
    position: absolute;
    bottom: 70.1333333333vw;
    right: 1.6vw;
    width: 21.3333333333vw;
  }

  /* メインイメージ下の情報
  ----------------------- */
  .l-top-mainimg-info {
    position: relative;
    padding: 58px 0 20px;
    padding: 15.4666666667vw 0 5.3333333333vw;
    background-color: #fff;
  }

  /* タイトル
  ----------------------- */
  .top-mainimg-ttl {
    position: absolute;
    top: -50px;
    top: -13.3333333333vw;
    left: 0;
    width: 220px;
    width: 58.6666666667vw;
    height: 65px;
    height: 17.3333333333vw;
    padding-top: 25px;
    padding-top: 6.666666667vw;
    text-align: center;
    background-color: #fff;
  }
  .top-mainimg-ttl-sub {
    margin-bottom: 8px;
    margin-bottom: 2.133333333vw;
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 1;
    letter-spacing: 0.02em;
  }
  .top-mainimg-ttl-main {
    font-size: 22px;
    font-size: 5.866666667vw;
    font-family: brandon-grotesque, sans-serif;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
  }


  /* ニュース
  ----------------------- */
  .top-mainimg-news-wrap {
    position: relative;
    float: none;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .top-mainimg-news {
    position: relative;
    margin-left: 20px;
    margin-left: 5.333333333vw;
    padding: 15px 20px 15px 15px;
    padding: 4vw 5.333333333vw 4vw 4vw;
    color: #fff;
    background-color: #34373e;
  }

  .top-mainimg-news li { padding-right: 6.4285714286vw; }

  .top-mainimg-news a {
    overflow: hidden;
    display: block;
    text-decoration: none;
  }

  /* サムネイル */
  .top-mainimg-news-thumb {
    overflow: hidden;
    position: relative;
    float: left;
    width: 100px;
    width: 26.6666666667vw;
    height: 90px;
    height: 24vw;
    margin-right: 15px;
    margin-right: 4vw;
  }
  .top-mainimg-news-thumb img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: 100%;
    transform: translate(-50%, -50%);
  }

  /* 日付 */
  .top-mainimg-news-date {
    margin-bottom: 11px;
    margin-bottom: 2.933333333vw;
    padding-top: 5px;
    padding-top: 1.333333333vw;
    color: #999;
    font-size: 11px;
    font-size: 2.933333333vw;
    font-family: brandon-grotesque, sans-serif;
    font-weight: 400;
    line-height: 1;
  }

  /* 本文 */
  .top-mainimg-news-main {
    overflow: hidden;
    display: -webkit-box;
    max-height: 37px;
    max-height: 9.866666667vw;
    text-overflow: ellipsis;
    color: #fff;
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 1.625;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  /* NEWS ALL */
  .top-mainimg-news-btn {
    position: absolute;
    top: auto;
    bottom: -17px;
    bottom: -4.533333333vw;
    right: 0;
    z-index: 4;
    width: 80px;
    width: 21.3333333333vw;
    height: 35px;
    height: 9.333333333vw;
    padding-top: 14px;
    padding-top: 3.733333333vw;
    text-align: center;
    color: #fff;
    font-size: 10px;
    font-size: 2.666666667vw;
    font-family: brandon-grotesque, sans-serif;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    background-color: #292c32;
  }

  .top-mainimg-news-btn:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -1px;
    left: -0.2666666667vw;
    width: 1px;
    width: 0.2666666667vw;
    height: 20px;
    height: 5.333333333vw;
    margin-top: -10px;
    margin-top: -2.666666667vw;
    background: #454952;
  }

  .top-mainimg-news-btn:after {
    content: "";
    position: absolute;
    top: 50%;
    left: -36px;
    left: -9.6vw;
    z-index: 2;
    width: 1px;
    width: 0.2666666667vw;
    height: 20px;
    height: 5.333333333vw;
    margin-top: -10px;
    margin-top: -2.666666667vw;
    background: #454952;
  }

  /* 前ボタン */
  .top-mainimg-news .slick-prev {
    position: absolute;
    top: auto;
    bottom: -17px;
    bottom: -4.533333333vw;
    left: auto;
    right: 115px;
    right: 30.6666666667vw;
    z-index: 4;
    width: 35px;
    width: 9.333333333vw;
    height: 35px;
    height: 9.333333333vw;
    background-color: #292c32;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .top-mainimg-news .slick-prev:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 50%;
    width: 5px;
    height: 5px;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
    -webkit-transform: translateX(50%) translateY(50%) rotate(45deg);
    transform: translateX(50%) translateY(-50%) rotate(45deg);
  }

  /* 次ボタン */
  .top-mainimg-news .slick-next {
    position: absolute;
    top: auto;
    bottom: -17px;
    bottom: -4.533333333vw;
    left: auto;
    right: 80px;
    right: 21.3333333333vw;
    z-index: 4;
    width: 35px;
    width: 9.333333333vw;
    height: 35px;
    height: 9.333333333vw;
    background-color: #292c32;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .top-mainimg-news .slick-next:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 50%;
    width: 5px;
    height: 5px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: translateX(50%) translateY(50%) rotate(45deg);
    transform: translateX(50%) translateY(-50%) rotate(45deg);
  }


  /* 横スクロール文字
   ----------------------------------------------------------------- */
  .top-scroll-type-wrap {
    position: relative;
    z-index: 3;
    overflow: hidden;
    width: 100%;
    height: 140px;
    height: 37.3333333333vw;
    background-color: #fff;
  }

  .top-scroll-type-first {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 140px;
    height: 37.3333333333vw;
    color: #ebeff6;
    font-size: 140px;
    font-size: 37.3333333333vw;
    font-family: brandon-grotesque, sans-serif;
    font-weight: 900;
    line-height: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-animation: bg-animation-first 90s -0s linear infinite normal;
            animation: bg-animation-first 90s -0s linear infinite normal;
    opacity: 0.55;
  }

  .top-scroll-type-second {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 140px;
    height: 37.3333333333vw;
    color: #ebeff6;
    font-size: 140px;
    font-size: 37.3333333333vw;
    font-family: brandon-grotesque, sans-serif;
    font-weight: 900;
    line-height: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-animation: bg-animation-second 90s -45s linear infinite normal;
            animation: bg-animation-second 90s -45s linear infinite normal;
    opacity: 0.55;
  }


  /* 価値を生み出せる人材に
   ----------------------------------------------------------------- */
  .l-top-intro {
    position: relative;
    margin-top: -74px;
    margin-top: -19.7333333333vw;
    padding-bottom: 50px;
    padding-bottom: 13.3333333333vw;
    background-color: #fff;
  }

  .top-intro-img {
    overflow: hidden;
    position: absolute;
    top: 70px;
    top: 18.6666666667vw;
    left: 20px;
    left: 5.333333333vw;
    z-index: 4;
    width: 335px;
    width: 89.3333333333vw;
    height: 190px;
    height: 50.6666666667vw;
  }

  .top-intro-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: auto;
    transform: translate(-50%, -50%);
  }

  .top-intro-info {
    position: relative;
    z-index: 4;
    width: 325px;
    width: 86.6666666667vw;
    margin: 0 auto;
  }

  .top-intro-ttl {
    position: relative;
    margin-bottom: 209px;
    margin-bottom: 55.7333333333vw;
    font-size: 21px;
    font-size: 5.6vw;
    font-family: "YakuHanJP", NotoSansJP-medium;
    line-height: 1.4285714286;
  }

  .top-intro-txt {
    position: relative;
    margin-bottom: 33px;
    margin-bottom: 8.8vw;
    font-size: 14px;
    font-size: 3.733333333vw;
    line-height: 2;
  }

  .top-intro-btn {
    display: block;
    width: 150px;
    width: 40vw;
    margin: 0 auto;
    padding: 17px 0 18px;
    padding: 4.533333333vw 0 4.8vw;
    text-align: center;
    color: #fff;
    font-size: 10px;
    font-size: 2.666666667vw;
    font-family: brandon-grotesque, sans-serif;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    background:  #615A9D;
    border-radius: 30px;
    border-radius: 8vw;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.08);
  }

  /* 先輩社員の体験談
   ----------------------------------------------------------------- */
  .l-top-voice {
    overflow: hidden;
    position: relative;
    background-color: #fff;
  }
  .top-voice-bg {
    overflow: hidden;
    
    height: 40vw;
  }

  .top-voice-bg img {
    width: 100%;
    position: relative;
  }

  /* タイトル
  ----------------------- */
  .top-voice-ttl-wrap {
    position: relative;
    margin-bottom: 115px;
    margin-bottom: 10vw;
  }

  .top-voice-ttl {
    position: absolute;
    bottom: -20px;
    bottom: -5.3333333333vw;
    left: 0;
    width: 225px;
    width: 60vw;
    padding: 25px 0 0 25px;
    padding: 8vw 0 0 6.666666667vw;
    background-color: #fff;
  }

  .top-voice-ttl-main {
    display: block;
    margin: 0 0 15px 0;
    margin: 0 0 4vw 0;
    font-size: 21px;
    font-size: 5.6vw;
    font-family: brandon-grotesque, sans-serif;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1em;
  }

  .top-voice-ttl-sub {
    display: block;
    margin-bottom: 0;
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 1.41666666;
    vertical-align: middle;
  }


  /* 各ボックス
  ----------------------- */
  .top-voice-box-wrap {
    margin-left: 75px;
    margin-left: 20vw;
    padding-bottom: 50px;
    padding-bottom: 13.33333333vw;
    background-color: #f3f6fa;
  }

  .top-voice-box-inner {
    margin-left: -50px;
    margin-left: -13.33333333vw;
  }

  .top-voice-box01,
  .top-voice-box02,
  .top-voice-box03,
  .top-voice-box04,
  .top-voice-box05,
  .top-voice-box06 {
    position: relative;
    display: block;
    float: left;
  }

  .top-voice-box01 {
    margin: 0;
    height: 380px;
  }

  .top-voice-box02,
  .top-voice-box03,
  .top-voice-box04,
  .top-voice-box05,
  .top-voice-box06 {
    margin: 0;
    height: 380px;
  }

  .top-voice-box-img {
    width: 300px;
    width: 80vw;
    height: auto;
  }

  .top-voice-box-txt {
    position: absolute;
    top: auto;
    bottom: -40px;
    bottom: -10.66666667vw;
    right: -20px;
    right: -5.3333333333vw;
    display: block;
    width: 300px;
    width: 80vw;
    padding: 21px 50px 21px 25px;
    padding: 5.6vw 13.33333333vw 5.6vw 6.666666667vw;
    color: #333;
    font-size: 14px;
    font-size: 3.733333333vw;
    line-height: 1.571428;
    background-color: #fff;
    box-shadow: 0px 0px 25.92px 1.08px rgba(173, 173, 173, 0.1);
    top: 220px;
  }

  /*.top-voice-box-txt:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 25px;
    width: 7px;
    height: 7px;
    border-top: 2px solid #615A9D;
    border-right: 2px solid #615A9D;
    -webkit-transform: translateY(50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
  }*/

  .top-voice-box-sub {
    position: absolute;
    top: -30px;
    top: -8vw;
    left: 0;
    padding: 9px 15px 10px;
    padding: 2.4vw 4vw 2.666666667vw;
    color: #fff;
    font-size: 11px;
    font-size: 2.933333333vw;
    font-family: brandon-grotesque, sans-serif;
    font-weight: 400;
    line-height: 1;
    background-color: #34373e;
  }

  .top-voice-box-sub span { margin-right: 30px; }


  /* ボタン
    ----------------------- */
  .top-voice-btn {
    position: relative;
    display: block;
    width: 150px;
    width: 40vw;
    margin: 10px auto 0;
    margin: 2.666666667vw auto 0;
    padding: 15px 0;
    padding: 4vw 0;
    text-align: center;
    color: #fff;
    font-size: 10px;
    font-size: 2.666666667vw;
    font-family: brandon-grotesque, sans-serif;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    background-color: #615A9D;
    box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
  }



  /* 入社したらこんなお仕事を
     ----------------------------------------------------------------- */
  .l-top-work {
    margin-bottom: 100px;
    margin-bottom: 24vw;
  }

  .top-work-inner {
    overflow: hidden;
    position: relative;
    display: block;
    padding-bottom: 40px;
    padding-bottom: 10.66666667vw;
    color: #fff;
    text-decoration: none;
    background-color: #34373e;
    pointer-events: none;
  }

  /* テキスト情報
    ----------------------- */
  .top-work-info {
    float: none;
    width: 100%;
    padding: 40px 0 0;
    padding: 10.6666666667vw 0 0;
  }

  .top-work-ttl {
    position: relative;
    display: inline-block;
    margin: 0 0 5px 20px;
    margin: 0 0 1.333333333vw 5.333333333vw;
    padding: 7px 10px;
    padding: 1.866666667vw 2.666666667vw;
    color: #fff;
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 1;
    background-color: #8580d9;
  }
	


  .top-work-marker {
    position: relative;
    z-index: 2;
    display: inline-block;
    margin: 0 0 5px 20px;
    margin: 0 0 1.333333333vw 5.333333333vw;
    padding: 9px 10px;
    padding: 2.4vw 2.666666667vw;
    color: #333;
    font-size: 17px;
    font-size: 4.533333333vw;
    font-family: "YakuHanJP", NotoSansJP-medium;
    line-height: 2;
    background-color: #fff;
  }
	
	@media screen and (max-width: 768px) {
  .spc {
    padding-left:5%;
  }
}

  .top-work-txt {
    width:100%;
    margin-bottom: 23px;
    margin-bottom: 6.1333333333vw;
    padding: 0 35px;
    padding: 0 9.333333333vw;
    color: #fff;
    font-size: 13px;
    font-size: 3.466666667vw;
    line-height: 2;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* ボタン */
  .top-work-btn {
    display: block;
    width: 150px;
    width: 40vw;
    margin: 0 auto;
    padding: 17px 0 18px;
    padding: 4.533333333vw 0 4.8vw;
    text-align: center;
    color: #333;
    font-size: 10px;
    font-size: 2.666666667vw;
    font-family: brandon-grotesque, sans-serif;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    background-color: #fff;
    box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    border-radius: 8vw;
    pointer-events: auto;
  }

  /* 画像
    ----------------------- */
  .top-work-img {
    overflow: hidden;
    position: relative;
    z-index: 1;
    display: block;
    float: none;
    width: 350px;
    width: 93.3333333333vw;
    height: 250px;
    height: 66.6666666667vw;
    margin: -55px 0 23px;
    margin: 4.6666666667vw 0 -14.1333333333vw;
    min-height: auto;
  }

  .top-work-img img { width: 100%; }

  /* Case Study */
  .top-work-casestudy {
    position: absolute;
    top: 22px;
    top: 5.866666667vw;
    bottom: auto;
    right: 20px;
    right: 5.333333333vw;
    width: 77px;
    width: 20.5333333333vw;
  }



  /* 職種一覧
     ----------------------------------------------------------------- */
  .l-top-list {
    position: relative;
    margin-right: 0;
    margin-left: 20%;
    padding: 100px 0 60px;
    padding: 26.6666666667vw 0 16vw;
    background-color: #f3f6fa;
  }

  .top-list-inner {
    margin-right: 0;
    margin-left: -25%;
  }

  /* タイトル
  ----------------------- */
  .top-list-ttl {
    position: absolute;
    top: -21px;
    top: -5.6vw;
    left: -50px;
    left: -13.33333333vw;
  }

  .top-list-ttl-main {
    display: inline-block;
    margin-right: 0;
    margin-bottom: 18px;
    margin-bottom: 4.8vw;
    font-size: 21px;
    font-size: 5.6vw;
    font-family: brandon-grotesque, sans-serif;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1em;
  }

  .top-list-ttl-sub {
    display: block;
    margin-bottom: 12px;
    margin-bottom: 3.2vw;
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 1.5833333333;
  }

  /* リスト
  ----------------------- */
  /* タブ */
  .top-list-tab {
    overflow: hidden;
    position: relative;
    z-index: 2;
    margin-left: 0;
    margin-right: 25px;
    margin-right: 6.666666667vw;
  }

  .top-list-fresh-ttl a,
  .top-list-career-ttl a,
  .top-list-part-ttl a {
    float: left;
    /*width: 33.333333%;*/
    width: 50%;
    padding: 16px 0 17px;
    padding: 4.266666667vw 0 4.533333333vw;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 1;
    background-color: #C3CBD6;
  }

  .top-list-fresh-ttl a:hover,
  .top-list-career-ttl a:hover,
  .top-list-part-ttl a:hover { opacity: 1; }

  .top-list-fresh-ttl a:active,
  .top-list-career-ttl a:active,
  .top-list-part-ttl a:active { opacity: 0.8; }
  
  .top-list-fresh-ttl a.active,
  .top-list-career-ttl a.active,
  .top-list-part-ttl a.active{
    background: #615A9D;
  }

  /* コンテンツ */
  .top-list-content {  }

  .top-list-fresh,
  .top-list-career,
  .top-list-part {
    position: relative;
    margin-left: 0;
    margin-right: 25px;
    margin-right: 6.666666667vw;
    background-color: #fff;
    box-shadow: 0px 0px 25.92px 1.08px rgba(173, 173, 173, 0.1);
  }

  .top-list-fresh:before,
  .top-list-career:before,
  .top-list-part:before {
    content: "";
    position: absolute;
    top: -180px;
    top: -48vw;
    right: -25px;
    right: -6.666666667vw;
    z-index: 1;
    width: 180px;
    width: 48vw;
    height: 200px;
    height: 53.3333333333vw;
  }

  .top-list-fresh:before {
    background: url("../images/pic_list_fresh_sp.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }

  .top-list-career:before {
    background: url("../images/pic_list_career_sp.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }

  .top-list-part:before {
    background: url("../images/pic_list_part_sp.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }

  .top-list-item {
    position: relative;
    z-index: 2;
    width: 100%;
    border-bottom: 1px solid #ebeff6;
    border-bottom: 0.2666666667vw solid #ebeff6;
    background-color: #fff;
  }

  .top-list-item:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 25px;
    width: 7px;
    height: 7px;
    border-top: 2px solid #615A9D;
    border-right: 2px solid #615A9D;
    -webkit-transform: translateY(50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
  }

  .top-list-item a {
    display: block;
    padding: 24px 30px 24px 40px;
    padding: 6.4vw 8vw 6.4vw 10.6666666667vw;
    color: #222;
    font-size: 13px;
    font-size: 3.466666667vw;
    line-height: 1.3076923;
    text-decoration: none;
  }

  .top-list-img {
    position: absolute;
    top: 0;
    right: 0;
  }



  /* 働く環境
     ----------------------------------------------------------------- */
  .top-environment-bg {
    overflow: hidden;
    height: 250px;
    height: 66.6666666667vw;
  }

  .top-environment-bg img {
    width: 100%;
  }

  .intro-environment {
    margin: 6.666666667vw;
    font-size: 3.733333333vw;
    line-height: 2;
  }

  /* タイトル
  ----------------------- */
  .top-environment-ttl-wrap {
    position: relative;
    margin-bottom: 115px;
    margin-bottom: 30.6666666667vw;
  }

  .top-environment-ttl {
    position: absolute;
    bottom: -20px;
    bottom: -5.3333333333vw;
    left: 0;
    width: 66.6666666667%;
    padding: 25px 0 0 25px;
    padding: 8vw 0 0 6.666666667vw;
    background-color: #fff;
  }

  .top-environment-ttl-main {
    display: block;
    margin: 0 0 15px 0;
    margin: 0 0 4vw 0;
    font-size: 20px;
    font-size: 5.6vw;
    font-family: brandon-grotesque, sans-serif;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1em;
  }

  .top-environment-ttl-sub {
    display: block;
    margin-bottom: 0;
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 1.41666666;
    vertical-align: middle;
  }

  /* リスト
  ----------------------- */
  .top-environment-wrap {
    margin-left: 0;
    margin-right: 75px;
    margin-right: 20vw;
    padding-bottom: 40px;
    padding-bottom: 10.66666667vw;
    background-color: #f3f6fa;
  }

  .top-environment-list {
    margin: 0 -75px 0 0;
    margin: 0 -20vw 0 0;
  }

  .top-environment-item {
    position: relative;
    margin-bottom: 50px;
    margin-bottom: 10vw;
    box-shadow: none;
    background-color: transparent;
  }

  .top-environment-item:first-child {
    margin-top: -50px;
    margin-top: -13.33333333vw;
  }

  .top-environment-item-inner {
    overflow: visible;
    display: block;
    color: #34373e;
    text-decoration: none;
  }

  /* 画像 */
  .top-environment-item-thumb {
    overflow: hidden;
    position: relative;
    display: block;
    float: none;
    width: 150px;
    width: 40vw;
    height: 120px;
    height: 32vw;
    margin-left: 25px;
    margin-left: 6.666666667vw;
    box-shadow: 0px 0px 25.92px 1.08px rgba(173, 173, 173, 0.1);
  }

  .top-environment-item-thumb img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
  }

  /* テキスト部 */
  .top-environment-item-info {
    position: absolute;
    right: 0;
    bottom: -10px;
    bottom: -2.666666667vw;
    float: none;
    width: auto;
    height: 110px;
    height: 29.3333333333vw;
    margin-left: 120px;
    margin-left: 32vw;
    padding: 20px 55px 0 20px;
    padding: 5.333333333vw 14.6666666667vw 0 4.333333333vw;
    background-color: #fff;
    box-shadow: 0px 0px 25.92px 1.08px rgba(173, 173, 173, 0.1);
  }

  .top-environment-item-info:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 25px;
    width: 7px;
    height: 7px;
    border-top: 2px solid #615A9D;
    border-right: 2px solid #615A9D;
    -webkit-transform: translateY(50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
  }

  /* サブ */
  .top-environment-item-sub {
    margin: 60px 0 20px;
    margin: 16vw 0 5.333333333vw;
    color: #615A9D;
    font-size: 14px;
    font-size: 3.733333333vw;
    font-family: brandon-grotesque, sans-serif;
    font-weight: 400;
    line-height: 1;
  }

  /* タイトル */
  .top-environment-item-main {
    margin-bottom: 7px;
    margin-bottom: 1.866666667vw;
    color: #615A9D;
    font-size: 13px;
    font-size: 3.466666667vw;
    font-family: "YakuHanJP", NotoSansJP-medium;
    line-height: 1;
  }

  /* キャプション */
  .top-environment-item-cup {
    overflow: hidden;
    display: -webkit-box;
    max-height: 52px;
    max-height: 13.8666666667vw;
    text-overflow: ellipsis;
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  /* ボタン
  ----------------------- */
  .top-environment-btn-wrap {
    margin: 50px -75px 0 0;
    margin: 13.33333333vw -20vw 0 0;
  }

  .top-environment-btn {
    position: relative;
    display: block;
    width: 150px;
    width: 40vw;
    margin: 0 auto ;
    padding: 17px 0 18px;
    padding: 4.533333333vw 0 4.8vw;
    text-align: center;
    color: #fff;
    font-size: 10px;
    font-size: 2.666666667vw;
    font-family: brandon-grotesque, sans-serif;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    background: linear-gradient(to right, #615A9D, #00e6a2);
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.08);
    border-radius: 30px;
    border-radius: 8vw;
  }


  /* Instagram読み込み
     ----------------------------------------------------------------- */
  .l-instagram {
    padding: 50px 25px 80px;
    padding: 13.3333333333vw 6.6666666667vw 21.3333333333vw;
    background: -webkit-linear-gradient(left,  rgba(161,81,190,0.3) 0%,rgba(217,144,110,0.3) 60%,rgba(206,70,106,0.3) 100%);
    background: linear-gradient(to right,  rgba(161,81,190,0.3) 0%,rgba(217,144,110,0.3) 60%,rgba(206,70,106,0.3) 100%);
  }

  .instagram-headline {
    margin-bottom: 20px;
    margin-bottom: 5.3333333333vw;
    font-size: 10px;
    font-size: 2.6666666667vw;
    text-align: center;
  }

  .instagram-logo {
    width: 109px;
    width: 29.0666666667vw;
    vertical-align: bottom;
  }

  .instagram-headline-sub {
    display: inline-block;
    padding-left: 10px;
    padding-left: 2.6666666667vw;
    padding-top: 5px;
    padding-top: 1.3333333333vw;
    line-height: 1;
    color: #000;
    vertical-align: top;
  }

  .instagram-txt {
    margin-bottom: 30px;
    margin-bottom: 8vw;
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 1.5;
    text-align: center;
    color: #333;
  }

  /* #Instagram読み込みtemplate
  ----------------------- */
  .instafeed-list {
    overflow: hidden;
    margin: 0 -6.6666666667vw -2.6737967914vw;
    font-size: 0;
    letter-spacing: 0;
    text-align: center;
  }

  .instafeed-item {
    display: inline-block;
    width: 26.9333333333vw;
    height: 26.9333333333vw;
    margin: 0 1.3368983957vw 2.6737967914vw;
    overflow: hidden;
  }

  .instafeed-a {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding-top: 100%;
    overflow: hidden;
  }

  .instafeed-inner {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
  }
  .instafeed-inner img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: 105%;
    transform: translateX(-50%) translateY(-50%);
  }

  .instafeed-yokonaga { height: 100%; }
  .instafeed-tatenaga { width: 100%; }


  /* ==========================================================================
     #layer
     ========================================================================== */

  /* RECRUIT2020
     ----------------------------------------------------------------- */
  .bg-type-wrap {
    position: relative;
  }

  .bg-type {
    position: fixed;
    top: 0;
    right: 0;
    overflow: hidden;
    width: 115px;
    height: 1800px;
    color: #f5f8fb;
    font-family: brandon-grotesque, sans-serif;
    font-size: 115px;
    font-weight: 700;
    line-height: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    -webkit-transition: transform 1.4s, opacity 1.4s;
    transition: transform 1.4s,opacity 1.4s;
    z-index: -999;
  }

  /* 非表示 */
  .js-ready .bg-type {
    -webkit-transform: translate3d(0,-100%,0);
    transform: translate3d(0,-100%,0);
  }

  /* 表示 */
  .bg-type .in {
    position: absolute;
    top: -10px;
    right: -16px;
    -webkit-transform: translateX(100%) rotate(90deg);
    transform: translateX(100%) rotate(90deg);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }

  /* メインイメージ
     ----------------------------------------------------------------- */
  .l-mainimg {
    margin-bottom: 190px;
    margin-bottom: 8vw;
    height: 455px;
    height: 121.3333333333vw;
  }


  /* 動く背景
  ----------------------- */
  .mainimg-bg {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;/* bg-typeより下に表示 */
    width: 345px;
    width: 92vw;
    height: 455px;
    height: 121.3333333333vw;
    background-color: #f2f5fa;
  }


  /* 画像
  ----------------------- */
  .mainimg-img-wrap {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;/* bg-typeより上に表示 */
    width: 345px;
    width: 92vw;
    height: 420px;
    height: 112vw;
  }

  .mainimg-img-wrap img {
    width: 120%;
    margin: -35px 0 0 -35px;
    margin: -9.3333333333vw 0 0 -9.3333333333vw;
	          object-fit: cover;
        height: 80vh;
  }

  .mainimg-info {
    position: relative;
    z-index: 3;/* bg-typeより上に表示 */
    padding: 335px 0 0;
    padding: 89.3333333333vw 0 0;
  }

  /* company */
  .company .mainimg-img-wrap {
    height: 350px;
    height: 93.3333333333vw;
  }

  /* environment */
  .environment .mainimg-img-wrap {
    height: 350px;
    height: 93.3333333333vw;
  }

  /* 筆記体
  ----------------------- */
  .mainimg-cursive-wrap { position: absolute; }

  .mainimg-cursive {
    padding-left: 35px;
    padding-left: 9.333333333vw;
  }

  .mainimg-cursive img {
    width: 292px;
    width: 77.8666666667vw;
  }

  /* タイトル
  ----------------------- */

  .mainimg-ttl {
    position: absolute;
    top: 0;
    right: 0;
    line-height: 1;
    font-size: 0;
  }

  /* fresh/sales */
  .mainimg-ttl {
    position: absolute;
    top: 185px;
    top: 49.3333333333vw;
    right: 6px;
    right: 1.6vw;
    line-height: 1;
  }

  /* fresh/planner */
  .planner-fresh .mainimg-ttl {
    position: absolute;
    top: 210px;
    top: 56vw;
    left: 20px;
    left: 5.333333333vw;
    right: auto;
    line-height: 1;
  }

  /* fresh/designer */
  .designer-fresh .mainimg-ttl {
    position: absolute;
    top: 190px;
    top: 50.6666666667vw;
    left: 20px;
    left: 5.333333333vw;
    right: auto;
    line-height: 1;
  }

  /* fresh/writer */
  /*.writer-fresh .mainimg-ttl {
    position: absolute;
    top: 210px;
    top: 56vw;
    left: 20px;
    left: 5.333333333vw;
    right: auto;
    line-height: 1;
  }*/

  /* 新卒WEB広告 */
  .listing-fresh .mainimg-ttl {
    position: absolute;
    top: 210px;
    top: 56vw;
    left: 20px;
    left: 5.333333333vw;
    right: auto;
    line-height: 1;
  }

  /* 新卒フロントエンドエンジニア */
  .engineer-fresh .mainimg-ttl {
    position: absolute;
    top: 210px;
    top: 56vw;
    right: 12px;
    right: 3.2vw;
    left: auto;
    line-height: 1;
  }

  /* 新卒エンジニア */
  .web-engineer-fresh .mainimg-ttl {
    position: absolute;
    top: 207px;
    top: 55.2vw;
    left: 15px;
    left:  4vw;
    right: auto;
    line-height: 1;
  }



  /*　career/planner　*/
  .clareer-planner .mainimg-ttl {
    position: absolute;
    top: 200px;
    top: 53.3333333333vw;
    left: 20px;
    left: 5.333333333vw;
    right: auto;
    line-height: 1;
  }

  /* 中途デザイナー */
  .designer-career .mainimg-ttl {
    position: absolute;
    top: 190px;
    top: 50.6666666667vw;
    left: 20px;
    left: 5.333333333vw;
    right: auto;
    line-height: 1;
  }

  /* 中途ライター */
  .writer-career .mainimg-ttl {
    position: absolute;
    top: 160px;
    top: 42.6666666667vw;
    left: 20px;
    left: 5.333333333vw;
    right: auto;
    line-height: 1;
  }

  /* 中途WEB広告 */
  .listing-career .mainimg-ttl {
    /*position: absolute;
    top: 160px;
    top: 42.6666666667vw;
    left: 20px;
    left: 5.333333333vw;
    right: auto;
    line-height: 1;*/
  }

  /* 中途CS */
  .cs-career .mainimg-ttl {
    position: absolute;
    top: 205px;
    top: 54.6666666667vw;
    right: 8px;
    right: 2.1333333333vw;
    left: auto;
    line-height: 1;
  }

  /* 中途エンジニア */
  .engineer-career .mainimg-ttl {
    position: absolute;
    top: 200px;
    top: 53.3333333333vw;
    left: 15px;
    left: 4vw;
    right: auto;
    line-height: 1;
  }


  /* アルバイト編集 */
  .writer-part .mainimg-ttl {
    position: absolute;
    top: 190px;
    top: 50.6666666667vw;
    right: 10px;
    right: 2.6666666667vw;
    left: auto;
    line-height: 1;
  }

  /* 先輩の声kuwata */
  .voice-kuwata .mainimg-ttl,
  .voice-yamazaki .mainimg-ttl {
    position: absolute;
    top: 210px;
    top: 56vw;
    left: 20px;
    left: 5.3333333333vw;
    right: auto;
    line-height: 1;
  }

  /* environment */
  .environment .mainimg-ttl {
    position: absolute;
    top: 200px;
    top: 53.3333333333vw;
    right: 0;
    line-height: 1;
  }


  /* 職種 */
  .mainimg-ttl-sub {
    display: inline-block;
    margin-bottom: 5px;
    margin-bottom: 1.333333333vw;
    padding: 7px 10px;
    padding: 1.866666667vw 2.666666667vw;
    color: #333;
    font-size: 12px;
    font-size: 3.2vw;
    font-family: "YakuHanJP", NotoSansJP-medium;
    line-height: 1;
    background-color: #faf221;
  }


  /* メイン */
  .mainimg-ttl-main {
    font-size: 17px;
    font-size: 4.533333333vw;
    font-family: "YakuHanJP", NotoSansJP-medium;
    line-height: 1;
    letter-spacing : 0.06em;
  }

  .mainimg-ttl-border {
    display: inline-block;
    margin-bottom: 5px;
    margin-bottom: 1.333333333vw;
    padding: 10px;
    padding: 2.666666667vw;
    line-height: 1;
    background: linear-gradient(transparent 0%, #fff 0%);
  }

  .mainimg-lh-ttl-border {
    display: inline-block;
    margin-bottom: 5px;
    margin-bottom: 1.333333333vw;
    padding: 10px;
    padding: 2.666666667vw;
    line-height: 1.5;
    background: linear-gradient(transparent 0%, #fff 0%);
  }
  
  .mainimg-ttl-border.sub {
    font-size: 12px;
    font-size: 3.2vw;
  }

  /* 目次
     ----------------------------------------------------------------- */
  .toc {
    position: absolute;
    top: -175px;
    top: -46.6666666667vw;
    right: 0;
    left: 0;
    z-index: 2;
    overflow: hidden;
    padding: 0 30px;
    padding: 0 8vw;
  }

  .toc-item {
    position: relative;
    border-bottom: 1px solid #e6e6e6;
  }

  .toc-item:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    right: 2.666666667vw;
    width: 5px;
    width: 1.333333333vw;
    height: 5px;
    height: 1.333333333vw;
    border-bottom: 1px solid #615A9D;
    border-bottom: 0.2666666667vw solid #615A9D;
    border-right: 1px solid #615A9D;
    border-right: 0.2666666667vw solid #615A9D;
    -webkit-transform: translateX(50%) translateY(50%) rotate(45deg);
    transform: translateX(50%) translateY(-50%) rotate(45deg);
  }

  .toc-item a {
    display: block;
    padding: 15px 0;
    padding: 4vw 0;
    color: #333;
    font-size: 14px;
    font-size: 3.733333333vw;
    line-height: 1;
    text-decoration: none;
  }



  /* 職種の説明
     ----------------------------------------------------------------- */
  .l-work { position: relative; }

  /* キャッチ */
  .work-catch {
    position: relative;
    z-index: 2;/* bg-typeより上に表示 */
    margin: 0 0 30px 25px;
    margin: 0 0 8vw 6.666666667vw;
    padding: 25px 90px 25px 30px;
    padding: 6.666666667vw 24vw 6.666666667vw 8vw;
    color: #fff;
    font-size: 16px;
    font-size: 4.266666667vw;
    font-family: "YakuHanJP", NotoSansJP-medium;
    line-height: 1.5625;
    background-color: #615A9D;
  }

  /* 新卒採用 or 中途採用 */
  .work-catch-type {
    position: absolute;
    top: -30px;
    top: -8vw;
    right: 10px;
    right: 2.666666667vw;
    display: block;
    width: 70px;
    width: 18.6666666667vw;
    height: 18.6666666667vw;
    padding: 21px 0;
    padding: 5.6vw 0;
    color: #333;
    text-align: center;
    font-size: 12px;
    font-size: 3.2vw;
    font-family: "YakuHanJP", NotoSansJP-medium;
    line-height: 1.1666666667;
    background-color: #faf221;
    border-radius: 50%;
  }

  .work-catch-type-02 {
    position: absolute;
    top: 12vw;
    right: 2.666666667vw;
    display: block;
    width: 18.6666666667vw;
    height: 18.6666666667vw;
    padding: 3.6vw 0;
    color: #333;
    text-align: center;
    font-size: 3.2vw;
    font-family: "YakuHanJP", NotoSansJP-medium;
    line-height: 1.1666666667;
    background-color: #faf221;
    border-radius: 50%;
  }

  .pa-center {
    padding-top: 7.5vw;
  }

  /* 情報
     ----------------------- */
  .work-box-left-first {
    position: relative;
    z-index: 2;/* bg-typeより上に表示 */
    padding-bottom: 10px;
    padding-bottom: 2.666666667vw;
    text-align: left;
  }

  .work-box-right {
    position: relative;
    z-index: 2;/* bg-typeより上に表示 */
    padding-bottom: 10px;
    padding-bottom: 2.666666667vw;
    text-align: right;
  }

  .work-box-left {
    position: relative;
    z-index: 2;/* bg-typeより上に表示 */
    padding-bottom: 10px;
    padding-bottom: 2.666666667vw;
    text-align: left;
  }

  /* 画像*/
  .work-box-left-first-img,
  .work-box-left-img,
  .work-box-right-img {
    width: 345px;
    width: 92vw;
    margin-bottom: 28px;
    margin-bottom: 7.4666666667vw;
  }

  .work-box-right-img {
    margin-left: 30px;
    margin-left: 8vw;
  }

  .work-box img {
    margin-bottom: 28px;
    margin-bottom: 7.466666667vw;
  }

  /* 各ボックス */
  .work-box {
    position: relative;
    text-align: left;
	          padding: 0 5%;
  }

  /* タイトル */
  .work-ttl {
    position: relative;
    margin-bottom: 10px;
    margin-bottom: 2.666666667vw;
    padding: 33px 25px 0;
    padding: 8.8vw 6.666666667vw 0;
    font-size: 17px;
    font-size: 4.533333333vw;
    font-family: "YakuHanJP", NotoSansJP-medium;
    line-height: 1.6470588235;
    border-top: 1px solid #f3f6fa;
  }

  .work-ttl:before {
    content: "";
    position: absolute;
    top: -1px;
    top: -0.2666666667vw;
    left: 0;
    width: 25px;
    width: 6.666666667vw;
    height: 4px;
    height: 1.066666667vw;
    background-color: #615A9D;
  }

  /* 余白調整 */
  .common-list + .work-ttl,
  .seminar-column + .work-ttl,
  .work-txt + .work-ttl {
    margin-top: 50px;
    margin-top: 13.3333333333vw;
  }
  
  /* タイトル02 */
  .work-ttl02 {
    margin: 33px 25px 10px;
    margin: 8.8vw 6.666666667vw 2.666666667vw;
    font-family: "YakuHanJP", NotoSansJP-medium;
    font-size: 14px;
    font-size: 3.733333333vw;
    line-height: 1.6470588235;
  }

  /* テキスト */
  .work-txt {
    margin: 0 25px 23px;
    margin: 0 6.666666667vw 6.666666667vw;
    font-size: 14px;
    font-size: 3.733333333vw;
    line-height: 2;
  }

  /* 代理店及びパートナー
     ----------------------------------------------------------------- */
  
  .l-partner {
      margin: 0 50px 80px 0;
      margin: 0 13.33333333vw 21.3333333333vw 0;
      padding-top: 110px;
      padding-top: 26.6666666667vw;
      background-color: #f3f6fa;
    }

    .partner-list {
      margin: 0 25px;
      margin: 0 6.666666667vw;
    }

    .partner-list-item {
      position: relative;
      text-align: center;
      margin-bottom: 20px;
      margin-bottom: 5.333333333vw;
      padding: 20px 25px;
      padding: 5.333333333vw 6.666666667vw;
      background-color: #fff;
      box-shadow: 0px 0px 25.92px 1.08px rgba(173, 173, 173, 0.1);
    }
    
    .partner-small {
      font-size: 3vw;
    }

    .partner-list-logo {
      width: 40vw;
      margin-bottom: 5vw;
    }

    .partner-list-txt {
      font-size: 14px;
      font-size: 3.733333333vw;
      line-height: 1.6428571;
    }

    .partner-list-logo-g {
      width: 40vw;
      padding: 0 5vw 5vw 5vw
    }

  /* メッセージ
     ----------------------------------------------------------------- */
  .l-message {
    position: relative;
    z-index: 2;/* bg-typeより上に表示 */
    overflow: hidden;
    margin-bottom: 55px;
    margin-bottom: 14.6666666667vw;
    padding-top: 25px;
    padding-top: 6.666666667vw;
    background-color: #615A9D;
  }

  .message-img {
    overflow: hidden;
    position: relative;
    width: 350px;
    width: 93.3333333333vw;
    height: 200px;
    height: 53.3333333333vw;
  }

  .message-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    min-height: 100%;
    min-width: 100%;
    transform: translate(-50%, -50%);
  }

  .message-info {
    margin: 25px 25px 33px;
    margin: 6.666666667vw 6.666666667vw 8.8vw;
  }

  .message-info-inner {  }

  .message-info-ttl {
    margin-bottom: 14px;
    margin-bottom: 3.733333333vw;
    color: #00ffa2;
    font-size: 15px;
    font-size: 4vw;
    font-family: brandon-grotesque, sans-serif;
    font-weight: 500;
    line-height: 1;
  }

  .message-info-txt {
    color: #fff;
    font-size: 15px;
    font-size: 4vw;
    line-height: 1.8666666;
  }


  /* メッセージ詳細（主に中途）
  ----------------------- */
  .l-message-sub {
    position: relative;
    margin-bottom: 100px;
    margin-bottom: 26.6666666667vw;
    text-align: left;
    z-index: 2;
  }

  .message-sub-txt {
    margin: 0 25px 23px;
    margin: 0 6.666666667vw 6.666666667vw;
    font-size: 14px;
    font-size: 3.733333333vw;
    line-height: 2;
  }

  .message-sub-list {
    list-style: disc;
    margin: 0 25px 32px 45px;
    margin: 0 6.666666667vw 6.666666667vw 12vw;
    font-size: 14px;
    font-size: 3.733333333vw;
    line-height: 1.6;
  }

  .message-sub-list li {
    margin-bottom: 10px;
    margin-bottom: 2.6666666667vw;
  }


  /* 入社したら
     ----------------------------------------------------------------- */
  .l-beginner {
    margin: 0 50px 230px 0;
    margin: 0 13.33333333vw 61.3333333333vw 0;
    padding-top: 110px;
    padding-top: 26.6666666667vw;
    background-color: #f3f6fa;
  }

  .beginner-inner {
    position: relative;
    z-index: 2;/* bg-typeより上に表示 */
    margin-right: -50px;
    margin-right: -13.33333333vw;
    padding-bottom: 20px;
    padding-bottom: 5.333333333vw;
  }

  /* タイトル */
  .beginner-ttl {
    position: absolute;
    top: -115px;
    top: -30.6666666667vw;
    left: 25px;
    left: 6.666666667vw;
  }

  .beginner-ttl-main {
    display: inline-block;
    margin-bottom: 25px;
    margin-bottom: 6.666666667vw;
    font-size: 20px;
    font-size: 5.333333333vw;
    font-family: brandon-grotesque, sans-serif;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1em;
  }

  .beginner-ttl-sub {
    display: block;
    padding-right: 25px;
    padding-right: 6.666666667vw;
    font-size: 15px;
    font-size: 4vw;
    line-height: 1.5;
  }

  /* リスト */
  .beginner-list {
    margin: 0 25px;
    margin: 0 6.666666667vw;
  }

  .beginner-list-item {
    position: relative;
    margin-bottom: 20px;
    margin-bottom: 5.333333333vw;
    padding: 20px 25px;
    padding: 5.333333333vw 6.666666667vw;
    background-color: #fff;
    box-shadow: 0px 0px 25.92px 1.08px rgba(173, 173, 173, 0.1);
  }

  .beginner-list-item-inner {  }

  .beginner-list-no {
    position: absolute;
    top: -5px;
    top: -1.333333333vw;
    left: -7px;
    left: -1.866666667vw;
    color: #615A9D;
    font-size: 15px;
    font-size: 4vw;
    font-family: brandon-grotesque, sans-serif;
    font-weight: 400;
    line-height: 1;
  }

  .beginner-list-txt {
    font-size: 14px;
    font-size: 3.733333333vw;
    line-height: 1.6428571;
  }

  .beginner-advice {
    position: absolute;
    bottom: -169px;
    bottom: -18.0666666667vw;
    left: 0;
    right: 0;
    margin: 0 30px;
    margin: 0 8vw;
    color: #666;
    font-size: 13px;
    font-size: 3.466666667vw;
    line-height: 1.9230769;
  }





  /* 環境（ピックアップ）
     ----------------------------------------------------------------- */
  .l-environment-pickup {
    margin-left: 100px;
    margin-left: 26.6666666667vw;
    padding: 115px 0 60px;
    padding: 20vw 0 16vw;
    /* background-color: #f3f6fa; */
  }

  /* タイトル */
  .environment-pickup-ttl {
    position: absolute;
    top: -120px;
    top: -32vw;
    left: 25px;
    left: 6.6666666667vw;
    z-index: 2;/* bg-typeより上に表示 */
  }

  .environment-pickup-ttl-main {
    display: inline-block;
    margin-bottom: 25px;
    margin-bottom: 6.666666667vw;
    font-size: 20px;
    font-size: 5.333333333vw;
    font-family: brandon-grotesque, sans-serif;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1em;
  }

  .environment-pickup-ttl-sub {
    display: block;
    padding-right: 25px;
    padding-right: 6.666666667vw;
    font-size: 14px;
    font-size: 3.733333333vw;
    line-height: 1.7857142;
  }

  .environment-pickup-inner {
    position: relative;
    z-index: 2;/* bg-typeより上に表示 */
    margin-left: -100px;
    margin-left: -26.6666666667vw;
  }

  /* リスト */
  .environment-pickup-list {
    overflow: hidden;
    width: 86.6666666667vw;
    margin: 0 auto 4vw;
  }

  .environment-pickup-list-item {
    overflow: hidden;
    float: left;
    width: 25.3333333333vw;
    margin: 0 5.333333333vw 6.666666667vw 0;
    box-shadow: 0px 0px 25.92px 1.08px rgba(173, 173, 173, 0.2);
    border-radius: 1.333333333vw;
  }
  .environment-pickup-list-item:nth-child(3),
  .environment-pickup-list-item:nth-child(6),
  .environment-pickup-list-item:nth-child(9) { margin-right: 0; }

  .environment-pickup-list-item img { width: 100%; }

  .environment-pickup-list-txt {
    display: table-cell;
    width: inherit;
    height: 40px;
    height: 10.93333333vw;
    padding: 0 5px;
    text-align: center;
    font-size: 11px;
    font-size: 2.933333333vw;
    line-height: 1.1818181818;
    vertical-align: middle;
    background-color: #fff;
  }

  /* ボタン */
  .environment-pickup-btn {
    position: relative;
    display: block;
    width: 150px;
    width: 40vw;
    margin: 0 auto;
    padding: 17px 0 18px;
    padding: 4.533333333vw 0 4.8vw;
    text-align: center;
    color: #fff;
    font-size: 10px;
    font-size: 2.666666667vw;
    font-family: brandon-grotesque, sans-serif;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    background: linear-gradient(to right, #615A9D, #00e6a2);
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.08);
    border-radius: 30px;
    border-radius: 8vw;
  }

    /* 成長環境
    ----------------------------------------------------------------- */
  .environment-growth-ttl {
    font-size: 5.6vw;
    line-height: 1.6;
  }

  .environment-growth-txt {
    margin: 6.666666667vw 0;
    font-size: 3.733333333vw;
    line-height: 2;
  }

  .environment-growth-txt span {
    font-weight: bold;
  }

  .environment-growth-valuetxt {
    margin: 6.666666667vw 0;
    font-size: 3.733333333vw;
    line-height: 2;
  }


  .environment-intro-img img {
    height: auto;
    width: 100%;
    overflow: hidden;
  }

  .l-environment-value {
    margin-bottom: 17.91vw;
    border-top: solid 1px #63D49F;
    border-bottom: solid 1px #63D49F;
  }

  .environment-value + .environment-value {
    border-top: solid 1px #63D49F;
  }

  .environment-value {
    padding: 4.831vw 2.415vw 7.246vw 2.415vw;
    align-items: center;
  }

  .environment-value-subttl {
    color: #63D49F;
    font-size: 4.589vw;
    font-weight: 700;
  }

  .environment-value-ttl {
    margin-bottom: 4.831vw;
    font-size: 6.039vw;
    font-weight: 700;
  }

  .environment-value-txt li {
    position: relative;
    padding-left: 5.072vw;
    font-size: 3.865vw;
    line-height: 2;
  }

  .environment-value-txt li:before {
    border-radius: 50%;
    width: 0.966vw;
    height: 0.966vw;
    display: block;
    position: absolute;
    left: 0.516vw;
    top: 0.95em;
    content: "";
    background: #63D49F;
  }

    /* スペシャルコンテンツ
    ----------------------------------------------------------------- */

  .l-special-contents {
    margin: 0 6.666666667vw
  }
  
  .special-contents-txt {
    font-size: 3.865vw;
    padding: 6.039vw;
    color: #333333;
    line-height: 1.8;
  }
  
  .special-contents-img img {
    overflow: hidden;
    width: 100%;
  }

  .special-contens-block {
    margin-bottom: 7.246vw;
    padding-bottom: 12.5vw;
    background-color: #fff;
  }
  
  .special-contens-block a {
    text-decoration: none;
  }

  .special-contens-block figure {
    margin: 0;
  }

  .special-contents-btn {
    margin-top: 4.831vw;
    display: flex;
    align-items: center;
    float: right;
  }

  .special-contents-btn-txt {
    margin-right: 4.831vw;
    font-size: 3.865vw;
    color: #63D49F;
    font-weight: bold;
  }

  .special-contents-btn-ico {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 9.662vw;
    height: 9.662vw;
    background-color: #63D49F;
    border-radius: 9.662vw;
  }


  /* 制度
   ----------------------------------------------------------------- */
  .environment-comfort-box {
   background-color: #fff;
   padding: 6.667vw;
  }
  .environment-headline-txt {
    width: 86.6666666667vw;
    margin: 0 auto;
    padding-bottom: 6.666666667vw;
    font-size: 3.733333333vw;
    line-height: 2;
  }
  .environment-office-ttl {
    position: relative;
    margin: 5.333vw 0;
    padding-left: 5.067vw;
    font-size: 4.8vw;
    font-family: "NotoSansJP-bold";
    line-height: 1.3
  }
  .environment-office-ttl::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 1.067vw;
    background-color: #faf221;
    border-radius: 0.8vw;
  }
  .life-event-ttl {
    margin: 2.415vw 0 1.208vw 0;
    color: #615A9D;
    font-size: 3.46vw;
  }
  .life-event-txt {
    line-height: 1.7;
    margin-bottom: 10vw;
  }
  .benefits-txt {
    line-height: 2;
    font-size: 3.2vw;
  }
  .life-event-box {
    width: 47%;
    overflow: hidden;
    font-size: 2.933333333vw;
  }
  .life-event-box img {
    width: 100%;
  }
  .l-life-event {
    margin-bottom: 9.662vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .benefits-box img {
    width: 100%;
  }
  .benefits-box {
    margin-bottom: 10vw;
  }

    /* オフィスツアームービー
   ----------------------------------------------------------------- */

  .environment-office-box {
    padding: 6.623vw;
    width: 70vw;
    height: 44.464vw;
    background-color: #fff;
    box-shadow: 0px 0px 25.92px 1.08px rgba(173, 173, 173, 0.1);
  }
  .environment-office-subttl {
    font-size: 3.46vw;
    color: #63D49F;
  }
  .environment-office-txt {
    font-size: 3.2vw;
  }

  .environment-office-scroll img {
    width: 70vw;
    height: auto;
  }

  .environment-office-scroll li {
    margin-right: 4.831vw;
  }


  /*スクロールバーのstyle*/
.environment-office-scroll::-webkit-scrollbar{
  height: 1.208vw;
  width: 1.208vw;
}
.environment-office-scroll::-webkit-scrollbar-track{
  background-color: #D9D9D9;
}
.environment-office-scroll::-webkit-scrollbar-thumb{
  background-color: #333;
  border-radius: 100vw;
}

/*FireFoxのみ適用*/
@-moz-document url-prefix() {
  .environment-office-scroll{
    scrollbar-width: thin;
    scrollbar-color: #333 #D9D9D9;
  }
}

.environment-office-scroll{
  margin: 0 auto;
  position: relative;
  overflow-y: hidden;
  overflow-x: scroll;
}

.environment-office-scroll ul {
  margin: 12.077vw 0 8.454vw 0;
  display: flex;
  position: relative;
}

  
  /* オフィスの雰囲気
    ----------------------------------------------------------------- */
  .l-office {
    overflow: hidden;
    position: relative;
    z-index: 2;/* bg-typeより上に表示 */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .office-slide-wrap {
    position: relative;
    margin: -330px 0 0;
    margin: -133vw 0 0!important;
  }

  .office-slide-wrap:before {
    content: "";
    position:  absolute;
    top: 0;
    left: 25px;
    left: 6.6666666667vw;
    width: 350px;
    width: 93.3333333333vw;
    height: 410px;
    height: 109.3333333333vw;
    background-color: #fff;
  }

  .office-slide-wrap .slick-list {
    padding: 0 0 100px 25px;
    padding: 0 0 34.3333333333vw 6.666666667vw;
  }

  /* タイトル(SPのみ) */
  .office-ttl {
    height: 390px;
    height: 150vw;
    padding-top: 25px;
    padding-top: 6.133333333vw;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-size: 4.266666667vw;
    line-height: 1;
    background-color: #323640;
  }

  /* 前ボタン */
  .office-slide-wrap .slick-prev {
    position: absolute;
    top: 200px;
    top: 53.3333333333vw;
    bottom: auto;
    right: 50px;
    right: 13.33333333vw;
    left: auto;
    z-index: 2;
    width: 50px;
    width: 13.33333333vw;
    height: 50px;
    height: 13.33333333vw;
    background-color: #0bc071;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    border: none;
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
  }
  .office-slide-wrap .slick-prev:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 50%;
    width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: translateX(50%) translateY(50%) rotate(-135deg);
    transform: translateX(50%) translateY(-50%) rotate(-135deg);
  }

  /* 次ボタン */
  .office-slide-wrap .slick-next {
    position: absolute;
    top: 200px;
    top: 53.3333333333vw;
    bottom: auto;
    left: auto;
    right : 0;
    width: 50px;
    width: 13.33333333vw;
    height: 50px;
    height: 13.33333333vw;
    background-color: #17d582;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    border: none;
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
  }
  .office-slide-wrap .slick-next:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 50%;
    width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: translateX(50%) translateY(50%) rotate(45deg);
    transform: translateX(50%) translateY(-50%) rotate(45deg);
  }

  /* ドット */
  .office-slide-wrap .slick-dots {
    display: none!important;
    margin: 0;
    padding: 0;
  }

  /* 各スライド */
  .office-slide-item {
    overflow: hidden;
    position: relative;
    box-shadow: 0px 0px 25.92px 1.08px rgba(173, 173, 173, 0.1);
  }


  .office-slide-item-info {
    overflow: hidden;
    height: 160px;
    height: 40vw;
    margin-top: 250px;
    margin-top: 66.6666666667vw;
    padding: 26px 30px 0;
    padding: 6.933333333vw 8vw 0;
    color: #333;
    background-color: #fff;
  }

  .office-slide-item-txt {
    font-size: 14px;
    font-size: 3.733333333vw;
    line-height: 1.5714285714;
  }

  .office-slide-item-img {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
    height: 66.6666666667vw;
  }

  .office-slide-item-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: auto;
    transform: translate(-50%, -50%);
  }


  /* 募集要項
     ----------------------------------------------------------------- */
  .l-info {
    margin-right: 50px;
    margin-right: 13.33333333vw;
    padding: 45px 0 65px;
    padding: 12vw 0 17.3333333333vw;
    background-color: #f3f6fa;
  }

  .info-inner {
    position: relative;
    z-index: 2;/* bg-typeより上に表示 */
    margin-right: -50px;
    margin-right: -13.33333333vw;
  }

  /* 画像 */
  .info-img {
    position: absolute;
    top: -115px;
    top: -30.6666666667vw;
    right: 0;
    width: 150px;
    width: 40vw;
  }

  /* タイトル */
  .info-ttl {
    position: absolute;
    top: -50px;
    top: -13.3333333333vw;
    left: 25px;
    left: 6.666666667vw;
    font-size: 20px;
    font-size: 5.333333333vw;
    font-family: brandon-grotesque, sans-serif;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1em;
  }

  /* 表 */
  .info-box {
    position: relative;
    margin: 0 20px;
    margin: 0 5.333333333vw;
    padding: 36px 25px 15px;
    padding: 9.6vw 6.666666667vw 4vw;
    background-color: #fff;
    box-shadow: 0px 0px 25.92px 1.08px rgba(173, 173, 173, 0.1);
  }

  .info-box-ttl {
    margin-bottom: 26px;
    margin-bottom: 6.933333333vw;
    text-align: center;
    font-size: 17px;
    font-size: 4.533333333vw;
    font-family: "YakuHanJP", NotoSansJP-bold;
    line-height: 1.4705882353;
  }

  .info-table {
    display: block;
    border-collapse: collapse;
  }


  .info-head {
    display: block;
    margin-bottom: 14px;
    margin-bottom: 3.733333333vw;
    padding-top: 30px;
    padding-top: 8vw;
    text-align: left;
    color: #999;
    font-size: 14px;
    font-size: 3.733333333vw;
    line-height: 1;
    border-top: 1px solid #ebeff6;
  }

  .info-txt {
    display: block;
    padding-bottom: 26px;
    padding-bottom: 2vw;
    text-align: left;
    font-size: 14px;
    font-size: 3.733333333vw;
    line-height: 1.5714285714;
  }
  
  .info-txt-attention {
    margin-bottom: 10px;
    margin-bottom: 2.6666666667vw;
    font-size: 12px;
    font-size: 3.2vw;
  }
  
  /* 通常適テキスト */
  .info-normal-txt { }
  
  /* リスト */
  .info-list-ttl {
    margin-bottom: 11px;
    margin-bottom: 2.933333333vw;
    font-size: 14px;
    font-size: 3.733333333vw;
    line-height: 1.4285714286;
    font-family: "YakuHanJP", NotoSansJP-medium;
  }
  
  .info-list { }
  
  .info-list li {
    position: relative;
    margin-bottom: 11px;
    margin-bottom: 2.933333333vw;
    padding-left: 10px;
    padding-left: 2.666666667vw;
    font-size: 14px;
    font-size: 3.733333333vw;
    line-height: 1.4285714286;
  }
  
  .info-list li:before {
    content: "";
    position: absolute;
    top: 8px;
    top: 2.133333333vw;
    left: 0;
    width: 4px;
    width: 1.066666667vw;
    height: 4px;
    height: 1.066666667vw;
    background-color: #333;
    border-radius: 2px;
    border-radius: 0.5333333333vw;
  }
  
  .info-list li:last-child { margin-bottom: 0; }
  
  /* 注意書き */
  .info-note {
    position: relative;
    padding-left: 12px;
    padding-left: 3.2vw;
    color: #666;
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 1.5;
  }
  
  .info-note:before {
    content: "※";
    position: absolute;
    top: 0;
    left: 0;
  }
  
  /* 調整 */
  .info-normal-txt + .info-list,
  .info-list + .info-note,
  .info-list + .info-normal-txt,
  .info-normal-txt + .info-normal-txt,
  .info-note + .info-normal-txt,
  .info-note + .info-list {
    margin-top: 16px;
    margin-top: 4.266666667vw;
  }
  
  .info-list + .info-list,
  .info-normal-txt + .info-list-ttl,
  .info-list + .info-list-ttl {
    margin-top: 24px;
    margin-top: 6.4vw;
  }
  
  .info-normal-txt + .info-note,
  .info-note + .info-note {
    margin-top: 7px;
    margin-top: 1.866666667vw;
  }


  /* エントリー
     ----------------------------------------------------------------- */
  .entry-btn {
    position: relative;
    z-index: 2;/* bg-typeより上に表示 */
    display: block;
    margin-bottom: 66px;
    margin-bottom: 17.6vw;
    padding: 54px 0;
    padding: 15.4vw 0;
    color: #222;
    font-size: 22px;
    font-size: 5.866666667vw;
    font-family: brandon-grotesque, sans-serif;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.2em;
    text-align: center;
    text-decoration: none;
    background-color: #faf221;
  }

  .entry-btn-sub {
    display: block;
    margin-top: 10px;
    font-size: 16px;
    font-size: 4.2666666667vw;
    font-family: "YakuHanJP", NotoSansJP-medium;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 0.08em;
  }




  /* メール登録
     ----------------------------------------------------------------- */
  .l-mail {
    position: relative;
    z-index: 2;/* bg-typeより上に表示 */
    margin-bottom: 66px;
    margin-bottom: 17.6vw;
    padding: 40px 25px 95px;
    padding: 10.66666667vw 6.666666667vw 25.3333333333vw;
    background-color: #34373e;
  }

  .mail-inner {  }

  .mail-cup {
    position: absolute;
    bottom: 37px;
    bottom: 9.866666667vw;
    left: 0;
    right: 0;
    padding: 0 32px;
    padding: 0 8.533333333vw;
    color: #fff;
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .mail-label {
    display: block;
    float: left;
    width: 100%;
    margin-bottom: 20px;
    margin-bottom: 5.333333333vw;
    color: #fff;
    font-size: 19px;
    font-size: 5.066666667vw;
    font-family: brandon-grotesque, sans-serif;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.1rem;
  }

  .mail-label-sub {
    display: inline-block;
    margin-left: 50px;
    margin-left: 13.33333333vw;
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .mail-label-sub span { color: #faf221; }

  .mail-input {
    display: block;
    float: left;
    width: 244px;
    width: 75.0769230769%;
    height: 45px;
    height: 12vw;
    padding: 0 18px;
    padding: 0 4.8vw;
    font-size: 13px;
    font-size: 3.466666667vw;
    border: none;
    border-radius: 5px 0 0 5px;
    border-radius: 1.333333333vw 0 0 1.333333333vw;
    outline: none;
    background: none;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .mail-input::-webkit-input-placeholder { color: #cfd8e5; }

  .mail-button {
    display: block;
    float: right;
    width: 80px;
    width: 24.6153846154%;
    height: 45px;
    height: 12vw;
    padding: 0;
    font-size: 11px;
    font-size: 2.933333333vw;
    font-family: "YakuHanJP", NotoSansJP-medium;
    line-height: 1;
    cursor: pointer;
    outline: none;
    background-color: #faf221;
    border: none;
    border-radius: 0 5px 5px 0;
    border-radius: 0 1.333333333vw 1.333333333vw 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

  /* 送信完了時に表示 */
  .mail-success { display: none; }

  .mail-success-txt {
    float: left;
    width: 325px;
    width: 86.6666666667vw;
    height: 45px;
    height: 12vw;
    padding: 16px 0;
    padding: 4.266666667vw 0;
    text-align: center;
    font-size: 11px;
    font-size: 2.933333333vw;
    line-height: 1;
    background-color: #fff;
    border-radius: 5px;
    border-radius: 1.333333333vw;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }


  /* 他職種
     ----------------------------------------------------------------- */
  .l-other {
    margin-left: 75px;
    margin-left: 20vw;
    background-color: #f3f6fa;
  }

  .other-inner {
    position: relative;
    z-index: 2;/* bg-typeより上に表示 */
    margin-left: -75px;
    margin-left: -20vw;
    padding: 50px 25px 60px 25px;
    padding: 13.33333333vw 6.666666667vw 16vw 6.666666667vw;
  }

  /* タイトル
  ----------------------- */
  .other-ttl {
    overflow: hidden;
    position: absolute;
    top: -10px;
    top: -2.666666667vw;
    left: 20px;
    left: 5.3333333333vw;
  }

  .other-ttl-main {
    display: block;
    font-size: 20px;
    font-size: 5.333333333vw;
    font-family: brandon-grotesque, sans-serif;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1em;
  }

  .other-box-wrap {
    margin-bottom: 80px;
    margin-bottom: 20vw;
    padding-right: 25px;
    padding-right: 6.666666667vw;
  }

  .other-box01,
  .other-box02 {
    position: relative;
    display: block;
    text-decoration: none;
  }
  
  .other-box01 + .other-box01,
  .other-box01 + .other-box02,
  .other-box02 + .other-box01,
  .other-box02 + .other-box02 {
    margin-top: 19.4666666667vw;
  }

  /* 新卒 or 中途
     ----------------------- */
  .other-box-sub {
    position: absolute;
    top: -20px;
    top: -5.333333333vw;
    left: -20px;
    left: -5.333333333vw;
    width: 55px;
    width: 14.6666666667vw;
    padding: 14px 0 15px;
    padding: 3.733333333vw 0 4vw;
    text-align: center;
    color: #222;
    font-size: 11px;
    font-size: 2.933333333vw;
    line-height: 1.1818181818;
    background-color: #faf221;
    border-radius: 50%;
  }

  /* 画像
   ----------------------- */
  .other-box01 img,
  .other-box02 img { width: 100%; }

  /* テキスト
     ----------------------- */
  .other-box-txt {
    position: absolute;
    bottom: -43px;
    bottom: -11.46666667vw;
    right: -15px;
    right: -4vw;
    width: 100%;
    padding: 20px 50px 20px 25px;
    padding: 5.333333333vw 13.33333333vw 5.333333333vw 6.666666667vw;
    color: #333;
    font-size: 13px;
    font-size: 3.466666667vw;
    line-height: 1.7307692308;
    background-color: #fff;
    box-shadow: 0px 0px 25.92px 1.08px rgba(173, 173, 173, 0.1);
  }

  .other-box-txt:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 25px;
    right: 6.666666667vw;
    width: 7px;
    height: 7px;
    border-top: 2px solid #615A9D;
    border-right: 2px solid #615A9D;
    -webkit-transform: translateY(50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
  }

  /* 職種 */
  .other-box-txt-head {
    position: absolute;
    top: -30px;
    top: -8vw;
    left: 0;
    padding: 9px 20px;
    padding: 2.4vw 5.333333333vw;
    color: #fff;
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 1;
    background-color: #34373e;
  }

  /* ボタン
  ----------------------- */
  .other-btn {
    position: relative;
    display: block;
    width: 150px;
    width: 40vw;
    margin: 0 auto;
    padding: 15px 0;
    padding: 4vw 0;
    text-align: center;
    color: #fff;
    font-size: 10px;
    font-size: 2.666666667vw;
    font-family: brandon-grotesque, sans-serif;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    background-color: #615A9D;
    box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    border-radius: 5.333333333vw;
  }


  /* 実績の例 company等で使用
   ----------------------------------------------------------------- */
  .example-wrap {
    padding: 40px 25px 0;
    padding: 10.66666667vw 6.666666667vw 0;
  }

  .example-item {
    position: relative;
    margin-bottom: 44px;
    margin-bottom: 11.73333333vw;
  }

  .example-item-img,
  .work-box .example-item-img {
    position: absolute;
    top: 130px;
    top: 34.6666666667vw;
    left: 50%;
    right: 0;
    width: 280px;
    width: 74.6666666667vw;
    margin-left: -140px;
    margin-left: -37.3333333333vw;
  }

  .example-item-info {

  }

  .example-info-type {
    margin-bottom: 20px;
    margin-bottom: 5.333333333vw;
    position: relative;
    padding: 13px 0;
    padding: 3.466666667vw 0;
    text-align: center;
    font-size: 14px;
    font-size: 3.733333333vw;
    line-height: 1;
    background-color: #f3f6fa;
  }

  .example-info-type-circle {
    position:absolute;
    top: -15px;
    top: -4vw;
    left: -15px;
    left: -4vw;
    display: block;
    width: 60px;
    width: 16vw;
    height: 60px;
    height: 16vw;
    padding-top: 15px;
    padding-top: 4vw;
    font-size: 11px;
    font-size: 2.933333333vw;
    font-family: brandon-grotesque, sans-serif;
    font-weight: 400;
    background-color: #faf221;
    border-radius: 30px;
    border-radius: 8vw;
  }

  .example-info-type-circle span {
    display: block;
    margin-top: 3px;
    margin-top: 0.8vw;
    font-size: 18px;
    font-size: 4.8vw;
  }

  .example-info-ttl {
    margin-bottom: 257px;
    margin-bottom: 68.5333333333vw;
    text-align: center;
    font-size: 15px;
    font-size: 4vw;
    font-family: "YakuHanJP", NotoSansJP-medium;
    line-height: 1.6666666667;
  }

  .example-info-txt {
    font-size: 13px;
    font-size: 3.466666667vw;
    line-height: 1.9230769231;
  }
  
  /* お知らせ
   ----------------------------------------------------------------- */
  .announcement {
    margin: 0 6.666666667vw 8vw;
    padding: 5.3333333333vw;
    border: 1px solid #615A9D;
    background-color: #fff;
  }
  
  .annoouncement-txt {
    font-size: 14px;
    font-size: 3.733333333vw;
    line-height: 2;
  }



  /* ==========================================================================
     #news
     ========================================================================== */
  .l-news {
    padding-top: 50px;
    padding-top: 13.3333333333vw;
  }

  .news-ttl {
    margin-bottom: 50px;
    margin-bottom: 13.3333333333vw;
    font-size: 24px;
    font-size: 6.4vw;
    font-family: "YakuHanJP", NotoSansJP-bold;
    line-height: 1;
    text-align: center;
    color: #615A9D;
  }

  .news-list {
    padding-bottom: 5px;
    padding-bottom: 1.3333333333vw;
  }

  .news-list li {
    padding: 30px 30px 35px;
    padding: 8vw 8vw 9.3333333333vw;
    border-top: 1px solid #ebeff6;
  }

  /* 画像 */
  .news-list-img {
    width: 100%;
    margin-bottom: 20px;
    margin-bottom: 5.3333333333vw;
  }

  .news-list-img img {
    width: 100%;
  }

  /* テキスト部分 */
  .news-list-data {
    display: block;
    margin-bottom: 10px;
    margin-bottom: 2.6666666667vw;
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 1;
    font-family: brandon-grotesque, sans-serif;
    font-weight: 600;
    color: #615A9D;
  }

  .news-list-ttl {
    margin-bottom: 16px;
    margin-bottom: 4.2666666667vw;
    font-size: 17px;
    font-size: 4.5333333333vw;
    font-family: "YakuHanJP", NotoSansJP-bold;
    line-height: 1.529;
  }
  .news-list-txt {
    font-size: 14px;
    font-size: 3.7333333333vw;
    line-height: 1.786;
  }

  .news-txt-attention { color: #d44754; }





  /* ==========================================================================
   #project
   ========================================================================== */
  .l-mainimg.project {
    height: 375px;
    height: 100vw;
  }

  /* 動く背景 */
  .project .mainimg-bg {
    height: 375px;
    height: 100vw;
  }

  /* 画像 */
  .project .mainimg-img-wrap {
    height: 350px;
    height: 93.3333333333vw;
  }

  /* 目次 */
  .project .toc {
    width: 50%;
    padding-right: 7px;
    padding-right: 1.866666667vw;
  }

  .project .toc + .toc {
    margin-left: 50%;
    padding-right: 30px;
    padding-right: 8vw;
    padding-left: 7px;
    padding-left: 1.866666667vw;
  }

  /* 参加する職種
     ----------------------------------------------------------------- */
  .project-job-wrap {
    padding: 35px 25px 0;
    padding: 9.333333333vw 6.666666667vw 0;
  }

  .project-job-item { position: relative; }

  .project-job-img {
    position: absolute;
    top: -9px;
    top: -2.4vw;
    left: -10px;
    left: -2.666666667vw;
    width: 60px;
    width: 16vw;
  }

  .project-job-ttl {
    margin-bottom: 25px;
    margin-bottom: 6.666666667vw;
    padding: 14px 0;
    padding: 3.733333333vw 0;
    text-align: center;
    font-size: 14px;
    font-size: 3.733333333vw;
    line-height: 1;
    background-color: #f3f6fa;
  }

  .project-job-txt {
    margin-bottom: 34px;
    margin-bottom: 9.066666667vw;
    font-size: 13px;
    font-size: 3.466666667vw;
    line-height: 1.9230769231;
  }

  /* 区切り
     ----------------------------------------------------------------- */
  .project-cut {
    position: relative;
    margin: 30px 0;
    margin: 8vw 0;
    padding: 25px;
    padding: 6.666666667vw;
    text-align: center;
    color: #fff;
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 1;
    background-color: #615A9D;
  }

  .project-cut:before {
    content: "";
    position: absolute;
    top: -35px;
    top: -9.333333333vw;
    left: 50%;
    z-index: 3;
    width: 2px;
    width: 0.5333333333vw;
    height: 40px;
    height: 10.66666667vw;
    margin-left: -1px;
    margin-left: -0.2666666667vw;
    background-color: #faf221;
    border-radius: 1px;
    border-radius: 0.2666666667vw;
  }

  .project-cut.btn:before,
  .project-cut.sp-btn:before {
    content: none;
  }

  .project-cut:after {
    content: "";
    position: absolute;
    bottom: -35px;
    bottom: -9.333333333vw;
    left: 50%;
    z-index: 4;
    width: 2px;
    width: 0.5333333333vw;
    height: 40px;
    height: 10.66666667vw;
    margin-left: -1px;
    margin-left: -0.2666666667vw;
    background-color: #faf221;
    border-radius: 1px;
    border-radius: 0.2666666667vw;
  }

  .project-border{
    position: relative;
    margin-bottom: 25px;
    margin-bottom: 6.666666667vw;
  }
  .project-border:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 50%;
    z-index: 4;
    width: 2px;
    width: 0.5333333333vw;
    height: 40px;
    height: 10.66666667vw;
    margin-left: -1px;
    margin-left: -0.2666666667vw;
    background-color: #faf221;
    border-radius: 1px;
    border-radius: 0.2666666667vw;
  }

  /* タイトル
     ----------------------------------------------------------------- */
  .project-box {
    position: relative;
    z-index: 3;
  }

  .project-ttl {
    position: relative;
    margin-bottom: 19px;
    margin-bottom: 5.066666667vw;
    padding: 27px 0;
    padding: 7.2vw 0;
    text-align: center;
    font-size: 17px;
    font-size: 4.533333333vw;
    font-family: "YakuHanJP", NotoSansJP-medium;
    line-height: 1;
    background-color: #fffdce;
  }

  .project-ttl-sub {
    position: absolute;
    top: 10px;
    top: 2.666666667vw;
    left: 15px;
    left: 4vw;
    display: block;
    width: 50px;
    width: 13.33333333vw;
    height: 50px;
    height: 13.33333333vw;
    padding-top: 5px;
    padding-top: 1.333333333vw;
    text-align: center;
    font-size: 17px;
    font-size: 4.533333333vw;
    font-family: "YakuHanJP", NotoSansJP-medium;
    border-radius: 25px;
    border-radius: 6.666666667vw;
    background-color: #faf221;
  }

  .project-ttl-sub-process {
    position: relative;
    top: 0;
    left: 0;
    width: 27px;
    width: 7.2vw;
    margin-bottom: 2px;
    margin-bottom: 0.5333333333vw;
  }

  /* 小見出し
     ----------------------------------------------------------------- */
  .project-headline {
    position: relative;
    margin: 34px 0 20px 40px;
    margin: 9.066666667vw 0 5.333333333vw 10.66666667vw;
    padding: 13px 0;
    padding: 3.466666667vw 0;
    text-align: center;
    font-size: 14px;
    font-size: 3.733333333vw;
    line-height: 1;
    background-color: #f3f6fa;
  }

  .project-headline-img {
    position: absolute;
    top: 50%;
    left: -30px;
    left: -8vw;
    width: 60px;
    width: 16vw;
    height: 60px;
    height: 16vw;
    margin-top: -30px;
    margin-top: -8vw;
  }

  /* テキスト
   ----------------------------------------------------------------- */
  /* 通常 */
  .project-box-txt {
    margin: 0 30px 20px;
    margin: 0 8vw 5.333333333vw;
    font-size: 13px;
    font-size: 3.466666667vw;
    line-height: 1.9230769231;
  }

  /* 左側 */
  .project-box-txt-left {
    width: 150px;
    width: 40vw;
    margin: 0 0 0 30px;
    margin: 0 0 0 8vw;
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 1.6666666667;
  }

  /* 右側 */
  .project-box-txt-right {
    width: 150px;
    width: 40vw;
    margin: 0 0 0 200px;
    margin: 0 0 0 53.3333333333vw;
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 1.6666666667;
  }

  /* 画像
   ----------------------------------------------------------------- */
  .project-box-img {
    margin-bottom: 20px;
    margin-bottom: 5.333333333vw;
  }

  .project-box-img img {
    width: 100%;
  }

  /* 2行上に */
  .project-box-img.layout04 img,
  .project-box-img.layout05 img,
  .project-box-img.layout10 img,
  .project-box-img.layout14 img,
  .project-box-img.layout15 img {
    margin-top: -40px;
    margin-top: -10.66666667vw;
  }

  /* 3行上に */
  .project-box-img.layout11 img,
  .project-box-img.layout12 img,
  .project-box-img.layout13 img,
  .project-box-img.layout16 img,
  .project-box-img.layout18 img,
  .project-box-img.layout19 img,
  .project-box-img.layout20 img,
  .project-box-img.layout21 img {
    margin-top: -60px;
    margin-top: -16vw;
  }

  /* 全てソルブレイン主導で提案します。
     ----------------------------------------------------------------- */
  .project-solebrain {
    position: relative;
    margin: 45px 20px 0;
    margin: 12vw 5.333333333vw 0;
    padding: 20px;
    padding: 5.333333333vw;
    border: 1px solid #615A9D;
    border: 0.2666666667vw solid #615A9D;
    background-color: #fff;
  }

  .project-solebrain-ttl {
    position: absolute;
    top: -15px;
    top: -4vw;
    left: 50%;
    right: 0;
    width: 235px;
    width: 62.6666666667vw;
    margin-left: -116px;
    margin-left: -30.9333333333vw;
    padding: 9px 0;
    padding: 2.4vw 0;
    text-align: center;
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 1;
    background-color: #faf221;
    border-radius: 15px;
    border-radius: 4vw;
  }

  .project-solebrain-list {
    padding: 15px 5px 5px;
    padding: 4vw 1.333333333vw 1.333333333vw;
  }

  .project-solebrain-list-item {
    position: relative;
    margin-bottom: 15px;
    margin-bottom: 4vw;
    padding-left: 25px;
    padding-left: 6.666666667vw;
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 1;
  }

  .project-solebrain-list-item:before {
    content: "";
    position: absolute;
    top: -2px;
    top: -0.5333333333vw;
    left: 0;
    width: 14px;
    width: 3.733333333vw;
    height: 14px;
    height: 3.733333333vw;
    background: url("../images/ico_list.png") no-repeat;
    background-size: cover;
  }

  .project-box-img.layout07 img {
    position: relative;
    margin-top: -45px;
  }

  /* デザイナーが気にしてる
     ----------------------------------------------------------------- */
  .project-designer {
    position: relative;
    margin: 0 20px;
    margin: 0 5.333333333vw;
    padding: 20px 20px 170px;
    padding: 5.333333333vw 5.333333333vw 45.3333333333vw;
    border: 1px solid #615A9D;
    border: 0.2666666667vw solid #615A9D;
    background-color: #fff;
  }

  .project-box-img.layout08 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 20px 20px;
    padding: 0 5.333333333vw 5.333333333vw;
  }

  .project-designer-txt {
    font-size: 11px;
    font-size: 2.933333333vw;
    line-height: 2.4545454545;
  }

  /* 完成
     ----------------------------------------------------------------- */
  .project-box.process-finish {
    position: relative;
    z-index: 4;
    margin: 40px 0 30px;
    margin: 10.66666667vw 0 8vw;
    padding-top: 30px;
    padding-top: 8vw;
    background-color: #fff84e;
  }

  .process-finish-ttl {
    width: 170px;
    width: 45.3333333333vw;
    margin: 0 0 25px 30px;
    margin: 0 0 6.666666667vw 8vw;
    padding: 10px 0;
    padding: 2.666666667vw 0;
    text-align: center;
    font-size: 19px;
    font-size: 5.066666667vw;
    line-height: 1;
    font-family: "YakuHanJP", NotoSansJP-medium;
    background-color: #fff;
  }

  .process-finish-txt {
    position: absolute;
    top: 30px;
    top: 8vw;
    left: 210px;
    left: 56vw;
    width: 150px;
    width: 40vw;
    font-size: 14px;
    font-size: 3.733333333vw;
    line-height: 1.3571428571;
    font-family: "YakuHanJP", NotoSansJP-medium;
  }

  /* 改善の結果
     ----------------------------------------------------------------- */
  .project-result {
    position: relative;
    margin-bottom: 30px;
    margin-bottom: 8vw;
    padding-bottom: 63px;
    padding-bottom: 16.8vw;
    z-index: 4;
    background-color: #fff84e;
  }

  .project-result:after {
    content: "";
    position: absolute;
    bottom: -40px;
    bottom: -10.66666667vw;
    left: 50%;
    width: 2px;
    width: 0.5333333333vw;
    height: 40px;
    height: 10.66666667vw;
    margin-left: -1px;
    margin-left: -0.2666666667vw;
    background-color: #faf221;
  }

  /* タイトル */
  .project-result-ttl {
    position: relative;
    height: 126px;
    height: 33.6vw;
    padding-top: 40px;
    padding-top: 10.6666666667vw;
    text-align: center;
    font-size: 19px;
    font-size: 5.066666667vw;
    font-family: "YakuHanJP", NotoSansJP-medium;
    line-height: 1.4473684211;
  }

  .project-result-ttl:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../images/bg_voice_sp.png") no-repeat;
    background-size: 100%;
    background-position: center center;
  }

  .project-result-ttl-inner {
    display: inline-block;
    text-align: left;
  }

  /* リスト */
  .project-result-list {
    margin-top: -20px;
    margin-top: -5.333333333vw;
    padding: 0 20px 5px;
    padding: 0 5.333333333vw 1.333333333vw;
  }

  .project-result-item {
    overflow: hidden;
    margin-bottom: 10px;
    margin-bottom: 2.666666667vw;
  }

  .project-result-item-head {
    float: left;
    width: 90px;
    width: 24vw;
    padding: 18px 0;
    padding: 4.8vw 0;
    text-align: center;
    font-size: 14px;
    font-size: 3.733333333vw;
    font-family: "YakuHanJP", NotoSansJP-medium;
    line-height: 1;
    background-color: #fffdce;
  }

  .project-result-item-txt {
    float: left;
    width: 245px;
    width: 65.3333333333vw;
    padding: 17px 15px;
    padding: 4.533333333vw 4vw;
    font-size: 16px;
    font-size: 4.266666667vw;
    line-height: 1;
    background-color: #fff;
  }

  .project-result-item-nember { color: #615A9D; }

  .project-result-item-unit { color: #615A9D; }

  /* 83倍 */
  .project-result-finish {
    position: relative;
    margin: 0 20px;
    margin: 0 5.333333333vw;
    background-color: #fff;
  }

  .project-result-finish-info {
    padding-bottom: 195px;
    padding-bottom: 52vw;
    text-align: center;
  }

  .project-box-img.layout22 {
    position: absolute;
    bottom: -105px;
    bottom: -28vw;
    left: 50%;
    margin-bottom: 0;
    padding: 0;
    width: 286px;
    width: 76.2666666667vw;
    margin-left: -143px;
    margin-left: -38.1333333333vw;
  }

  .project-result-finish-ttl {
    padding: 20px 0;
    padding: 5.333333333vw 0;
    text-align: center;
    font-size: 15px;
    font-size: 4vw;
    font-family: "YakuHanJP", NotoSansJP-bold;
    line-height: 1;
    background-color: #fffdce;
  }

  .project-result-finish-txt {
    display: inline-block;
    margin-top: 30px;
    margin-top: 8vw;
    font-size: 31px;
    font-size: 8.2666666667vw;
    font-family: "YakuHanJP", NotoSansJP-medium;
    line-height: 1;
  }

  .project-result-finish-txt-sub {
    display: inline-block;
    margin-top: 30px;
    margin-top: 8vw;
    font-size: 31px;
    font-size: 8.2666666667vw;
    font-family: "YakuHanJP", NotoSansJP-medium;
    line-height: 1;
  }


  /* 調整
   ----------------------------------------------------------------- */
  .project-box-img.layout02,
  .project-box-img.layout04,
  .project-box-img.layout06,
  .project-box-img.layout07,
  .project-box-img.layout09 {
    margin-bottom: 0;
  }

  .project-box.process01 + .project-cut.btn {margin-top: 0;}

  .project-box-img.layout04 + .project-headline {margin-top: 0;}

  .project-box.process03 {
    margin-top: 35px;
    margin-top: 9.333333333vw;
  }

  /* メッセージ
   ----------------------------------------------------------------- */
  .l-message.project {
    padding: 35px 20px 230px;
    padding: 9.333333333vw 5.333333333vw 61.3333333333vw;
  }

  .project .message-info {
    margin: 0;
  }

  .project .message-info-txt {
    text-align: center;
    font-size: 15px;
    font-size: 4vw;
    line-height: 1;
  }

  .project .message-img {
    position: absolute;
    bottom: 20px;
    bottom: 5.333333333vw;
    left: 20px;
    left: 5.333333333vw;
    width: 335px;
    width: 89.3333333333vw;
    height: 180px;
    height: 48vw;
  }


  /* ==========================================================================
     #company
     ========================================================================== */
  .l-mainimg.company {
    height: 375px;
    height: 100vw;
    margin-bottom: 15px;
    margin-bottom: 4vw;
  }

  /* 動く背景 */
  .company .mainimg-bg {
    height: 375px;
    height: 100vw;
  }

  .company .work-box-left {
    padding-top: 0;
  }

  /* 目次 */
  .company .toc {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    margin: 0 0 60px;
    margin: 0 0 16vw;
  }

  .company .work-inner {
    padding-bottom: 30px;
  }

   /* 各領域の専門家が密接に連携 */
  .company-job-ttl {
    position: relative;
    margin-bottom: 45px;
    margin-bottom: 12vw;
    padding: 33px 25px 0;
    padding: 8.8vw 6.666666667vw 0;
    font-size: 17px;
    font-size: 4.533333333vw;
    font-family: "YakuHanJP", NotoSansJP-medium;
    line-height: 1.6470588235;
    border-top: 1px solid #f3f6fa;
  }

  .company-job-ttl:before {
    content: "";
    position: absolute;
    top: -1px;
    top: -0.2666666667vw;
    left: 0;
    width: 25px;
    width: 6.666666667vw;
    height: 4px;
    height: 1.066666667vw;
    background-color: #faf221;
  }

  .company-job-wrap {
    padding: 0 25px;
    padding: 0 6.666666667vw;
  }

  .company-job {

  }

  .company-job-item {
    position: relative;
  }

  .company-job-thumb {
    overflow: hidden;
    position: absolute;
    top: -10px;
    top: -2.666666667vw;
    left: -15px;
    left: -4vw;
    width: 60px;
    width: 16vw;
    height: 60px;
    height: 16vw;
    border-radius: 30px;
    border-radius: 8vw;
  }

  .example-item-thumb-img,
  .work-inner .example-item-thumb-img {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
  }

  .company-job-info {

  }

  .company-job-type {
    margin-bottom: 25px;
    margin-bottom: 6.666666667vw;
    padding: 13px 0;
    padding: 3.466666667vw 0;
    font-size: 14px;
    font-size: 3.733333333vw;
    line-height: 1;
    text-align: center;
    background-color: #f3f6fa;
  }

  .company-job-txt {
    margin-bottom: 35px;
    margin-bottom: 9.333333333vw;
    font-size: 13px;
    font-size: 3.466666667vw;
    line-height: 1.9230769231;
  }





  /* ==========================================================================
   #environment
   ========================================================================== */
  .l-mainimg.environment {
    height: 375px;
    height: 100vw;
    margin-bottom: 15px;
    margin-bottom: 4vw;
  }

  /* 動く背景 */
  .environment .mainimg-bg {
    height: 375px;
    height: 100vw;
  }

  /* 目次 */
  .toc.environment {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    margin: 0 0 60px;
    margin: 0 0 16vw;
  }

  /* 見出し */
  .environment-headline {
    position: absolute;
    top: -8px;
    top: -2.133333333vw;
    left: 25px;
    left: 6.666666667vw;
    color: #333;
    font-size: 16px;
    font-size: 4.266666667vw;
    font-family: "YakuHanJP", NotoSansJP-regular;
    line-height: 1;
  }

  .environment-headline:before {
    content: "";
    position: absolute;
    bottom: -15px;
    bottom: -4vw;
    left: 0;
    width: 25px;
    width: 6.666666667vw;
    height: 2px;
    height: 0.5333333333vw;
    background-color: #615A9D;
  }

  /* リスト */
  .environment-list-wrap {
    width: 325px;
    width: 86.6666666667vw;
    margin: 0 auto;
  }

  .environment-list {
  }

  .environment-list-item {
    margin-bottom: 55px;
    margin-bottom: 12vw;
  }

  .environment-list-item img {
    width: 100%;
    margin-bottom: 24px;
    margin-bottom: 5vw;
  }

  .environment-box {
    position: relative;
    width: 100%;
    padding: 0 5px;
    padding: 0 1.333333333vw;
  }

  .environment-box-headline {
    margin-bottom: 10px;
    margin-bottom: 2vw;
    color: #615A9D;
    font-size: 13px;
    font-size: 3.466666667vw;
    line-height: 1;
  }

  .environment-box-txt {
    color: #34373e;
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 1.6666666667;
  }
  
  .environment-youtube {
    position: relative;
    width: 100%;
    padding-top: 54.5%;
  }
  .environment-youtube iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%!important;
    height: 100%!important;
  }
  
  .environment-item-wrap {  }

  /* 奇数
     ----------------------------------------------------------------- */
  .environment-item:nth-child(odd) {
    position: relative;
    z-index: 2;
    margin: 0 75px 60px 0;
    margin: 0 20vw 16vw 0;
    background-color: #f3f6fa;
  }

  .environment-item:nth-child(odd) .environment-item-inner {
    position: relative;
    margin-right: -75px;
    margin-right: -20vw;
    padding: 54px 0 30px;
  }

  /* 偶数
   ----------------------------------------------------------------- */
  .environment-item:nth-child(even) {
    position: relative;
    z-index: 2;
    margin: 0 0 60px 75px;
    margin: 0 0 16vw 20vw;
    background-color: #f3f6fa;
  }

   .environment-item:nth-child(even) .environment-item-inner {
    position: relative;
    margin-left: -75px;
    margin-left: -20vw;
    padding: 54px 0 60px;
    padding: 14.4vw 0 1vw;
  }


  
  
  /* ==========================================================================
     #internship
     ========================================================================== */
  /* レイアウト */
  .l-mainimg.internship {
    margin-bottom: 53vw;
  }

  /* 筆記体 */
  .internship .mainimg-cursive-wrap {
    margin-top: 45px;
    margin-top: 12vw;
  }
  
  /* タイトル */
  .internship .mainimg-ttl {
    top: 220px;
    top: 58.6666666667vw;
  }
  
  .internship .mainimg-ttl-border {
    font-size: 15px;
    font-size: 4vw;
    white-space: nowrap;
  }
  
  .internship .mainimg-ttl-border.second {
    font-size: 13px;
    font-size: 3.4666666667vw;
    letter-spacing: -0.02em;
    white-space: nowrap;
  }
  
  .internship .work-ttl + .work-txt img {
    margin-top: 40px;
  }
  
  .work-inner.internship {
    margin-bottom: 80px;
  }

  /* インターンタイトル */
  .internship-box-ttl {
    margin: 40px 15px 30px;
    margin: 10.6666666667vw 4vw 8vw;
    padding: 20px 0;
    padding: 5.3333333333vw 0;
    color: #fff;
    font-size: 18px;
    font-size: 4.8vw;
    font-family: "YakuHanJP", NotoSansJP-medium;
    line-height: 1.2;
    text-align: center;
    background-color: #615A9D;
  }
  
  .internship-box-ttl-sub {
    display: block;
    margin-top: 10px;
    margin-top: 2.6666666667vw;
    font-size: 12px;
    font-size: 3.2vw;
    letter-spacing: -0.02em;
  }
  
  .internship-box-ttl-sub02 {
    display: block;
    margin-bottom: 10px;
    margin-bottom: 2.6666666667vw;
    font-size: 12px;
    font-size: 3.2vw;
    letter-spacing: -0.02em;
  }


  /* 見出し */
  .internship-box-headline01 {
    margin: 0 25px 20px;
    padding-bottom: 10px;
    font-size: 15px;
    font-family: "YakuHanJP", NotoSansJP-medium;
    line-height: 1;
    border-bottom: 1px solid #eee;
  }
  .message-sub-list + .internship-box-headline01 { margin-top: 40px; }
  .internship-box-info-txt + .internship-box-headline01 { margin-top: 25px; }
  .internship-box-headline02 {
    margin: 0 25px 15px;
    font-size: 14px;
    font-family: "YakuHanJP", NotoSansJP-medium;
  }

  /* 募集要項テキスト */
  .internship-box-info-txt {
    margin: 0 25px 30px;
    font-size: 14px;
    line-height: 1.5;
  }

  /* 画像 */
  .internship-box img {
    margin-bottom: 20px;
  }

  /* ボタン */
  .internship-box-btn {
    display: block;
    margin: 40px 25px 30px;
    padding: 20px 0;
    text-align: center;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-size: 4.2666666667vw;
    font-family: "YakuHanJP", NotoSansJP-medium;
    line-height: 1;
    background-color: #faf221;
  }

  /* プルダウン */
  .internship-box-down {
    display: none;
  }

  .internship-box-btn-more {
    display: block;
    width: 150px;
    width: 40vw;
    margin: 0 auto;
    padding: 12px 0;
    padding: 3.2vw 0;
    text-align: center;
    color: #fff;
    font-size: 12px;
    font-size: 3.2vw;
    font-family: brandon-grotesque, sans-serif;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    background: linear-gradient(to right, #615A9D, #00e6a2);
    border-radius: 30px;
    border-radius: 8vw;
    /*box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.08);*/
  }
  
  .internship-box-btn-more.active {
    background: #e6e6e6;
    color: #999;
  }

  .internship-box-btn-more .close { display: none; }

  .internship-box-btn-more.active .open { display: none; }

  .internship-box-btn-more.active .close { display: inline-block; }

  /* 対象職種　*/
  .internship-box-job {
    overflow: hidden;
    margin-bottom: 10px;
    padding: 0 25px;
  }
  .internship-box-job-ttl {
    float: left;
    margin: 0 5px 5px 0;
    padding: 5px;
    color: #fff;
    font-size: 10px;
    line-height: 1;
    background-color: #333;
  }
  .internship-box-job-item {
    float: left;
    margin: 0 5px 5px 0;
    padding: 5px;
    font-size: 10px;
    line-height: 1;
    background-color: #faf221;
  }
  
  /* コーススタイル 20210609 */
  .internship-course-ttl {
    position: relative;
    margin: 16vw 0;
    font-size: 6.4vw;
    font-family: "NotoSansJP-bold";
    text-align: center;
  }
  .internship-course-ttl-s {
    font-size: 4.5vw;
  }
  .internship-course-ttl-s span {
    font-size: 4vw;
  }
  .internship-course-ttl:before {
    content: "";
    position: absolute;
    bottom: -5.333vw;
    left: 50%;
    width: 10.667vw;
    height: 0.267vw;
    background-color: #615A9D;
    transform: translateX(-50%);
  }
  
  .internship-course-headline {
    position: relative;
    margin: 16vw 4vw 8vw;
    padding-left: 18.667vw;
  }
  .internship-course-headline .number {
    position: absolute;
    top: 50%;
    left: 0;
    width: 16vw;
    height: 16vw;
    padding-top: 4.7vw;
    color: #333;
    font-size: 2.667vw;
    font-family: brandon-grotesque, sans-serif;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    border-radius: 50%;
    background-color: #faf221;
    transform: translateY(-50%);
  }
  .internship-course-headline .number .number-main {
    display: block;
    margin-top: 0.12vw;
    font-size: 5.867vw;
  }
  .internship-course-headline .main {
    display: block;
    margin-bottom: 1.867vw;
    font-size: 5.1vw;
    font-family: "NotoSansJP-bold";
    line-height: 1.5;
  }
  .internship-course-headline .sub {
    display: block;
    font-size: 3.467vw;
    line-height: 1;
    margin-top: 3vw;
  }

  .internship-course-subttl {
    font-size: 5vw;
  }

  .internship-course-solo-headline {
    position: relative;
    margin: 16vw 4vw 8vw;
    text-align: center;
    /* padding-left: 18.667vw; */
  }
  .internship-course-solo-headline .main {
    display: block;
    margin-bottom: 1.867vw;
    font-size: 5.1vw;
    font-family: "NotoSansJP-bold";
    line-height: 1.5;
  }
  
  .internship-course-img {
    margin: 0 0 8vw;
  }
  .internship-course-img img {
    width: 100%;
    height: auto;
  }
  .work-box .internship-course-img img { margin-bottom: 0; }
  
  .internship-course-info {
    display: none;
    overflow: hidden;
    margin: 0 4vw;
    padding: 10.667vw 0 0;
    border-radius: 1.067vw;
    background-color: #f5f8fb;
  }

  .internship-course-info-sol {
    overflow: hidden;
    margin: 0 4vw;
    padding: 10.667vw 0 0;
    border-radius: 1.067vw;
    background-color: #f5f8fb;
  }

  .internship-course-info-bizdev {
    /* display: none; */
    overflow: hidden;
    margin: 0 4vw;
    padding: 10.667vw 0 0;
    border-radius: 1.067vw;
    background-color: #f5f8fb;
  }
  
  .internship-course-info-ttl01 {
    position: relative;
    margin: 0 6.667vw 5.333vw;
    padding-left: 5.067vw;
    font-size: 4.8vw;
    font-family: "NotoSansJP-bold";
    line-height: 1.3;
  }
  .internship-course-info-ttl01:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 1.067vw;
    background-color: #615A9D;
    border-radius: 0.8vw;
  }
  
  .internship-course-table {
    width: 78.667vw;
    margin: 0 auto;
    border-collapse: collapse;
  }
  .internship-course-table th {
    width: 21.333vw;
    padding: 2.667vw 0;
    font-size: 3.733vw;
    line-height: 1.5;
    font-family: "NotoSansJP-medium";
    text-align: left;
    vertical-align: top;
  }
  .internship-course-table td {
    padding: 2.667vw 0;
    vertical-align: top;
  }
  .internship-course-table td ul.common-list {
    padding-right: 0;
    padding-left: 0;
  }
  .internship-course-table td .common-note {
    margin-right: 0;
    margin-left: 0;
  }
  
  .internship-course-txt {
    margin-bottom: 5.333vw;
    font-size: 3.733vw;
    line-height: 1.5;
  }

  .work-txt-ico {
    position: relative;
    padding-left: 1.2em;
    font-size: 3.7333333333vw;
  }

  .work-txt-ico:before {
    position: absolute;
    content: "■";
    left: 0;
  }
  
  .internship-course-btn {
    position: relative;
    width: 48vw;
    margin: 6.6666666667vw auto 80px;
    padding: 4.8vw 0;
    color: #fff;
    font-size: 3.733vw;
    font-family: "NotoSansJP-medium";
    line-height: 1;
    text-align: center;
    background: linear-gradient(to right, #615A9D, #00e6a2);
    border-radius: 8vw;
  }
  .internship-course-btn:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 5.333vw;
    width: 2.667vw;
    height: 0.533vw;
    background-color: #fff;
    transform-origin: center center;
    transform: translateY(-50%) rotate(0);
  }
  .internship-course-btn:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 5.333vw;
    width: 2.667vw;
    height: 0.533vw;
    background-color: #fff;
    transform-origin: center center;
    transform: translateY(-50%) rotate(90deg);
  }
  .internship-course-btn .close { display: none; }
  .internship-course-btn.active { background: #e6e6e6; }
  .internship-course-btn.active:after { transform: translateY(-50%) rotate(0); }
  .internship-course-btn.active .close { display: inline-block; }
  .internship-course-btn.active .open { display: none; }
  

  
    /* ==========================================================================
     #enginner internship
     ========================================================================== */
  /* レイアウト */
  .l-mainimg.engineer-intern {
    margin-bottom: 60px;
    margin-bottom: 53vw;
  }

  /* 筆記体 */
  .engineer-intern .mainimg-cursive-wrap {
    margin-top: 45px;
    margin-top: 12vw;
  }
  
  /* タイトル */
  .engineer-intern .mainimg-ttl {
    top: 180px;
    top: 48vw;
  }
  
  .engineer-intern .mainimg-ttl-border.second {
    font-size: 13px;
    font-size: 3.4666666667vw;
    letter-spacing: -0.02em;
    white-space: nowrap;
  }
  
  .engineer-intern .work-ttl + .work-txt img {
    margin-top: 40px;
  }
  
  .work-inner.engineer-intern {
    margin-bottom: 80px;
  }
  
  /* ==========================================================================
   #contents
   ========================================================================== */
  .l-contents {
    padding: 80px 0;
    padding: 21.3333333333vw 0;
  }
  
  .contents-inner {
    
  }
  
  /* タイトル */
  .contents-ttl {
    margin-bottom: 25px;
    margin-bottom: 6.666666667vw;
    padding: 0 25px;
    padding: 0 6.666666667vw;
    font-size: 24px;
    font-size: 6.4vw;
    font-family: "YakuHanJP", NotoSansJP-bold;
    line-height: 1.3;
    color: #615A9D;
  }
  
  /* タイトル下情報 */
  .contents-info {
    overflow: hidden;
    margin: 0 25px 30px;
    margin: 0 6.666666667vw 8vw;
  }
  
  .contents-info-ico {
    float: left;
    margin-right: 20px;
    margin-right: 5.3333333333vw;
    width: 40px;
    width: 10.6666666667vw;
  }
  
  .contents-info-name {
    float: left;
    padding: 14px 0;
    padding: 3.7333333333vw 0;
    font-size: 12px;
    font-size: 3.2vw;
    font-family: "YakuHanJP", NotoSansJP-medium;
    line-height: 1;
  }
  
  .contents-info-date {
    float: right;
    padding: 14px 0;
    padding: 3.7333333333vw 0;
    color: #999;
    font-size: 12px;
    font-size: 3.2vw;
    font-family: "YakuHanJP", NotoSansJP-medium;
    line-height: 1;
  }
  
  
  /* メインイメージ */
  .contents-mainimg {
    margin: 0 0 30px;
    margin: 0 0 8vw;
  }
  
  
  /* 見出し01 */
  .contents-headline01 {
    position: relative;
    margin-bottom: 20px;
    margin-bottom: 5.3333333333vw;
    padding: 33px 25px 0;
    padding: 8.8vw 6.666666667vw 0;
    font-size: 17px;
    font-size: 4.533333333vw;
    font-family: "YakuHanJP", NotoSansJP-medium;
    line-height: 1.6470588235;
    border-top: 1px solid #f3f6fa;
  }
  
  .contents-headline01:before {
    content: "";
    position: absolute;
    top: -1px;
    top: -0.2666666667vw;
    left: 0;
    width: 25px;
    width: 6.666666667vw;
    height: 4px;
    height: 1.066666667vw;
    background-color: #faf221;
  }
  .contents-txt + .contents-headline01,
  .contents-img + .contents-headline01 {
    margin-top: 60px;
    margin-top: 16vw;
  }
  
  /* 見出し02 */
  .contents-headline02 {
    margin-bottom: 20px;
    margin-bottom: 5.3333333333vw;
    padding: 0 25px;
    padding: 0 6.666666667vw;
    font-size: 15px;
    font-size: 4vw;
    font-family: "YakuHanJP", NotoSansJP-medium;
    line-height: 1.6470588235;
  }
  .contents-txt + .contents-headline02,
  .contents-img + .contents-headline02 {
    margin-top: 40px;
    margin-top: 10.6666666667vw;
  }
  
  /* テキスト */
  .contents-txt {
    margin: 0 25px 23px;
    margin: 0 6.666666667vw 6.1333333333vw;
    font-size: 14px;
    font-size: 3.733333333vw;
    line-height: 2;
  }
  
  /* 画像 */
  .contens-img {
    margin: 40px 25px;
    margin: 10.6666666667vw 6.666666667vw;
    text-align: center;
  }
  
  .contens-img-cup {
    margin-top: 15px;
    margin-top: 4vw;
    color: #666;
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 1.2;
  }
  
  /* リスト */
  
  /* ul */
  ul.contents-list {
    margin: 40px 25px;
    margin: 10.6666666667vw 6.666666667vw;
    font-size: 13px;
    font-size: 3.4666666667vw;
    font-family: "YakuHanJP", NotoSansJP-medium;
  }
  
  ul.contents-list .contents-list-item {
    position: relative;
    margin-bottom: 15px;
    margin-bottom: 4vw;
    padding-left: 20px;
    padding-left: 5.3333333333vw;
  }
  
  ul.contents-list .contents-list-item:before {
    content: "";
    position: absolute;
    top: 8px;
    top: 2.1333333333vw;
    left: 8px;
    left: 2.1333333333vw;
    width: 4px;
    width: 1.0666666667vw;
    height: 4px;
    height: 1.0666666667vw;
    border-radius: 2px;
    border-radius: 0.5333333333vw;
    background-color: #333;
  }
  
  /* ol */
  ol.contents-list {
    margin: 40px 25px;
    margin: 10.6666666667vw 6.666666667vw;
    padding: 0 20px;
    padding: 0 5.3333333333vw;
    font-size: 13px;
    font-size: 3.4666666667vw;
    font-family: "YakuHanJP", NotoSansJP-medium;
  }
  
  ol.contents-list .contents-list-item {
    position: relative;
    margin-bottom: 15px;
    margin-bottom: 4vw;
  }
  
  
  /* ==========================================================================
   #seminar
   ========================================================================== */
  .l-seminar {
    margin-bottom: 30px;
    margin-bottom: 8.8vw;
  }
  
   /*ttl*/
  .seminar-content-ttl {
    margin: 40px 0 20px;
    margin: 10.66666667vw 0 5.333333333vw;
    padding: 0 25px;
    padding: 0 6.666666667vw;
    font-size: 24px;
    font-size: 6.4vw;
    line-height: 1.4166666667;
    font-family: "YakuHanJP", NotoSansJP-bold;
  }
  .seminar .mainimg-ttl-border.second {
    font-size: 13px;
    font-size: 3.4666666667vw;
    letter-spacing: -0.02em;
    white-space: nowrap;
  }
  
  /*セミナーコラム*/
  .seminar-column {
    overflow: hidden;
    margin: 0 25px 25px;
    margin: 0 6.666666667vw 6.666666667vw;
    padding-top: 25px;
    padding-top: 6.666666667vw;
    margin-bottom: 44px;
    margin-bottom: 11.73333333vw;
    background-color: #f5f8fb;
  }
  
  .seminar-column-ttl {
    position: relative;
    margin: 0 25px 15px;
    margin: 0 6.666666667vw 4vw;
    padding-left: 25px;
    padding-left: 6.666666667vw;
    font-size: 18px;
    font-size: 4.8vw;
    line-height: 1.2222222222;
    font-family: "YakuHanJP", NotoSansJP-medium;
  }
  
  .seminar-column-ttl .number {
    position: absolute;
    top: 1px;
    top: 0.2666666667vw;
    left: 0;
    width: 20px;
    width: 5.333333333vw;
    height: 20px;
    height: 5.333333333vw;
    padding-top: 4px;
    padding-top: 1.066666667vw;
    color: #fff;
    font-size: 12px;
    font-size: 2.666666667vw;
    line-height: 1;
    text-align: center;
    background-color: #615A9D;
  }
  
  .seminar-column-ttl .mini {
    font-size: 14px;
    font-size: 3.733333333vw;
  }

  .seminar-column-img {
    padding: 0 25px;
    padding: 0 6.666666667vw;
  }
  
  .seminar-column-img img {
    position: relative;
    width: 100%;
  }
  
  /*新卒採用について*/
  .seminar-table {
    border-collapse: collapse;
    margin: 36px 25px 15px;
    margin: 9.6vw 6.666666667vw 4vw;
  }

  .seminar-table-head {
    display: block;
    width: 100%;
    margin-bottom: 14px;
    margin-bottom: 3.733333333vw;
    padding: 30px 0 0 0;
    padding: 8vw 0 0 0;
    text-align: left;
    color: #999;
    font-size: 14px;
    font-size: 3.733333333vw;
    line-height: 1;
    border-bottom: none;
    border-top: 1px solid #ebeff6;
  }

  .seminar-table-txt {
    display: block;
    width: 100%;
    padding: 0 0 26px 0;
    padding: 0 0 6.933333333vw 0;
    text-align: left;
    font-size: 14px;
    font-size: 3.733333333vw;
    line-height: 1.5714285714;
    border-bottom: none;
  }
  
  /* 実際に参加された方の声 */
  .seminar-voice {
    margin: 8vw 6.666666667vw;
    padding: 8vw;
    font-size: 0;
    background-color: #f5f8fb;
    border-radius: 2.1333333333vw;
  }
  .seminar-voice.last { margin-bottom: 21.3333333333vw; }
  .seminar-voice p.name {
    display: inline-block;
    margin-bottom: 2.6666666667vw;
    padding: 1.3333333333vw 4vw;
    font-size: 3.2vw;
    line-height: 1;
    background-color: #faf221;
    border-radius: 2.9333333333vw;
  }
  .seminar-voice p {
    font-size: 3.7333333333vw;
    line-height: 2;
  }
  .seminar-voice span {
    display: inline-block;
    margin-bottom: 3.3vw;
    font-size: 3.3vw;
    line-height: 1;
    color: #999;
  }
  
  /* ==========================================================================
  #voice 先輩の声
  ========================================================================== */
  .work-catch.voice-catch {
    padding-right: 10px;
    padding-right: 2.6666666667vw;
  }
  
  .voice-catch-txt-wrap {
    display: block;
  }
  
  .voice-catch-txt {
    overflow: hidden;
    display: block;
  }
  
  .voice-catch-txt + .voice-catch-txt {
    margin-top: 8px;
    margin-top: 2.1333333333vw;
  }
  
  .voice-catch-head {
    float: left;
    display: block;
    width: 42px;
    width: 11.2vw;
    margin-right: 10px;
    margin-right: 1.6vw;
    padding: 3px 0;
    padding: 0.8vw 0;
    color: #615A9D;
    font-size: 10px;
    font-size: 2.6666666667vw;
    line-height: 1;
    text-align: center;
    background-color: #fff;
  }
  
  .voice-catch-info {
    float: left;
    display: block;
    width: 260px;
    width: 69.3333333333vw;
    margin-top: -2px;
    margin-top: -0.5333333333vw;
    font-size: 14px;
    font-size: 3.7333333333vw;
    line-height: 1.4285714286;
  }
  
  
  
  
  /* ==========================================================================
   #common-style 共通スタイル
   ========================================================================== */
  /* リスト(ul)
     ----------------------- */
  ul.common-list {
    margin: 30px 0;
    margin: 8vw 0;
    padding: 0 25px;
    padding: 0 6.666666667vw;
  }
  
  ul.common-list li {
    position: relative;
    margin-bottom: 13px;
    padding-left: 10px;
    padding-left: 2.666666667vw;
    font-size: 14px;
    font-size: 3.7333333333vw;
    line-height: 1.4285714286;
  }
  
  ul.common-list li:before {
    content: "";
    position: absolute;
    top: 10px;
    top: 2.666666667vw;
    left: 0;
    width: 4px;
    width: 1.066666667vw;
    height: 4px;
    height: 1.066666667vw;
    background-color: #333;
    border-radius: 2px;
    border-radius: 0.5333333333vw;
  }
  
  ul.common-list li:last-child { margin-bottom: 0; }
  
  /* リスト(ol)
     ----------------------- */
  ol.common-list {
    margin: 30px 0;
    margin: 8vw 0;
    padding: 0 25px;
    padding: 0 6.666666667vw;
    counter-reset: item;
    list-style-type: none;
  }
  
  ol.common-list li {
    position: relative;
    margin-bottom: 13px;
    margin-bottom: 3.4666666667vw;
    padding-left: 16px;
    padding-left: 4.2666666667vw;
    font-size: 14px;
    font-size: 3.7333333333vw;
    line-height: 1.4285714286;
  }
  
  ol.common-list li:before {
    counter-increment: item;
    content: counter(item)'.';
    position: absolute;
    top: 0;
    left: 0;
  }
  
  ol.common-list li:last-child { margin-bottom: 0; }
  
  /* 余白調整 */
  .work-ttl02 + .common-list { margin-top: 0; }
  
  /* 注釈
     ----------------------- */
  .common-note {
    position: relative;
    margin: 0 6.666666667vw 6.666666667vw;
    padding-left: 3.2vw;
    color: #666;
    font-size: 3.2vw;
    line-height: 2;
  }
  .common-note:before {
    content: "※";
    position: absolute;
    top: 0;
    left: 0;
  }


  /* ==========================================================================
     #entry
     ========================================================================== */
  .entry-wrap {
    padding:  55px 0 50px;
  }

  .entry-inner {  }

  /* タイトル
     ----------------------- */
  .entry-ttl-sub {
  }

  .entry-ttl {
    margin-bottom: 21px;
    text-align: center;
    font-size: 24px;
    font-family: "YakuHanJP", NotoSansJP-bold;
    line-height: 1.4166666667;
  }

  /* 説明
     ----------------------- */
  .entry-cup-wrap {
    margin-bottom: 46px;
    padding: 0 25px;
  }

  .entry-cup {
    font-size: 14px;
    line-height: 1.5714285714;
  }

  /* ステップ
     ----------------------- */
  .entry-step-wrap {
    position: relative;
    margin-bottom: 30px;
  }

  .entry-step-wrap:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background-color: #ebeff6;
  }

  .entry-step {
    position: relative;
    width: 250px;
    margin: 0 auto;
  }

  .entry-step-item {
    position: relative;
    float: left;
    width: 50px;
    margin-left: 50px;
    padding: 19px 0;
    text-align: center;
    color: #999;
    font-size: 12px;
    font-family: "YakuHanJP", NotoSansJP-medium;
    line-height: 1;
    background-color: #f4f7fa;
    border-radius: 25px;
  }

  .entry-step-item.entry-step-active {
    color: #fff;
    background-color:#8480d9;
  }

  .entry-step-item:first-child {
    margin-left: 0;
  }

  .entry-step-item-no {
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 10px;
    font-family: brandon-grotesque, sans-serif;
    font-weight: 500;
    line-height: 1;
  }

  /* フォーム
     ----------------------------------------------------------------- */
  .form-inner {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
    border: none;
  }


  /* 見出し
     ----------------------- */
  .form-head01,
  .form-head02,
  .form-head03 {
    display: block;
    float: left;
    clear: both;
    width: 100%;
    padding: 0 25px 20px;
    text-align: left;
    font-size: 16px;
    font-family: "YakuHanJP", NotoSansJP-medium;
    line-height: 1.2;
    word-break: break-all;
    word-wrap: break-word;
    border: none;
  }
  
  .form-head04 {
    display: block;
    float: left;
    clear: both;
    width: 100%;
    margin-bottom: 30px;
    padding: 20px 25px;
    text-align: left;
    font-size: 16px;
    font-family: "YakuHanJP", NotoSansJP-medium;
    line-height: 1.2;
    word-break: break-all;
    word-wrap: break-word;
    border: none;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
  }

  .form-head-inner {
    position: relative;
    display: inline-block;
  }

  .form-head-inner-min { padding-right: 20px; }

  .form-head-inner .hissu {
    position: absolute;
    top: 0;
    right: -20px;
    color: #615A9D;
  }

  .form-head-inner-min .hissu { right: 0; }

  /* 各項目
     ----------------------- */
  .form-data {
    overflow: hidden;
    display: block;
    float: left;
    clear: both;
    width: 100%;
   padding: 0 5%;
    word-break: break-all;
    word-wrap: break-word;
	  margin-bottom: 40px;
  }

	.form-file-txt {     font-size: 12px;
    margin-top: 12px;}
	
  /* ラジオボタン
     ----------------------- */
  .form-data input[type="radio"] { display: none; }

  .form-data input[type="radio"] + label { position: relative; }

  .form-data input[type="radio"] + label:hover { opacity: 0.7; }

  .form-data input[type="radio"] + label:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 25px;
    background-color: #f3f6fa;
    border-radius: 50%;
  }

  .form-data input[type="radio"]:checked + label:after {
    content: "";
    position: absolute;
    top: 7px;
    left: 7px;
    width: 11px;
    height:11px;
    background-color: #615A9D;
    border-radius: 13px;
  }

  .form-data input[type="radio"]:checked + label { color: #615A9D; }

  .form-data input[type="radio"]:checked + label:hover { opacity: 1; }

  /* チェックボックス
     ----------------------- */
  .form-data input[type="checkbox"] { display: none; }

  .form-data input[type="checkbox"] + label { position: relative; }

  .form-data input[type="checkbox"] + label:hover { opacity: 0.7; }

  .form-data input[type="checkbox"] + label:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 25px;
    background-color: #f3f6fa;
  }

  .form-data input[type="checkbox"]:checked + label:after {
    content: "";
    position: absolute;
    top: 7px;
    left: 7px;
    width: 11px;
    height:11px;
    background-color: #615A9D;
  }

  .form-data input[type="checkbox"]:checked + label { color: #615A9D; }

  .form-data input[type="checkbox"]:checked + label:hover { opacity: 1; }


  /* 応募職種
     ----------------------- */
  .form-job-txt {
    display: block;
    margin-bottom: 25px;
    padding-left: 40px;
    font-size: 15px;
    line-height: 1.6666666667;
  }

  .form-job-wrap:last-child .form-job-txt:last-child { margin-bottom: 0; }
  
  .form-job-ttl {
    position: relative;
    margin-top: 20px;
    font-size: 14px;
    font-family: "YakuHanJP", NotoSansJP-bold;
    line-height: 1.4444444444;
  }
  .form-job-wrap + .form-job-ttl {
    margin-top: 30px;
  }
  
  .form-job-ttl-sub {
    position: relative;
    margin: 10px 0 20px;
    padding-left: 19px;
    font-size: 14px;
    font-family: "YakuHanJP", NotoSansJP-medium;
    line-height: 1.25;
  }
  .form-job-ttl-sub:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    height: 100%;
    border-radius: 2px;
    background-color: #615A9D;
  }


  /* 性別
     ----------------------- */
  .form-seibetu-txt {
    display: block;
    margin-bottom: 25px;
    padding-left: 40px;
    font-size: 15px;
    line-height: 1.6666666667;
  }

  .form-seibetu-txt:last-child { margin-bottom: 0; }


  /* テキストエリア(1行)
   ----------------------- */
  .form-input {
    width: 100%;
    height: 60px;
    padding: 0 20px;
    font-size: 16px;
    line-height: normal;
    outline: none;
    background-color: #f9fbfd;
    border: 1px solid #e0e5eb;
    border-radius: 5px;
    resize: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }


  /* テキストエリア(複数行)
     ----------------------- */
  .form-textarea {
    display:block;
    width: 100%;
    height: 200px;
    padding: 17px 20px;
    font-size: 16px;
    line-height: 1.4285714286;
    outline: none;
    background-color: #f9fbfd;
    border: 1px solid #e0e5eb;
    border-radius: 5px;
    resize: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }


  /* テキストエリア(複数行)
     ----------------------- */
  .form-textarea-large {
    display:block;
    width: 100%;
    height: 200px;
    padding: 17px 20px;
    font-size: 16px;
    line-height: 1.4285714286;
    outline: none;
    background-color: #f9fbfd;
    border: 1px solid #e0e5eb;
    border-radius: 5px;
    resize: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

  /* セレクトボックス
     ----------------------- */
  .form-select-wrap {
    overflow: hidden;
    margin-bottom: 15px;
  }

  .form-select-wrap.form-select-last { margin-bottom: 0; }

  .form-select-inner {
    position: relative;
    float: left;
    width: 200px;
  }

  .form-select-inner-l {
    width: 100%;
  }

  .form-select-inner:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 21px;
    width: 5px;
    height: 5px;
    border-bottom: 1px solid #999;
    border-right: 1px solid #999;
    -webkit-transform: translateY(50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
  }

  .form-select {
    position: relative;
    width: 100%;
    height: 60px;
    padding-left: 22px;
    font-size: 16px;
    border: 1px solid #ecf0f4;
    border-radius: 5px;
    outline: none;
    background-image: -moz-linear-gradient( 90deg, rgb(244,247,250) 0%, rgb(244,248,251) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(244,247,250) 0%, rgb(244,248,251) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(244,247,250) 0%, rgb(244,248,251) 100%);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  
  .form-select::-ms-expand {
    display: none;
  }

  .form-select-unit {
    float: left;
    margin: 22px 0 0 8px;
    font-size: 15px;
    line-height: 1;
  }

  /* 郵便番号
     ----------------------- */
  .form-postcode-wrap {
    overflow: hidden;
  }
  /* 〒 */
  .form-mark {  }

  /* 郵便番号 */
  .form-postcode {
    width: 100%;
    height: 60px;
    margin-bottom: 15px;
    padding: 0 20px;
    font-size: 16px;
    outline: none;
    background-color: #f9fbfd;
    border: 1px solid #e0e5eb;
    border-radius: 5px;
    resize: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

  /* 自動入力ボタン */
  .form-postcode-btn {
    float: left;
    width: 210px;
    height: 50px;
    margin-bottom: 10px;
    padding: 0;
    font-size: 12px;
    line-height: 1;
    outline: none;
    background-color: #f4f7fa;
    border: 1px solid #e0e5eb;
    border-radius: 5px;
    resize: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

  .form-postcode-btn:active {
    opacity: 0.8
  }

  .form-postcode-txt {
    color: #999;
    font-size: 11px;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* 住所
     ----------------------- */
  .form-addres-select-wrap {
    overflow: hidden;
    position: relative;
  }

  .form-addres-txt {
    margin: 25px 0 10px;
    color: #333;
    font-size: 12px;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }



  /* 電話
     ----------------------- */
  .form-tel {
    width: 100%;
    height: 60px;
    margin-bottom: 10px;
    padding: 0 20px;
    font-size: 16px;
    line-height: normal;
    outline: none;
    background-color: #f9fbfd;
    border: 1px solid #e0e5eb;
    border-radius: 5px;
    resize: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

  .form-tel-txt {
    color: #999;
    font-size: 11px;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }


  /* 西暦（年） 入力Ver.
    ----------------------- */
  .form-year-wrap {
    margin-bottom: 15px;
  }

  .form-year-wrap::after {
    content: "";
    display: block;
    clear: both;
 }

  .form-year {
    position: relative;
    width: 200px;
    height: 60px;
    padding-left: 22px;
    font-size: 16px;
    background-color: #f9fbfd;
    border: 1px solid #e0e5eb;
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

  .form-year-inner {
    float: left;
  }

  .form-year-unit {
    float: left;
    margin: 22px 0 0 8px;
    font-size: 15px;
    line-height: 1;
  }

  /* メール
     ----------------------- */
  .form-mail {
    width: 100%;
    height: 60px;
    padding: 0 20px;
    font-size: 16px;
    line-height: normal;
    outline: none;
    background-color: #f9fbfd;
    border: 1px solid #e0e5eb;
    border-radius: 5px;
    resize: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

  /* 注意書き */
  .form-mail-attention01 {
    position: relative;
    margin-top: 12px;
    padding-left: 11px;
    color: #999;
    font-size: 11px;
    line-height: 1.6363636364;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .form-mail-attention01:before {
    content: "※";
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .form-mail-attention01 + .form-mail-attention01 { margin-top: 6px; }

  .form-mail-attention02 {
    position: relative;
    margin-top: 6px;
    padding-left: 11px;
    color: #999;
    font-size: 11px;
    line-height: 1.6363636364;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }


  /* 卒業区分
     ----------------------- */
  .form-graduate-wrap {
    border-collapse: collapse;
    border-spacing: 0;
  }

  .form-graduate-head {
    width: 80px;
    text-align: left;
    vertical-align: middle;
    font-size: 14px;
    line-height: 1;
  }

  .form-graduate-head.form-graduate-last {
    padding-top: 30px;
  }

  .form-graduate-data {
    overflow: hidden;
    padding: 0;
  }

  .form-select-graduate-wrap01 {
    overflow: hidden;
    margin-bottom: 10px;
  }

  .form-select-graduate-wrap01:last-child { margin-bottom: 0; }

  .form-select-graduate-wrap02.form-graduate-last {
    padding-top: 25px;
  }


  /* 応募のきっかけその他
     ----------------------- */
  .form-reason-other-txt {
    display: inline-block;
    margin-right: 15px;
  }

  .form-reason-other {
    /*width: 224px;*/
    width: calc(100% - 101px);
    height: 60px;
    margin-bottom: 10px;
    padding: 0 20px;
    font-size: 16px;
    outline: none;
    background-color: #f9fbfd;
    border: 1px solid #e0e5eb;
    border-radius: 5px;
    resize: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

  .err input.form-reason-other { background-color: #f9fbfd; }

  #err_reason .formErrorContent { width: auto; }


  /* チェックボックス
     ----------------------- */
  .form-checkbox-wrap {
    padding: 5px 0 0 5px;
  }
  .form-checkbox {
    position: relative;
    margin-bottom: 18px;
    padding-left: 25px;
    font-size: 15px;
  }
  .form-checkbox input[type="checkbox"] {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto 0;
  }


  /* 例
     ----------------------- */
  .form-input::-webkit-input-placeholder,
  .form-textarea::-webkit-input-placeholder,
  .form-textarea-large::-webkit-input-placeholder,
  .form-postcode::-webkit-input-placeholder,
  .form-tel::-webkit-input-placeholder,
  .form-mail::-webkit-input-placeholder,
  .form-year::-webkit-input-placeholder {
    color: #cfd8e5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* キャプション
     ----------------------- */
  .form-data-cup {
    margin-bottom: 19px;
    color: #999;
    font-size: 11px;
    line-height: 1.5909090909;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  .form-data-cup-sub {
    color: #999;
    font-size: 11px;
    line-height: 1.5909090909;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }


  /* 次に進むボタン
     ----------------------- */
  .form-next {
    position: relative;
    display: block;
    width: 170px;
    margin: 0 auto;
    padding: 17px 0;
    text-align: center;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    outline: none;
    cursor: pointer;
    border: none;
    background: #615A9D;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.08);
    border-radius: 23px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  
  .form-next#js-next-btn {
    background: #ccc;
    pointer-events: none;
    transition: color 0s;
  }
  
  .form-next.confirm-enable#js-next-btn {
    background: #615A9D;
    pointer-events: auto;
  }

  /* 例文
     ----------------------- */
  .form-example {
    position: relative;
    margin-bottom: 19px;
    padding-left: 22px;
    color: #999;
    font-size: 11px;
    line-height: 1.6363636364;
  }

  .form-example:before {
    content: "例）";
    position: absolute;
    top: 0;
    left: 0;
  }
  
  /* 個人情報保護方針
    ----------------------- */
  /* ポップアップ */
  .form-privacy-popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
  }

  .form-privacy-popup.is-show {
    opacity: 1;
    visibility: visible;
  }
  .form-privacy-popup-wrap {
    overflow: scroll;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 90%;
    height: 80%;
    background-color: #fff;
    z-index: 2;
  }

  .form-privacy-popup-inner {
    padding: 30px;
    padding: 8vw;
  }
  
  .form-privacy-popup-inner p {
    margin-bottom: 15px;
    margin-bottom: 4vw;
    font-size: 14px;
    font-size: 3.7333333333vw;
  }

  .form-privacy-popup-ttl {
    font-size: 4vw;
    font-weight: bold;
    text-align: center;
  }

  .privacy-ico {
    position: relative;
    display: inline-block;
    padding-right: 16px;
    padding-right: 4.266666667vw;
  }

  .privacy-ico:before {
    content: "";
    position: absolute;
    top: 9px;
    top: 2.4vw;
    right: 2px;
    right: 0.5333333333vw;
    width: 10px;
    width: 2.666666667vw;
    height: 8px;
    height: 2.133333333vw;
    border: 1px solid #615A9D;
    border: 0.2666666667vw solid #615A9D;
  }

  .privacy-ico:after {
    content: "";
    position: absolute;
    top: 7px;
    top: 1.8666666667vw;
    right: 0;
    width: 10px;
    width: 2.666666667vw;
    height: 8px;
    height: 2.133333333vw;
    border-top: 1px solid #615A9D;
    border-top: 0.2666666667vw solid #615A9D;
    border-right: 1px solid #615A9D;
    border-right: 0.2666666667vw solid #615A9D;
  }

  /* 同意する */
  .form-privacy-popup-consent {
    display: block;
    width: 100%;
    margin-top: 30px;
    margin-top: 8vw;
    padding: 15px 0;
    padding: 4vw 0;
    color: #615A9D;
    line-height: 1!important;
    text-align: center;
    cursor: pointer;
    border: 1px solid #615A9D;
    border: 0.2666666667vw solid #615A9D;
    border-radius: 25px;
    border-radius: 6.666666667vw;
  }

  /* 背景 */
  .form-privacy-popup-background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.8);
    z-index: 1;
    cursor: pointer;
  }

  /* 個人情報保護方針に同意する */
  .form-privacy-checkbox-wrap {
    margin-bottom: 60px;
    font-size: 0;
    text-align: center;
  }

  .form-privacy-checkbox-input { display: none; }

  .form-privacy-checkbox {
    position: relative;
    display: inline-block;
    padding-left: 24px;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
  }

  .form-privacy-checkbox:before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: 16px;
    height: 16px;
    background-color: #f9fbfd;
    border: 1px solid #e0e5eb;
    border-radius: 2px;
  }

  .form-privacy-checkbox-input:checked + .form-privacy-checkbox:after {
    content: "";
    position: absolute;
    top: 1px;
    left: 4px;
    width: 6px;
    height: 10px;
    border-bottom: 2px solid #615A9D;
    border-right: 2px solid #615A9D;
    transform: rotate(45deg);
  }

  /* 必須チェック */
  .form-privacy-checkbox-error {
    margin: -40px 0 60px;
    color: #f00;
    font-size: 12px;
    text-align: center;
    line-height: 1;
  }


  /* 確認
     ----------------------------------------------------------------- */
  .form-inner-confirm {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
    border: none;
  }

  .form-confirm-head {
    display: block;
    float: left;
    clear: both;
    width: 100%;
    padding: 35px 25px 20px;
    text-align: left;
    font-size: 16px;
    font-family: "YakuHanJP", NotoSansJP-medium;
    line-height: 1;
    word-break: break-all;
    word-wrap: break-word;
    border: none;
  }

  .form-confirm-txt {
    overflow: hidden;
    display: block;
    float: left;
    clear: both;
    width: 100%;
    padding: 0 25px 35px;
    font-size: 16px;
    line-height: 1.25;
    word-break: break-all;
    word-wrap: break-word;
    border-bottom: 1px solid #ebeff6;
  }

  /* 前に戻る
   ----------------------- */
  .form-btn-wrap {
    position: relative;
    padding: 20px 0 66px;
  }

  .form-back-wrap {
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    width: 170px;
    margin: 0 auto;
  }

  .form-next-wrap {
    margin: 0 auto;
    width: 170px;
  }

  .form-back {
    position: relative;
    display: block;
    width: 170px;
    margin: 0 auto;
    padding: 17px 0;
    text-align: center;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    outline: none;
    cursor: pointer;
    border: none;
    background-color: #ccc;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.08);
    border-radius: 30px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	  margin-bottom: 30px;
  }

  /* 送信中 */
  .form-loadings-wrap {
    display: none;
    width: 300px;
    margin: 0 auto;
    text-align: center;
    font-size: 14px;
  }

  /* 完了
     ----------------------------------------------------------------- */
  .entry-step-wrap.entry-step-wrap-finish {
    margin-bottom: 50px;
  }

  /* エラー
     ----------------------------------------------------------------- */
  .entry-step-wrap.entry-step-wrap-error {
    margin-bottom: 50px;
  }




}
