@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;
}
@media all and (-ms-high-contrast: none) {
    * {
        font-family: "メイリオ", Meiryo, sans-serif;
    }
}
.serif {
    /* 明朝体系(セリフ体)のフォント指定 */
    font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

main {
    display: block;
}

img {
    display: block;
    width: 100%;
    height: auto;
}
a {
    text-decoration: none;
}

a img {
    transition: all 0.2s ease-in-out;
}

a:hover {
    opacity: 0.5;
    transition: 0.5s;
}

ol,
ul {
    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;
}

h2 {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    position: relative;
}

h2::after {
    position: relative;
    display: block;
    content: "";
    width: 60px;
    height: 8px;
    background: rgb(0,96,187);
    background: linear-gradient(90deg, rgba(0,96,187,1) 50%, rgba(85,164,100,1) 50%);
    margin: 14px auto 36px;
}

.pc_none {
    display: none;
}

/*-----画面幅768px以下-----*/
@media only screen and (max-width:768px) {
    .sp_none {
        display: none;
    }
    .pc_none {
        display: block;
    }

    h2 {
        font-size: 20px;
    }
}
/*-----画面幅375px以下-----*/
@media only screen and (max-width:375px) {}

/*===================================
header〜FV
------------------------------------*/
/*-----共通設定-----*/
.wrap_fv {
    width: 100%;
    margin: 0 auto;
    background-image: url("../img/fvbg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    min-height: 540px;
}
header {
    width: 100%;
    letter-spacing: 3px;
    padding: 40px 10px;
    margin: 0 auto;
    background-color: #fff;
}
header .inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}
header .inner img {
    width: 100%;
    max-width: 100px;
    height: 40px;
    margin-right: 1em;
}
header h1 {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.3;
}
header a {
    position: relative;
    display: block;
    font-size: 14px;
    color: inherit;
    padding: 0.5em 2em 0.5em 1.5em;
    border: 1px solid #000;
    border-radius: 3em;
    margin: auto 0 auto auto;
}
header a::after {
    position: absolute;
    content: "＞";
    font-size: 14px;
    color: #000;
    top: calc(50% - 7px);
    right: 5px;
}
/*-----画面幅768px以下-----*/
@media only screen and (max-width:768px) {

}
/*-----画面幅475px以下-----*/
@media only screen and (max-width:475px) {
    header h1 {
        font-size: 14px;
    }
}
/*-----画面幅375px以下-----*/
@media only screen and (max-width:375px) {}
/*-----画面幅320px以下-----*/
@media only screen and (max-width:320px) {}

/*===================================
FV
------------------------------------*/
/*-----共通設定-----*/
.fv_box {
    width: 100%;
    max-width: 1200px;
    height: 540px;
    background-image: url("../img/fv_bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
    margin: 0 auto;

}
.fv_box .wrap01 {
    position: relative;
    width: 100%;
    max-width: 55%;
    min-height: 540px;
    margin: auto 0 auto auto;
    padding-left: 5%;
}
.fv_box .wrap01 p .ttl {
    max-width: 410px;
    /*    margin:0 auto;*/
}

.fv_box .wrap01 p {
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 1px;
    color: #fff;
    text-align: left;
    padding: 1em 1em 1em 0;
}
.fv_box .wrap02 {
    width: 100%;
    max-width: 60%;
    height: auto;
}
.fv_box .wrap02 img {
    position: relative;
    z-index: 0;
}

.fv_btn {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #fff;
    padding: 44px 0 22px;
}
.fv_btn .inner {
    width: 100%;
    max-width: 830px;
    margin: 0 auto;
}
.fv_btn p {
    font-size: 22px;
    line-height: 1.6;
    font-weight: bold;
    text-align: center;
    margin: 0 0 22px;
}
.fv_btn p span {
    color: #e71e79;
}
.fv_btn .inner ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    width: 100%;
    padding: 0 10px;
    margin: 0 auto;
}
.fv_btn ul li {
    width: 100%;
    max-width: 381px;
    border: 2px #0060bb solid;
    color: #0060bb;
    text-align: center;
    border-radius: 5px;
    background-color: #fff;
    margin-bottom: 20px;
}

.fv_btn ul li a {
    position: relative;
    display: block;
    width: 100%;
    max-width: 381px;
    font-size: 22px;
    color: inherit;
    padding: 11px;
}

.fv_btn ul li a::after {
    position: absolute;
    content: "＞";
    color: inherit;
    font-size: 28px;
    top: calc(50% - 14px);
    right: 5px;
}
.fv_btn ul li:nth-child(odd) {
    margin-right: 10px;
}
.fv_btn ul li:nth-child(even) {
    margin-left: 10px;
}
/*-----画面幅768px以下-----*/
@media only screen and (max-width:768px) {
    .fv_box {
        width: 100%;
        height: auto;
        background-image: none;
    }
    .fv_box .wrap01 {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: auto;
    }
    .fv_box .wrap01 img {
        width: 100%;
        max-width: 100%;
    }
    .fv_box .wrap01 p {
        padding: 1em;
    }
    .fv_box .wrap01 p .ttl {
        margin: 0 auto;
    }
    .fv_box .wrap02 {
        display: none;
    }
    .fv_btn .inner ul {
        flex-direction: column;
    }
    .fv_btn p {
        font-size: 18px;
        font-weight: bold;
        line-height: 1.5;
        text-align: left;
        padding: 0 1em;
        margin: 0 0 22px;
    }
    .fv_btn ul li {}
    .fv_btn ul li:nth-child(odd) {
        margin-right: 0;
    }
    .fv_btn ul li:nth-child(even) {
        margin-left: 0;
    }
    .fv_btn .inner ul li {
        max-width: 100%;
        margin: 0 auto 10px;
    }
    .fv_btn ul li a {
        max-width: 100%;
        font-size: 16px;
    }

}
/*-----画面幅375px以下-----*/
@media only screen and (max-width:375px) {}
/*-----画面幅320px以下-----*/
@media only screen and (max-width:320px) {}
/*===================================
merit
------------------------------------*/
/*-----共通設定-----*/
#merit {
    padding: 24px 0;
}

