@charset "UTF-8";

/*******************************
 
topCss
トップページで利用するCSS
 
*******************************/


/*------メインスライド------*/
#main-slide img{
    width: 100%;
    max-width: none;
}

/*------CHALLENGE to CHANGE------*/
.sec-cc{
    background: url("../img/top/sec01_bg.jpg") center;
    background-size: cover;
    color: #fff;
    padding: 50px 0;
}
.sec-cc h2{
    font-size: 6rem;
    font-weight: 500;
}
.sec-cc p{
    margin: 40px 0 60px;
    font-size: 1.6rem;
    line-height: 2.2;
    letter-spacing: .03em;
}
.sec-cc .btn{
    display: block;
    width: 100%;
    max-width: 320px;
    margin: auto;
    padding: 8px 10px;
    border:solid 1px #fff;
    color: #fff;
    background: rgba(0,71,157,0);
}
.sec-cc .btn:hover{
    background: rgba(0,71,157,1.00);
    border-color: rgba(255,255,255,0);
    box-shadow:0px 2px 3px 0px rgba(0,0,0,0.2);
}

@media screen and (max-width: 767px){
    .sec-cc{
        padding: 30px 0;
    }
    .sec-cc h2{
        font-size: 3.2rem;
    }
    .sec-cc p{
        margin: 20px auto;
        font-size: 1.4rem;
        line-height: 1.8;
        text-align: left;
    }
    .sec-cc .btn{
        max-width: none;
    }
}


/*------works------*/
.sec-works{
    background: url("../img/common/bg.stripe_gry.png");
    padding-bottom: 40px;
}

.sec-works h2,
.sec-group h2{
    display: block;
    text-align: center;
    color: #505050;
    font-size: 3.5rem;
    font-weight: bold;
    letter-spacing: .2em;
    padding: 36px 0 12px;
}
.sec-works h2 span,
.sec-group h2 span{
    display: block;
    font-size: 2rem;
    letter-spacing: .03em;
}

.sec-works .box-slide{
    margin-bottom: 20px;
    padding: 0 30px;
}

.sec-works .txt{
    text-align: left;
    margin: 15px 0;
}
.sec-works .item{
    padding: 12px;
}

.sec-works .item .photo{
    overflow: hidden;
}
.sec-works .item .photo img{
    -webkit-transition: transform .4s ease 0s;
    transition: transform .4s ease 0s;
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    margin: auto;
}
.sec-works .item a:hover .photo img{
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.sec-works .txt b{
    display: block;
    margin: 3px 0;
}
.sec-works .item a{
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    padding: 10px;
    box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.15);
}
.sec-works .item .underline{
    font-size: 1.2rem;
    color: #00b7ee;
    text-decoration: underline;
}
.sec-works .item .underline:after{
    content: "→";
}

.works-cate{
    font-size: 1.2rem;
    padding: 2px 5px;
}

.sec-works .btn{
    text-align: center;
    display: block;
    width: 100%;
    max-width: 320px;
    margin: auto;
    padding: 8px 10px;
    border:solid 1px #d9d8d8;
    color: #000;
    background: #fff;
}
.sec-works .btn:after{
    color: #00b7ee;
}
.sec-works .btn:hover{
    color: #fff;
    background: rgba(0,183,238,1.00);
    border-color: rgba(255,255,255,0);
    box-shadow:0px 2px 5px 0px rgba(0,0,0,0.5);
}
.sec-works .btn:hover:after{
    color: #fff;
}

@media screen and (max-width: 767px){
    .sec-works h2, .sec-group h2{
        font-size: 2.6rem;
    }
    .sec-works h2 span, .sec-group h2 span{
        font-size: 1.6rem;
    }
    
    .sec-works .box-slide {
        padding: 0 20px;
    }
}


/*スライドarrowボタン*/
.sec-works .box-slide .slick-arrow{
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 30px;
    height: 50%;
    background: #fff;
    cursor: pointer;
    transition: all 300ms 0s ease;
}
.sec-works .box-slide .slick-arrow:hover{
    background: #DCDCDC;
}
.sec-works .box-slide .slick-arrow:before{
    content: "\f104";
    font-family: FontAwesome;
    font-size: 2rem;
    color: #b4b4b4;
    position: absolute;
    top: 40%;
    left: 10px;
}
.sec-works .box-slide .slick-arrow.slick-next:before{
    content: "\f105";
    left: 13px;
}
.sec-works .box-slide .slick-arrow.slick-prev{
    left: 0;
}
.sec-works .box-slide .slick-arrow.slick-next{
    right: 0;
}
@media screen and (max-width: 767px){
    .sec-works .box-slide .slick-arrow{
        width: 20px;
        background: none;
    }
    .sec-works .box-slide .slick-arrow:before{
        left: 6px;
    }
    .sec-works .box-slide .slick-arrow.slick-next:before{
        left: 8px;
    }
}

/*スライドドットボタン*/
.dots-blue {
    text-align: center;
    margin: 10px auto 0;
}
.dots-blue li {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #fff;
    margin: 0 5px;
    box-shadow:1px 1px 2px 0px rgba(0,0,0,0.3) inset;
    cursor: pointer;
    transition: all 300ms 0s ease;
}
.dots-blue li:hover{
    background: #ADC2C9;
}
.slick-slider button {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    text-indent: -9999px;
}
.dots-blue li.slick-active {
    background: #00b7ee;
}


