@charset "utf-8";

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Common(PC.SP共通設定)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
* {
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    overflow-y: scroll;
}

body {
    /* ゴシック体系のフォント指定 */
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Noto Sans JP', sans-serif;
}

.serif {
    /* 明朝体系(セリフ体)のフォント指定 */
    font-family: 'Noto Sans JP', sans-serif;
}

main {
    display: block;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

a:-webkit-any-link {
    color: -webkit-link;
    cursor: pointer;
    text-decoration: none;
}

a:link {
    color: #fff;
}

a:visited {
    color: #fff;
}

a:active {
    color: #fff;
}

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

a:hover {
    opacity: 0.8;
}

ul,
ol {
    list-style: none;
}

/*----------デバイスで表示切り替え----------*/
@media only screen and (min-width:768px) {
    .pc_none {
        display: none;
    }
}

@media only screen and (max-width:767px) {
    .sp_none {
        display: none;
    }
}

/*----------フェード----------*/
.scroll-space {
    padding-top: 0;
    height: auto;
    overflow: hidden;
}

.fadein {
    opacity: 0;
    transform: translate(0, 0);
    transition: all 1.5s;
}

.fadein-bottom {
    transform: translate(0, 30px);
}

.scrollin {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

/*=======================================
header ここから
----------------------------------------*/
/*-----共通設定-----*/
header {
    width: 100%;
    padding: 1.5rem 0;
    margin: 0;
    background-color: #2e3192;
}

header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

header .inner h1 {
    /* width: 250px; */
    max-width: 250px;
    height: auto;
    margin-right: 1rem;
}

header .inner nav ul li {
    margin: 0px 15px;

}

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

    header .inner nav ul {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    header .inner nav ul li {
        display: block;
        max-width: 200px;
        text-align: center;
    }

    header .inner nav ul li a {
        font-size: 1.6rem;
        line-height: 1;
    }

}

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

    header .inner h1 a img {
        width: 50vw;
        max-width: 200px;
        height: auto;

    }

    header .inner {
        width: 95%;
        margin: 0 auto;
    }

    header .inner nav ul {
        display: none;
    }

    header .inner h1 {
        margin: 0 auto;
    }

}

/*---------------------------------------
header
=======================================*/


.btn_message {
    width: 100%;
    height: auto;
    background-color: #c9caca;
    padding: 3rem 0;
}

.btn_message .wrap {
    width: 100%;
    max-width: 960px;
    height: auto;
    background-color: #c9caca;
    padding: 0 3rem;
    margin: 0 auto;
}

.btn_message .wrap h3 {
    font-size: 2.6rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
}

.btn_message .wrap p {
    font-size: 1.4rem;
    line-height: 1.7;
    text-align: justify;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.btn_message .wrap ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    align-self: flex-start;
    width: 100%;
    max-width: 960px;
    margin: 2rem auto;
}

.btn_message .wrap ul li {
    width: 48%;
    height: auto;
}

.btn_message .wrap ul li a {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    font-size: 2rem;
    text-align: center;
    background-color: #898989;
    padding: 1rem;
}

.btn_message .wrap ul li a::after {
    position: absolute;
    display: inline-block;
    content: "";
    background-image: url(../img/btn_arrow01.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
    right: 10px;
}

/*-----画面幅767px以下-----*/
@media only screen and (max-width:767px) {
    .btn_message {
        padding: 4% 0 2%;
    }

    .btn_message .wrap {
        padding: 0 2%;
    }

    .btn_message .wrap ul {
        flex-direction: column;
    }

    .btn_message .wrap ul li {
        width: 100%;
        margin: 0 auto 2%;
    }

    .btn_message .wrap h3 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

}

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

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

/*=======================================
#fv
----------------------------------------*/
/*-----共通設定-----*/

#fv {
    width: 100%;
    height: auto;


    background-position: center;
    background-repeat: no-repeat;
    margin: 0 auto;
}

#fv .inner {
    max-width: 1920px;


    margin: 0 auto;
}

