@charset "UTF-8";
/* CSS Document */

/* ---------------------------------------- */
/* ---------------------------------------- */

/* 全体 */

/* ---------------------------------------- */
/* ---------------------------------------- */

*{
    box-sizing: border-box;
}

a {
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
}

body {
    background-repeat: repeat-y;
    background-size: contain;
    font-family: "Avenir", "Helvetica Neue", "Helvetica", "Arial",
        "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ",
        Meiryo, "ＭＳ Ｐゴシック", "MS PGothic";
}

p {
    line-height: 1.6;
}

p a {
    text-decoration: underline;
    color: black;
    font-weight: bold;
}

p a:hover {
    opacity: 0.3;
}

/* ----------------- */

/* ローディング機能 */

/* ----------------- */
#loading {
    height: 100%;
    width: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ローディングアイコン */
.fa-redo-alt,
.fa-seedling {
    font-size: 100px;
    color: #2e8b57;
}

/* ----------------- */

/* フォーム機能 */

/* ----------------- */
.form_title {
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-weight: 200%;
    padding: 30px 0;
}

form {
    width: 85%;
    max-width: 500px;
    margin: 30px auto;
    padding: 40px 0;
    text-align: center;
    background-color: rgb(238, 243, 235);

    /* border-radius */
    border-radius: 20px;

    /* box-shadow */
    box-shadow: 0px 8px 16px -2px rgba(10, 10, 10, 0.1),
        -3px 25px 23px -17px rgba(10, 10, 10, 0.02);
}
.form-group {
    padding: 20px 0 10px 0;
}
.form-group label {
    font-weight: bold;
}
.form-group input.form {
    padding: 8px;
    border-radius: 5px;
    border: 0.5px solid #ccc;
}
.help-block {
    display: block;
    width: 50%;
    text-align: center;
    margin: 10px auto 0 auto;
    font-size: 75%;
    color: red;
}

.decorated-btn {
    background-color: gold;
    font-size: 15px;
    border-radius: 5px;
    border: 0.5px solid goldenrod;
    border-bottom: solid 3px goldenrod;
    /* box-shadow: 3px 3px 3px gray; */
    transition: 0.3s;
    padding: 5px 30px;
}

.click-down:active {
    transform: translateY(5px);
    border-bottom: none;
}

.decorated-btn:hover {
    opacity: 0.5;
}

@media screen and (max-width: 767px) {
    .help-block {
        width: 100%;
        padding-left: 0;
        text-align: center;
        font-size: 70%;
    }
}

/* ----------------- */

/* header */

/* ----------------- */

header {
    width: 100%;
    background-color: white;
    z-index: 999;
}

.up_border {
    padding: 10px 0 10px 0;
    background-color: #2e8b57;
    color: aliceblue;
    text-align: center;
    font-size: 14px;
}
/*以下ログイン機能実装用（機能なしの場合は削除）*/
.up_border_login {
    display: flex;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
}
/*以下ログイン機能実装用（機能なしの場合はセレクタごと削除）*/
.up_border span a {
    color: white;
}

.down_border {
    padding: 10px 0 10px 0;
    background-color: #2e8b57;
    box-shadow: 2px 3px 6px 1px gray;
}

.header_wrap {
    width: 900px;
    height: 120px;
    margin: 0 auto 0 auto;
}

.logo {
    padding: 16px 0 16px 0;
    margin: 0 auto 0 auto;
    width: 250px;
}

.logo a:hover,
.contact a:hover,
.contact_bt a:hover,
.nav li a:hover {
    opacity: 0.5;
}

/* ----------------- */

/* ナビゲーション */

/* ----------------- */

.nav {
    width: 640px;
    margin: auto;
    text-align: center;
}

.nav li {
    display: inline-block;
    font-size: 18px;
    margin: 10px 0 20px 0;
    font-weight: bold;
    padding: 0 10px 0 10px;
    border-right: 1px solid #3e3a39;
    letter-spacing: 0;
}

.nav li a {
    color: #3e3a39;
}

.nav li:first-child {
    border-left: 1px solid #3e3a39;
}

.nav li a:hover {
    color: white;
    text-shadow: 2px 2px 3px #898f88;
}

/* ----------------- */

/* コンテンツ全体 */

/* ----------------- */

