@charset "utf-8";

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Common(PC.SP共通設定)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
* {
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
}

body {
  /* ゴシック体系のフォント指定 */
  font-family: "Noto Sans JP", sans-serif;
  text-rendering: optimizeLegibility;
}

.serif {
  /* 明朝体系(セリフ体)のフォント指定 */
  font-family: "Noto Sans JP", 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;
}

span.green{
  color: #008E45;
}
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    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: 960px;
    margin: 20px auto;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-around;
  }

  .top_title p {
    margin-left: 40px;
    font-size: 24px;
  }

  .top_title img {
    width: auto;
  }

  header .fv_box {
    background: rgb(101, 238, 193);
    background: linear-gradient(90deg, rgba(101, 238, 193, 1) 0%, rgba(1, 186, 91, 1) 100%);
  }

  header .fv_box h1 {
    width: 960px;
    margin: auto;
    padding: 30px 0;
  }

  /*==================================================
    Main  for PC
==================================================*/
  main {}

  /* タイトルの帯(募集要項、応募フォームなど)
    --------------------- */
  main h2.title_obe {
    width: 960px;
    margin: 0 auto 30px;
    padding: 10px;
    font-size: 25px;
    line-height: 1.3;
    text-align: center;
    background-color: #000;
    color: #fff;
  }

  div.topcaption {
    margin: 0 auto;
    padding-top: 40px;
  }

  div.topcaption p {
    text-align: center;
    line-height:1.5em;
    font-size: 18px;
    font-weight: bold;
  }

  /* タイトルの帯の下の矢印
    -------------------

    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 募集要項を見る  for PC
==================================================*/
  #btn_youkou {
    width: 860px;
    margin: auto;
    padding: 3.8% 0;
  }

  #btn_youkou a img {
    width: 860px;
    margin: auto;
  }

  /*==================================================
    Main メリット  for PC
==================================================*/
  #merit {
    margin: 0 auto;
    background-image: url(../img/meritbg.jpg);
    background-repeat: no-repeat;
    padding: 40px 0;
  }

  #merit .merit_in {
    width: 860px;
    margin: auto;
    padding: 35px 0 20px;
    background-color: #fff;
  }

  #merit h2 {
    width: 760px;
    margin: 0 auto 30px;
    background-color: #ED5A24;
    text-align: center;
    font-size: 23px;
    line-height: 1.3;
    color: #fff;
  }

  #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%;
  }

  /*==================================================
    Main インタビュー  for PC
==================================================*/
  #interview {
    background-image: url(../img/interviewbg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    padding: 25px 0;
  }

  #interview .interview_box {
    width: 860px;
    background-color: #fff;
    padding-top: 10px;
    padding-bottom: 30px;
    margin: 0 auto;
  }

  #interview h2 {
    width: 760px;
    margin: 0 auto 30px;
    background-color: #ED5A24;
    text-align: center;
    font-size: 26px;
    line-height: 1.2;
    color: #fff;
  }

  #interview .interview_in {}

  #interview .interview_in .left_box {
    width: 240px;
  }

  #interview .interview_in .left_box img {
    width: 100%;
    margin-bottom: 50px;
  }

  #interview .interview_in .right_box {
    width: 486px;
  }

  #interview .interview_in .right_box h3 {
    margin-bottom: 10px;
    font-size: 26px;
    line-height: 1.3;
  }

  #interview .interview_in .right_box p {
    font-size: 18px;
    line-height: 1.3;
    /*----テキストを均等揃えにする----*/
    text-align: justify;
  }

  #interview div.interviewwrap {
    display: flex;
    justify-content: space-between;
    width: 760px;
    margin: 0 auto;
  }

  #interview p.interviewname {
    font-weight: bold;
    color: #000;
    margin: 20px 0;
  }

  #interview dl {
    margin-bottom: 20px;
  }

  #interview div.interviewwrap dt {
    font-size: 20px;
    color: #ED5A24;
    font-weight: bold;
    padding-bottom: 10px;
  }

  #interview div.interviewwrap dd {
    line-height: 1.5em;
  }

  /*==================================================
    Main スライド  for PC
==================================================*/
  #slide {
    /*---後ろの背景色を指定する
        background-color: #ccc;
        background-position: center;
        ---*/
  }

  #slide .slide_box {
    position: relative;
    width: 860px;
    height: 100%;
    margin: 50px auto;
    padding: 35px 0 35px;
    background-color: #A0D0D0;
  }

  #slide h2 {
    width: 760px;
    margin: 0 auto 30px;
    padding: 10px;
    background-color: #fff;
    text-align: center;
    font-size: 26px;
    line-height: 1.3;
    color: #ED5A24;
  }

  #slide .swiper-container {
    width: 100%;
    height: 100%;
    padding-bottom: 30px;
    background-color: #A0D0D0;
  }

  #slide .swiper-container .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #A0D0D0;
    margin: auto;
    text-align: center;
    font-size: 18px;
  }

  #slide .swiper-container .swiper-slide img {
    width: 600px;
  }

  /*==================================================
    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: #008E45;
    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;
  }

  /*==================================================
    Main　応募フォーム  for PC
==================================================*/
  #oubo_form {}

  /*form start
    ------------------------------*/
  #formID {
    padding: 20px;
  }

  #formID table {
    width: 930px;
    margin: 0 auto 20px;
  }

  #formID tr {
    border-bottom: 1px dotted #ddd;
  }

  #formID td,
  #formID th {
    padding: 20px;
    vertical-align: middle;
    white-space: nowrap;
    font-size: 18px;
    color: #000;
  }

  #formID th {
    width: 20%;
    background-color: #ddd;
    border-left: 5px solid #ccc;
    vertical-align: center;
    font-weight: normal;
    text-align: left;
  }

  #formID td {
    vertical-align: middle;
  }

  #formID table {
    font-size: 14px !important;
    line-height: 1.6;
  }

  #formID input,
  #formID textarea {
    width: 100%;
    margin: 0;
    padding: 5px;
    border: 1px solid #b5b5b5;
    vertical-align: middle;
    font-size: 20px;
  }

  #formID select {
    width: 100%;
    margin: 0;
    padding: 5px;
    background: url(../img/select_ya.png) right 10px center no-repeat #fff;
    font-size: 16px;
    /* セレクトボックスのデフォルトスタイルを無効にする */
    border: none;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

  #formID .select {
    width: 100%;
    border: 1px solid #ccc;
  }

  /*性別ほか labelタグ右側に余白*/
  #formID label {
    margin-right: 20px;
    vertical-align: middle;
  }

  #formID button {
    display: block;
    width: 460px;
    margin: 20px auto;
    border: none;
    background-color: #fff;
    cursor: pointer;
    color: #fff;
    background-color: transparent;
  }

  #formID button:hover {
    opacity: 0.5;
    transition: all 0.2s ease-in-out;
  }

  #formID .scroll_box {
    margin: 0 auto 30px;
    width: 700px;
    /* 横幅を200pxに指定 */
    height: 200px;
    /* 横幅を200pxに指定 */
    border: 1px solid #000;
    /* わかりやすくボーダーを引く */
    overflow-y: scroll;
    /* 縦方向にスクロール可能にする */
    padding: 10px;
    line-height: 1.3;
  }

  #formID .scroll_box span {
    color: #1159bc;
    font-weight: bold;
    font-family: "ヒラギノ角ゴ Pro W6";
    font-size: 18px;
  }

  #formID h2 {
    color: #1159bc;
    font-size: 26px;
    margin: 0 auto 15px;
    font-family: "ヒラギノ角ゴ Pro W6";
    text-align: center;
  }

  #formID h2 p {
    color: #1159bc;
    font-size: 14px;
    margin: 5px auto 0;
    text-align: center;
  }

  /*==================================================
    Footer  for PC
==================================================*/
  footer {
    background-color: #008E45;
    margin: auto;
  }

  footer p {
    padding: 15px 0;
    text-align: center;
    font-style: normal;
    font-size: 12px;
    color: #fff;
  }
}

