@charset "utf-8";

@import url("base.css");
@import url("common.css");
/*====================================

    ----------------------------------
        Color
    ----------------------------------

    Main     : #16BAF0
      Accent   : #FFEB30
      Accent   : #285CB4

    ----------------------------------
          font
    ----------------------------------

      M PLUS 1p

    ----------------------------------
          Structure
      ----------------------------------

      0. General
      1. Header
      2. Main
          2.1	セクション名
      3. Footer
      4. Page
          4.1 ページ名
      5. Contact Form
      6. Parts / Others

      ----------------------------------
          Change Log
      ----------------------------------

    -2019/1/1	 ID,Class名


====================================*/

/*====================================

    0. General

====================================*/
.pc-style {
    display: block;
}

.sp-style {
    display: none;
}

.sec-title {
    color: #285CB4;
    /*font-size: 2.8rem;*/
    margin-bottom: 5rem;
    text-align: center;
}

.btn_wrap {
    background-color: #FFEB30;
    border-radius: 50px;
    display: block;
    padding: 0;
    margin: 10% auto 0;
    text-align: center;
    width: 200px;
    vertical-align: middle;
}

.btn_wrap:hover {
    background-color: #FFF070;
}

.btn_wrap a {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 600;
    padding: .5rem;
}

.btn_wrap a::after {
    content: "\f061";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: inline-block;
    padding-left: 2rem;
}

.btn_wrap a:hover {
    color: rgba(70, 70, 70, 0.8);
}

.marker-line {
    background: linear-gradient(transparent 70%, #FFEB30 50%);
}

/* ~960px */
@media screen and (max-width: 60em) {
    .pc-style {
        display: none;
    }

    .sp-style {
        display: block;
    }
}

/* ~576px */
@media screen and (max-width: 36em) {
    .sec-title {
        font-size: 2.4rem;
    }

    .btn_wrap a {
        font-size: 1.4rem;
    }

    .sec-title {
        font-size: 2.4rem;
        margin-bottom: 3rem;
    }
}


/*====================================

    1. Header

====================================*/
.menuBar {
    /*-moz-box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.2);
    -ms-box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.2);*/
}

.navbar-brand img {
    max-width: 270px;
}

.menuBar .nav-item {
    font-size: 1.4rem;
    font-weight: 600;
    padding: 1rem 2rem;
    text-align: center;
}

.menuBar .nav-item a {
    color: inherit;
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.menuBar .nav-item a:hover {
    color: #16BAF0;
}

.menuBar .nav-item a::after {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #16BAF0;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .5s;
}

.menuBar .nav-item a:hover::after {
    transform: scale(1, 1);
}

.fixed-top {
    background-color: #fff;
    -moz-box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.2);
    -ms-box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.2);
}