#fv .inner img {
    width: 100%;
    height: auto;
}

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

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

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

/*---------------------------------------
#fv
=======================================*/




/*=======================================
#aboutus
----------------------------------------*/
/*-----共通設定-----*/

#aboutus {
    margin-top: 50px;

}

#aboutus div.content1 h3 {
    font-size: 3.45rem;
    color: #fff;
    font-weight: bold;
    background-color: #2e3192;
    padding: 1rem;
    max-width: 681px;

    letter-spacing: 0.2rem;
    margin: 2px 0;
}

#aboutus div.content2 h3 {
    font-size: 3.45rem;
    color: #fff;
    font-weight: bold;
    background-color: #2e3192;
    padding: 1rem;
    max-width: 681px;

    letter-spacing: 0.2rem;
    margin: 2px 0;
}





#aboutus div.content1 {
    display: flex;
    justify-content: space-between;
    max-width: 1240px;
    margin: 120px auto;
}

#aboutus div.content2 {
    display: flex;
    justify-content: space-between;
    max-width: 1240px;
    margin: 120px auto;
}

div.content1right {
    max-width: 430px;
    margin: 0 auto;
    padding-left: 2%;
}

div.content1right h4 {
    font-size: 2rem;
    font-weight: bold;
    margin: 5% 0;
}

div.content2left {
    max-width: 430px;
    margin: 0 auto;
    padding-right: 2%;
}

div.content2left h4 {
    font-size: 2rem;
    font-weight: bold;
    margin: 5% 0;
}

div.content1right p {
    font-size: 1.5rem;
    line-height: 3.5rem;
    margin: 3% 0;
}

div.content2left p {
    font-size: 1.5rem;
    line-height: 3.5rem;
    margin: 3% 0;

}


p.content1photo img {
    max-width: 681px;

}

p.content2photo img {
    max-width: 681px;

}

@media only screen and (min-width:768px) {}

/*-----画面幅767px以下-----*/
@media only screen and (max-width:767px) {
    #aboutus {
        margin: 5% 0;
    }

    #aboutus div.content1 {
        display: block;
        margin: 8% 0;
    }

    #aboutus div.content2 {
        display: flex;
        flex-direction: column-reverse;
        margin: 8% 0;
    }

    div.content1right {
        max-width: 95%;
        margin: 0 auto;
    }

    div.content1right h4 {
        font-size: 2rem;
        font-weight: bold;
        margin: 5% 0;
    }

    div.content2left {
        max-width: 95%;
        margin: 0 auto;
    }

    div.content2left h4 {
        font-size: 2rem;
        font-weight: bold;
        margin: 5% 0;
        line-height: 1.5;
    }

    div.content1right p {
        font-size: 1.5rem;
        line-height: 3.5rem;
        margin: 3% 0;
    }

    div.content2left p {
        font-size: 1.5rem;
        line-height: 3.5rem;
        margin: 3% 0;
    }


    p.content1photo img {
        width: 95%;
        margin: 3% auto;
    }

    p.content2photo img {
        width: 95%;
        margin: 3% auto;
    }

    #aboutus div.content1 h3 {
        font-size: 2.45rem;
        width: 100%;
        text-align: center;
    }

    #aboutus div.content2 h3 {
        font-size: 2.45rem;
        width: 100%;
        text-align: center;
    }

}

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

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

/*---------------------------------------
#aboutus
=======================================*/



/*=======================================
#corporatepolicy
----------------------------------------*/
#corporatepolicy {}

#corporatepolicy div.content1 h3 {
    font-size: 3.45rem;
    color: #fff;
    font-weight: bold;
    background-color: #2e3192;
    padding: 1rem;
    max-width: 681px;

    letter-spacing: 0.2rem;
    margin: 2px 0;
}