#merit .inner p {
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    padding: 0 1em;
}

#merit .inner ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-around;
    -webkit-justify-content: space-around;
    -ms-flex-pack: space-around;
    justify-content: space-around;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    max-width: 960px;
    padding: 0 10px;
    margin: 0 auto;
}
#merit .inner ul li {
    width: 188px;
    font-size: 16px;
    font-weight: bold;
    padding: 44px 0;
    margin: 0 auto;
}
#merit .inner ul li img {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
}
#merit .inner ul li p {
    font-size: 16px;
    line-height: 1.1;
    text-align: center;
}
#merit .inner ul li p .fs_small {
    display: inline-block;
    font-size: 12px;
    margin-bottom: 4px;
}

/*-----画面幅768px以下-----*/
@media only screen and (max-width:768px) {
    #merit .inner p {
        text-align: left;
    }
    #merit .inner ul li {
        width: 188px;
        font-size: 16px;
        font-weight: bold;
        padding: 22px 0;
        margin: 0 auto;
    }

}
/*-----画面幅375px以下-----*/
@media only screen and (max-width:375px) {
    #merit .inner ul li {
        width: 50%;
    }
}
/*-----画面幅320px以下-----*/
@media only screen and (max-width:320px) {}

/*===================================
interview
------------------------------------*/
/*-----共通設定-----*/
#interview {
    background-color: #d3edfa;
    padding: 24px 0;
}
#interview .inner {
    width: 100%;
    max-width: 960px;
    padding: 0 10px;
    margin: 0 auto;
}
#interview .inner .content {
    display: flex;
    justify-content: space-between;
    margin: 30px auto 40px;
}
#interview .inner .row_reverse {
    flex-direction: row-reverse;
}
#interview .inner .content .wrap01 figure {
    position: relative;
    width: 100%;
    width: 390px;
}
#interview .inner .content .wrap01 figcaption {
    font-size: 10px;
    font-weight: bold;
    line-height: 1.2;
    color: #fff;
}

#interview .inner .content .wrap01 figcaption.first {
    position: absolute;
    width: 168px;
    height: 88px;
    background-image: url("../img/interview_name_bg01.png");
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    top: 0;
    right: -20px;
    text-align: center;
    padding: 48px 0 0 40px;
}
#interview .inner .row_reverse .wrap01 figcaption.second {
    position: absolute;
    width: 150px;
    height: 90px;
    background-image: url("../img/interview_name_bg02.png");
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    top: 0;
    left: -20px;
    text-align: center;
    padding: 40px 30px 0 0;
}
#interview .inner .content .wrap01 figcaption.third {
    position: absolute;
    width: 136px;
    height: 88px;
    background-image: url("../img/interview_name_bg03.png");
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    top: 0;
    right: -20px;
    text-align: center;
    padding: 44px 0 0 32px;
}