/* ~960px */
@media screen and (max-width: 60em) {
    .menuBar .container > h1 {
        margin-left: 1rem;
        line-height: normal;
    }

    .menuBar .navbar {
        padding: .5rem 0;
    }

    .menuBar .navbar-brand img {
        width: 120px;
    }

    .menuBar .navbar-toggler:not(:disabled):not(.disabled) {
        background-color: #FFEB30;
        border-radius: 100%;
        margin-right: 1rem;
    }

    .menuBar .navbar-collapse {
        background-color: #FFEB30;
    }

    .menuBar .navbar-toggler {
        color: rgba(0, 0, 0, 0.5);
        border: none;
        padding: 0px;
        width: 40px;
        height: 40px;
        box-sizing: border-box;
        position: relative;
    }

    .menuBar .navbar-toggler-icon {
        background-image: none;
        /* 背景SVG無効化 */
        background-color: #464646;
        width: 25px;
        height: 2px;
        display: block;
        position: absolute;
        left: 20%;
        transition: ease .5s;
    }

    .menuBar .navbar-toggler-icon:nth-of-type(1) {
        top: 12px;
    }

    .menuBar .navbar-toggler-icon:nth-of-type(2) {
        top: 19px;
    }

    .menuBar .navbar-toggler-icon:nth-of-type(3) {
        top: 26px;
    }

    .menuBar .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-of-type(1) {
        top: 18px;
        transform: rotate(45deg);
    }

    .menuBar .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-of-type(2) {
        opacity: 0;
    }

    .menuBar .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-of-type(3) {
        top: 18px;
        transform: rotate(-45deg);
    }

    .menuBar .collapsing {
        -webkit-transition: height 0.45s ease;
        transition: height 0.45s ease;
    }

    .info-group_wrap {
        background: #285CB4;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        color: #fff;
        text-align: center;
        padding: 1rem;
    }

    .info-group_wrap .group-title {
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .info-group {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        line-height: normal;
        text-align: center;
        padding-left: 0;
    }

    .info-group li:first-child {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .info-group li:nth-child(2),
    .info-group li:last-child {
        flex: 0 0 25%;
        max-width: 25%;
        margin-left: .3rem;
    }
}


/*====================================

    2. Main

====================================*/
/* :::::: メインビジュアル :::::: */
.main-visual {
    background: url("../images/top/main-visual.jpg") no-repeat top center;
    background-size: 100% auto;
    margin-top: 60px;
    padding-top: 52.0833% !important;
    position: relative;
    /*height: 100vh;
    width: 100%;*/
}

.main-visual .main-visual_inner {
    content: "";
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 95%;
    margin-top: 30px;
}

.main-visual .main-visual_inner img {
    width: 100%;
    max-width: 95%;
    margin: 0 auto;

}

/*　~1280px（小型PC）　*/
@media screen and (max-width:80em) {
    .main-visual {
        height: 50vh;
        margin-top: 15px;
    }
}

/* ~576px */
@media screen and (max-width: 36em) {
    .main-visual {
        background: url("../images/top/main-visual_sp.jpg") no-repeat top center;
        background-size: 100% auto;
        height: 0;
        padding-top: 158.4% !important;
    }
}



/* :::::: サービス紹介 :::::: */
.service {
    background-color: #16BAF0;
}

.service .img-box {
    text-align: center;
    margin-bottom: 5%;
}

.service .img-box img {
    width: 580px;
}

.service .card {
    margin-bottom: 1rem;
    border: none;
    border-radius: 0;
}

.service .card-body {
    padding-top: 20px;
}

.service .card-img {
    display: block;
    margin: 0 auto;
    width: 280px;
    max-width: 100%;
}

.service .card-title {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    line-height: normal;
    margin-bottom: 0;
}

.service .card-footer {
    background-color: #fffdee;
    border: none;
    border-radius: 0;
    padding: 20px 15px;
}

.service .card hr {
    border-top: 1px #464646 dashed;
    margin: 0 auto;
    width: 80%;
    position: relative;
}

.service .card hr::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: #464646 transparent transparent transparent;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
}

/*~960px */
@media screen and (max-width: 60em) {
    .service .card-title {
        font-size: 24px;
    }
}


/* :::::: キャンペーンバナー :::::: */
section.campaign {
    background-color: #fff;
    padding: 0 0 5% !important;
}

.campaign-separate {
    background-color: #555;
    color: #fff;
    padding: 20px 10px;
    text-align: center;
    position: relative;
    margin-bottom: 50px;
}

.campaign-separate::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 25px 0 25px;
    border-color: #555 transparent transparent transparent;
    position: absolute;
    top: 100%;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
}

.campaign .context {
    font-size: 18px;
    padding: 30px 0;
}

.plan {
    background-color: #06aee8;
    padding: 50px 10px;
}

.plan img {
    margin: 0 auto;
}

/* ~576px */
@media screen and (max-width: 36em) {
    section.campaign {
        padding: 8% 0;
    }
    .campaign .context {
        font-size: 16px;
    }
}


/* :::::: easyが選ばれる3つの理由 :::::: */
.reason {
    background-color: #e6f7fd;
}

.reason .row {
    margin-left: 45px;
    margin-right: 15px;
}

.reason .item-wrap {
    background-color: #fff;
    border: 5px #e6e6e6 solid;
    padding: 30px 15px;
    padding-left: 40px;
    margin-bottom: 30px;
    position: relative;
}

.reason .item-wrap .reason_num_img {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
}

.reason .item-wrap .title {
    border-bottom: 1px #16baf0 solid;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.reason .sec-title span:first-of-type {
    font-size: 60px;
}

