@charset "UTF-8";
/* CSS Document */
/*--------------------------------------------------
PC
**************************************************
--------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Zen+Maru+Gothic&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Zen+Kaku+Gothic+New&family=Zen+Maru+Gothic&display=swap");
@media screen and (min-width: 980px) {
  html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
  }
  * {
    margin: 0;
    padding: 0;
  }
  p {
    font-size: 16px;
  }
  dt {
    float: left;
  }
  dd {
    margin-left: 60px;
    padding-bottom: 10px;
  }
  /*---特殊追加CSS---*/
  .clear {
    clear: both;
  }
  /*---特殊追加CSS---*/
  body {
    -webkit-text-size-adjust: 100%;
    line-height: 1;
    font-size: 16px;
    color: #000;
    margin: auto;
    font-family: 'Noto Sans JP', '小塚ゴシック Pr6N R', 'ヒラギノ角ゴ Pro W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
    overflow-x: hidden;
    background-color: #fff;
  }
  img {
    max-width: auto;
    height: auto;
  }
  img[src*='.svg'] {
    width: 100%;
    height: auto;
  }
  .pc_br::before {
    content: "\A";
    white-space: pre;
  }
  .fade-in {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    -webkit-transition: opacity 2s, -webkit-transform 2s;
    transition: opacity 2s, -webkit-transform 2s;
    transition: opacity 2s, transform 2s;
    transition: opacity 2s, transform 2s, -webkit-transform 2s;
  }
  .fade-in.show {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  /* ここからscssを記述 */
  #wrap {
    width: 100%;
    height: auto;
    position: relative;
    /* header-content */
    /* recruit-box */
    /* footer-content */
    /* recruit-single-content */
  }
  #wrap .change-header {
    background-color: #fff;
    /* 色を黒に変更 */
  }
  #wrap #header-content {
    width: 100%;
    height: auto;
    position: fixed;
    top: 0;
    z-index: 10;
    -webkit-transition: background-color 0.3s ease, padding 0.3s ease;
    transition: background-color 0.3s ease, padding 0.3s ease;
    /* アニメーションの設定 */
    background-color: #fff;
    /* header-content--inner */
  }
  #wrap #header-content .header-content--inner {
    max-width: calc(1830 *(100vw/1920));
    height: auto;
    margin: 0 0 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    /* nav-content */
  }
  #wrap #header-content .header-content--inner img.logo {
    display: block;
    margin-top: 30px;
    margin: 20px 0 0 20px;
  }
  #wrap #header-content .header-content--inner .nav-content {
    width: 960px;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    position: relative;
    z-index: 5;
  }
  #wrap #header-content .header-content--inner .nav-content li::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #003d64;
    bottom: -10px;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  #wrap #header-content .header-content--inner .nav-content li:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  #wrap #header-content .header-content--inner .nav-content li.re-img::after {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  #wrap #header-content .header-content--inner .nav-content li {
    list-style: none;
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    margin-top: 45px;
    position: relative;
  }
  #wrap #header-content .header-content--inner .nav-content .re-img {
    margin-top: 0;
  }
  #wrap #header-content .header-content--inner .nav-content li.re-img a:hover {
    opacity: 1.0;
    -webkit-filter: brightness(110%);
            filter: brightness(110%);
    -webkit-transition: all .2s;
    transition: all .2s;
  }
  #wrap .recruit-box {
    width: calc(1920 *(100vw/1920));
    height: 400px;
    background-image: url(../img/recruit_back.png);
    background-repeat: no-repeat;
    background-size: cover;
    /* recruit-box--inner */
  }
  #wrap .recruit-box .recruit-box--inner {
    width: 1200px;
    height: auto;
    padding-top: 50px;
    margin: auto;
    /* r-title-box */
  }
  #wrap .recruit-box .recruit-box--inner .r-title-box {
    width: 480px;
    height: auto;
    /* button-box */
  }
  #wrap .recruit-box .recruit-box--inner .r-title-box h2 {
    font-size: 72px;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
  }
  #wrap .recruit-box .recruit-box--inner .r-title-box .t-1 {
    font-weight: bold;
    color: #404040;
    padding: 10px 0 40px 0;
  }
  #wrap .recruit-box .recruit-box--inner .r-title-box .t-2 {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.6;
    color: #404040;
  }
  #wrap .recruit-box .recruit-box--inner .r-title-box .button-box {
    margin-top: 22px;
    border: solid 3px #003d64;
    border-radius: 50px;
    width: 175px;
  }
  #wrap .recruit-box .recruit-box--inner .r-title-box .button-box a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-width: 170px;
    height: 44px;
    padding: 0 20px;
    border: 1px solid var(--navy);
    border-radius: 999px;
    background: #fff;
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    color: #003d64;
  }
  #wrap .recruit-box .recruit-box--inner .r-title-box .button-box a::after {
    content: '→';
    margin-left: 8px;
    font-size: 18px;
    line-height: 1;
  }
  #wrap #footer-content {
    width: 100%;
    height: auto;
    background: #003d64;
    padding-top: 90px;
    position: relative;
    z-index: 2;
    /* footer-content--inner */
    /* footer-copy-content */
  }
  #wrap #footer-content .footer-content--inner {
    width: 1200px;
    height: auto;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    /* f-nav */
  }
  #wrap #footer-content .footer-content--inner .f-nav {
    width: 750px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #wrap #footer-content .footer-content--inner .f-nav .f-nav-1 li a, #wrap #footer-content .footer-content--inner .f-nav .f-nav-2 li a, #wrap #footer-content .footer-content--inner .f-nav .f-nav-3 li a, #wrap #footer-content .footer-content--inner .f-nav .f-nav-4 li a {
    color: #fff;
    list-style: none;
    padding-bottom: 40px;
  }
  #wrap #footer-content .footer-content--inner .f-nav .list {
    font-size: 14px;
    padding-bottom: 30px !important;
    position: relative;
    left: 20px;
  }
  #wrap #footer-content .footer-content--inner .f-nav .list:before {
    content: 'ー';
    position: absolute;
    left: -20px;
  }
  #wrap #footer-content .footer-copy-content {
    width: 100%;
    background: #000;
    padding: 20px 0 20px 0;
  }
  #wrap #footer-content .footer-copy-content p {
    text-align: center;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
  }
  #wrap .recruit-single-content {
    width: 100%;
    height: auto;
    /* recruit-single-1 */
    /* recruit-single-2 */
    /* recruit-single-3 */
  }
  #wrap .recruit-single-content .recruit-single-1 {
    width: 100%;
    height: auto;
    background: #eff3f6;
    padding: 80px 0 80px 0;
    /* recruit-single-1--inner */
  }
  #wrap .recruit-single-content .recruit-single-1 .recruit-single-1--inner {
    width: 1230px;
    height: auto;
    margin: auto;
    /* recruit-single-title */
    /* recruit-single-tex */
  }
  #wrap .recruit-single-content .recruit-single-1 .recruit-single-1--inner .recruit-single-title {
    width: 1200px;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #wrap .recruit-single-content .recruit-single-1 .recruit-single-1--inner .recruit-single-title p {
    background: #003d64;
    color: #fff;
    width: 70px;
    text-align: center;
    padding: 5px 0 10px 0;
  }
  #wrap .recruit-single-content .recruit-single-1 .recruit-single-1--inner .recruit-single-title h2 {
    font-size: 30px;
    font-weight: bold;
    margin-left: 10px;
  }
  #wrap .recruit-single-content .recruit-single-1 .recruit-single-1--inner .recruit-single-tex {
    width: 1010px;
    height: auto;
    margin-top: 60px;
    margin: 60px 0 0 100px;
  }
  #wrap .recruit-single-content .recruit-single-1 .recruit-single-1--inner .recruit-single-tex p {
    margin: 0;
    font-size: 14px;
    line-height: 1.9;
    color: #4c5967;
  }
  #wrap .recruit-single-content .recruit-single-2, #wrap .recruit-single-content .recruit-single-3--inner, #wrap .recruit-single-content .recruit-single-4 {
    width: 870px;
    height: auto;
    margin: 90px auto 90px auto;
  }
  #wrap .recruit-single-content .recruit-single-2 h2, #wrap .recruit-single-content .recruit-single-3--inner h2, #wrap .recruit-single-content .recruit-single-4 h2 {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    position: relative;
  }
  #wrap .recruit-single-content .recruit-single-3 {
    width: 100%;
    height: auto;
    padding-bottom: 1px;
    background: #eff3f6;
    /* recruit-single-3--inner */
    /* contact-box */
  }
  #wrap .recruit-single-content .recruit-single-3 .recruit-single-3--inner {
    padding-top: 80px;
  }
  #wrap .recruit-single-content .recruit-single-3 .recruit-single-3--inner h2:before {
    margin-left: 100px;
  }
  #wrap .recruit-single-content .recruit-single-3 .contact-box {
    width: 1000px;
    height: auto;
    margin: 60px auto 100px auto;
    border: solid;
    padding: 60px 20px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    -webkit-box-shadow: 0 16px 40px rgba(17, 24, 39, 0.05);
            box-shadow: 0 16px 40px rgba(17, 24, 39, 0.05);
    border: solid #ccc 1px;
    /* form-box */
    /* contact-button */
  }
  #wrap .recruit-single-content .recruit-single-3 .contact-box .form-box {
    width: 800px;
    position: relative;
    padding-bottom: 10px;
    margin: 0 auto 30px auto;
    /* form-box--inner */
  }
  #wrap .recruit-single-content .recruit-single-3 .contact-box .form-box .error {
    color: #cb1f20;
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    top: 7px;
    right: 0px;
  }
  #wrap .recruit-single-content .recruit-single-3 .contact-box .form-box .form-box--inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #wrap .recruit-single-content .recruit-single-3 .contact-box .form-box .form-box--inner .form-title {
    width: auto;
    font-size: 16px;
    color: #000;
    font-weight: bold;
    padding-top: 0px;
    margin-right: 10px;
  }
  #wrap .recruit-single-content .recruit-single-3 .contact-box .form-box .form-box--inner .err, #wrap .recruit-single-content .recruit-single-3 .contact-box .form-box .form-box--inner .nin {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-width: 40px;
    height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0;
  }
  #wrap .recruit-single-content .recruit-single-3 .contact-box .form-box .form-box--inner .err {
    background: #173d6b;
    color: #fff;
  }
  #wrap .recruit-single-content .recruit-single-3 .contact-box .form-box .form-box--inner .nin {
    background: #eef2f6;
    color: #6f7b88;
  }
  #wrap .recruit-single-content .recruit-single-3 .contact-box .form-box input {
    width: 800px;
    height: 50px;
    border: solid #ccc 2px;
    outline: none;
    padding: 5px 0 0 10px;
    display: block;
    border-radius: 5px;
    font-size: 14px;
    margin-top: 10px;
    background: -webkit-gradient(linear, left top, left bottom, from(#f5f8fb), to(#eef3f8));
    background: linear-gradient(180deg, #f5f8fb 0%, #eef3f8 100%);
    border-radius: 20px;
  }
  #wrap .recruit-single-content .recruit-single-3 .contact-box .form-box .required {
    width: 100%;
    height: 40px;
    margin-top: 10px;
    resize: vertical;
    display: block;
    outline: none;
    padding: 10px;
    border-radius: 5px;
    border: solid #ccc 1px;
    line-height: 1.4;
    border-radius: 15px;
    background: -webkit-gradient(linear, left top, left bottom, from(#f5f8fb), to(#eef3f8));
    background: linear-gradient(180deg, #f5f8fb 0%, #eef3f8 100%);
  }
  #wrap .recruit-single-content .recruit-single-3 .contact-box .form-box-2 .required_area, #wrap .recruit-single-content .recruit-single-3 .contact-box .form-box-2 .required {
    width: 100%;
    height: 180px;
    margin-top: 10px;
    resize: vertical;
    display: block;
    outline: none;
    padding: 10px;
    border-radius: 5px;
    border: solid #ccc 1px;
    line-height: 1.4;
    border-radius: 15px;
    background: -webkit-gradient(linear, left top, left bottom, from(#f5f8fb), to(#eef3f8));
    background: linear-gradient(180deg, #f5f8fb 0%, #eef3f8 100%);
  }
  #wrap .recruit-single-content .recruit-single-3 .contact-box .form-box-rireki-box .required {
    width: 35%;
  }
  #wrap .recruit-single-content .recruit-single-3 .contact-box .form-box .file {
    position: relative;
    left: 0;
  }
  #wrap .recruit-single-content .recruit-single-3 .contact-box .contact-button {
    width: 340px;
    height: auto;
    margin: 40px auto 0 auto;
    border-radius: 100px;
    border: solid #173d6b 1px;
    -webkit-transition: .2s;
    transition: .2s;
  }
  #wrap .recruit-single-content .recruit-single-3 .contact-box .contact-button #button {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--navy);
    border-radius: 999px;
    background: #173d6b;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .04em;
  }
  #wrap .recruit-single-content .recruit-single-3 .contact-box .contact-button #button:hover {
    -webkit-box-shadow: 0px 3px 7px #333;
            box-shadow: 0px 3px 7px #333;
    -webkit-transition: .2s;
    transition: .2s;
  }
  /* wrap */
}