#interview .inner .content .wrap02 {
    max-width: 520px;
    padding-left: 30px;
}
#interview .inner .row_reverse .wrap02 {
    padding-left: 0;
    padding-right: 30px;
}
#interview .inner .content .wrap02 h3 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.3;
    color: #0060bb;
    margin-bottom: 0.5em;
}
#interview .inner .content .wrap02 p {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.7;
    text-align: justify;
}
/*youtube埋め込み部分*/
#interview .inner .content2 h3 {
    font-size: 24px;
    line-height: 1.5;
    font-weight: bold;
    border-bottom: 1px black dashed;
    text-align: center;
    padding-bottom: 0.2em;
}
#interview .inner .content2 ul {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    padding: 2em 0;
}
#interview .inner .content2 ul li {
    max-width: 460px;
    width: 100%;
    height: auto;
    margin: 0 auto;
}
#interview .inner .content2 ul li h4 {
    font-size: 18px;
    line-height: 1.5;
    font-weight: bold;
    border: 1px black solid;
    padding: 0.5em 0;
    margin-bottom: 1em;
    text-align: center;
}
#interview .inner .content2 ul li .wrap_yt {
    position: relative;
    width: 100%;
    padding-top: 52%;
}
#interview .inner .content2 ul li .wrap_yt iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/*-----画面幅768px以下-----*/
@media only screen and (max-width:768px) {
    #interview .inner {
        width: 95%;
        margin: 0 auto;
    }
    #interview .inner .content {
        flex-direction: column;
        margin: 0 auto 20px;
    }
    #interview .inner .content .wrap01 {
        padding: 0;
    }
    #interview .inner .content .wrap02 {
        width: 100%;
        padding: 0;
    }
    #interview .inner .row_reverse .wrap02 {
        width: 100%;
        padding: 0;
    }
    #interview .inner .content .wrap02 h3 {
        margin: 9px 0;
    }
    #interview .inner .content .wrap01 figure {
        width: 100%;
    }
    #interview .inner .content .wrap01 figcaption.first {
        top: auto;
        right: -10px;
        bottom: 0;
    }
    #interview .inner .content .wrap01 figcaption.second {
        top: auto;
        left: -10px;
        bottom: 0;
    }
    #interview .inner .content .wrap01 figcaption.third {
        background-repeat: no-repeat;
        top: auto;
        right: -10px;
        bottom: 0;
    }
    #interview .inner .content2 ul {
        width: 100%;
        flex-direction: column;
    }
    #interview .inner .content2 ul li {
        width: 100%;
        margin-bottom: 4%;
    }
    #interview .inner .content2 ul li h4 {
        margin-bottom: 0.5em;
    }
}
/*-----画面幅375px以下-----*/
@media only screen and (max-width:375px) {}
/*-----画面幅320px以下-----*/
@media only screen and (max-width:320px) {}

/*===================================
graph
------------------------------------*/
/*-----共通設定-----*/
#graph {
    padding: 48px 0 0;
}
#graph .inner {
    width: 100%;
    max-width: 960px;
    padding: 0 30px;
    margin: 0 auto;
}

#graph .inner ul {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0 16px;
    margin: 30px auto;
}
#graph .inner ul li {
    width: 100%;
    max-width: 442px;
    margin-bottom: 10px;
}
#graph .inner ul li:last-child {
    width: 100%;
    max-width: 900px;
}
@media all and (-ms-high-contrast: none) {
    #graph .inner ul li:nth-child(odd) {
        margin-right: 8px;
    }
    #graph .inner ul li:nth-child(even) {
        margin-left: 8px;
    }
}
/*-----画面幅768px以下-----*/
@media only screen and (max-width:768px) {
    #graph .inner {
        padding: 0 10px;
    }
    #graph .inner ul li:last-child {
        max-width: 442px;
    }
}
/*-----画面幅375px以下-----*/
@media only screen and (max-width:375px) {}
/*-----画面幅320px以下-----*/
@media only screen and (max-width:320px) {}
/*===================================
flow
------------------------------------*/
#flow {
    padding: 24px 0 48px;
}

#flow .inner {
    width: 100%;
    max-width: 960px;
    padding: 0;
    margin: 0 auto;
}
#flow .inner ol {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}
#flow .inner ol li {
    width: 33%;
    height: auto;
    flex-shrink: 0;
    padding: 0 1em;
}