.reason .sec-title span:last-child {
    font-size: 40px;
}


/* ~768px（横） */
@media screen and (max-width: 48em) {
    .reason .row {
        margin-left: 45px;
    }
    .reason #accordion .row {
        margin-left: 15px;
    }
    .reason .sec-title {
        line-height: 1.2;
    }
    .reason .accordion_menu {
        border: #e6e6e6 3px solid;
        padding: 0;
        margin-bottom: 30px;
    }

    .reason .accordion_menu > li {
        background-color: #fff;
        position: relative;
    }

    .reason .accordion_menu > li .reason_num_img {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, -25%);
        width: 50px;
    }

    .reason .accordion_menu a {
        color: #666;
    }

    .reason .accordion_menu a[data-toggle="collapse"] {
        font-size: 16px;
        font-weight: bold;
        display: block;
        padding: 40px 15px 20px;
        padding-right: 40px;
        text-decoration: none;
        position: relative;
    }
    .reason .accordion_menu a[data-toggle="collapse"]::after {
        content: "";
        display: block;
        width: 15px;
        height: 15px;
        border-bottom: #285cb4 1px solid;
        border-right: #285cb4 1px solid;
        position: absolute;
        right: 15px;
        top: 15px;
        bottom: 0;
        margin: auto;
    }

    .reason .accordion_menu a[aria-expanded=false]::after {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        transition-duration: 0.3s;
    }

    .reason .accordion_menu a[aria-expanded=true]::after {
        -webkit-transform: rotate(225deg);
        -ms-transform: rotate(225deg);
        transform: rotate(225deg);
        transition-duration: 0.3s;
    }

    [id^="menu"] {
        background-color: #fff;
        padding: 0;
    }

    [id^="menu"] hr {
        border-top: 1px #16baf0 solid;
        margin: 0 auto;
        width: 90%
    }

    [id^="menu"] li {
        padding: 20px 15px;
    }
}

/* :::::: わたしのEASY物語 :::::: */
.voice {
    background-color: #FFEB30;
}

.voice .balloon01,
.voice .balloon02 {
    background-color: #fff;
    border: 3px solid #fff;
    border-radius: 10px;
    font-size: 18px;
    padding: 20px;
    margin-bottom: 50px;
    position: relative;
}
.voice .balloon01::before,
.voice .balloon01::after {
    content: "";
    position: absolute;
    left: 20%;
    width: 0;
    height: 0;
    margin: auto;
}
.voice .balloon01::before{
    bottom: -30px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
    border-width: 0 0 40px 45px;
    transform:rotate(-115deg);
}
.voice .balloon01::after{
    bottom: -24px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
    border-width: 0 0 39px 35px;
    z-index: 10;
    transform:rotate(-115deg);
}

.voice .balloon02::before,
.voice .balloon02::after{
    content: "";
    position: absolute;
    right: 20%;
    width: 0;
    height: 0;
    margin: auto;
}
.voice .balloon02::before{
    bottom: -30px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
    border-width: 0 45px 40px 0;
    transform:rotate(115deg);
}
.voice .balloon02::after{
    bottom: -24px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
    border-width: 0 39px 35px 0;
    z-index: 10;
    transform:rotate(115deg);
}

.voice .balloon01 .emphasis,
.voice .balloon02 .emphasis{
    color: #FF87AD;
    font-size: 18px;
    font-weight: 600;
}

.voice .voice-topics-wrap {
    margin-left: 45px;
}

.voice .voice-topics {
    background-color: #fff;
    border: 5px #fcba54 solid;
    color: #464646;
    padding: 30px;
    padding-left: 90px;
    position: relative;
}

.voice .voice-topics ul {
    box-sizing:border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin-bottom: 30px;
}

.voice .voice-topics ul li:first-child {
    margin-right: 25px;
}

.voice .voice-topics .topics-balloon {
    color: #464646;
    background-color: #f2f2f2;
    border: 3px solid #f2f2f2;
    border-radius: 10px;
    font-size: 18px;
    padding: 20px;
    position: relative;
}

