@charset "utf-8";
/* 
 style info : 基本共通スタイル

2021/06


 */
 
/*----------------------------------------------------
	base	
----------------------------------------------------*/
* {
}
html{
	font-size: 62.5%;　/* 16px x 0.625 = 10px(=1rem) */ 
}
html,
body {
 overflow-x: hidden;
}

body{  
font-size:16px;
font-size: 1.6rem;/* 16px */ 
font-family: Verdana, "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif; 
line-height:1.6; 
letter-spacing: 0.05em;
-webkit-text-size-adjust: 100%;/*iphone 調整用*/ 
-webkit-font-smoothing: antialiased;/*ちらつき防止用*/ 
text-align:center;
background:#13322B;
padding-top:90px;
} 

/*IE11用ハック*/
_:lang(x)::-ms-backdrop, body{
	font-family: Meiryo, Verdana, "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", sans-serif; 
} 


select,input,button,textarea,button{
	font:99% arial,helvetica,clean,sans-serif;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

/* link*/
a {
	text-decoration: none;
}

a:link {
}

a:visited {
}

a:hover{
}

i{
	margin-right: 5px;
}
.mover:hover{
	-webkit-transition: 0.6s ;
	transition: 0.6s ;
	opacity:0.5;
	filter: alpha(opacity=50);        /* ie lt 8 */
	-ms-filter: "alpha(opacity=50)";  /* ie 8 */
	-moz-opacity:0.5;                 /* FF lt 1.5, Netscape */
	-khtml-opacity: 0.5;              /* Safari 1.x */
}

@media screen and (max-width: 768px) {
	body{
		padding-top:50px;
	}
img{
	max-width:100%;
	height:auto;
}
}

/*----------------------------------------------------
	layout
----------------------------------------------------*/




/*----------------------------------------------------
	wrap
----------------------------------------------------*/


/*----------------------------------------------------
	#contetnts
----------------------------------------------------*/

#contents{
}
.inner{
	width:980px;
	margin:auto;
}


@media screen and (max-width: 768px) {

#contents,footer,.inner{
	width:100%;
}
.inner{
	padding:0 10px;
	box-sizing: border-box;
}
}

/*TOPへ戻るボタン*/
.totop{
	position:fixed;
	right:30px;
	bottom:50px;
	cursor:pointer;
}
.totop img{
	width: 45px;
}
@media screen and (max-width: 768px) {
	
.totop{
	right:20px;
	bottom:55px;
}
}

/*----------------------------------------------------
	header
----------------------------------------------------*/
#fixed-head {
    position: fixed;
    width: 100%;
	top:0;
	left:0;
	z-index:2;
}
header{
	position:relative;
	height:90px;
}
header .logo{
	position:absolute;
	left:20px;
	top:25px;
	width: 165px;
}
header .hmenu{
	position:absolute;
	right:10px;
	top:10px;
}
/*スクロールでヘッダー縮小 fixedクラス付与*/
@media screen and (min-width: 1081px) {
	#fixed-head.fixed {
		background:rgba(19,50,43,0.8);
	}
.fixed header{
	height:90px;
}
}
@media screen and (max-width:1080px) {

	#fixed-head.fixed {
		background:rgba(19,50,43,0.8);
	}

}

header nav li{
    display: inline-block;
}
@media screen and (min-width: 1081px) {
/*マウスオーバーでモーション*/
header nav li a{
    /*線の基点とするためrelativeを指定*/
	position: relative;
}
header nav li a:hover{
	/*color:#0481A2;*/
}

header nav li a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 0;
    left:5%;
    /*線の形状*/
    width: 90%;
    height: 2px;
    background: #00afec;
    background: -webkit-linear-gradient(left,  #00afec 0%,#00ac97 33%,#00a051 66%,#6eba44 100%);
    background: linear-gradient(to right,  #00afec 0%,#00ac97 33%,#00a051 66%,#6eba44 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00afec', endColorstr='#6eba44',GradientType=1 );
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: left top;/*左上基点*/
}

/*現在地とhoverの設定*/
header nav li a:hover::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
}
}

@media screen and (max-width: 1080px) {
	

	/*	#h-nav　ハンバーガーメニュー*/
#h-nav{
	position:fixed;
	top:30px;
	right:10px;
	z-index:2;
}
#h-nav .cat-wrap{
	display:none;
	position:fixed;
	top:0;
	right:0;
	background:#C4CCCA;
	width:100%;
	height:100%;
	overflow: auto;
}

.menu-trigger,
.menu-trigger span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
	z-index:3;
}
.menu-trigger {
	position: relative;
	width: 40px;
	height:24px;
	cursor:pointer;
}
.menu-trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: #fff;
	border-radius: 4px;
}
.menu-trigger span:nth-of-type(1) {
	top: 0;
}
.menu-trigger span:nth-of-type(2) {
	top: 10px;
}
.menu-trigger span:nth-of-type(3) {
	bottom: 0;
}
.menu-trigger.active span{
	background-color:#fff;
}

