@charset "UTF-8";

/* element
============================================================================= */
.el_footerCopyright {
    font-size: 10px;
    text-align: right;
    padding-right: 1em;
}

.el_errorTxt {
    color: #cc6262;
}

.el_ico_eye {
    background: url("../../img/ico_eye_on.svg") center center / contain no-repeat;
    z-index: 1;
    width: 14px;
    height: 14px;
    position: absolute;
    right: 0;
    top: 33%;
    margin: 0 10px;
}

.el_ico_eye.is_visible {
    background-image: url("../../img/ico_eye_off.svg");
}

.el_link {
    color: #ea5c6f;
    text-decoration: underline;
}

/***************************************
    heading
****************************************/
.el_lv1Heading {
    font-size: 30px;
    font-weight: bold;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e6e3dd;
}

.el_lv1Heading__center {
    text-align: center;
}

.el_lv2Heading {
    font-size: 22px;
    font-weight: bold;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e6e3dd;
}

.el_headingIco::before {
    content: url(../../img/ico_heading.svg);
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.3em;
}

/*.el_headingBoder {
    border-bottom: 1px solid #e6e3dd;
}*/

/***************************************
    form
****************************************/
.el_form_label {
    cursor: pointer;
    display: flex;
}

.el_form_label.el_form__middle {
    align-items: center;
}

/*インプット*/
.el_form_input[type="text"],
.el_form_input[type="password"] {
    font-size: 16px;
    display: block;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px 10px;
    background-color: #fff;
}

.el_form_input.el_form__plain {
    background-color: #f3f3f3;
    border: 1px solid transparent;
}

/*テキストエリア*/
.el_form_textarea {
    width: 100%;
    resize: vertical;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px 10px;
    background-color: #fff;
    height: calc(1.5em * 8);
}

/*ラジオボタン*/
.el_form_input[type="radio"] {
    position: absolute;
    display: none;
}

.el_form_radio {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 50vh;
    transition: ease-out 0.1s;
}

.el_form_radio::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.5em;
    height: 0.5em;
    background-color: #ea5c6f;
    border-radius: 50vh;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: ease-out 0.1s;
    opacity: 0;
}

.el_form_input[type="radio"]:checked+.el_form_label .el_form_radio {
    border-color: #ea5c6f;
}

.el_form_input[type="radio"]:checked+.el_form_label .el_form_radio::before {
    opacity: 1;
}

/*チェックボタン*/
.el_form_input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.el_form_checkbox {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 2px;
    transition: ease-out 0.1s;
}

.el_form_checkbox::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.75em;
    height: 0.375em;
    border-left: 0.125em solid white;
    border-bottom: 0.125em solid white;
    -webkit-transform: translate(-50%, -70%) rotate(-45deg);
    transform: translate(-50%, -70%) rotate(-45deg);
    transition: ease-out 0.1s;
    opacity: 0;
}

.el_form_input[type="checkbox"]:checked+.el_form_label .el_form_checkbox {
    background-color: #ea5c6f;
    border-color: #ea5c6f;
}

.el_form_input[type="checkbox"]:checked+.el_form_label .el_form_checkbox::before {
    opacity: 1;
}

/*セレクト*/
.el_form_select {
    position: relative;
    display: inline-flex;
    width: 100%;
}

.el_form_select select {
    cursor: pointer;
    width: 100%;
    padding: 5px 10px;
    padding-right: 40px;
    border: 1px solid #ddd;
    border-radius: 5px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
}

.el_form_select.el_form_select__plain>select {
    background-color: #f3f3f3;
    border: 1px solid transparent;
}

.el_form_select:after {
    content: "";
    pointer-events: none;
    position: absolute;
    top: 50%;
    right: 1em;
    width: 0.5em;
    height: 0.5em;
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
    border-right: 2px solid rgba(0, 0, 0, 0.2);
    -webkit-transform: translateY(-70%) rotate(45deg);
    transform: translateY(-70%) rotate(45deg);
    z-index: 3;
}

/*ファイル参照*/
.el_form_input[type="file"] {
    display: none;
}

/*セレクトチップ*/
.el_selectTip {
    padding: 0.5em 1em;
    border-radius: 50vh;
    background-color: #f3f3f3;
    border: 1px solid #e6e3dd;
    cursor: pointer;
}

/***************************************
    btn
****************************************/
.el_btn {
    display: inline-block;
    width: 110px;
    max-width: 100%;
    padding: 10px 5px;
    border: 2px solid #ea5c6f;
    background-color: #ea5c6f;
    border-radius: 50vh;
    color: #fff;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: 0.25s;
    cursor: pointer;
}

.el_btn:focus,
.el_btn:hover {
    opacity: 0.8;
}

.el_btn.el_btn__login {
    width: 100%;
    font-size: 16px;
    margin-bottom: 20px;
}

.el_btn.el_btn__wt {
    background-color: #fff;
    border: 1px solid #ea5c6f;
    color: #ea5c6f;
}

.el_btn.el_btn__gy {
    background-color: whitesmoke;
    border: 1px solid transparent;
    color: #444444;
}

.el_btn.el_btn__small {
    width: 80px;
    padding: 5px;
}

.el_btn.el_btn__large {
    width: 310px;
}

.el_btn.el_btn__square {
    border-radius: 5px;
    width: auto;
}

