@charset "UTF-8";


/* 全体 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;

}

img {
    width: 100%;
    vertical-align: bottom;
    -webkit-user-drag: none;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

li {
    list-style: none;
}

body {
    font-family: "Noto Sans JP";
    overflow: hidden;

}

:root {
    --main: #1D61B7;
    --station: #68A0FF;
    --caravan: #F6B04A;
    --sub: #DD0716;
    --sub_2: #D0EEFF;
    --bgcolor: #EAF4FE;
}

p {
    color: #333;
    font-family: "Noto Sans JP";
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
}


/* safari対策 */
dd a {
    color: #fff;

}

.phone_area02 a {
    color: #fff;
}

.address a {
    color: #222;
}

.sub_ttl_box {
    text-align: center;
    padding: 2rem 0;
}

.sub_title {
    color: #333;
    font-family: "Noto Sans JP";
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
    position: relative;
    display: inline-block;
}



.sub_title:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    /*線の上下位置*/
    display: inline-block;
    width: 64px;
    /*線の長さ*/
    height: 1px;
    /*線の太さ*/
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    /*位置調整*/
    background: var(--main);
    /*線の色*/
}

.sub_s:before {
    background: var(--station);
}

.br_sp {
    display: none;
}


.main_title {
    color: #222;
    font-family: "Noto Sans JP";
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}


.main_title::before {
    content: "";
    display: inline-block;
    width: 2rem;
    height: 2.25rem;
    background: url(img/r_ttl.svg) no-repeat;
    background-size: contain;
    margin-right: 1px;
    position: relative;
    top: 6px;
}


.main_title_area {
    text-align: center;
}

.title_area {
    text-align: center;
    padding: 3rem 0;
    position: relative;
}


.under_line {
    background-image: linear-gradient(transparent 50%, #FFF100 60%);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.bold {
    font-weight: 700;
}

.red {
    color: red;
}


/* ＝＝ヘッダー＝＝ */

header {
    position: absolute;
    z-index: 3;
    width: 100%;
}

.h_logo {
    width: 13.625rem;
}

.h_phone_icon {
    width: 2rem;
}


.h_mail_icon {
    width: 2rem;
}

.h_contact_btn a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(90deg, #1D61B7 0%, #FFF100 50%, #1D61B7 100%);
    background-size: 200% 100%;
    color: #FFF;
    text-align: center;
    font-family: "Noto Serif JP";
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    padding: 0.5rem 1.75rem;
    transition: 400ms;
}

.h_contact_btn a:hover {
    background-position: 100% 0;
}




.h_main_frame {
    display: flex;
    /* gap: 0 10px; */
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0 0 1rem;
}

.g-nav strong {
    color: var(--main);
    font-family: "Noto Sans JP";
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}



.h_phone_area {
    display: flex;
    align-items: center;
    gap: 0.5rem;

}

.h_phone_area span {
    color: var(--main);
    font-family: "Noto Sans JP";
    font-size: 1.25rem;
    font-weight: 600;
}






/* ヘッダーのハンバーガメニュー */
#g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    /*ナビの高さ*/
    /* background: #333; */
    background-image: url(img/hum_bg.jpg);
    background-size: cover;
    background-position: 50%;
    opacity: 1;
    /*動き*/
    transition: all 0.9s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
    right: 0;
}

.h_menu {
    position: absolute;
    z-index: 999;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    border-bottom: 1px solid var(--main);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.25rem;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

/*リストのレイアウト設定*/

#g-nav li {
    list-style: none;
    text-align: center;
    width: 30%;
}

#g-nav li a {
    text-decoration: none;
    padding: 1rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: normal;
    transition: 700ms;
    transition: background 1000ms;
    position: relative;
}

.g-nav a::after {
    position: absolute;
    bottom: -3px;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: var(--main);
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 500ms;
}

.g-nav a:hover::after {
    transform: scale(1, 1);
}






/*========= ボタンのためのCSS ===============*/
.openbtn {
    position: absolute;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 16px;
    right: 16px;
    cursor: pointer;
    width: 64px;
    height: 64px;
}

