@charset "UTF-8";

img {
    max-width: 100%;
    height: auto;
    /*高さ自動*/
    vertical-align: top;
}

a {
    display: block;
    text-decoration-line: none;
}

a:hover {
    opacity: 80%;
}

li {
    list-style: none;
}

/* 全体の設定
–––––––––––––––––––––––––––––––––––––––––––––––––– */
html {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    font-size: 62.5%;
}

body {
    color: #333;
    font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
    background: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.1em;
    margin: 0;
    padding: 0;
}

@media (max-width : 960px) {
    body {
        font-size: 14px;
    }
}

/* グリッド
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
    margin: 0 auto;
    max-width: 980px;
    width: 80%;
    /* padding: 0 2.0rem; */
    position: relative;
}

@media (max-width : 960px) {
    .container {
        margin: 0 auto;
        max-width: 780px;
        width: 90%;
        /* padding: 0 2.0rem; */
        position: relative;
    }
}

/*-- PC版表示CSS 960px  --*/
.pc-960 {
    display: block;
}

.sp-960 {
    display: none;
}


/*-- スマホ版表示CSS  --*/
@media screen and (max-width: 960px) {
    .pc-960 {
        display: none;
    }

    .sp-960 {
        display: block;
    }
}

/*-- PC版表示CSS 520px  --*/
.pc {
    display: block;
}

.sp {
    display: none;
}


/*-- スマホ版表示CSS  --*/
@media screen and (max-width: 520px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }
}

/* ----------SPが1カラムで制作の場合 ここから */
.row {
    display: flex;
    flex-direction: row;
    padding: 0;
    flex-wrap: wrap;
    width: 100%;
}

.col {
    /* padding-right: 5rem; */
    /* margin-bottom: 5rem; */
}

.row .col.span-1 {
    flex: 0 0 8.33333333333%;
    max-width: 8.33333333333%;
}

.row .col.span-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
}

.row .col.span-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.row .col.span-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
}

.row .col.span-5 {
    flex: 0 0 41.7777777777%;
    max-width: 41.7777777777%;
}

.row .col.span-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.row .col.span-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
}

.row .col.span-8 {
    flex: 0 0 66.7777777777%;
    max-width: 66.7777777777%;
}

.row .col.span-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.row .col.span-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
}

.row .col.span-11 {
    flex: 0 0 91.6666666666%;
    max-width: 91.6666666666%;
}

.row .col.span-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

/* 960px以下の表示 */
@media (max-width : 960px) {

    /* ブロックを縦に表示 */
    .row {
        display: flex;
        flex-direction: row;
        padding: 0;
        width: 100%;
        flex-wrap: wrap;
    }

    .col {
        display: block;
        flex: 1 1 auto;
        margin-left: 0;
        max-width: 100%;
        width: 100%;
        /* padding-right: 5rem; */
        /* margin-bottom: 3rem; */

    }

    .row .col.span-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }

}

/* 520px以下の表示 */
@media (max-width : 520px) {

    /* ブロックを縦に表示 */
    .row {
        display: flex;
        flex-direction: column;
        padding: 0;
        width: 100%;
        flex-wrap: wrap;
    }

    .col {
        display: block;
        flex: 1 1 auto;
        margin-left: 0;
        max-width: 100%;
        width: 100%;
        /* padding-right: 3rem; */
        /* margin-bottom: 3rem; */
    }

}

/* ----------SPが1カラムで制作の場合 ここまで */