/******************************WP移行後追加CSS******************************/
@media screen and (min-width: 980px) {
  #wrap .recruit-single-content .recruit-single-1 .recruit-single-1--inner .recruit-single-title p {
    padding: 9px 0 10px 0 !important;
  }
  #wrap .recruit-single-content .recruit-single-3 .contact-box {
    margin-top: 40px !important;
  }
  .form-box .birth, .form-box .live, .form-box .gaku {
    width: 124px;
    height: 40px;
    border: solid #f3f8fb 1px;
    outline: none;
    padding: 5px 0 0 10px;
    border-radius: 5px;
    font-size: 14px;
    margin-top: 10px;
    background: -webkit-gradient(linear, left top, left bottom, from(#f5f8fb), to(#eef3f8));
    background: linear-gradient(180deg, #f5f8fb 0%, #eef3f8 100%);
    border: solid #ccc 1px;
  }
  .form-box .live, .form-box .gaku {
    width: 200px;
    height: 50px;
    font-size: 16px;
  }
  .form-box .file {
    width: auto !important;
    height: 40px !important;
    padding: 8px 0 0 10px !important;
    position: relative;
    left: -20px;
  }
  .form-box select {
    width: 22% !important;
    height: 40px;
  }
  .form-box .tex-eria {
    width: 100%;
    height: 180px;
    margin-top: 10px;
    resize: vertical;
    display: block;
    outline: none;
    padding: 10px;
    border-radius: 5px;
    border: solid #ccc 1px;
    line-height: 1.4;
    border-radius: 15px;
    background: -webkit-gradient(linear, left top, left bottom, from(#f5f8fb), to(#eef3f8));
    background: linear-gradient(180deg, #f5f8fb 0%, #eef3f8 100%);
  }
  .contact-button .submitbtn {
    width: 100%;
    min-height: 48px;
    color: #7b8693;
    border: 1px solid var(--navy);
    border-radius: 999px;
    background: #173d6b;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .04em;
  }
  #wrap .contact-single .contact-single--inner .contact-box .pri_box {
    width: 275px !important;
  }
  .submitbtn:hover {
    -webkit-box-shadow: 0px 3px 7px #333;
            box-shadow: 0px 3px 7px #333;
    -webkit-transition: .2s;
    transition: .2s;
  }
  .mw_wp_form .error {
    font-size: 93%;
    color: #B70000;
    display: block;
    text-align: center;
    position: relative;
    top: 10px;
  }
  #wrap .recruit-single-content .recruit-single-3 .contact-box .form-box .error {
    color: #cb1f20;
    font-size: 15px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: -15px;
  }
  #wrap .contact-single .contact-single--inner .contact-box .form-box .error {
    font-size: 15px;
    top: 10px;
    right: -15px;
  }
  h2.thanks-title:before {
    content: url(../img/logo.png);
    position: absolute;
    top: 30px;
    margin-left: 90px !important;
  }
  .thanks-title {
    font-size: 60px;
  }
  .thanks-tex {
    padding-top: 60px;
    text-align: center;
    line-height: 1.6;
  }
  .top-back {
    margin: auto;
    text-align: center;
    margin-top: 40px;
    font-weight: bold;
  }
  /* ページナビゲーションCSS */
  .page_nav--content {
    width: 100%;
    height: auto;
    position: relative;
    margin: 100px auto 140px auto;
  }
  .page_nav--content--inner {
    width: auto;
    height: 60px;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 20px 0 20px 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  span.page-numbers {
    font-size: 19px;
    height: 40px;
    color: #148ac6;
    font-weight: bold;
    margin-left: 20px;
    padding: 10px 15px 12px 15px;
    background: #00b7eb;
    color: #fff;
  }
  a.page-numbers.current {
    font-size: 16px;
    color: #000;
    height: 40px;
    background: #fff;
    font-weight: bold;
    margin-right: 20px;
    -webkit-transition: .4s;
    transition: .4s;
    padding: 10px 15px 12px 15px;
  }
  a.page-numbers {
    font-size: 16px;
    color: #000;
    height: 40px;
    background: #fff;
    font-weight: bold;
    margin-left: 20px;
    -webkit-transition: .4s;
    transition: .4s;
    padding: 10px 15px 12px 15px;
  }
  a.page-numbers:hover {
    -webkit-transition: .4s;
    transition: .4s;
    color: #148ac6;
  }
  .next.page-numbers, .prev.page-numbers {
    background-color: transparent;
  }
}

/******************************WP移行後追加CSS******************************/
/*# sourceMappingURL=style.css.map */