/*------group------*/
.sec-group .box{
    background-repeat: no-repeat;
    background-position: center top;
    background-size: auto;
}

.sec-group .box .txt{
    padding: 0 0 0 12%;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.sec-group .box:nth-of-type(even) .txt{
    padding: 0 6%;
}
.sec-group .box .txt .inner{
    margin-top: -50px;
    text-align: left;
    width: 50%;
    padding: 0 20px;
    -webkit-box-ordinal-group:2;
    -ms-flex-order:2;
    -webkit-order:2;
    order:2;
}
.sec-group .box .txt .img{
    margin-top: 30px;
    -webkit-box-ordinal-group:1;
    -ms-flex-order:1;
    -webkit-order:1;
    order:1;
}
.sec-group .box:nth-of-type(even) .txt .inner{
    -webkit-box-ordinal-group:1;
    -ms-flex-order:1;
    -webkit-order:1;
    order:1;
}
.sec-group .box:nth-of-type(even) .txt .img{
    -webkit-box-ordinal-group:2;
    -ms-flex-order:2;
    -webkit-order:2;
    order:2;
}

.sec-group .box .txt p{
    color: #fff;
    margin: 30px 0;
    line-height: 1.8;
}
.sec-group .box .txt .btn-more{
    display: block;
    font-style: italic;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: .03em;
}
.sec-group .box .txt .btn-more:after{
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 120px;
    height: 1px;
    background: #000;
    margin-left: 5px;
    transition: all 300ms 0s ease;
}

.sec-group .box .txt a:hover{
    color: #fff;
}
.sec-group .box .txt a:hover .btn-more:after{
    background: #fff;
    width: 300px;
}


.sec-group .link-rink{
    background-image: url("../img/top/group_rink_bg.jpg");
}
.sec-group .link-rbs{
    background-image: url("../img/top/group_rbs_bg.jpg");
}
.sec-group .link-torus{
    background-image: url("../img/top/group_torus_bg.jpg");
}


@media screen and (max-width: 767px){
    .sec-group .box{
        background-position: right top;
    }
    .sec-group .box:nth-of-type(even){
        background-position: left top;
    }
    .sec-group .box .txt,
    .sec-group .box:nth-of-type(even) .txt{
        display: block;
        padding: 26px 10px;
    }
    .sec-group .box .txt .inner{
        margin-top: 0;
        padding: 0;
        width: 100%;
    }
    .sec-group .box .txt p{
        margin: 20px 0;
    }
    .sec-group .box .txt .img{
        width: 55%;
        margin: auto;
    }
    .sec-group .box .txt .btn-more{
        text-align: right;
    }
    .sec-group .box .txt .btn-more:after{
        content: "\f105";
        font-family: FontAwesome;
        width: auto;
        height: auto;
        background: none;
    }
    .sec-group .box .txt a:hover .btn-more:after{
        background: none;
        width: auto;
    }
}


/*------news------*/
.sec-news .box-flex{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.sec-news .flex-item:nth-of-type(1){
    flex-basis:  25%;
}
.sec-news .flex-item:nth-of-type(2){
    flex-basis:  75%;
}
.sec-news{
    padding: 20px 0 80px;
}
.sec-news .ttl{
    text-align: left;
    padding-top: 10px;
}
.sec-news h2{
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #505050;
    margin-bottom: 20px;
}
.sec-news .btn:after{
    color: #00b7ee;
}
.sec-news ul{
    text-align: left;
}
.sec-news ul li:nth-of-type(even){
    background: #ececec;
}
.sec-news ul li a{
    display: block;
    padding: 12px 10px;
}
.sec-news ul li time,
.sec-news ul li span{
    display: inline-block;
}
.sec-news ul li .cate{
    border: solid 1px #6DC1AB;
    color: #6DC1AB;
    font-size: 1.2rem;
    margin: 0 10px;
    padding: 4px 10px;
}
.sec-news ul li .cate01{
    border-color: #ff0101;
    color: #ff0101;
}
.sec-news ul li .cate02{
    border-color: #3b83d3;
    color: #3b83d3;
}
.sec-news ul li .comment{
    margin: 5px 0;
}

@media screen and (max-width: 767px){
    .sec-news{
        padding: 0 0 50px;
    }
    .sec-news .box-flex{
        display: block;
    }
    .sec-news .ttl{
        text-align: center;
        margin-bottom: 20px;
    }
    .sec-news h2{
        margin-bottom: 5px;
    }
}


/*------access------*/
.sec-access h2{
    font-size: 2.5rem;
    font-weight: bold;
    color: #505050;
}
.sec-access .link{
    color: #e83828;
    margin-left: 15px;
}
.sec-access .link:after{
    content: url(../img/top/ico_map.png);
    display: inline-block;
    vertical-align: bottom;
    margin-left: 5px;
}
.sec-access .link:hover{
    text-decoration: underline;
}
.map{
    line-height: 0;
    margin-top: 20px;
}
.map iframe{
    width: 100%;
}