#corporatepolicy div.content2 h3 {
    font-size: 3.45rem;
    color: #fff;
    font-weight: bold;
    background-color: #2e3192;
    padding: 1rem;
    max-width: 681px;

    letter-spacing: 0.2rem;
    margin: 2px 0;
}


#corporatepolicy div.content1 {
    display: flex;
    justify-content: space-between;
    max-width: 1240px;
    margin: 120px auto;
}

#corporatepolicy div.content2 {
    display: flex;
    justify-content: space-between;
    max-width: 1240px;
    margin: 120px auto;
}


/*-----画面幅767px以下-----*/
@media only screen and (max-width:767px) {
    #corporatepolicy {
        margin: 11% 0;
    }


    #corporatepolicy div.content1 {
        display: block;
        max-width: 100%;
        margin: 0px auto;
    }

    #corporatepolicy div.content2 {
        display: flex;
        flex-direction: column-reverse;
        max-width: 100%;
        margin: 10% auto;
    }

    #corporatepolicy div.content1 h3 {
        font-size: 2.45rem;
        width: 100%;
        text-align: center;
    }

    #corporatepolicy div.content2 h3 {
        font-size: 2.45rem;
        width: 100%;
        text-align: center;
    }

    #corporatepolicy div.content1right {
        max-width: 95%;
        margin: 0% auto;
    }

    #corporatepolicy div.content1right {
        max-width: 95%;
        margin: 0% auto;
    }
}

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

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

/*=======================================
#corporatepolicy
----------------------------------------*/



/*=======================================
#recruit
----------------------------------------*/
/*-----共通設定-----*/

#recruit {
    max-width: 1200px;
    margin: 0 auto;
}



#recruit p {
    margin: 45px 0;
}

#recruit p.recruitsp {
    display: none;
}

#recruit p.recruitcaption {
    font-size: 2.5rem;
    color: #2e3192;
    text-align: center;
    font-weight: 600;
}

#recruit ul {
    margin: 0 auto;
    max-width: 1060px;
    display: flex;
    justify-content: space-around;
}

#recruit ul li {}

#recruit div.button {
    margin: 5% auto;
    width: 460px;


}

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

    #recruit {

        padding: 5% 0;
    }

    #recruit p.recruitpc {
        display: none;
    }

    #recruit p.recruitsp {
        display: block;
        width: 98%;
        margin: 5% auto;
    }

    #recruit p.recruitcaption {
        font-size: 2.5rem;
        color: #3FA9F5;
        text-align: center;
    }

    #recruit ul {
        display: block;
        width: 90%;
        margin: 3% auto;
    }

    #recruit ul li {
        margin: 5% 0;
    }

    #recruit div.button {
        margin: 11% auto;
        width: 95%;


    }

}

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

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

/*---------------------------------------
#
=======================================*/






/*=======================================
#effort
----------------------------------------*/
/*-----共通設定-----*/

#effort {
    max-width: 1240px;
    margin: 0 auto;
    padding: 3% 0;
}


#effort div.effort1 {
    display: flex;
    justify-content: space-around;
    padding: 80px 0;

}

#effort div.effort1photo {
    max-width: 324px;
    padding-right: 5%;

}

#effort div.effort2photo {
    max-width: 324px;
    padding-right: 5%;

}

#effort div.effort2 {
    display: flex;
    justify-content: space-around;
    padding: 50px 0;
}

#effort div.effort1right {
    width: 780px;
}



#effort div.effort1right h4 {
    font-weight: 600;
    color: #2e3192;
    font-size: 3.2rem;
    line-height: 1.5;
    margin: 0 0 15px 0;
    vertical-align: text-top;
}

#effort div.effort1right p {
    line-height: 3.5rem;
    font-size: 1.8rem;

}






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



    #effort div.effort1right h4 {
        text-align: center;
        font-size: 2.3rem;
        padding: 3% 0;
    }

    #effort div.effort1 {
        display: block;
        justify-content: space-around;
        padding: 5% 0;
        width: 100%;
    }

    #effort div.effort1photo {
        width: 95%;
        margin: 0 auto;
    }

    #effort div.effort2photo {
        width: 95%;
        margin: 0 auto;
    }

    #effort div.effort2 {
        display: block;
        justify-content: space-around;
        padding: 5% 0;
        width: 100%;
    }

    #effort div.effort1right {
        width: 95%;
        margin: 0 auto;
    }
}

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

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