#flow .inner ol li img {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}
#flow .inner ol li h3 {
    font-size: 16px;
    line-height: 1.5;
    font-weight: bold;
    text-align: center;
    margin-top: 1em;
}
#flow .inner ol li p {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 1em;
}

/*-----画面幅768px以下-----*/
@media only screen and (max-width:768px) {
    #flow .inner ol li {
        padding: 0 0.3em;
    }
}
/*-----画面幅375px以下-----*/
@media only screen and (max-width:375px) {}
/*-----画面幅320px以下-----*/
@media only screen and (max-width:320px) {}
/*===================================
message
------------------------------------*/
#message {
    width: 100%;
    height: auto;
    background-image: url("../img/message_bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 0 48px;
}
#message p {
    font-size: 14px;
    line-height: 1.7;
    font-weight: bold;
    text-align: center;
}
/*-----画面幅768px以下-----*/
@media only screen and (max-width:768px) {
    #message {
        background-image: url("../img/message_bg_sp.jpg");
        background-position: top;
        padding: 2em 1em;
    }
    #message p {
        text-align: left;
    }
}
/*-----画面幅375px以下-----*/
@media only screen and (max-width:375px) {}
/*-----画面幅320px以下-----*/
@media only screen and (max-width:320px) {}

/*===================================
picup
------------------------------------*/
/*-----共通設定-----*/
#picup {
    max-width: 800px;
    margin: 0 auto;
}
#picup div.box1wrap {
    display: flex;
    justify-content: space-around;
    margin: 70px 0;
}

#picup div.box1left {
    display: flex;
    justify-content: space-around;
}

#picup div.box1right {}

#picup div.box2wrap {
    margin: 60px 0;
    display: flex;
    justify-content: space-around;
}

#picup div.box2left {
    }

#picup div.box2right {
    width: 340px;

}

#picup div.box2wrap2 {
    width: 500px;
    margin: 0 auto;
}
#picup div.box2wrap3 p {
    margin: 50px 0;
    line-height: 1.5;
    padding-bottom: 50px;
    font-size: 19px;
}

div.box2wrap2 ul {
    display: flex;
    justify-content: left;
    font-size: 18px;
    font-weight: bold;
    border: #45AFAF solid 3px;
    padding: 3%;
    margin: 30px 0;
}

div.box2wrap2 li.box2wrap2number {
    width: 53px;

}
div.box2wrap2 li.box2wrap2text {
    letter-spacing: 0.125rem;
    padding-left: 1.5rem;
    padding-top: 15px;
}

#picup div.box2right p.box2rightcaption {
    text-align: left ;
    font-size: 19px ;
    line-height: 1.7;
}

#picup div.box1left ul li {
    display: flex;
    font-size: 18px;
    font-weight: bold;
}

#picup div.box3wrap {
    margin: 70px 0;
    display: flex;
    justify-content: space-around;
}

#picup div.box3left {}

#picup div.box3right {
    width: 340px;
}
#picup div.box3right p.box3rightcaption {
    text-align: left ;
    font-size: 19px ;
    line-height: 1.7;
}

/*-----画面幅768px以下-----*/
@media only screen and (max-width:768px) {

    #picup {
        width: 100%;
        margin: 3% 0;
    }
    #picup div.box1wrap {
     display: block;

        margin: 15px 0;
    }
    
    h2.pictitle{
       
    }
    #picup div.box1left {
        display: block;
   width: 95%;
   margin: 0 auto;
    }
    #picup div.box1left p{
   width: 85%;
   margin: 0 auto;
    }
    
    #picup div.box1right {
        margin: 10% 0;
    }
    
    #picup div.box2wrap {
        margin: 30px 0;
        display: block;
     
    }
    
    #picup div.box2left {
        margin: 10% 0;
        }
    
    #picup div.box2right {
        width: 95%;
        margin: 0 auto;
    
    }
    
    #picup div.box2wrap2 {
        width: 95%;
        margin: 0 auto;
    }
    #picup div.box2wrap3 p {
        margin: 50px 0;
        line-height: 1.5;
        padding-bottom: 0;
        font-size: 16px;
    }
    
    div.box2wrap2 ul {
    display: block;
        font-size: 18px;
        font-weight: bold;
        border: #45AFAF solid 3px;
        padding: 3%;
        margin: 20px 0;
    }
    
    div.box2wrap2 li.box2wrap2number {
        width: 30px;
    margin: 0 auto;
    }
    div.box2wrap2 li.box2wrap2text {
        letter-spacing: 0.125rem;
        font-size: 14px;
        text-align: center;
        line-height: 1;
        padding-left: 0;
    }
    
    #picup div.box2right p.box2rightcaption {
   font-size: 16px;
    }
    
    #picup div.box1left ul li {
     
        font-size: 18px;
        font-weight: bold;
    }
    
    #picup div.box3wrap {
       margin: 15px 0;