.menu-trigger.active span:nth-of-type(1) {
	-webkit-transform: translateY(11px) rotate(-45deg);
	transform: translateY(11px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
	opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
	-webkit-transform: translateY(-11px) rotate(45deg);
	transform: translateY(-11px) rotate(45deg);
}
#h-nav  nav {
	margin:50px 0 20px;
}
#h-nav  nav li{
	padding:3px 10px 0;
	border-bottom: 1px solid #13322B;
}

#h-nav .logo{
	top: 0;
    left: 0;
	right: 0;
	background: #13322B;
	width: 100%;
	height: 50px;
}
#h-nav .logo img{
	margin-top:8px;
	width: 140px;
}
}
@media screen and (max-width: 768px) {
	header{
		height: 50px;
	}
	header .logo{
		top: 8px;
		left: 0;
		right: 0;
		margin: auto;
		width:140px;
	}
	#h-nav{
		position:fixed;
		top:10px;
		right:5px;
		z-index:2;
	}
	
}
/*----------------------------------------------------
	footer
----------------------------------------------------*/
footer{
	padding: 30px 0 5px;
	color: #fff;
}
footer .snslogo ul{
	display: flex;
	align-items: center;
}

footer .snslogo li span{
	color: #fff;
	font-size: 1.2rem;
}
footer .snslogo img{
	width: 40px;
	vertical-align: middle;
}
footer .snslogo .x-icon img {
	width: 25px;
	margin-right: 10px;
}
   
@media screen and (min-width: 769px) {
footer .flexbox{
	width:705px;
	margin:auto;
	justify-content: space-around;
}
footer .snslogo li{
	/*height:40px;*/
	margin-right: 15px;
		}
footer .snslogo li a{
	display: flex;
	align-items: center;
	padding: 0 15px;
}
footer .snslogo img{
	margin-right: 5px;
   }
}

@media screen and (max-width: 768px) {
	footer .snslogo ul{
		justify-content: space-around;
	}
	footer .snslogo li {
		width: 20%;
	}
	footer .snslogo li a{
		text-align: center;
	}
	footer .snslogo span{
		display: block;
		margin-top: -10px;
	}
	footer .snslogo .x-icon img {
		margin-right: 0;
		margin-top: 5px;
	}
	footer .snslogo .x-icon span {
		margin-top: 0;
	}

	footer .infobtn a{
		margin:30px auto 0;
	}
	
}

   footer .logo{
		   width: 165px;
		   margin:35px auto 0;
	   }
	   footer .infobtn a{
		   display: block;
		   box-sizing:border-box;
		   border: 1px solid #fff;
		   color:#fff;
		   padding:5px 0;
		   width: 175px;
		   text-align:center;
		   font-size:1.5rem;
		   background: url(../img/icon_arrow_white.svg) no-repeat 95% center;
		   background-size: 10px;
	   }
	   footer .copy{
		   margin:35px auto 0;
	   }
	   footer .copy img{
		   width: 76px;
		   margin-right: 5px;
	   }

/*----------------------------------------------------
	パーツ
----------------------------------------------------*/


/*ボタン
-----------------------------------------*/	

.btn a{
	display: block;
	box-sizing:border-box;
	border: 1px solid #13322B;
	border-radius:18px;
	color:#13322B;
	padding:5px 0;
	width: 160px;
	text-align:center;
	font-size:1.5rem;
	font-weight: bold;
}
.btn_freesize a{
	display: block;
	box-sizing:border-box;
	border: 1px solid #13322B;
	border-radius:18px;
	color:#13322B;
	padding:5px 0;
	width:100%;
	text-align:center;
	font-size:1.5rem;
	font-weight: bold;
	margin: auto;
}
@media screen and (max-width: 768px) {

	.btn a{
		width:60%;
		margin: auto;
	}
	

}
@media screen and (max-width: 320px) {
	.btn a,.btn_freesize a{
        font-size: 1.4rem;
	}
	
}


/*----------------------------------------------------
	汎用
----------------------------------------------------*/


/*位置*/
.imgC {
	margin:0 auto 20px;
}

.alL{
	text-align: left;
}

.alC{
	text-align: center;
}
.alR{
	text-align: right;
}
/*fontsize*/

.s-font{
	font-size:1.4rem ;
}
.l-font{
	font-size:1.8rem;
}
/*fontcolor*/

.redtxt{
	color:#E51A21;
}
.greentxt{
	color:#25aa33;
}


/*左右パディングbox*/

.box{
	padding-left:20px;
	padding-right:20px;
	box-sizing:border-box;
}
.box_s{
	padding-left:40px;
	padding-right:40px;
	box-sizing:border-box;
}
.box_ss{
	padding-left:60px;
	padding-right:60px;
	box-sizing:border-box;
}

.mgbt30{
	margin-bottom: 30px;
}
.mgtp30{
	margin-top: 30px;
}


.pdbt30{
	padding-bottom: 30px;
}


/*PC、SP表示非表示*/
@media screen and (min-width: 769px) {
	.sp{
		display: none;
	}
}
@media screen and (max-width: 768px) {
	.pc{
		display: none;
	}
}

/*サイズごとに表示非表示*/
@media screen and (min-width: 1081px) {
	.less1080{
		display: none;
	}
}
@media screen and (max-width: 1080px) {
	.more1081{
		display: none;
	}
}
