@charset "utf-8";
/* CSS Document */

/*======================================
リセットCSS
=======================================*/
*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    link:#000;
    font-family: Arial, Helvetica, "sans-serif";
}

body{
    background-color: #000;color:#fff;
}


/*======================================
グローバルナビゲーション
======================================*/
header a.navbar-brand{
    color:#fff;
    font-size:16px;
    margin-left:10px;
}
nav{
    background-color: #000;
}
nav ul li a{
    color:#fff;
    border-left:1px solid #fff;
}
nav ul li a:last-child{
    border-right:1px solid #fff;
}
.global_nav{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.global_nav li{
    background-color: #F20574;
    height:30px;
    text-align: center;
    line-height: 30px;
    width:49.5%;
    margin-bottom:2px;
    margin-top:10px;
}
.global_nav li a{
    color:#fff;
    display: block;
    font-weight:bold;
}
.global_nav li a:hover{
    color:#F2CB05;
}

/*======================================
ランキング
=======================================*/
.season_flower{
    font-size:1.9em;
    font-weight:bold;
    padding-bottom:10px;
    border-bottom:1px solid #F2059F;
    margin-bottom:30px;
}
.flower_title{
    font-size:1.5em;
    font-weight:bold;
}
.flower_item img{
    width:100%;
    border:5px solid #F2059F;
    margin-bottom:10px;
}
.flower_item{
    padding-bottom:30px;
    border-bottom:1px solid #F2059F;
    margin-bottom:40px;
}
/* ------modal-windowのCSS------ */
.overlay{
	position:fixed;
	top:0;
	left:0;
	background-color:rgba(0,0,0,0.5);
	width:100%;
	height:100%;
	z-index:10;
	display:none;
}
.modal-window{
	position:fixed;
	width:60%;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	z-index:11;
	display:none;
}
.modal-close{
	text-align: right;
	color:#fff;
	font-size:3em;
	font-weight:400;
	cursor:pointer;
}
.modal-window img{
	width:100%;
	border:4px solid #fff;
}
.modal-open{
	cursor:pointer;
}

/*======================================
インフォメーション
=======================================*/
.info li{
    display: flex;
    align-items: center;
}
.info li img{
    padding:10px;
}
/*======================================
新着情報
=======================================*/
.news h2{
    font-size:1.9em;
    font-weight:bold;
    padding-bottom:10px;
    border-bottom:1px solid #F29F05;
    margin-bottom:30px;
}
.news h3{
    font-size:1.2em;
    font-weight:bold;
}
.news_item{
    padding-bottom:20px;
    border-bottom:1px solid #F29F05;
    margin-bottom:30px;
}

/*======================================
フッター
=======================================*/
.footer_bar1{
    border-radius: 30px;
    background:linear-gradient(to right,#F2059F,#F25C05,#F2CB05,#F25C05,#F2059F);
    height:50px;
    line-height: 50px;
    text-align: center;
    color:#000;
    margin-bottom:30px;
}
/* メニューバーの装飾 
.pulldown{
    width:100%;
}
.pulldown a{
    display: block;
    width: 100%;
    padding-top: 7px;
    text-align: center;
    background-color: #F2059F;
    font-size: 1.1em;
    text-decoration: none;
    z-index: 2;
}
.pulldown a:hover{
    color:#fff;
    background-color: #8766FF;
}
.menu-item{
    position: relative;
    list-style-type: none;
}
.subMenu{ 
    position: absolute;
    width: 100%;
    display: none;
    padding-left: 0;
}
.subMenu-item{
    border-top:2px solid #fff;
    list-style-type: none;
}*/
/* backToTop */
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    color: #fff;
    width: 50px;
    /* height: 40px; */
    z-index: 2;
    display: none;
}
.arrow{
	width: 100%;
}
/* Scroll-fadeIn */
.sf-fadeIn{
	opacity:0 ;
	visibility:hidden;
	transform: translateY(50px);
	transition: opacity 3s, visibility 3s, transform 3s;
}
.add-scroll{
	opacity: 1;
	visibility:visible;
	transform: rotateY(0);
}
/*======================================
メディアクエリ
=======================================*/
/* ------小型タブレットサイズ以上_md------ */
@media only screen and (min-width:768px){
     .global_nav li{
        width:16.4%;
        height:50px;
        line-height: 50px;
        margin-top:20px;
    }
}
/* ------PC及び大型タブレットサイズ以上_lg------ */
@media only screen and (min-width:992px){
    .global_nav {
    margin-bottom:50px;
    }
}
/* ------PC向け_xl------ */
@media only screen and (min-width:1200px){
    .container-fluid{
    width:1200px;
    margin:0 auto;
    }
    header a.navbar-brand{
        font-size:24px;
    }
}