/*×に変化*/
.openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    right: 14px;
    height: 1px;
    border-radius: 2px;
    background-color: var(--main);
    width: 70%;
}

.openbtn span:nth-of-type(1) {
    top: 16px;
}

.openbtn span:nth-of-type(2) {
    top: 32px;
    width: 40%;
}

.openbtn span:nth-of-type(3) {
    top: 48px;
    width: 20%;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/* ==============ハンバーガメニューここまで================ */

/* ＝＝ページヘッダー＝＝ */

.page_header {
    position: relative;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    text-align: center;
}

.page_title_area {
    display: inline-block;
    padding: 6rem 0 2rem;
    position: relative;
}

.recruit_h_img {
    width: 16.75rem;
}

.recruit {
    width: 13rem;
    position: absolute;
    top: 1rem;
    left: -6rem;

}

/* ＝＝ナビアエリア＝＝ */

.nav_area {
    padding: 2rem 0;
}

.nav_p {
    padding: 2rem 0;
}

.nav_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 2rem 0;
}


.nav_list li {
    display: inline-block;
    overflow: hidden;
    width: 22%;
}

.nav_list li a {
    display: block;
    transition-duration: .5s;
}

.nav_list li a:hover {
    transform: scale(1.2);
}

/* ＝＝求人メインセクション＝＝ */


.sec_icon {
    width: 3rem;
}

.sec_ttl_area {
    text-align: center;
    position: relative;
}

.sec_img {
    width: 13rem;
    position: absolute;
    top: 0;
    left: 3%;
}

.s_i_rev {
    left: auto;
    right: 3%;
}

.sec_ttl {
    color: #333;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
    padding: 0.75rem 0 1.5rem;
}

.sec_copy {
    color: #333;
    font-family: "Noto Sans JP";
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
}


.r_p_m_box {
    width: 60%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    color: #333;
    padding: 3rem 0;
}

.r_p_m_box dt {
    width: 25%;
    border-bottom: 3px solid var(--main);
    display: flex;
    align-items: center;
    justify-content: center;
}

.r_p_m_box dd {
    width: 75%;
    border-bottom: 1px solid #999;
    /* display: flex;
    align-items: center; */
}

.r_p_m_box dt,
.r_p_m_box dd {
    padding: 1.5rem 1rem;
}


/* ＝常勤型＝ */

.fulltime_area {
    background: var(--bgcolor);
    padding: 5rem 0;
    clip-path: polygon(0 0, 100% 3%, 100% 97%, 0 100%);
}

/* モデル月収 */
.salary-ex_box {
    background-image: url(img/salary-ex_img.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

}

.salary_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 2rem 0;
}

.salary_list li {
    width: 22%;
}

.one-word {
    text-align: center;
    padding: 2rem 0;
}

.one-word_p {
    display: inline-block;
    color: var(--main);
    font-family: "Noto Sans JP";
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5rem;
    padding: 2rem 0;
}

.ex_mark {
    width: 2rem;
    padding: 1rem 0;
}

/* よくある質問 */

.qa_container {
    width: 70%;
    margin: auto;
    padding: 3rem 0;
}

.q_strong {
    color: var(--main);
    text-align: center;
    font-family: Paprika;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 400;
}

.a_strong {
    color: var(--sub);
    text-align: center;
    font-family: Paprika;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 400;
}

.qa_box dl {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}



.qa_box dt {
    width: 7%;
}

.qa_box dd {
    width: 93%;
    padding-left: 0.25rem;
}

.q_ttl {
    color: #222;
    font-size: 1.25rem;
    font-weight: 400;
}

.a_ttl {
    color: #222;
    font-size: 1rem;
    font-weight: 400;
}

.qa_box li {
    padding: 0.25rem;
    border-bottom: 1px solid #999;
}

.qa_box li:first-child {
    border-top: 1px solid #999;
}

.link_area {
    text-align: center;
}

.link_area strong {
    color: #333;
    font-family: "Noto Sans JP";
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
}

/* ＝定置型＝ */
.s-ex {
    background-image: url(img/sidejob_ex.jpg);
}

.sidejob_area {
    padding: 0 0 5rem;
}

.sidejob_ex {
    width: 70%;
    margin: 0 auto;
    padding: 2rem 0;
}