/* ヘッダー */
header {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header_logo {
    align-items: center;
    margin-left: 50px;
}

.header_contact {
    margin-right: 50px;
    display: flex;
    align-items: center;
}

.header_tel {
    text-align: right;
    margin-right: 20px;
    letter-spacing: 0.1em;
}

.header_tel a {
    color: #333;
    letter-spacing: 0.1em;
    font-size: 20px;
}

.header_mail a {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
}

.main {
    background-image: url(/img/top_1.jpg);
    height: 70vh;
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.main_logo {
    text-align: right;
    padding-top: 180px;
}

@media (max-width : 960px) {
    .header_logo {
        align-items: center;
        margin-left: 30px;
    }

    .header_logo img {
        width: 80%;

    }

    .header_tel {
        display: none;
    }

    .header_mail a {
        background-color: #333;
        color: #fff;
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width : 520px) {
    header {
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header_contact {
        margin-right: 20px;
        display: flex;
        align-items: center;
    }

    .header_mail a {
        background-color: #333;
        color: #fff;
        padding: 10px 10px;
        font-size: 12px;
    }
}

/* --------アバウト------------------ */
h1 {
    font-size: 40px;
    margin: 0px 0 100px 0;
    color: #333;
}

.about {
    margin: 100px auto;
}

.about_title {
    font-size: 35px;
    margin-bottom: 20px;
    font-weight: bold;
}

.about_title_1 {
    position: relative;
    margin-bottom: 2em;
    padding: 1.5rem 2rem;
    border-radius: 10px;
    background: #eee;
    opacity: 80%;
    font-size: 30px;
    margin-top: 50px;
    font-weight: 600;
    /* width: 50%; */
}

.about_title_1:before,
.about_title_1:after {
    position: absolute;
    content: '';
    border-radius: 50%;
    background: #eee;
}

.about_title_1:before {
    bottom: -15px;
    left: 30px;
    width: 30px;
    height: 30px;
}

.about_title_1:after {
    bottom: -30px;
    left: 50px;
    width: 15px;
    height: 15px;
}

@media (max-width : 960px) {
    h1 {
        font-size: 30px;
        margin: 50px 0 50px 0;
    }

    .about {
        margin: 0px auto;
    }

    .about_title {
        font-size: 26px;
        margin-bottom: 20px;
        margin-top: 50px;
        font-weight: bold;
    }

    .about_title_1 {
        position: relative;
        margin-bottom: 2em;
        padding: 1.5rem 2rem;
        border-radius: 10px;
        background: #eee;
        opacity: 80%;
        font-size: 20px;
        margin-top: 50px;
        font-weight: 600;
        /* width: 50%; */
    }
}

@media (max-width : 520px) {
    .about_title {
        font-size: 20px;
        margin-bottom: 20px;
        margin-top: 50px;
        font-weight: bold;
    }

    .about_title_1 {
        position: relative;
        margin-bottom: 2em;
        padding: 1.5rem 2rem;
        border-radius: 10px;
        background: #eee;
        opacity: 80%;
        font-size: 16px;
        margin-top: 50px;
        font-weight: 600;
        /* width: 50%; */
    }
}

.link_section {
    margin-bottom: 100px;
}

.link_section a {
    color: #333;
}

.link_section ul {
    display: flex;
    justify-content: space-between;
    /* flex-direction: column; */
}

.link_section li a img {
    max-width: 280px;
}

@media (max-width : 960px) {

    .link_section {
        margin: 0 auto 30px;
        text-align: center;
    }

    .link_section ul {
        display: flex;
        justify-content: center;
        flex-direction: column;
        margin: 0 auto;
    }

    .link_section li a img {
        max-width: 300px;
        margin: 30px 0 0;
    }
}

@media (max-width : 520px) {}

/* 魅力 */
.sub_title {
    font-size: 30px;
    /* margin-bottom: 40px; */
    font-weight: bold;
}

.section_line {
    /* border: 1px solid #333; */
    box-shadow: 0 0 10px gray;
    margin-top: 50px;
    margin-bottom: 50px;
}

h3 {
    position: relative;
    display: inline-block;
    margin: 1rem 0 1rem -10px;
    padding: 1rem 3rem;
    color: #fff;
    border-radius: 0 100vh 100vh 0;
    background: #333;
    -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, .2);
    box-shadow: 3px 3px 5px rgba(0, 0, 0, .2);
    font-size: 20px;
    letter-spacing: 0.5em;
    margin-top: 20px;

}

h3:before {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 0;
    content: '';
    border-top: 10px solid #333;
    border-left: 10px solid transparent;
}

.section_line p {
    margin-top: 50px;
    padding: 0 50px 50px;
}

.work_section {
    margin: 50px 0;
}

@media (max-width : 960px) {
    .sub_title {
        font-size: 26px;
        /* margin-bottom: 40px; */
        padding-top: 20px;
        font-weight: bold;
    }

    .section_line {
        /* border: 1px solid #333; */
        box-shadow: 0 0 10px gray;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    h3 {
        position: relative;
        display: inline-block;
        margin: 1rem 0 1rem -10px;
        padding: 0.6rem 3rem;
        color: #fff;
        border-radius: 0 100vh 100vh 0;
        background: #333;
        -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, .2);
        box-shadow: 3px 3px 5px rgba(0, 0, 0, .2);
        font-size: 16px;
        letter-spacing: 0.5em;
        margin-top: 20px;
        line-height: 1.3;
    }

    .section_line p {
        margin-top: 10px;
        padding: 0 30px 30px;
    }

    .work_section {
        margin: 30px 0;
    }
}

@media (max-width : 520px) {
    .sub_title {
        font-size: 18px;
        padding-top: 30px;
        font-weight: bold;
        padding-bottom: 10px;
    }

    .section_line {
        /* border: 1px solid #333; */
        box-shadow: 0 0 10px gray;
        margin-top: 0px;
        margin-bottom: 30px;
    }
}

/* 募集要項 テーブル */
table {
    width: 100%;
}

table th {
    position: relative;
    text-align: left;
    width: 18%;
    font-weight: normal;
    font-weight: bold;
}

table td {
    text-align: left;
    width: 82%;
    padding-bottom: 30px;
}

.link {
    display: flex;
    flex-direction: column;
}

.link_a {
    color: #333;
    /* border-bottom: 1px solid #333; */
    text-decoration: underline;
}

@media (max-width : 960px) {}

@media (max-width : 520px) {
    table th {
        position: relative;
        text-align: left;
        width: 25%;
        font-weight: normal;
        font-weight: bold;
    }
    
    table td {
        text-align: left;
        width: 75%;
        padding-bottom: 30px;
    }
}

/* フォーム */
.end-message {
    display: none;
}

.false-message {
    display: none;
}

.form-wrapper {
    margin: 50px auto;
}

.form_title {
    font-size: 35px;
    font-weight: bold;
}

.box {
    margin: 30px 0 0 0;
}

.indispensable {
    color: #D9322E;
    margin-left: 10px;
    font-size: 12px;
}

.flex-box {
    display: flex;
    margin: 10px 0;
}

.flex-box input {
    margin-top: 5px;
    margin-right: 10px;
}

.flex-box p {
    font-size: 14px;
}

.form_box {
    display: flex;
    flex-direction: column;
}

.form_box input {
    border: 1px solid #333;
    max-width: 300px;
    padding: 5px;
    margin-top: 5px;
    border-radius: 5px;
}

.box textarea {
    border: 1px solid #333;
    width: 70%;
    padding: 5px;
    margin-top: 5px;
    border-radius: 5px;
}

.submit-btn {
    border: 1px solid #333;
    padding: 5px 50px;
    margin-top: 30px;
    border-radius: 5px;
    font-size: 23px;
    background-color: #333;
    color: #fff;
}

.submit-btn:hover {
    opacity: 0.8;
}

@media (max-width : 960px) {
    .form_title {
        font-size: 26px;
        font-weight: bold;
    }
}

@media (max-width : 520px) {
    .form_title {
        font-size: 18px;
        font-weight: bold;
    }

    .box textarea {
        border: 1px solid #333;
        width: 100%;
        padding: 5px;
        margin-top: 5px;
        border-radius: 5px;
    }

    .submit-btn {
        border: 1px solid #333;
        padding: 5px 50px;
        margin: 30px auto 0;
        border-radius: 5px;
        font-size: 18px;
        background-color: #333;
        color: #fff;
        display: block;
    }
}

/* フッター */
.footer {
    font-size: 12px;
    text-align: center;
    margin: 50px auto 30px;
}

/* thanks.html */
.thanks {
    font-size: 25px;
    text-align: center;
    margin: 50px auto;
}

.thanks a {
    font-size: 25px;
    text-align: center;
    margin: 50px auto;
    color: #333;
    text-decoration: underline;
}

.thanks a:hover {
    opacity: 0.8;
}

@media (max-width : 960px) {}

@media (max-width : 520px) {
    .thanks {
        font-size: 16px;
        text-align: center;
        margin: 50px auto;
        line-height: 2;
        padding: 0 20px;
    }
    
    .thanks a {
        font-size: 18px;
        text-align: center;
        margin: 50px auto;
        color: #333;
        text-decoration: underline;
    }
}