.container {
    width: 100%;
    padding: 20px;
    background-image: url("../../img/haikei.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgba(255, 255, 255, 0.5);
    background-blend-mode: lighten;
}

.login-container {
    box-sizing: border-box;
    width: 100%;
    height: calc(100vh - 120px);
    padding: 20px;
    background-image: url("../../img/haikei.jpg");
    background-repeat: repeat-y;
    background-size: cover;
    background-color: rgba(255, 255, 255, 0.5);
    background-blend-mode: lighten;
}

/* ----------------- */

/* コンテンツタイトル */

/* ----------------- */

h2 {
    text-align: center;
    color: #3e3a39;
    font-size: 24px;
    font-weight: bold;
    padding: 10px 20px 10px 20px;
    width: 300px;
    margin: auto;
    border-left: #3e3a39 3px double;
    border-right: #3e3a39 3px double;
    margin-bottom: 30px;
    clear: both;
}

h2 span {
    background: linear-gradient(transparent 60%, #f6c 60%);
}

/* ----------------- */

/* イントロダクション */

/* ----------------- */

.introduction {
    width: 60%;
    margin: auto;
    padding: 40px 0 80px 0;
    line-height: 2em;
    text-align: center;
}

/* ----------------- */

/* 動画 */

/* ----------------- */

.movie_wrap {
    width: 784px;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 30px;
    overflow: hidden;
}

.movie {
    width: 784px;
    padding: 0 0 30px 0;
    text-align: center;
    color: black;
    font-weight: bold;
}

.movie iframe {
    margin-bottom: 20px;
    box-sizing: border-box;
}

.movie.movie_seminar iframe {
    border: 1.5px solid black;
}

.movie span,
.movie p {
    line-height: 1.5em;
    margin-bottom: 50px;
}

/* ----------------- */

/* 募集要項・採用フロー */

/* ----------------- */

table {
    width: 800px;
    margin: auto;
    margin-bottom: 80px;
}

table .title {
    border-top: 1px solid #66cdaa;
    border-left: 1px solid #66cdaa;
    border-bottom: 1px solid white;
    text-align: center;
    background: #66cdaa;
    color: white;
    width: 20%;
    line-height: 1.4em;
}

table .titleend {
    border-top: 1px solid #66cdaa;
    border-left: 1px solid #66cdaa;
    border-bottom: 1px solid #66cdaa;
    text-align: center;
    background: #66cdaa;
    color: white;
    width: 20%;
}

table .contents {
    border: 1px solid #66cdaa;
    padding: 15px 0 15px 20px;
    line-height: 1.6em;
    background-color: white;
}

table .contents .job {
    background: linear-gradient(transparent 60%, #6f6 60%);
}

table .contents .arrow {
    padding: 0 0 0 30px;
}

/* ----------------- */

/* Photo Gallery */

/* ----------------- */

.swiper-wrapper {
    width: 60%;
    height: 250px;
    margin-bottom: 300px;
}

.swiper-slide {
    width: 60%;
    height: 100%;
    text-align: center;
    line-height: 250px;
}

.swiper-pagination {
    line-height: 750px;
}

/* ----------------- */

/* コピーライト */

/* ----------------- */

.copyright {
    padding: 20px 0 20px 0;
    margin-top: -170px;
    background-color: #2e8b57;
    color: aliceblue;
    text-align: center;
    font-size: 10px;
}

/* ----------------- */

/* フッターボタン */

/* ----------------- */

@keyframes contact_bt {
    0% {
        transform: translateY(0);
    }
    5% {
        transform: translateY(0);
    }
    10% {
        transform: translateY(0);
    }
    20% {
        transform: translateY(-10px);
    }
    25% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(0);
    }
}

.footer_bt {
    width: 100%;
    height: 120px;
    position: fixed;
    bottom: 0;
    z-index: 9990;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0px -1px 10px 1px #e3e3e3;
    text-align: center;
}

.footer_bt_mail {
    width: 400px;
    margin: 30px auto 0 auto;
    background-color: white;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.4em;
    border-radius: 1px solid #28e4f1;
    border-radius: 5px;
    animation: contact_bt 2s ease infinite;
}

.entry_arrow {
    position: relative;
    padding-left: 35px;
}

.entry_arrow::before {
    position: absolute;
    content: "";
    width: 25px;
    height: 25px;
    background: #697b91;
    border-radius: 50%;
    top: 20%;
    left: 0;
    margin-top: -5px;
}
.entry_arrow::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border: solid 6px transparent;
    border-left: solid 8px #fff;
    top: 50%;
    left: 9px;
    margin-top: -7px;
}

.footer_bt a {
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    padding: 20px 0 20px 0;
    display: block;
    color: black;
    font-weight: bold;
    background-color: #28e4f1;
    border-radius: 1px solid #28e4f1;
    border-radius: 5px;
}

.footer_bt a:hover {
    background-color: #3bbdc8;
}

/* ---------------------------------------- */
/* ---------------------------------------- */

/* レスポンシブ　767px以下 */

/* ---------------------------------------- */
/* ---------------------------------------- */

@media screen and (max-width: 767px) {
    p {
        width: 90%;
        margin: 0 auto 0 auto;
        line-height: 1.6;
        font-size: 80%;
    }

    /* ----------------- */

    /* header */

    /* ----------------- */

    .up_border {
        font-size: 12px;
    }

    .logo {
        padding: 12px 0 12px 0;
        margin: 0 auto 0 auto;
        width: 260px;
    }

    .logo img {
        width: 100%;
        height: auto;
    }

    /* ----------------- */

    /* ナビゲーション */

    /* ----------------- */

    .nav {
        width: 100%;
        margin: auto;
    }

    .nav li {
        display: inline-block;
        font-size: 2.6vw;
        margin: 10px 0 15px 0;
        font-weight: bold;
        padding: 0 8px 0 8px;
        border-right: 1px solid #3e3a39;
        letter-spacing: 0;
    }

    /* ----------------- */

    /* コンテンツ全体 */

    /* ----------------- */

    .container {
        width: 100%;
        padding: 0;
    }

    /* ----------------- */

    /* 導入文 */

    /* ----------------- */

    .introduction {
        width: 90%;
        margin: auto;
        padding: 30px 0 40px 0;
        line-height: 2em;
        text-align: center;
        font-size: 12px;
    }

    /* ----------------- */

    /* タイトル */

    /* ----------------- */

    h2 {
        font-size: 18px;
        padding: 5px 20px 5px 20px;
        width: 200px;
        margin-bottom: 20px;
    }

    /* ----------------- */

    /* 動画 */

    /* ----------------- */

    .movie_wrap {
        width: 100%;
        margin: auto;
        margin-top: 10px;
        margin-bottom: 20px;
        overflow: hidden;
    }

    .movie {
        width: 100%;
        height: auto;
        margin: auto;
        padding: 10px 0 0px 0;
    }

    .movie iframe {
        margin-bottom: 5px;
        width: 95%;
        height: auto;
    }

    .movie span,
    .movie p {
        font-size: 2.5vw;
        line-height: 1.5em;
    }

    /* ----------------- */

    /* 募集要項 */

    /* ----------------- */

    table {
        width: 95%;
        margin: auto;
        margin-bottom: 30px;
    }

    table tr .title {
        width: 20%;
        font-size: 11px;
    }

    table .titleend {
        border-bottom: 1px solid #66cdaa;
        width: 20%;
        font-size: 11px;
    }

    table .contents {
        border: 1px solid #66cdaa;
        padding: 15px 10px 15px 10px;
        line-height: 1.6em;
        background-color: white;
        font-size: 12px;
    }

    /* ----------------- */

    /* 採用フロー */

    /* ----------------- */

    .flow {
        margin-bottom: 30px;
    }

    /* ----------------- */

    /* ギャラリー */

    /* ----------------- */

    .swiper-container {
        width: 95%;
        height: auto;
    }

    .swiper-wrapper {
        margin-bottom: 150px;
    }

    .swiper-slide {
        width: 100%;
        height: auto;
        text-align: center;
        line-height: 250px;
    }

    .swiper-slide img {
        width: 100%;
        height: auto;
    }

    .swiper-pagination {
        line-height: 460px;
    }

    /* ----------------- */

    /* フッターボタン */

    /* ----------------- */

    .footer_bt {
        width: 100%;
        position: fixed;
        bottom: 0;
        left: 0;
        margin-left: 0;
    }

    .footer_bt_mail {
        width: 85%;
        animation: contact_bt 2s ease infinite;
    }
}