/*/////////////////////////////////////////////////////////////////////
    for sp  スマホ画面用（767px以下）
/////////////////////////////////////////////////////////////////////*/
@media only screen and (max-width:767px) {
  body {
    width: 100%;
    font-size: 13px;
  }

  /*--------------------------------------------------
    Header  for sp
--------------------------------------------------*/
  .top_title {
    width: 95%;
    margin: 10px auto;
    text-align: center;
  }

  .top_title p {
    margin-left: 20px;
    font-size: 18px;
  }

  .top_title img {
    width: 180px;
    margin: 0 auto;
    padding: 3% 0;
  }

  header .fv_box h1 {
    width: 100%;
    margin: 3% auto;
  }

  /*--------------------------------------------------
    Main  for sp
--------------------------------------------------*/
  /* タイトルの帯(募集要項、応募フォームなど)
    --------------------- */
  main h2.title_obe {
    margin: 0 auto 5%;
    padding: 10px;
    font-size: 18px;
    line-height: 1.3;
    text-align: center;
    background-color: #000;
    color: #fff;
  }

  div.topcaption {
    margin: 0% auto;
    padding-top: 5%;
  }

  div.topcaption p {
    text-align: center;
    line-height: 1.5;

  }

  /* タイトルの帯の下の矢印
    -------------------

    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;
    padding: 2% 0;
  }

  /*--------------------------------------------------
    Main メリット  for sp
--------------------------------------------------*/
  #merit {
    width: 100%;
    margin: 0 auto 30px;
    padding: 0 3%;
  }

  #merit .merit_in {
    margin: auto;
    padding: 5% 3% 1%;
    background: rgb(101, 238, 193);
    background: linear-gradient(90deg, rgba(101, 238, 193, 1) 0%, rgba(1, 186, 91, 1) 100%);
  }

  #merit h2 {
    margin: 0 auto 5%;
    background-color: #ED5A24;
    text-align: center;
    line-height: 1.3;
    font-size: 18px;
    color: #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: 0 auto 30px;
    padding: 0 3%;
  }

  #interview h2 {
    background-color: #ED5A24;
    font-size: 18px;
    line-height: 1.3;
    margin: 0 auto 5%;
    text-align: center;
    color: #fff;
  }

  #interview .interview_in {
    background-color: #fff;
    margin: auto;
  }

  #interview .interview_in .left_box img {
    width: 70%;
    margin: auto;
    padding-bottom: 5%;
  }

  #interview .interview_in .right_box {
    padding: 3%;
  }

  #interview .interview_in .right_box h3 {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 3%;
  }

  #interview .interview_in .right_box p {
    font-size: 16px;
    line-height: 1.3;
    /*----テキストを均等揃えにする----*/
    text-align: justify;
  }

  #interview p.interviewname {
    font-weight: bold;
    color: #000;
    margin: 20px 0;
  }

  #interview dl {
    margin-bottom: 20px;
  }

  #interview div.interviewwrap dt {
    font-size: 17px;
    color: #ED5A24;
    font-weight: bold;
    padding-bottom: 10px;
  }

  #interview div.interviewwrap dd {
    line-height: 1.5em;
  }

  /*--------------------------------------------------
    Main スライド  for sp
--------------------------------------------------*/
  #slide {
    width: 95%;
    margin: 0 auto 5%;
    padding: 35px 10px 30px;
    background-color: #A0D0D0;
  }

  #slide h2 {
    width: 100%;
    margin: 0 auto 30px;
    padding: 10px;
    background-color: #fff;
    text-align: center;
    font-size: 18px;
    line-height: 1.3;
    color: #ED5A24;
  }

  #slide .swiper-container {
    width: 100%;
    height: 100%;
    padding-bottom: 30px;
  }

  #slide .swiper-container .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    text-align: center;
    font-size: 18px;
  }

  #slide .swiper-container .swiper-slide img {
    width: 80%;
  }

  /*--------------------------------------------------
    Main 質問  for sp
--------------------------------------------------*/
  #question {
    width: 95%;
    margin: 0 auto 40px;
    padding: 35px 0 30px;
    background-color: #e6e6e6;
  }

  #question h2 {
    width: 95%;
    margin: 0 auto 30px;
    padding: 10px;
    background-color: #b9b9b9;
    text-align: center;
    font-size: 26px;
    line-height: 1.3;
  }

  #question .question_in {
    width: 100%px;
    margin: auto;
    background-color: #e6e6e6;
  }

  #question .question_in ul {
    margin-bottom: 20px;
  }

  #question .question_in ul li {
    width: 90%;
    margin: 0 auto 2%;
    padding: 0 0 2%;
    border-bottom: 1px dashed #000;
    font-size: 20px;
    line-height: 1.3;
  }

  #question p {
    padding: 0% 5% 3%;
    font-size: 18px;
    line-height: 1.3;
  }

  /*--------------------------------------------------
    Main 募集要項  for sp
--------------------------------------------------*/
  #recruit {
    width: 95%;
    margin: 0 auto 5%;
    padding-top: 10%;
  }

  #recruit .step_naiyou {
    width: 100%;
    margin: auto;
    padding: 0 10px;
  }

  #recruit .step_naiyou dl {
    border-bottom: 1px dotted #bdbdbd;
  }

  #recruit .step_naiyou dl dt {
    width: 100%;
    margin: 0;
    padding: 0 0 0 0.5em;
    background-color: #008E45;
    text-align: left;
    font-size: 18px;
    letter-spacing: 0.2em;
    line-height: 32px;
    color: #fff;
  }

  #recruit .step_naiyou dl dd {
    width: 100%;
    margin: 0;
    padding: 13px 0px 13px 0.2em;
    text-align: left;
    font-size: 16px;
    line-height: 19px;
    color: #333;
  }

  #recruit .step_naiyou dl dd span {
    font-size: 100%;
    line-height: 1.5em;
  }

  #recruit .step_naiyou .moji {
    font-size: 20px !important;
  }

  #recruit .step_naiyou em {
    display: block;
    font-style: normal;
    font-size: 13px;
  }

  /*--------------------------------------------------
    Main　応募フォーム  for sp
--------------------------------------------------*/
  #oubo_form {
    width: 95%;
    margin: 0 auto 5%;
  }

  #formID table {
    width: 100%;
  }

  #formID td,
  #formID th {
    /*テーブルをSP版では縦並びにするため*/
    display: block;
  }

  #formID th {
    padding: 2% 0;
    /*border-left: 5px solid #74c32c;*/
    background-color: #bbb;
    font-size: 16px;
    line-height: 1.3;
    font-weight: normal;
  }

  #formID th {
    padding: 6px;
    vertical-align: middle;
    white-space: nowrap;
    color: #000;
  }

  #formID td {
    padding: 2% 0;
  }

  #formID input,
  #formID textarea {
    width: 100%;
    margin: 0;
    padding: 5px;
    border: 1px solid #b5b5b5;
    vertical-align: middle;
    font-size: 16px;
  }

  /*性別ほか labelタグ右側に余白*/
  #formID label {
    margin-right: 20px;
    vertical-align: middle;
  }

  #formID .select {
    border: 1px #b5b5b5 solid;
  }

  #formID select {
    width: 100%;
    margin: 0;
    padding: 5px;
    background: url(../img/select_ya.png) right 10px center no-repeat #fff;
    font-size: 13px;
    /* セレクトボックスのデフォルトスタイルを無効にする */
    border: none;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

  #formID button {
    display: block;
    width: 100%;
    margin: 20px auto;
    padding: 5%;
    border: medium none;
    cursor: pointer;
    color: #fff;
    background-color: transparent;
  }

  #formID button:hover {
    opacity: 0.5;
    transition: all 0.2s ease-in-out;
  }

  #formID h2 {
    color: #1159bc;
    font-size: 20px;
    margin: 0 auto 3%;
    text-align: center;
    font-family: "ヒラギノ角ゴ Pro W6";
  }

  #formID h2 p {
    color: #1159bc;
    font-size: 10px;
    margin: 1% auto 0;
    text-align: center;
  }

  #formID .scroll_box {
    margin: 0 auto 5%;
    width: 100%;
    /* 横幅を200pxに指定 */
    height: 300px;
    /* 横幅を200pxに指定 */
    border: 1px solid #000;
    /* わかりやすくボーダーを引く */
    overflow-y: scroll;
    /* 縦方向にスクロール可能にする */
    padding: 3%;
    line-height: 1.3;
  }

  #formID .scroll_box span {
    color: #1159bc;
    font-family: "ヒラギノ角ゴ Pro W6";
    font-size: 16px;
  }

  /*--------------------------------------------------
    Footer  for sp
--------------------------------------------------*/
  footer p {
    padding: 10px 0;
    text-align: center;
    font-style: normal;
    font-size: 75%;
    color: #fff;
    background-color: #008E45;
  }
}
