@charset "utf-8";

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Common(PC.SP共通設定)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
* {
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
}

body {
  /* ゴシック体系のフォント指定 */
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-rendering: optimizeLegibility;
}

.serif {
  /* 明朝体系(セリフ体)のフォント指定 */
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

main {
  display: block;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a img {
  transition: all 0.2s ease-in-out;
}

a:hover img {
  opacity: 0.5;
}

ul,
ol {
  list-style: none;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Goto Top (Topへ戻る) PC.SP共通設定
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
#pageTop {
  display: block;
  padding: 10px 15px;
  position: fixed;
  right: 20px;
  bottom: 115px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
  font-size: 16px;
  color: #fff;
  z-index: 10000;
}

/*/////////////////////////////////////////////////////////////////////
    for PC  パソコン画面用（768px以上）
/////////////////////////////////////////////////////////////////////*/
@media only screen and (min-width:768px) {
  body {
    min-width: 960px;
  }

  #wrapper {}

  br.pc_none {
    display: none;
  }

  /*==================================================
    Header  for PC
==================================================*/
  .top_title {
    width: 1000px;
    margin: 20px auto;
    display: flex;
    justify-content: space-around;
  }

  .top_title img {
    margin: 0 auto;
  }

  header .fv_box {
    background-color: #fff;
    background-position: center;
  }

  header .fv_box h1 {
    width: 100%;
    margin: auto;
  }

  header .fv_box h1.fvsp {
    display: none;
  }

  /*==================================================
    Main  for PC
==================================================*/
  main {}

  /* タイトルの帯(募集要項、応募フォームなど)
    --------------------- */
  main h2.title_obe {
    width: 960px;
    margin: 0 auto 30px;
    padding: 10px;
    font-size: 32px;
    line-height: 1.3;
    text-align: center;
    background-color: #fff;
  }

  main h2.title_obesp {
    display: none;
  }

  /* タイトルの帯の下の矢印
    -------------------

    main h2.title_obe{
        position: relative;
    }

    main h2.title_obe::after{
        display: flex;
        content: "";
        width: 30px;
        height: 30px;
        background-color: #b9b9b9;
        position: absolute;
        left: 49%;
        bottom: -20%;
        transform: rotate(45deg);
        z-index: -1;
    }
    -- */
  /*==================================================
    Main caption1  for PC
==================================================*/
  /*==================================================
    Main メリット  for PC
==================================================*/
  #merit {
    margin: 0 auto;
    background-image: url(../img/bg1.jpg);
        background-position: center;
    padding: 35px 0;
    height: 918px;
  }

  #merit .merit_in {
    width: 860px;
    margin: 30px auto;
    padding: 35px 0 20px;
    background-color: rgba(255, 255, 255, 0.7);
  }

  #merit .merit_in ul li {
    opacity: 1;
  }

  #merit h2 {
    width: 760px;
    margin: 0 auto 30px;
    padding: 10px;
    background-color: #b9b9b9;
    text-align: center;
    font-size: 32px;
    line-height: 1.3;
  }

  #merit ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 760px;
    margin: 0 auto 20px;
  }

  #merit ul li {
    width: 240px;
    margin-bottom: 20px;
  }

  #merit ul li img {
    width: 100%;
  }

  #merit div.merittitle {
    width: 960px;
    margin: 0 auto;
    padding-top: 40px;
  }

  #merit div.merittitle h3 {
    width: 860px;
    margin: 0 auto 30px;
    padding: 10px;
    color: #fff;
    border-bottom: solid #fff 2px;
    text-align: center;
    font-size: 32px;
    line-height: 1.3;
  }

  /*==================================================
    Main インタビュー  for PC
==================================================*/
  #interview {
    /*---後ろの背景色を指定する---*/
    background-color: #fff;
    background-position: center;
  }

  #interview .interview_box {
    width: 960px;
      background-color: #E2FAEB;
    padding-top: 35px;
    padding-bottom: 50px;
    margin: 0 auto;
  }

  #interview h2 {
    width: 760px;
    margin: 0 auto 30px;
    padding: 10px;
    text-align: center;
    font-size: 32px;
    line-height: 1.2;
    border-bottom: #000 solid 2px;
  }

  #interview .interview_in {
    width: 815px;
    margin: auto;
    padding: 25px;
    background-color: #fff;
  }

  #interview .interview_in .left_box {
      display:flex;
      justify-content: space-between;
      align-items: center;
    width: 100%;
  }
    #interview .interview_in .left_box h3 {
        margin-bottom: 10px;
        font-size: 26px;
        line-height: 1.3;
        letter-spacing:-1px;
        color: #189c57;
    }
    #interview .interview_in .left_box .job_type {
        width:229px;
        font-size: 21px;
        color:#fff;
        line-height: 1.3;
        background-color: #007192;
        padding:10px;
    }
    #interview .interview_in .left_box .job_type p{
        padding-left:10px;
        border-left: 4px #fff solid;
    }
    
  #interview .interview_in .left_box img {
    width: 100%;
  }

  #interview .interview_in .right_box {
    width: 100%;
  }
    #interview .interview_in hr {
        border-style:none;
        border-bottom:1px #000 dashed;
        margin:2em 0 0;
    }
  

  #interview .interview_in .right_box p {
    font-size: 19px;
    line-height: 1.3;
    /*----テキストを均等揃えにする----*/
    text-align: justify;
      margin-top:1em;
  }

  /*==================================================
    Main フロー  for PC
==================================================*/
  .flow h2 {
    width: 617px;
    margin: 0 auto -90px;
  }

  .flow_container {
    background-color: #a6f6c4;
    padding: 115px 0 60px;
  }

  .flow h3 {
    width: 860px;
    margin: 0 auto 30px;
    font-size: 29px;
    font-weight: bold;
    text-align: center;
    line-height: 0.4;
    border-bottom: solid 9px #EDDF21;
  }

  .flow_list {
    width: 775px;
    margin: auto;
  }

  .flow_list .list {
    display: flex;
    padding: 20px;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
  }

  .flow_number {
    display: flex;
    align-items: center;
    width: 33%;
    padding: 20px 0;
    border-right: solid 4px #000;
  }

  .flow_number p {
    width: 35%;
    font-size: 45px;
    font-weight: bold;
    text-align: center;
  }

  .flow_number p span {
    display: block;
    font-size: 16px;
    font-weight: normal;
    text-align: center;
  }

  .flow_number h4 {
    width: 60%;
    /*        margin-left: -20px;*/
    font-size: 30px;
    font-weight: normal;
    text-align: center;
  }

  .flow_number h4 span {
    display: inline-block;
    padding: 0 5px;
    line-height: 0.45;
    border-bottom: solid 9px #EDDF21;
  }

  .flow_text {
    width: 65%;
    margin-left: 15px;
    font-size: 19px;
    line-height: 1.3;
  }

  .flow_text .red {
    color: red;
  }

  .flow_list .arrow {
    width: 150px;
    margin: 20px auto;
  }

  /*==================================================
    Main スライド  for PC
==================================================*/
  #slide {
    background-color: #9fefbd;
    background-position: center;
    margin-bottom: 70px;
  }

  #slide .slide_box {
    position: relative;
    width: 860px;
    height: 100%;
    margin: 0 auto;
    padding: 35px 0 35px;
    background-color: #9fefbd;
  }

  #slide h2 {
    width: 860px;
    margin: 0 auto 30px;
    padding: 10px;
    color: #000;
    border-bottom: solid #000 2px;
    text-align: center;
    font-size: 32px;
    line-height: 1.3;
  }

  #slide .swiper-container {
    width: 100%;
    height: 100%;
    padding-bottom: 30px;
    background-color: #fff;
    margin-bottom: 30px;
  }

  #slide .swiper-container .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    margin: 50px auto;
    text-align: center;
    font-size: 18px;
  }

  #slide .swiper-container .swiper-slide img {
    width: 600px;
  }

  /*==================================================
    Main 質問  for PC
==================================================*/
  #question {
    /*---後ろの背景色を指定する
        background-color: #ccc;
        background-position: center;
        ---*/
  }

  #question .question_box {
    width: 860px;
    margin: 0 auto 40px;
    padding: 35px 0 30px;
    background-color: #e6e6e6;
  }

  #question h2 {
    width: 760px;
    margin: 0 auto 30px;
    padding: 10px;
    background-color: #b9b9b9;
    text-align: center;
    font-size: 32px;
    line-height: 1.3;
  }

  .question_in {
    width: 760px;
    margin: auto;
    background-color: #e6e6e6;
  }

  #question ul {
    margin-bottom: 20px;
  }

  #question ul li {
    width: 760px;
    margin: auto;
    padding-left: 1em;
    border-bottom: 1px dashed #000;
    font-size: 24px;
    line-height: 1.5;
  }

  #question p {
    font-size: 20px;
    line-height: 1.3;
  }

  /*==================================================
    Main グラフ  for PC
==================================================*/
  #graph {
    /*---後ろの背景色を指定する
        background-color: #ccc;
        background-position: center;
        ---*/
  }

  #graph .graph_box {
    width: 860px;
    margin: 0 auto 30px;
    padding: 35px 0 10px;
    background-color: #e6e6e6;
  }

  .graph_in {
    width: 760px;
    margin: auto;
    background-color: #e6e6e6;
  }

  #graph h2 {
    width: 760px;
    margin: 0 auto 30px;
    padding: 10px;
    background-color: #b9b9b9;
    text-align: center;
    font-size: 32px;
    line-height: 1.3;
  }

  #graph ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 730px;
    margin: 0 auto 20px;
  }

  #graph ul li {
    margin-bottom: 20px;
    padding: 10px;
    background-color: #b9b9b9;
    width: 355px;
    font-size: 24px;
    line-height: 1.5;
  }

  #graph ul li h3 {
    margin-bottom: 10px;
    text-align: center;
    font-size: 24px;
    line-height: 1.3;
  }

  #graph ul li p {
    padding: 15px 5px;
    font-size: 20px;
    line-height: 1.3;
  }

  /*==================================================
    Main 募集要項  for PC
==================================================*/
  #recruit {
    margin: 0 auto 30px;
  }

  #recruit .step_naiyou {
    width: 930px;
    margin: auto;
    background-color: #fff;
  }

  #recruit .step_naiyou dl {
    display: flex;
    border-bottom: 1px dotted #bdbdbd;
  }

  #recruit .step_naiyou dl dt,
  #recruit .step_naiyou dl dd {}

  #recruit .step_naiyou dl dt {
    width: 180px;
    height: 32px;
    margin: 30px 30px 30px 0;
    background-color: #3d6ed5;
    text-align: center;
    font-size: 18px;
    letter-spacing: 0.2em;
    line-height: 32px;
    color: #fff;
  }

  #recruit .step_naiyou dl dd {
    width: 660px;
    padding: 20px 0;
    font-size: 16px;
    line-height: 30px;
    color: #333;
  }

  #recruit .step_naiyou dl dd span {
    font-size: 25px;
    line-height: 50px;
  }

  /*お問い合わせ文字 start
    ------------------------------*/
  #recruit .step_naiyou em {
    font-size: 16px;
  }

  #recruit .step_naiyou a:link {
    color: #333;
  }

  /*==================================================
    job 募集要項  for PC
==================================================*/
  #job {
    margin: 0 auto;
    width: 860px;
    text-align: center;
  }

  #job h2.jobtitle {
    color: #189c57;
    border-bottom: solid 2px #189c57;
    font-size: 40px;
    line-height: 1.5em;
    font-weight: bold;
  }

  #job ul {
    width: 860px;
  }

  #job ul li {
    text-align: center;
    margin: 25px auto;
  }

  /*==================================================
    Footer  for PC
==================================================*/
  footer {
    width: 960px;
    margin: 50px auto;
  }

  footer p {
    padding: 0 0 10px;
    text-align: center;
    font-style: normal;
    font-size: 12px;
  }
}