display: block;
    }
    
    #picup div.box3left {
    margin: 10% 0;   
    }
    
    #picup div.box3right {
        width: 95%;
    }
    #picup div.box3right p.box3rightcaption {
        font-size: 16px;
    }

}

/*-----画面幅375px以下-----*/
@media only screen and (max-width:375px) {}
/*-----画面幅320px以下-----*/
@media only screen and (max-width:320px) {}

/*===================================
section名
------------------------------------*/
/*-----共通設定-----*/
#recruit {
    background-color: #d3edfa;
    padding: 24px 0 48px;
}
#recruit .wrap {
    width: 100%;
    max-width: 960px;
    background-color: #fff;
    padding: 44px 50px;
    margin: 30px auto 0;
    border-radius: 10px 20px 30px 40px;
}
#recruit .inner dl {
    width: 100%;
    height: auto;
    margin: 0 auto;
}
#recruit .inner dl dt {
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #45AFAF;
    padding-bottom: 0.5em;
    margin-bottom: 0.5em;
    border-bottom: 1px solid #000;
}
#recruit .inner dl dd {
    font-size: 16px;
    letter-spacing: 0.7px;
    line-height: 1.7;
    margin-bottom: 2em;
}
#recruit .inner dl dd span {
    font-size: 18px;
    font-weight: bold;
}
#recruit .btn {
    width: 100%;
    height: auto;
    background-color: rgba(255,255,255,0.8);
    padding: 4% 0 22px;
    margin-top: -22px;
}
#recruit p {
    font-size: 22px;
    line-height: 1.3;
    font-weight: bold;
    text-align: center;
    margin: 0 0 22px;
}
#recruit .btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    width: 100%;
    padding: 0;
    margin: 0 auto;
}
#recruit .btn li {
    width: 100%;
    max-width: 381px;
    text-align: center;
    border-radius: 5px;
    background-color: #fff;
    margin-bottom: 20px;
}
#recruit .btn li:nth-child(1) {
    border: 2px #0071bc solid;
    color: #0071bc;
}
#recruit .btn li:nth-child(2) {
    border: 2px #55a464 solid;
    color: #55a464;
}

#recruit .btn li:nth-child(odd) {
    margin-right: 10px;
}
#recruit .btn li:nth-child(even) {
    margin-left: 10px;
}

#recruit .btn li a {
    position: relative;
    display: block;
    width: 100%;
    max-width: 381px;
    font-size: 22px;
    color: inherit;
    padding: 11px;
}

#recruit .btn li a::after {
    position: absolute;
    content: "＞";
    color: inherit;
    font-size: 26px;
    top: calc(50% - 13px);
    right: 5px;
}

/*-----画面幅768px以下-----*/
@media only screen and (max-width:768px) {
    #recruit .wrap {
        width: 98%;
        padding: 4%;
    }
    #recruit .inner dl dt {
        font-size: 20px;
    }
    #recruit p {
        font-size: 18px;
        text-align: left;
        margin: 0 auto;
    }
    #recruit .inner .btn {
        flex-direction: column;
    }
    #recruit .btn li:nth-child(odd) {
        margin-right: 0;
    }
    #recruit .btn li:nth-child(even) {
        margin-left: 0;
    }
    #recruit .btn li {
        max-width: 100%;
        margin: 0 auto 10px;
    }
    #recruit .btn li a {
        max-width: 100%;
        font-size: 16px;
    }

}

/*-----画面幅375px以下-----*/
@media only screen and (max-width:375px) {}
/*-----画面幅320px以下-----*/
@media only screen and (max-width:320px) {}
/*===================================
form
------------------------------------*/
/*==================================================
    Main　応募フォーム  for PC
==================================================*/

#oubo_form {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    background-color: #fff;
}

/*form start
------------------------------*/
#formID {
    padding: 20px 20px 60px;
}