.voice .voice-topics .topics-balloon::before,
.voice .voice-topics .topics-balloon::after {
    content: "";
    position: absolute;
    left: 10%;
    width: 0;
    height: 0;
    margin: auto;
}
.voice .voice-topics .topics-balloon::before{
    bottom: -30px;
    border-style: solid;
    border-color: transparent transparent #f2f2f2 transparent;
    border-width: 0 45px 40px 0;
    transform:rotate(115deg);
}
.voice .voice-topics .topics-balloon::after{
    bottom: -28px;
    border-style: solid;
    border-color: transparent transparent #f2f2f2 transparent;
    border-width: 0 39px 35px 0;
    z-index: 10;
    transform:rotate(115deg);
}
.voice .voice-topics .topics-balloon .emphasis {
    color: #FF87AD;
    font-weight: 600;
}

.voice .topics-img {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translate(-50%, 0);
}

/* ~768px（タブレット） */
@media screen and (max-width: 48em) {
    .voice .voice-topics .topics-balloon {
        font-size: 16px;
    }
}

/* ~576px（横） */
@media screen and (max-width: 36em) {
    .voice .balloon01,
    .voice .balloon02 {
        margin-bottom: 30px;
    }

    .voice .voice-topics {
        padding: 20px 15px;
        position: unset;
    }
    .voice .voice-topics ul {
        flex-wrap: wrap;
        margin-bottom: 0;
    }
    .voice .voice-topics ul li:first-child {
        margin-right: 0;
    }
    .voice .voice-topics .topics-balloon {
        margin-bottom: 30px;
    }
    .voice-topics .img-box {
        display: flex;
        align-items: center;
        width: 100%;
    }
    .voice .voice-topics .topics-balloon::before,
    .voice .voice-topics .topics-balloon::after {
        bottom: -18px;
        border-width: 0 30px 15px 0;
        transform: rotate(100deg);
    }
    .voice .img-box .topics-img {
        position: static;
        bottom: unset;
        left: unset;
        transform: translate(0,0);
        max-width: 160px;
    }
}

/* ~320px */
@media screen and (max-width: 20em) {
    .voice .img-box .topics-img {
        max-width: 100px;
	}
}



/* :::::: 導入実績 :::::: */
.case {
    background-color: #fff;
}

.case .cramSchoolName {
    font-weight: 600;
    line-height: normal;
    vertical-align: middle;
}

.case .cases-slider .slick-slide a {
    width: 100%;
}

.case .cases-slider .slick-slide img {
    border: 1px #C2C2C2 solid;
    margin-bottom: .5rem;
}


/* :::::: お知らせ :::::: */
.news {
    background-color: #fff;
}

.news .news-list {
    border-bottom: 1px #F3F3F3 solid;
    display: flex;
    align-items: center;
    padding: .8rem;
}

.news .news-list:first-of-type {
    border-top: 1px #F3F3F3 solid;
}

.news .news-list .date {
    margin-right: 3rem;
}

/*　~1280px（小型PC）　*/
@media screen and (max-width:80em) {
    .case .cramSchoolName {
        font-size: 1.2rem;
    }
}


/* ~576px */
@media screen and (max-width: 36em) {
    .news .news-list {
        display: block;
    }

    .news .news-list .date {
        margin-right: 0;
    }
}

/* :::::: バナー :::::: */
section.banner {
    background-color: #F3F3F3;
    padding: 5% 0;
}


/*====================================

    3. Footer

　====================================*/
footer {
    background-color: #fff;
    margin-bottom: 10%;
    position: relative;
}

.footer-nav {
    background-color: #FFEB30;
}

.footer-nav .footer-nav_wrap {
    max-width: 960px;
    margin: 0 auto;
}

.footer-nav .footer-nav_wrap ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    text-align: center;
    padding: 2rem 0;
}

.footer-nav .footer-nav_wrap li {
    width: 20%;
    width: -webkit-calc(100% / 5);
    width: calc(100% / 5);
}

.footer-nav .footer-nav_wrap li a {
    text-decoration: underline;
}

.footer-logo_wrap {
    text-align: center;
    margin: 5rem auto;
}

.footer-logo_wrap .footer-logo {
    width: 270px;
    margin-bottom: 1.5rem;
}

.copyright {
    color: #858585;
    font-size: 1.2rem;
}