/*/////////////////////////////////////////////////////////////////////
    for sp  スマホ画面用（767px以下）
/////////////////////////////////////////////////////////////////////*/
@media only screen and (max-width:767px) {
  body {
    width: 100%;
    font-size: 13px;
  }

  .sp_none {
    display: none;
  }

  .spnone {
    display: none;
  }

  /*--------------------------------------------------
    Header  for sp
--------------------------------------------------*/
  .top_title {
    width: 95%;
    margin: 10px auto;
    display: flex;
    align-items: center;
  }

  .top_title p {
    margin-left: 20px;
    font-size: 18px;
  }

  .top_title img {
    margin: 0 auto;
  }

  header .fv_box h1.fvsp {
    width: 100%;
    margin: auto;
  }

  header .fv_box h1.fv {
    display: none;
  }

  /*--------------------------------------------------
    Main  for sp
--------------------------------------------------*/
  /* タイトルの帯(募集要項、応募フォームなど)
    --------------------- */
  main h2.title_obe {
    display: none;
  }

  main h2.title_obesp {
    margin: 0 auto 5%;
    padding: 10px;
    line-height: 1.3;
    text-align: center;
  }

  /* タイトルの帯の下の矢印
    -------------------

    main h2.title_obe{
        position: relative;
    }

    main h2.title_obe::after{
        display: flex;
        content: "";
        width: 20px;
        height: 20px;
        background-color: #b9b9b9;
        position: absolute;
        left: 47%;
        bottom: -15%;
        transform: rotate(45deg);
        z-index: -1;
    }
    -- */
  /*--------------------------------------------------
    Main 募集要項を見る  for sp
--------------------------------------------------*/
  #btn_youkou {
    padding: 4% 0;
  }

  #btn_youkou a img {
    width: 85%;
    margin: auto;
  }

  /*--------------------------------------------------
    Main メリット  for sp
--------------------------------------------------*/
  #merit {
    width: 100%;
    margin: 0 auto;
    padding: 5% 3%;
    background-image: url(../img/bg1.jpg);
  }

  #merit .merit_in {
    margin: auto;
    padding: 5% 3% 1%;
    background-color: #fff;
  }

  #merit h2 {
    margin: 0 auto 5%;
    padding: 10px;
    background-color: #b9b9b9;
    text-align: center;
    line-height: 1.3;
    font-size: 26px;
  }

  #merit h3 {
    color: #fff;
    margin: 0 auto 5%;
    padding: 10px;
    text-align: center;
    line-height: 1.3;
    font-size: 26px;
    border-bottom: 2px solid #fff;
  }

  #merit ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  #merit ul li {
    width: 48%;
    margin-bottom: 20px;
  }

  #merit ul li img {}

  /*--------------------------------------------------
    Main インタビュー  for sp
--------------------------------------------------*/
  #interview {
    width: 100%;
    margin: 5% auto;
  }

  #interview h2 {
      background-color: #E2FAEB;
    font-size: 26px;
    line-height: 1.3;
    padding: 10px;
    margin: 0 auto;
    text-align: center;
    border-bottom: solid 2px #000;
  }

  #interview .interview_in {
      background-color: #E2FAEB;
    padding: 1em;
    margin: auto;
  }
    #interview .interview_in hr {
        border-style:none;
        border-bottom:1px #000 dashed;
        margin:2em 0 0;
    }

    #interview .interview_in .left_box .job_type {
        width:95%;
        font-size: 18px;
        color:#fff;
        line-height: 1.3;
        background-color: #007192;
        padding:10px;
        text-align:center;
        margin:0 auto;
    }
    #interview .interview_in .left_box h3 {
        font-size: 18px;
        line-height: 1.3;
        margin-bottom: 3%;
        color: #189c57;
    }

  #interview .interview_in .right_box {
    padding: 3%;
  }

  

  #interview .interview_in .right_box p {
    font-size: 16px;
    line-height: 1.3;
    /*----テキストを均等揃えにする----*/
    text-align: justify;
  }

  /*--------------------------------------------------
    Main フロー  for sp
--------------------------------------------------*/
  .flow h2 {
    width: 80%;
    margin: 0 auto -12%;
  }

  .flow_container {
    background-color: #a6f6c4;
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .flow h3 {
    width: 90%;
    margin: 0 auto 5%;
    font-size: 7vw;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
    border-bottom: solid 7px #EDDF21;
  }

  .flow_list {
    margin: 0 10px;
  }

  .flow_list .list {
    padding: 15px;
    background-color: #fff;
  }

  .flow_number {
    width: 65%;
    margin: 0 auto 4px;
    padding-top: 3%;
    position: relative;
  }

  .flow_number p {
    font-size: 7vw;
    font-weight: bold;
    text-align: center;
    position: absolute;
    top: 0;
  }

  .flow_number p span {
    display: block;
    font-size: 0.4em;
    font-weight: normal;
    text-align: center;
  }

  .flow_number h4 {
    font-size: 7vw;
    font-weight: normal;
    text-align: center;
  }

  .flow_number h4 span {
    display: inline-block;
    padding: 0 5px;
    line-height: 0.5;
    border-bottom: solid 7px #EDDF21;
  }

  .flow_text {
    padding-top: 2%;
    font-size: 3.9vw;
    text-align: justify;
    line-height: 1.3;
    border-top: solid 2px #000;
  }

  .flow_text br {
    display: none;
  }

  .flow_text .red {
    color: red;
  }

  .flow_list .arrow {
    width: 38%;
    max-width: 150px;
    margin: 18px auto;
  }

  /*--------------------------------------------------
    Main スライド  for sp
--------------------------------------------------*/
  #slide {
    width: 100%;
    margin: 0 auto 5%;
    padding: 35px 10px 30px;
      background-color: #9FEFBD;
  }

  #slide h2 {
    width: 100%;
    margin: 0 auto 30px;
    padding: 10px;
    color: #000;
    border-bottom: solid 1px #000;
    text-align: center;
    font-size: 24px;
    line-height: 1.3;
  }

  #slide .swiper-container {
    width: 100%;
    height: 100%;
    padding-bottom: 30px;
    background-color: #fff;
  }

  #slide .swiper-container .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5% auto;
    background-color: #fff;
    text-align: center;
    font-size: 18px;
  }

  #slide .swiper-container .swiper-slide img {
    width: 80%;
  }


  /*==================================================
    job 募集要項  for PC
==================================================*/
  #job {
    margin: 0 auto;
    width: 95%;
    text-align: center;
  }

  #job h2.jobtitle {
    color: #189c57;
    border-bottom: solid 2px #189c57;
    font-size: 25px;
    line-height: 1.5em;
    font-weight: bold;
  }

  #job ul {
    width: 95%;
    margin: 0 auto;
  }

  #job ul li {
    text-align: center;
    margin: 5% auto;
  }

  /*--------------------------------------------------
    Footer  for sp
--------------------------------------------------*/
  footer p {
    padding: 0 0 10px;
    text-align: center;
    font-style: normal;
    font-size: 75%;
    margin: 5% 0;
  }
}