/*---------------------------------------
#
=======================================*/


/*=======================================
追加コンテンツ
----------------------------------------*/
/*-----共通設定-----*/

#entry1 div.entryinner {
    max-width: 960px;
    margin: 0 auto;
    padding: 3% 0;
}

#entry1 div.entryinner p {
    font-size: 1.5rem;
    padding: 5% 0;

}



#entry1 div.entryinner ul {
    max-width: 1000px;
    display: flex;
    justify-content: space-around;
    margin: 0 auto;
}



#entry1 li {
    width: 370px;
}

/*-----画面幅767px以下-----*/
@media only screen and (max-width:767px) {
    #entry1 ul {
        text-align: center;
        margin: 0 auto;
    }

    #entry1 div.entryinner ul {
        display: block;
        width: 95%;
        margin: 0 auto;
    }

    #entry1 div.entryinner p {
        text-align: center;
    }

    #entry1 li {
        width: 95%;
    }

}

#entry1 li {
    padding: 5%;
    margin: 5% 0;
}

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

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

/*---------------------------------------
追加コンテンツ
=======================================*/



/*=======================================
追加コンテンツ
----------------------------------------*/
/*-----共通設定-----*/
div.titlebar {
    display: flex;
    justify-content: space-around;
    margin: 0 auto;
    width: 1240px;
    text-align: left;
}

div.titlebar h2 {
    font-weight: bold;
    color: #000;
    font-size: 4.3rem;
    width: 600px;
    line-height: 1;
}

div.titlebar p {
    border-bottom: #2e3192 2px solid;
    color: #2e3192;
    font-size: 2.2rem;
    width: 100%;
    line-height: 1.5;
    padding: 0;
    font-weight: 600;
}

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

    div.titlebar {
        display: block;
        width: 95%;
    }

    div.titlebar h2 {
        padding: 3% 0;
        font-size: 3.2rem;
    }






}

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

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

/*---------------------------------------
追加コンテンツ
=======================================*/

/*=======================================
#contents_mailform
----------------------------------------*/
#contents_mailform {
    padding: 2.6rem 0;
}

#contents_mailform p {
    font-size: 1.5rem;
    padding: 5% 0;

}



#contents_mailform .inner {
    padding: 0 2.6rem;
}

#contents_mailform .mailforminner {
    max-width: 960px;
    margin: 0 auto;
}


#contents_mailform .inner h3 {
    font-size: 2.6rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1em;
}

#contents_mailform .inner form table {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 2.6em;
    border-collapse: collapse
}

#contents_mailform .inner form tr {
    font-size: 1.6rem;
    border-top: solid 1px #000;
    border-bottom: solid 1px #000;
}

#contents_mailform .inner form tr .label_required {
    font-size: 1.4rem;
    color: #fff;
    background-color: #000;
    border-radius: 3px;
    padding: 0.3rem 0.7rem;
    margin-left: 1.4rem;
}

#contents_mailform .inner form tr th {
    width: 28rem;
    padding: 1.6rem 0 1.6rem 1.6rem;
    vertical-align: middle;
}

#contents_mailform .inner form tr td {
    padding: 1.6rem;
    vertical-align: middle;
}

#contents_mailform .inner form tr input,
#contents_mailform .inner form tr textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px #000 solid;
    vertical-align: middle;
}

#contents_mailform .inner form tr select {
    width: 100%;
    margin: 0;
    padding: 0.5rem;
    background: url(../img/select_ya.png) right 10px center no-repeat #fff;
    font-size: 1.6rem;
    border: 1px #000 solid;
}