.el_roundBtn {
    display: inline-block;
    width: 100%;
    max-width: 100%;
    padding: 10px;
    background-color: #fc4377;
    border: 2px solid transparent;
    border-radius: 50vh;
    color: #fff;
    font-size: 12px;
    text-align: center;
    text-decoration: none;
    transition: 0.25s;
}

.el_roundBtn:focus,
.el_roundBtn:hover {
    opacity: 0.8;
}

.el_plusBtn {
    font-size: 40px;
    color: #fff;
    text-align: center;
    background-color: #ea5c6f;
    width: 80px;
    height: 80px;
    border-radius: 50vh;
    padding: 0.2em;
    position: fixed;
    right: 50px;
    bottom: 80px;
    z-index: 99;
    -webkit-box-shadow: 0px 3px 5px 2px rgba(0, 0, 0, 0.6);
    box-shadow: 0px 3px 5px 2px rgba(0, 0, 0, 0.6);
    transition: 0.3s;
}

.el_plusBtn.is_hidden {
    visibility: hidden;
    opacity: 0;
}

/***************************************
    label
****************************************/
.el_label {
    display: inline-block;
    padding: 0.3em 2em;
    background-color: #ea5c6f;
    border-radius: 3px;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
}

.el_label.el_label__outline {
    background-color: white;
    border: 1px solid #ea5c6f;
    color: #ea5c6f;
}

/***************************************
    icon
****************************************/
.el_beforeIcon::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 22px;
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-right: 0.5em;
}

.el_beforeIcon.el_beforeIcon__keyword::before {
    background-image: url(../../img/ico_search.svg);
}

.el_beforeIcon.el_beforeIcon__category::before {
    background-image: url(../../img/ico_category.svg);
}

.el_beforeIcon.el_beforeIcon__time::before {
    background-image: url(../../img/ico_time.svg);
}

.el_beforeIcon.el_beforeIcon__member::before {
    background-image: url(../../img/ico_member.svg);
}

.el_beforeIcon.el_beforeIcon__participation::before {
    background-image: url(../../img/ico_participation.svg);
}

.el_beforeIcon.el_beforeIcon__mail::before {
    background-image: url(../../img/ico_mail.svg);
}

.el_beforeIcon.el_beforeIcon__comment::before {
    background-image: url(../../img/ico_comment.svg);
}

.el_beforeIcon.el_beforeIcon__edit::before {
    background-image: url(../../img/ico_edit.svg);
}

.el_beforeIcon.el_beforeIcon__trash::before {
    background-image: url(../../img/ico_trash.svg);
}

/*
.el_editIcon {
    background: url(../../img/ico_edit.svg) center no-repeat;
    width: 100%;
    height: 18px;
}
.el_editIcon:hover ,
.el_editIcon:focus {
    background: url(../../img/ico_edit__pk.svg) center no-repeat;;
}
.el_trashIcon {
    background: url(../../img/ico_trash.svg) center no-repeat;
    width: 100%;
    height: 18px;
}
.el_trashIcon:hover ,
.el_trashIcon:focus {
    background: url(../../img/ico_trash__pk.svg) center no-repeat;;
}*/

/* コメントマーク */
/*.el_comment {
    text-align: right;
    margin-bottom: 10px;
}*/

@keyframes fadeleft {
    0% {
        opacity: 0;
        transform: translateX(150px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media screen and (min-width: 1080px) {
    .el_plusBtn {
        right: calc(50% - 480px);
    }
}

/*******************************************************************************
* sp
*******************************************************************************/
@media screen and (max-width: 767px) {
    .fadeLeft {
        display: block !important;
        background-color: #fff;
        animation: fadeleft 1s 1;
    }

    /*ハンバーガー*/
    .el_gNavBtn {
        position: relative;
        width: 56px;
        height: 56px;
        z-index: 99;
    }

    .el_gNavBtn span {
        display: inline-block;
        transition: all 0.4s;
        position: absolute;
        left: 16px;
        height: 2px;
        border-radius: 5px;
        background: #ea5c6f;
        width: 45%;
    }

    .el_gNavBtn span:nth-of-type(1) {
        top: 20px;
    }

    .el_gNavBtn span:nth-of-type(2) {
        top: 28px;
    }

    .el_gNavBtn span:nth-of-type(3) {
        top: 36px;
    }

    /*    .el_gNavBtn span:nth-of-type(3)::after {
            content: "Menu";
            position: absolute;
            top: 5px;
            left: -2px;
            color: #ea5c6f;
            font-size: 0.6rem;
            text-transform: uppercase;
        }*/
    .el_gNavBtn.is_active span:nth-of-type(1) {
        top: 14px;
        left: 20px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }

    .el_gNavBtn.is_active span:nth-of-type(2) {
        opacity: 0;
    }

    .el_gNavBtn.is_active span:nth-of-type(3) {
        top: 26px;
        left: 20px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }

    .el_gNavBtn.is_active span:nth-of-type(3)::after {
        /*content: "Close";*/
        transform: translateY(0) rotate(-45deg);
        top: 5px;
        left: 5px;
    }

    .el_plusBtn {
        right: 20px;
        bottom: 50px;
    }

    /***************************************
        heading
    ****************************************/
    .el_lv1Heading {
        font-size: 20px;
    }

    .el_lv2Heading {
        font-size: 18px;
    }
}