#formID table {
    width: 100%;
    max-width: 860px;
    height: auto;
    margin: 0 auto 20px;
}

#formID td,
#formID th {
    padding: 20px;
    vertical-align: middle;
    white-space: nowrap;
    font-size: 18px;
    color: #000;
}

#formID th {
    width: 20%;
    font-weight: bold;
    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 .wrap_btn button {
    position: relative;
    display: block;
    font-size: 22px;
    line-height: 0;
    color: #0060bb;
    width: 100%;
    max-width: 381px;
    cursor: pointer;
    border-radius: 5px;
    background-color: transparent;
    padding: 21px;
    margin: 0 auto;
    border: 1px solid #0060bb;
}

#formID button::after {
    position: absolute;
    content: "＞";
    color: inherit;
    font-size: 28px;
    top: 50%;
    right: 5px;
}

#formID button:hover {
    opacity: 0.5;
    transition: all 0.2s ease-in-out;
}

#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;
}
/*-----画面幅767px以下-----*/
@media only screen and (max-width:767px) {
    #oubo_form {
        width: 95%;
    }
    #formID {
        padding: 4%;
    }
    #formID tr th {
        display: block;
        padding: 0;
        margin-bottom: 0.1em;
    }
    #formID td {
        display: block;
        margin: 0 auto 10px;
        padding: 0;
    }

}

/*-----画面幅375px以下-----*/
@media only screen and (max-width:375px) {}
/*-----画面幅320px以下-----*/
@media only screen and (max-width:320px) {}

/*===================================
location_list
------------------------------------*/
/*-----共通設定-----*/
#location_list {
    padding: 24px 0;
}
#location_list .inner {}

#location_list .inner ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    grid-column-gap: 10px;
    grid-row-gap: 20px;
    width: 100%;
    max-width: 940px;
    padding: 0 10px;
    margin: 60px auto;
}
#location_list .inner ul li {
    width: 100%;
    max-width: 32%;
    font-size: 16px;
    margin: 0 auto;
}
#location_list .inner ul li:first-child {
    width: 100%;
    max-width: 940px;
    font-size: 16px;
    margin: 0 auto;
}
#location_list .inner ul li:last-child {
    margin-left: 0;
}

#location_list .inner ul li .location_name {
    font-weight: bold;
    margin-bottom: 0.5em;
}
#location_list .inner ul li .location_name::before {
    position: relative;
    display: inline-block;
    content: "";
    background-image: url("../img/location_list_icon_img01.jpg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 18px;
    height: 24px;
    top: 3px;
    left: 0;
    margin-right: 4px;
}

#location_list .inner ul li .location_detail {
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 0.5em;
}
#location_list .inner ul li .wrap_map {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    /*比率をお好みで*/
}
#location_list .inner ul li:first-child .wrap_map {
    padding-top: 20%;
    /*比率をお好みで*/
}

.wrap_map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#location_list .inner ul li a {
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.3;
    color: #fff;
    text-align: center;
    background-color: #41bbae;
    border-radius: 4Px;
    padding: 1em 0;
    margin: 0.5em 0 0;
}
#location_list .inner ul li a::after {
    display: inline-block;
    position: relative;
    content: "";
    width: 8px;
    height: 12px;
    background-image: url("../img/location_list_btn_arrow01.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    top: 0;
    right: -13px;
}

/*-----画面幅768px以下-----*/
@media only screen and (max-width:768px) {
    #location_list .inner ul {
        margin: 20px auto;
    }

    #location_list .inner ul li {
        width: 100%;
        max-width: 48%;
        font-size: 16px;
        margin-bottom: 20px;
    }
    #location_list .inner ul li:first-child {
        width: inherit;
        max-width: inherit;
    }
    #location_list .inner ul li:first-child .wrap_map {
        padding-top: 30%;
        /*比率をお好みで*/
    }
}
/*-----画面幅520px以下-----*/
@media only screen and (max-width:520px) {
    #location_list .inner ul li {
        width: 100%;
        max-width: 100%;
    }
    #location_list .inner ul li:first-child .wrap_map {
        padding-top: 56.25%;
        /*比率をお好みで*/
    }
}
/*-----画面幅375px以下-----*/
@media only screen and (max-width:375px) {}
/*-----画面幅320px以下-----*/
@media only screen and (max-width:320px) {}