#contents_mailform .inner form tr .select {}

#contents_mailform .inner form tr .privacy {
    margin-bottom: 1.6rem;
}

/*性別ほか labelタグ右側に余白*/
#contents_mailform .inner form tr td label {
    font-size: 1.6rem;
    margin-right: 1rem;
    vertical-align: middle;
}

#contents_mailform form .wrap_button {
    padding: 2.6rem;
    text-align: center;
}

#contents_mailform form button {
    width: 100%;
    max-width: 460px;
    height: auto;
    font-size: 2.6rem;
    padding: 2.6rem 0;
    color: #fff;

    text-align: center;
    margin: 0 auto;
}

#contents_mailform .inner form button:hover {
    opacity: 0.5;
    transition: all 0.2s ease-in-out;
}

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

    #contents_mailform .inner form tr th {
        display: block;
        padding-bottom: 0;
    }

    #contents_mailform .inner form tr td {
        display: block;
    }

    #contents_mailform {
        padding: 0;
    }

    #contents_mailform form .wrap_button {
        padding: 0;
    }

    #contents_mailform p {
        text-align: center;

    }
}

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

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

/*---------------------------------------
#contents_mailform
=======================================*/


/*=======================================
footer
----------------------------------------*/
footer {
    width: 100%;

    padding: 2.4rem 0 0;
}

footer .inner {
    width: 100%;
    padding: 2.4rem 3rem;
}

/*--ボタン-電話番号-メールフォーム--*/
footer .inner .menu_contact {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
    align-self: center;
    max-width: 960px;
    padding: 1.6rem 0;
    margin: 0 auto;
}

footer .inner .menu_contact li {}

footer .inner .menu_contact li a {
    color: #fff;
    font-weight: bold;
}

footer .inner .menu_contact li.link_tel {
    position: relative;
    font-size: 4rem;
}

footer .inner .menu_contact li.link_tel a::before {
    position: absolute;
    display: inline-block;
    content: "";
    background-image: url("../img/footer_icon_tel.png");
    background-size: contain;
    width: 28px;
    height: 28px;
    top: 0.8rem;
    left: -0.6rem;
    margin-left: -2.8rem;
}

footer .inner .menu_contact li.link_mail {
    position: relative;
    font-size: 4rem;
    font-size: 2.6rem;
}

footer .inner .menu_contact li.link_mail a::before {
    position: absolute;
    display: inline-block;
    content: "";
    background-image: url("../img/footer_icon_mail.png");
    background-size: contain;
    width: 28px;
    height: 28px;
    top: 0;
    left: -0.6rem;
    margin-left: -2.8rem;
}

/*--ロゴ-社名-住所--*/
footer .inner .wrap_company_info {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    flex-wrap: no-wrap;
    max-width: 960px;
    padding: 1.6rem 0;
    margin: 0 auto;
}

footer .inner .wrap_company_info img {
    width: 200px;
    max-width: 100%;
    height: auto;
    margin: 0 3rem 0 0;
}

footer .inner .wrap_company_info .name {
    font-size: 3rem;
    margin-right: 3rem;
}

footer .inner .wrap_company_info .name .address {
    display: block;
    font-size: 1.6rem;
    line-height: 1.5;
}

/*--コピーライト--*/
footer .copyright {
    font-size: 12px;
    color: #fff;
    background-color: #2e3192;
    text-align: center;
    padding: 2.4rem 0;
}

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

    footer .inner {
        padding: 0 2%;
    }

    /*--ボタン-電話番号-メールフォーム--*/
    footer .inner .menu_contact li {
        margin-bottom: 1.6rem;
    }

    footer .inner .menu_contact li a {
        font-size: 1.8rem;
    }

    footer .inner .menu_contact {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        align-self: center;
        padding: 0;
        margin: 0 auto;
    }

    footer .inner .menu_contact li.link_tel a::before {
        top: 1.2rem;
        left: -0.6rem;
    }

    /*--ロゴ-社名-住所--*/
    footer .inner .wrap_company_info {
        display: flex;
        flex-direction: column;
        align-items: center;
        align-self: center;
        padding: 0 0 1.6rem;
        margin: 0 auto;
    }

    footer .inner .wrap_company_info img {
        width: 200px;
        max-width: 100%;
        height: auto;
        margin: 0 auto 1.6rem;
    }

    footer .inner .wrap_company_info .name {
        margin: 0 0 1.6rem 0;
    }

}

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

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