/*　~1280px（小型PC）　*/
@media screen and (max-width:80em) {
    footer {
        margin-bottom: 17%;
    }
}

/*~960px */
@media screen and (max-width: 60em) {
    .footer-nav .footer-nav_wrap {
        -ms-flex-wrap: wrap;
    }

    footer {
        margin-bottom: 17%;
    }
}

/* ~576px */
@media screen and (max-width: 36em) {
    footer {
        margin-bottom: 30%;
    }
    .footer-logo_wrap {
        margin: 5rem auto 20rem;
    }
    .footer-nav .footer-nav_wrap li {
        width: 50%;
        width: -webkit-calc(100% / 2);
        width: calc(100% / 2);
        padding-bottom: 1rem;
    }
    .footer-logo {
        max-width: 180px;
    }
}

/* ~360px */
@media screen and (max-width: 20em) {
    footer {
        margin-bottom: 35%;
    }
}


/*====================================

    4. Other

====================================*/
/* ::: トップへ戻る ::: */
#page_top {
    background-color: #FFF;
    border: 3px #285CB4 solid;
    border-radius: 100%;
    position: fixed;
    right: 50px;
    bottom: 150px;
    width: 50px;
    height: 50px;
    z-index: 9000;
}

#page_top a {
    display: block;
    width: 50px;
    height: 50px;
    text-decoration: none;
    text-align: center;
    position: relative;
}

#page_top a::before {
    color: #285CB4;
    font-family: "Font Awesome 5 Free";
    content: '\f062';
    font-weight: 900;
    font-size: 25px;
    position: absolute;
    width: 25px;
    height: 25px;
    top: 50%;
    left: 50%;
    margin: auto;
    transform: translate(-60%, -110%);
}

#sub #page_top a::before {
    transform: translate(-60%, -70%);
}

/* ~1024px */
@media screen and (max-width: 64em) {
    #page_top {
        bottom: 11%;
    }

    #page_top a::before {
        transform: translate(-60%, -110%);
    }

    #sub #page_top a::before {
        transform: translate(-60%, -65%);
    }
}

/*~960px */
@media screen and (max-width: 60em) {
    #page_top {
        bottom: 19%;
    }
}

/* ~768px（タブレット） */
@media screen and (max-width: 48em) {
    #page_top {
        bottom: 12%;
    }
}

/* ~576px */
@media screen and (max-width: 36em) {
    #page_top {
        right: 10px;
        width: 40px;
        height: 40px;
        bottom: 17%;
    }

    #page_top a::before {
        font-size: 1.5rem;
        transform: translate(-83%, -90%);
    }

    #sub #page_top a::before {
        font-size: 1.5rem;
        transform: translate(-83%, -65%);
    }
}

/* ~360px */
@media screen and (max-width: 20em) {
    #page_top {
        bottom: 22%;
    }
}


/* ::: フローティングバナー ::: */
#floating {
    background-color: #285CB4;
    color: #fff;
    display: none;
    position: fixed;
    left: 0;
    bottom: 0;
    padding: 5rem 0;
    text-align: center;
    width: 100%;
    z-index: 8000;
}

.btn-outer {
    border-radius: 5px;
    padding: 1rem;
}

.btn-outer a {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: normal;
}

.document_request a {
    color: #285CB4;
    position: relative;
}

.document_request a::before {
    background: url("../images/mail_icon.png") no-repeat left center;
    background-size: 52px 52px;
    content: "";
    display: inline-block;
    position: absolute;
    width: 52px;
    height: 52px;
    left: -60px;
}

.document_request {
    background-color: #FFEB30;
}

.document_request:hover {
    background-color: #FFF17C;
}

.introduce {
    background-color: #16BAF0;
}

.introduce:hover {
    background-color: #6BD0EF;
}

.trial_version {
    background-color: #FF991B;
}

.trial_version:hover {
    background-color: #FFB55B;
}


/* ~768px（タブレット） */
@media screen and (max-width: 48em) {
    #floating {
        padding: 3rem 0;
    }

    #floating .col-3,
    #floating .col-4,
    #floating .col-6,
    #floating .col-lg-6,
    #floating .col-lg-8 {
        padding-right: 3px;
        padding-left: 3px;
    }

    #floating h5 {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .btn-outer {
        padding: 1rem 0;
    }

    .btn-outer a {
        font-size: 12px;
    }

    .document_request a::before {
        background-size: 30px 30px;
        width: 30px;
        height: 30px;
        left: -35px;
    }
}