/*===================================
#privacypolicy
------------------------------------*/
/*-----共通設定-----*/
#privacypolicy .inner {
    width: 100%;
    max-width: 960px;
    padding: 1em;
    margin: 0 auto;
}
#privacypolicy h3 {
    font-size: 18px;
    margin-bottom: 20px;
}
#privacypolicy p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}
#privacypolicy a {
    display: block;
    font-size: 16px;
    color: black;
    font-weight: bold;
    margin-bottom: 20px;
}
#privacypolicy p.auther {
    text-align: right;
}

/*-----画面幅768px以下-----*/
@media only screen and (max-width:768px) {}
/*-----画面幅375px以下-----*/
@media only screen and (max-width:375px) {}
/*-----画面幅320px以下-----*/
@media only screen and (max-width:320px) {}

/*===================================
section名
------------------------------------*/
/*-----共通設定-----*/

/*-----画面幅768px以下-----*/
@media only screen and (max-width:768px) {}
/*-----画面幅375px以下-----*/
@media only screen and (max-width:375px) {}
/*-----画面幅320px以下-----*/
@media only screen and (max-width:320px) {}

/*===================================
thanksページ
------------------------------------*/
/*-----共通設定-----*/
.thanks {
    width: 100%;
    max-width: 960px;
    padding: 4%;
    margin: 0 auto;
    min-height: calc(100vh - 112px);
}
.thanks .txt {
    font-size: 16px;
    line-height: 1.7;
    font-weight: bold;
    text-align: center;
}
.thanks .contact {
    font-size: 16px;
    line-height: 1.7;
    font-weight: bold;
    text-align: center;
    padding: 1em;
    margin-top: 30px;
    border: 4px #E6E6E6 solid;
}

/*-----画面幅768px以下-----*/
@media only screen and (max-width:768px) {
    .thanks .txt {
        text-align: left;
    }

}
/*-----画面幅375px以下-----*/
@media only screen and (max-width:375px) {}
/*-----画面幅320px以下-----*/
@media only screen and (max-width:320px) {}

/*--------------------------------------------------
    Footer
--------------------------------------------------*/
/*-----共通設定-----*/

footer {
    background: rgb(0,77,177);
    background: linear-gradient(90deg, rgba(34,166,230 ,0.8) 0%, rgba(0,77,177,0.8) 100%);
}
footer .wrap {
    width: 100%;
    height: auto;
    background-color: rgba(255,255,255,0.8);
    padding: 44px 0 22px;
    margin-top: -22px;
    z-index: -1;
}
footer p {
    font-size: 22px;
    line-height: 1.3;
    font-weight: bold;
    text-align: center;
    margin-bottom: 22px;
}
footer .btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 830px;
    padding: 0 10px;
    margin: 0 auto;
}
footer .btn li {
    width: 100%;
    max-width: 381px;
    text-align: center;
    border-radius: 5px;
    background-color: #fff;
    margin: 0 auto 20px;
}
footer .btn li:nth-child(1) {
    border: 2px #0071bc solid;
    color: #0071bc;
}
footer .btn li:nth-child(2) {
    border: 2px #55a464 solid;
    color: #55a464;
}

footer .btn li a {
    position: relative;
    display: block;
    width: 100%;
    max-width: 381px;
    font-size: 22px;
    color: inherit;
    padding: 11px;
}
footer .btn li:nth-child(odd) {
    margin-right: 10px;
}
footer .btn li:nth-child(even) {
    margin-left: 10px;
}

footer .btn li a::after {
    position: absolute;
    content: "＞";
    color: inherit;
    font-size: 28px;
    top: calc(50% - 14px);
    right: 5px;
}

footer p.copyright {
    font-size: 12px;
    color: #fff;
    padding: 1em;
    text-align: center;
    margin: 0 auto;
}
/*-----画面幅768px以下-----*/
@media only screen and (max-width:768px) {
    footer p {
        font-size: 18px;
        padding: 0 0.5em;
    }
    footer .btn {
        flex-direction: column;
    }
    footer .btn li {
        max-width: 100%;
        margin: 0 auto 10px;
    }
    footer .btn li a {
        max-width: 100%;
        font-size: 16px;
    }
    footer .btn li:nth-child(odd) {
        margin-right: 0;
    }
    footer .btn li:nth-child(even) {
        margin-left: 0;
    }
}
/*-----画面幅375px以下-----*/
@media only screen and (max-width:375px) {}
/*-----画面幅320px以下-----*/
@media only screen and (max-width:320px) {}