.r_p_m_s dt {
    border-bottom: 3px solid var(--station);
}

.o-w_p_s {
    color: var(--station);
}

.q_s {
    color: var(--station);
}

/* ＝キャラバン隊＝ */

.sub_c:before {
    background: var(--caravan);
}

.r_p_m_c dt {
    border-bottom: 3px solid var(--caravan);
}

.daily_box {
    background-image: url(img/daily_bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


.clock_icon {
    width: 2.5rem;
}

.daily_container {
    width: 40%;
    margin: auto;
}

.daily_img_right {
    width: 20%;
    display: flex;
    flex-direction: column;
    gap: 15rem;

}

.daily_img_right img {

    box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
}


.flow_ttl {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    left: -1.35rem;

}

.flow_ttl strong {
    color: #222;
    font-family: "Noto Sans JP";
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
}

.flow_ttl span {
    color: #222;
    font-family: "Noto Sans JP";
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
}

.daily_container p {
    padding: 0.5rem 2rem;
}

.daily_container li {
    border-left: 4px solid #fff;
    padding-bottom: 2.5rem;
}

.daily_container li:last-child {
    border-left: none;
    padding-left: 4px;
}

.c_p {
    color: var(--caravan);
}

.q_c_s {
    color: var(--caravan);
}

/* ＝比較表＝ */

.comparison_area {
    background: #fff;
}

.span_sp {
    display: none;
}

.comparison_box {
    width: 80%;
    margin: auto;
    padding: 3rem 0;
}


.comparison_table {
    border-collapse: collapse;
    width: 100%;
}

.f_color {
    color: var(--main);
}

.s_color {
    color: var(--station);
}

.c_color {
    color: var(--caravan);
}

.comparison_table th {
    width: 30%;
    padding: 1rem 0;
    border: 1px solid #999;
    background-color: var(--bgcolor);

}

.comparison_table td {
    text-align: center;
    padding: 1rem 0;
    border: 1px solid #999;
    background-color: #fff;
}

.comparison_table td:first-child,
.comparison_table th:first-child {
    width: 10%;
    white-space: nowrap;
}



.comparison_text {
    color: #222;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2rem;
    padding: 3rem 0;
}



/* こんな基準で */

.flow_area {
    background-image: url(img/flow_bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.flow_img {
    width: 1000px;
    margin: auto;
    padding: 0 0 3rem;
}

/* 代表挨拶 */

.message_area {
    background: var(--bgcolor);
    padding: 2rem 0;
}

.message_box {
    width: 65%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 0;
}

.message_text {
    width: 63%;
}

.message_img {
    width: 30%;
    text-align: center;
}

.message_title {
    color: #333;
    font-family: "Noto Serif JP";
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.message_title:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    display: inline-block;
    width: 64px;
    height: 1px;
    background: var(--main);
}

.message_p {
    color: #333;
    font-family: "Noto Serif JP";
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    padding: 2rem 0 0.75rem;
}

.fontup {
    font-size: 1.5rem;
}

.fontup2 {
    font-size: 1.25rem;
}

.message_strong {
    color: var(--main);
    font-family: "Noto Serif JP";
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
}

.name_area {
    text-align: right;
    padding: 2rem 0;
}

.name_area strong {
    color: #222;
    font-family: "Noto Sans JP";
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;

}

.takuyaseto {
    width: 10rem;
}

/* お問い合わせフォーム */

.contact_area {
    background-color: #fff;
    padding-bottom: 3rem;
}




.contact_text {
    text-align: center;
}

.contact_text h3 {
    color: #666;
    font-family: "Noto Sans JP";
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 600;
    padding: 2rem 0;
}

.contact_text h4 {
    color: #222;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 500;
    padding: 0 0 1rem;
}

.c_text {
    color: #222;
    font-family: "Noto Sans JP";
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.tel_area {
    padding: 2rem 0;
}

.tel_area a {
    background-color: var(--sub_2);
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 0.25rem 1rem;
    border-radius: 0.5rem;
}

.contact_phone_icon {
    width: 4rem;
}

.tel_box {
    display: flex;
    align-items: center;

}


.tel_box span {
    color: var(--main);
    font-family: "Open Sans";
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.b_hour {
    color: var(--main);
}

/* フォーム */

.form_box {
    width: 45%;
    margin: auto;
}

form {
    margin: 32px 0;
}

.form-box {
    width: 100%;
}

.form-box dl {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}

.form-box dt,
.form-box dd {
    padding-bottom: 30px;
}

.form-box dt {
    font-weight: 400;
    text-align: left;
}

.form-box dt.message {
    padding-top: 10px;
    vertical-align: top;
}

.form-box dd {
    width: 63.993%;
}

.required {
    display: inline-block;
}

.required::after {
    content: "※";
    display: inline-block;
    padding-left: 1em;
    color: #DA1725;
}

.form-style {
    width: 400px;
    padding: 8px;
    box-shadow: 0 0 0 1px #ccc inset;
    border-radius: 4px;
}

.form-style:focus {
    outline: 0;
    box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}

.btn-wrapper {
    margin-top: 30px;
    text-align: center;
}

.btn-submit {
    display: inline-block;
    min-width: 220px;
    padding: 10px;
    background-image: linear-gradient(to right, #333 0%, #333 50%, #FFFFFF 50%, #FFFFFF 100%);
    background-size: 200%;
    background-position-x: 0;
    border: 1px solid #333;
    border-radius: 5px;
    color: #FFFFFF;
    text-align: center;
    transition: 0.3s ease-in;
}

.btn-submit:hover {
    background-position-x: 100%;
    color: #333;
}

/* フッター */

footer {
    background: var(--main);
    text-align: center;
}

.footer_p {
    color: #FFF;
    font-family: "Noto Serif JP";
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    padding: 3rem 0;
}

@media screen and (max-width: 796px) {

    /* 全体 */
    .br_sp {
        display: block;
    }


    .sub_title {
        font-size: 1rem;
    }



    .main_title {
        font-size: 1rem;
    }

    .main_title::before {
        height: 1.75rem;
        margin-right: 0;
    }


    p {
        font-size: 0.825rem;
        line-height: 1.25rem;
    }



    /* ヘッダー */
    .h_logo {
        width: 10rem;
    }

    .h_main_frame {
        padding: 0.5rem 0 0 0;
    }

    .recruit_h_img {
        width: 10rem;
    }

    .recruit {
        width: 7rem;
        top: 3rem;
        left: -3rem;
    }

    /* ハンバーガーメニュー */
    .h_menu {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        top: 20%;
        padding-bottom: 0.5rem;
    }

    #g-nav ul {
        width: 100%;
        flex-wrap: nowrap;
        flex-direction: column;
        gap: 0.25rem;
        top: 60%;
    }

    #g-nav li {
        width: 100%;
    }

    #g-nav li a {
        padding: 0.25rem;
    }

    .g-nav strong {
        font-size: 0.825rem;
    }

    .openbtn {
        top: 8px;
        right: 0;
    }

    .g-nav_area {
        display: flex;
        flex-direction: column;
    }

    /* ナビエリア */

    .nav_list {
        width: 60%;
        margin: auto;
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem 0;
    }

    .nav_list li {
        width: 100%;
    }

    .nav_list li:first-child {
        position: relative;
        left: 2rem;
    }

    .nav_list li:last-child {
        position: relative;
        right: 2rem;
    }

    /* 求人セクション */

    .sec_img {
        width: 6rem;
        top: -2rem;
    }

    .sec_ttl {
        font-size: 1.5rem;
    }

    .sec_copy {
        font-size: 1rem;
    }

    .fulltime_area {
        clip-path: polygon(0 0, 100% 1%, 100% 99%, 0 100%);
    }

    .r_p_m_box {
        width: 98%;
    }

    .r_p_m_box dt,
    .r_p_m_box dd {
        font-size: 0.75rem;
        padding: 1rem 0.25rem;
    }

    /* モデル月収 */

    .salary_list {
        width: 80%;
        margin: auto;
        flex-wrap: nowrap;
        flex-direction: column;
        gap: 1.5rem;
    }

    .salary_list li {
        width: 100%;
    }

    .one-word_p {
        font-size: 1rem;
    }

    /* よくある質問 */

    .qa_container {
        width: 98%;
    }

    .q_strong {
        font-size: 1.5rem;
    }

    .a_strong {
        font-size: 1.5rem;
    }

    .q_ttl {
        font-size: 1rem;
    }

    .a_ttl {
        font-size: 0.75rem;
    }

    .sidejob_ex {
        width: 98%;
    }


    .daily_img_left {
        width: 100%;
    }

    .daily_container {
        width: 90%;
    }

    .daily_img_right {
        width: 100%;
        gap: 2rem;
    }

    .flow_ttl strong {
        font-size: 1.25rem;
    }

    .flow_ttl span {
        font-size: 1rem;
    }

    .daily_container p {
        padding: 0.5rem 0 0.5rem 2rem;
    }

    /* 比較表 */
    .span_sp {
        display: block;
        color: red;
    }

    .comparison_box {
        width: 98%;
        overflow-x: auto;
        display: block;
    }

    .comparison_table th,
    .comparison_table td {
        white-space: nowrap;
        padding: 1rem;
    }

    th,
    td {
        font-size: 0.825rem;
    }

    .flow_img {
        width: 100%;
    }

    /* 代表あいさつ */

    .message_box {
        width: 98%;
        flex-direction: column-reverse;
    }

    .message_text {
        width: 100%;
    }


    .message_img {
        width: 85%;
    }

    .message_title {
        font-size: 1rem;
    }

    .message_p {
        font-size: 0.825rem;
    }

    .fontup {
        font-size: 1.25rem;
    }

    .fontup2 {
        font-size: 1rem;
    }

    .message_strong {
        font-size: 1rem;
    }

    .name_area strong {
        font-size: 1rem;
    }

    /* お問い合わせ */
    .contact_text h3 {
        font-size: 1.5rem;
    }

    .c_text {
        font-size: 1rem;
    }

    .contact_phone_icon {
        width: 2.5rem;
    }

    .tel_box span {
        font-size: 2rem;
    }

    .b_hour {
        font-size: 0.75rem;
    }

    /* フォーム */
    footer {
        background: #fff;
    }

    .form_box {
        width: 98%;
    }

    .form-wrapper {
        max-width: 97%;
        margin: 0 auto;
        padding: 16px;
    }

    .form-wrapper p {
        font-size: 0.9rem;
    }

    .form-box dl {
        display: flex;
        flex-direction: column;
    }

    .form-box dd {
        width: 100%;
    }

    .form-style {
        width: 100%;
    }

    footer {
        background-color: #1D61B7;
    }

}


/* ＝＝J-Query＝＝ */
/* ページトップデモ */
#page-top a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--main);
    border: 1px solid #fff;
    border-radius: 5px;
    width: 60px;
    height: 60px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.6rem;
    transition: all 0.3s;
}

#page-top a:hover {
    background: var(--caravan);
}

/*リンクを右下に固定*/
#page-top {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 101;
    /*はじめは非表示*/
    opacity: 0;
    transform: translateX(100px);
}

/*　左の動き　*/

#page-top.LeftMove {
    animation: LeftAnime 0.5s forwards;
}

@keyframes LeftAnime {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/*　右の動き　*/

#page-top.RightMove {
    animation: RightAnime 0.5s forwards;
}

@keyframes RightAnime {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 1;
        transform: translateX(100px);
    }
}

/* フェード */
.fade {
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: opacity 1s, visibility 1s, transform 1s;
}

/* フェードイン */
.is-fadein {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* ギャラリーフェードイン */

.nav_list li {
    opacity: 0;
    transition: all 1.5s;
}

.nav_list .active {
    opacity: 1;
}


/* コンタクトフォームの追加CSSをリセット */

body.page-id-342 #cf-tbl,
body.page-id-342 .wpcf7-form-control,
body.page-id-342 input.wpcf7-submit,
body.page-id-342 span.wpcf7-not-valid-tip,
body.page-id-342 .wpcf7-response-output {
    all: unset !important;
    display: revert !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
    font: inherit !important;
    color: inherit !important;
    box-shadow: none !important;
    transform: none !important;
}