/* ::: サイドバナー ::: */
.sideBanner {
    position: fixed;
    top: 50%;
    /*right: -5px;*/
    right: -30px;
    padding: 0;
    transform: translate(0, -55%);
}

.sideBanner a img {
    width: 80%;
}

.popup {
    display: none;
}

/*　~768px（タブレット）　*/
@media screen and (max-width:48em) {
    .sideBanner {
        display: none;
    }

    .popup {
        display: block;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: .6s;
    }

    .popup.is-show {
        opacity: 1;
        visibility: visible;
    }

    .popup-inner {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        max-width: 600px;
        padding: 0;
        z-index: 2;
        text-align: center;
    }

    .popup-inner img {
        width: 100%;
    }

    .close-btn {
        position: absolute;
        right: 3%;
        top: -8%;
        width: 50px;
        height: 50px;
        line-height: 50px;
        text-align: center;
        cursor: pointer;
    }

    .close-btn {
        font-size: 20px;
        color: #fff;
    }

    .close-btn::before {
        content: "";
        position: absolute;
    }

    .black-background {
        background-color: rgba(0, 0, 0, .8);
        cursor: pointer;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }
}

/* ~576px（横） */
@media screen and (max-width: 36em) {
    .close-btn {
        right: -5%;
        top: -15%;
    }
}


/* ::: スライダー ::: */
.slider {
    width: 100%;
    margin: 0 auto;
}

.slick-slide {
    margin: 0 10px;
}

.slick-slide img {
    width: 100%;
    height: auto;
    margin: 0 auto
}

.slick-initialized .slick-slide {
    display: block;
}

/* オススメ スライダー */
.service-slider .slick-prev,
.service-slider .slick-next {
    background-color: rgba(0, 0, 0, .3);
    width: 25px;
    height: 50px;
    z-index: 1;
}

.service-slider .slick-prev {
    left: 0;
    border-radius: 0 5px 5px 0;
}

.service-slider .slick-next {
    right: 0;
    border-radius: 5px 0 0 5px;
}

.service-slider .slick-prev::before,
.service-slider .slick-next::before {
    content: "";
    display: inline-block;
    transform: rotate(45deg);
    width: 10px;
    height: 10px;
}

.service-slider .slick-prev::before {
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
}

.service-slider .slick-next::before {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

.service-slider .slick-prev:hover,
.service-slider .slick-next:hover {
    background-color: rgba(0, 0, 0, .3);
    opacity: .8;
}

/*お客様の声 スライダー*/
.voice-slider .slick-prev,
.voice-slider .slick-next {
    color: #fff;
    background-color: rgba(0, 0, 0, .3);
    width: 50px;
    height: 50px;
    z-index: 1;
    transform: translate(0, -85%);
}

.voice-slider .slick-prev {
    left: -25px;
    padding-left: 20px;
    border-radius: 50%;
}

.voice-slider .slick-next {
    right: -25px;
    padding-right: 20px;
    border-radius: 50%;
}

.voice-slider .slick-prev::before {
    content: "←";
    display: inline-block;
    font-family: serif;
}

.voice-slider .slick-next::before {
    content: "→";
    display: inline-block;
    font-family: serif;
}

.voice-slider .slick-prev:hover,
.voice-slider .slick-next:hover {
    background-color: rgba(0, 0, 0, .3);
    opacity: .8;
}


/* 導入実績 スライダー */
.cases-slider .slick-slide {
    margin: 0 5px;
}

.cases-slider .slick-dots {
    bottom: -20% !important;
}

.cases-slider .slick-dots li button:before {
    color: #93ADD9 !important;
    font-size: 20px !important;
}

.cases-slider .slick-dots li.slick-active button:before {
    opacity: 1 !important;
    color: #285CB4 !important;
}



/*---------- Mediaquery ----------*/
/* ~1024px */
@media screen and (max-width: 64em) {
    .cases-slider .slick-dots li button:before {
        font-size: 15px !important;
    }
}
