@charset "utf-8";
/* ===================================================================
CSS information
 file name  :  nurse_action.css
 style info :  スタイル指定
=================================================================== */

#link01,
#link02,
#link03,
#link04,
#link05,
#link06,
#link07,
#link08,
#link09,
#link10,
#link11,
#link12,
#link13,
#link14,
#link15 {
    padding: 50px 0 0 0;
    margin: -50px 0 0 0;
}

/* nurse_action
----------------------------------------------------------------------------- */
.nurse_action {}

.nurse_action .main_wrapper {}

.nurse_action .main_wrapper .box {
    font-size: 18px;
    text-align: left;
    background: #E5EAFE;
    padding: 2em;
    min-height: 1053px;
}

.nurse_action .main_wrapper .box>h2 {
    width: 100%;
    color: #0173e7;
    font-size: 38px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    margin-bottom: 30px;
}

.nurse_action .main_wrapper .box h3 {
    width: 100%;
    color: #d251a1;
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    margin-top: 14px;
}

.nurse_action .main_wrapper .box>ul li {
    width: 100%;
    padding: 10px 20px;
    background: #fff;
    border-radius: 30px;
    color: #d251a1;
    font-size: 26px;
    font-weight: bold;
    margin: 0 0 30px;
}

.nurse_action .main_wrapper .box>ul li span {
    color: #252525;
    font-size: 20px;
    font-weight: bold;
}

/*tabの形状*/
.tab {
    display: flex;
    flex-wrap: wrap;
}

.tab li a {
    display: block;
    background: #ddd;
    margin: 0 2px;
    padding: 10px 20px;
}

/*liにactiveクラスがついた時の形状*/
.tab li.active a {
    background: #fff;
}


/*エリアの表示非表示と形状*/
.area {
    display: none;
    /*はじめは非表示*/
    opacity: 0;
    /*透過0*/
    background: #fff;
    padding: 50px 20px;
}

/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
    display: block;
    /*表示*/
    animation-name: displayAnime;
    /*ふわっと表示させるためのアニメーション*/
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes displayAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.nurse_action .main_wrapper .box h4 {
    width: 100%;
    color: #0173e7;
    font-size: 24px;
    font-weight: bold;
    text-align: left;
    margin-top: 14px;
    background: #fff;
    padding: 10px 25px;
    margin: 30px auto 20px;
    position: relative;
    line-height: 1;
}

.nurse_action .main_wrapper .box h4 span {
    font-size: 14px;
    display: block;
    margin-top: 15px;
}

.nurse_action .main_wrapper .box h4:before {
    position: absolute;
    content: "";
    top: 10px;
    left: 10px;
    width: 5px;
    height: 24px;
    background: #0173e7;
}

.nurse_action .main_wrapper .box p {
    text-indent: 1em;
}

.nurse_action .main_wrapper .box ul {
    margin: 30px 0 0;
    text-align: center;
}

.nurse_action .main_wrapper .box ul li img {
    width: 70%;
}

.nurse_action .main_wrapper .box ul.img_ul li p {
    font-size: 12px;
    margin-top: 5px;
}

.nurse_action .main_wrapper .box ul.img_ul {
    width: 30%;
    margin: 15px auto;
    float: right;
}

.nurse_action .main_wrapper .box ul.img_ul li {
    width: 100%;
    padding-left: 10%;
    margin-bottom: 15px;
}

.nurse_action .main_wrapper .box ul.img_ul li img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.nurse_action .main_wrapper .box ul.img_ul li p {
    font-size: 12px;
    margin-top: 5px;
}

.nurse_action .main_wrapper .box .contents .contents_wrapper {}

.nurse_action .main_wrapper .box .contents .contents_flex {
    /*display: flex;*/
}

.nurse_action .main_wrapper .box .contents .contents_flex .contents_text {
    width: 100%;
}

.nurse_action .main_wrapper .box .tab_wrapper h3 {
    color: #0173e7;
    border: solid #0173e7;
    border-width: 2px 0 1px;
}

/* BreakPoint 959px
=============================================================*/
@media only screen and (max-width: 959px) {}

/* BreakPoint 639px
=============================================================*/
@media only screen and (max-width: 639px) {

    /* nurse_information
----------------------------------------------------------------------------- */
    .nurse_action {}

    .nurse_action .main_wrapper .box {
        font-size: 18px;
        text-align: left;
        background: #E5EAFE;
        padding: 2em 1em;
        min-height: auto;
    }

    .nurse_action .main_wrapper .box ul.img_ul {
        float: none;
        width: 100%;
    }

    .nurse_action .main_wrapper .box ul.img_ul li {
        padding: 0;
    }
}