/*---------------------------------------
footer
=======================================*/
/*========================================
#btn_fixed
---------------------------------------*/
#btn_fixed {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 18px 0 9px;
    z-index: 9999;
    box-sizing: border-box;
}

#btn_fixed .inner {
    width: 100%;
    max-width: 960px;
    height: auto;
    margin: 0 auto;
}

#btn_fixed ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    width: 100%;
    padding: 0 3rem;
    margin: 0 auto;
}

#btn_fixed ul li {
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin-bottom: 10px;
    border-radius: 5px;
    background-color: #3EC12E;
}

#btn_fixed ul li a {
    position: relative;
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    padding: 0.7em;
    margin: 0 auto;
    border-radius: 5px;
}

#btn_fixed ul li:nth-child(1) {
    background-color: #3EC12E;
}

#btn_fixed ul li:nth-child(2) {
    background-color: #1472f5;
}

#btn_fixed ul li a::after {
    position: absolute;
    content: "";
    width: 8px;
    height: 12px;
    background-image: url(../img/btn_fixed_arrow01.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    top: calc(50% - 6px);
    right: 8px;
}

#btn_fixed ul li:nth-child(odd) {
    margin-right: 10px;
}

#btn_fixed ul li:nth-child(even) {
    margin-left: 10px;
}

/*-----画面幅768px以下-----*/
@media only screen and (max-width:768px) {
    #btn_fixed ul {
        flex-direction: column;
    }

    #btn_fixed ul li {
        max-width: 100%;
        margin: 0 auto 10px;
    }

    #btn_fixed ul li:nth-child(odd) {
        margin-right: 0;
    }

    #btn_fixed ul li:nth-child(even) {
        margin-left: 0;
    }
}

/*---------------------------------------
#btn_fixed
=======================================*/


/* キラキラ */

.anim-box.kiran {
    opacity: 1;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.anim-box.kiran::before {
    background-color: #fff;
    content: "";
    display: block;
    position: absolute;
    top: -100px;
    left: 0;
    width: 30px;
    height: 100%;
    opacity: 0;
    transition: cubic-bezier(0.32, 0, 0.67, 0);
}

.anim-box.kiran:hover::before {
    animation: kiran 0.5s linear;
}

@keyframes kiran {
    0% {
        transform: scale(2) rotate(45deg);
        opacity: 0;
    }

    20% {
        transform: scale(20) rotate(45deg);
        opacity: 0.6;
    }

    40% {
        transform: scale(30) rotate(45deg);
        opacity: 0.4;
    }

    80% {
        transform: scale(45) rotate(45deg);
        opacity: 0.2;
    }

    100% {
        transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}

.anim-box.poyoyon2.is-animated {
    animation: poyoyon2 1s ease-in-out forwards;
}

@keyframes poyoyon2 {
    0% {
        transform: scale(1.0, 1.0) translate(0, 0);
    }

    15% {
        transform: scale(0.98, 0.9) translate(0, 5px);
    }

    30% {
        transform: scale(1.02, 1.0) translate(0, 8px);
    }

    50% {
        transform: scale(0.98, 1.05) translate(0, -8px);
    }

    70% {
        transform: scale(1.0, 0.9) translate(0, 5px);
    }

    100% {
        transform: scale(1.0, 1.0) translate(0, 0);
    }

    0%,
    100% {
        opacity: 1;
    }
}

.anim-box.fadein.is-animated {
    animation: fadeIn 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}