@charset "utf-8";
/*
Theme Name:		【スマホ】ヒカリスポーツ ブログ
Version:		1.0	
*/





* {
	box-sizing: border-box;
}

body {
	color: #333;
	font-family: "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 2.2em;
	margin: 0;
	padding: 61px 0;
}
h1, h2, h3, h4, h5, h6, ul, li, ol, dl, dt, dd {
	font-weight: 500;
	list-style: none;
	margin: 0;
	padding: 0;
}

.common p {
	margin: 0;
}

a {
	color: #333;
	text-decoration: none;
}
a:hover {
	color: #333;
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
	text-decoration: underline;
}
img {
	max-width: 100%;
	border: 0;
	vertical-align: bottom;
}
.cf:after {
	content: ".";
	display: block;
	height: 0;
	font-size: 0;
	clear: both;
	visibility: hidden;
}
.cf {
	display: inline-block;
}
/* Hides from IE Mac */
* html .cf {
	height: 1%;
}
.cf {
	display: block;
}




/* --------------------------------------------------------------------------------
	device
-------------------------------------------------------------------------------- */
.device-sp {
	display: block;
}
.device-sp-inline {
	display: inline;
}
.device-pc {
	display: none;
}
.device-pc-inline {
	display: none;
}



/*-------------------------------------------
  ヘッダー
-------------------------------------------*/
#hd_bottom {
	display: flex;
	justify-content: space-between;
	position: fixed;
	border-top: 1px solid #FFF;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 9;
}
#hd_bottom > li {
	background: #2D4B63;
	border-right: 1px solid #FFF;
	width: 100%;
}
#hd_bottom > li:last-child {
	border-right: none;
}
#hd_bottom > li .link_menu {
	color: #FFF;
	display: block;
	font-size: 0.7em;
	font-weight: bold;
	height: 22px;
	line-height: 2.0;
	letter-spacing: 0;
	padding-top: 38px;
	position: relative;
	text-align: center;
	width: 100%;
}
#hd_bottom > li a {
	color: #FFF;
	display: block;
	font-size: 0.7em;
	font-weight: bold;
	height: 60px;
	line-height: 2.0;
	letter-spacing: 0;
	position: relative;
	text-align: center;
	width: 100%;
}
#hd_bottom a img {
	display: block;
	margin: 0 auto;
	padding: 8px 0 0 0;
}
#hd_bottom a span {
	background: #D90000;
	border-radius: 10px;
	display: block;
	font-size: 12px;
	height: 20px;
	line-height: 20px;
	top: -5px;
	right: -5px;
	padding: 0 0 0 2px;
	position: absolute;
	text-align: center;
	width: 20px;
	z-index: 2;
}
#nav-drawer {
	position: relative;
	z-index: 9;
}
/*チェックボックス等は非表示に*/
.nav-unshown {
	display: none;
}
/*アイコンのスペース*/
#nav-open {
	display: inline-block;
	width: 30px;
	height: 22px;
	vertical-align: middle;
	position: absolute;
	left: calc(50% - 15px);
	top: 10px;
}
/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
	position: absolute;
	height: 2px; /*線の太さ*/
	width: 30px; /*長さ*/
	border-radius: 3px;
	background: #FFF;
	display: block;
	content: '';
	cursor: pointer;
}
#nav-open span:before {
	bottom: -10px;
}
#nav-open span:after {
	bottom: -20px;
}
/*閉じる用の薄黒カバー*/
#nav-close {
	display: none; /*はじめは隠しておく*/
	position: fixed;
	z-index: 99;
	top: 0; /*全体に広がるように*/
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0;
	transition: .3s ease-in-out;
}
#nav-close span {
	position: absolute;
	width: 30px;
	height: 30px;
	display: block;
	color: #FFF;
	cursor: pointer;
	top: 80px;
	left: 90%;
}
#nav-close span::before {
	position: absolute;
	top: 0;
	left: 1.0em;
	width: 0.2em;
	height: 2.0em;
	content: "";
	background-color: #FFF;
	transform: rotate(45deg);
}
#nav-close span::after {
	position: absolute;
	top: 0.9em;
	left: 0.15em;
	width: 2.0em;
	height: 0.2em;
	content: "";
	background-color: #FFF;
	transform: rotate(225deg);
}
/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
	display: block; /*カバーを表示*/
	opacity: .75;
}
#nav-input:checked ~ #nav-content {
	-webkit-transform: translateX(0%);
	transform: translateX(0%); /*中身を表示（右へスライド）*/
	box-shadow: 1px 0 7px rgba(0, 0, 0, .15);
}
/*中身*/
#nav-content {
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	font-size: 0.8em;
	overflow: auto;
	position: fixed;
	top: 60px;
	left: 0;
	z-index: 9999; /*最前面に*/
	width: 89%; /*右側に隙間を作る（閉じるカバーを表示）*/
	max-width: 330px; /*最大幅（調整してください）*/
	height: calc(100% - 60px);
	background: #FFF; /*背景色*/
	transition: .3s ease-in-out; /*滑らかに表示*/
	-webkit-transform: translateX(-105%);
	transform: translateX(-105%); /*左に隠しておく*/
	padding: 5% 5% 10% 5%;
}
#nav-content .menu_box {
	margin: 0 auto;
	width: 100%;
}
#nav-content .menu_list dt {
	margin: 0 auto;
	padding: 0;
	width: 100%;
}
#nav-content .menu_list .menu_name {
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	cursor: pointer;
	color: #FFF;
	display: flex;
	font-size: 1.1em;
	width: calc(100% - 10px);
	height: 50px;
	line-height: 50px;
	position: relative;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	padding: 0 0 0 10px;
	margin-top: 20px;
}
#nav-content .menu_list .mens {
	background: #065CC6;
}
#nav-content .menu_list .ladies {
	background: #FF336B;
}
#nav-content .menu_list .boys {
	background: #1EBBFF;
}
#nav-content .menu_list .girls {
	background: #FF7A33;
}
#nav-content .menu_list .goods {
	background: #FFCF0F;
}
#nav-content .menu_list .menu_name:after {
	content: "";
	width: 10px;
	height: 10px;
	display: inline-block;
	border-top: 2px solid #FFF;
	border-right: 2px solid #FFF;
	position: absolute;
	top: 37%;
	right: 15px;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}
#nav-content .menu_list .menu_name.active {
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}
#nav-content .menu_list .menu_name.active:after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}
#nav-content .menu_list dd {
	display: none;
}
#nav-content .nav_list li {
	margin: 5px auto 0 auto;
	position: relative;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	overflow: hidden;
	width: 90%;
}
#nav-content .nav_list li a {
	background: #F2F2F2;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	color: #333;
	display: block;
	font-size: 1.0em;
	height: 45px;
	line-height: 45px;
	width: 100%;
}
#nav-content .nav_list li a img {
	height: 45px;
	padding: 0;
}
#nav-content .sns {
	display: flex;
	justify-content: center;
	margin: 15px 0 0 0;
}
#nav-content .sns > li {
	margin: 0 10px;
}
#nav-content .sns > li a {
	color: #2D4B63;
	font-size: 2.5em;
}
#header-sp {
	background: #FFF;
	font-size: 1.0em;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
}
#header-sp .header_box {
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
	padding: 0 0;
	width: 100%;
}
#header-sp .header_box h1 {
	padding: 2vw 0 0 2.2vw;
}
#header-sp .header_box h1 img {
	height: auto;
	width: 49vw;
}
#header-sp .header_box .h-btn-menu {
	background: #2D4B63;
	border-radius: 1.2vw;
	color: #FFF;
	display: block;
	font-weight: bold;
	width: 13vw;
	height: 14vw;
	line-height: 2.0;
	letter-spacing: 0;
	margin: 5px;
	position: relative;
	text-align: center;
	font-size: 2.5vw;
}
#header-sp .header_box .h-btn-menu img {
	display: block;
	height: 8.5vw;
	margin: 0 auto;
	padding: 0;
}





/* --------------------------------------------------------------------------------
	h-menu
-------------------------------------------------------------------------------- */
#header-sp .h-menu {
	position: relative;
	overflow: hidden;
	
	z-index: 10;
}
#header-sp .h-menu .h-menu-drawer {
	position: fixed;
	z-index: 10;
	
	top: 0;
	right: -101vw;
	bottom: 0;
	
	width: 100%;
	height: 100%;
	
	transition: .3s ease;
}
#header-sp.h-menu-active .h-menu .h-menu-drawer {
	right: 0;
}

/********** メニューコンテンツ **********/
#header-sp .h-menu .h-menu-wrapper {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	
	width: 80vw;
	height: 100%;
	
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	background: #f2f2f2;
}
#header-sp .h-menu .h-menu-box {
	padding: 8.5vw 7vw;
}


/********** 閉じるボタン **********/
#header-sp .h-menu .h-btn-close {
	display: block;
	
	position: absolute;
	z-index: 9;
	
	top: 3vw;
	left: 3vw;
	width: 13vw;
	height: 13vw;
	
	padding: 2vw 0 0;
	border-radius: 1.2vw;
	font-size: 2.5vw;
	font-weight: bold;
	line-height: 2.0;
	letter-spacing: 0;
	text-align: center;
	color: #2d4b63;
	background: #fff;
}
#header-sp .h-menu .h-btn-close img {
	display: block;
	height: 6vw;
	margin: 0 auto;
	padding: 0;
}


/********** オーバーレイ **********/
#header-sp .h-menu .overlay {
	position: fixed;
	z-index: 1;
	
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	
	visibility: hidden;
}
#header-sp.h-menu-active .overlay {
	visibility: inherit;
}



/********** 見出し **********/
#header-sp .h-menu .heading {
	margin: 0 0 4vw;
	padding: 1.8vw 0;
	text-align: center;
	font-weight: bold;
	font-size: 4.8vw;
	color: #fff;
	background: #2d4b63;
}

/********** cat-list **********/
#header-sp .h-menu .cat-list {
	padding: 0 0 8.5vw;
	font-size: 4vw;
}
#header-sp .h-menu .cat-list ul li {
	padding: 0 0 1.5vw;
	line-height: 1.65;
}
#header-sp .h-menu .cat-list ul li a {
	display: block;
	color: #333;
}

/********** posts-faq **********/
#header-sp .h-menu .posts-faq {
	padding: 0 0 8.5vw;
	font-size: 4vw;
}
#header-sp .h-menu .posts-faq ul li {
	padding: 0 0 2vw;
	line-height: 1.7;
}
#header-sp .h-menu .posts-faq ul li a {
	display: block;
	color: #333;
}

/********** posts-faq **********/
#header-sp .h-menu .posts-faq {
	padding: 0 0 4vw;
	font-size: 4vw;
}


/********** popular-posts **********/
#header-sp .popular-posts ul {
	padding: 1.5vw 0 0;
}
#header-sp .popular-posts ul li {
	padding: 0 0 7vw;
}

/* リンク */
#header-sp .popular-posts ul li a {
	display: block;
	text-decoration: none !important;
	color: #333;
}

/* サムネイル */
#header-sp .popular-posts ul li .eye-catch-image {
	padding: 0 0 3vw;
}
#header-sp .popular-posts ul li .eye-catch-image img {
	display: block;
	width: 100%;
	height: 37vw;
	object-fit: cover;
}

/* 公開日・更新日 */
#header-sp .popular-posts ul li .datetime {
	display: flex;
	
	width: 100%;
	padding: 0 0 2vw;
	line-height: 1.2;
	font-size: 3vw;
	white-space: nowrap;
}
#header-sp .popular-posts ul li .datetime .datetime-release {
	padding: 0 1em 0 0;
}
#header-sp .popular-posts ul li .datetime .datetime-value {
	letter-spacing: 0.1em;
}

/* 記事タイトル */
#header-sp .popular-posts ul li .title {
	line-height: 1.4;
	font-size: 4vw;
	font-weight: bold;
}




/*-------------------------------------------
  wrapper
-------------------------------------------*/
#wrapper {
	
}

/********** breadcrumb **********/
#wrapper .breadcrumb {
	padding: 10vw 2vw 0;
}

/********** wrapper-inner **********/
#wrapper .wrapper-inner {
	padding: 8vw 0 0;
}




/* --------------------------------------------------------------------------------
	main
-------------------------------------------------------------------------------- */
#main {
	padding: 0 5vw;
}


/********** wp-pagenavi **********/
#main .wp-pagenavi {
	word-break: break-all;
	
	text-align: center;
	padding: 8vw 0;
	line-height: 1.5;
	font-size: 4vw;
}
#main .wp-pagenavi .pages {
	margin: 0 0.5vw;
	padding: 0 1vw;
	border: solid 1px #646464;
	color: #333;
	background: #fff;
}
#main .wp-pagenavi .current {
	margin: 0 0.5vw;
	padding: 0 1vw;
	border: solid 1px #2d4b63;
	color: #fff;
	font-weight: normal;
	background: #2d4b63;
}
#main .wp-pagenavi .extend {
	margin: 0 0.5vw;
	padding: 0 1vw;
	border: solid 1px #646464;
	color: #333;
	background: #fff;
}
#main .wp-pagenavi a {
	margin: 0 0.5vw;
	padding: 0 1vw;
	border: solid 1px #646464;
	color: #333;
	background: #fff;
}


/*-------------------------------------------
  フッター
-------------------------------------------*/
#footer {
	background: #2D4B63;
	font-size: 1.2em;
	margin-top: 10vw;
	padding: 5vw 2vw;
	width: 100%;
}
#footer .ft_inner {
}
#footer .ft_inner .info {
	margin: 0 0 2vw;
	padding: 6vw 0 5vw;
	background: #fff;
}

/********** ロゴ **********/
#footer .ft_inner .info ul li.f-logo img {
	width: 45vw;
}
#footer .f-logo {
	display: flex;
	justify-content: center;
	padding: 0 0 3vw;
}



/********** f-contact **********/
#footer .ft_inner .info ul li.f-contact {
	display: table;
	margin: 0 auto 5vw;
	line-height: 1.15;
	letter-spacing: 0.05em;
	font-size: 4.1vw;
	color: #323232;
}
#footer .ft_inner .info ul li.f-contact .tel {
	padding: 0 0 1.5vw;
}
#footer .ft_inner .info ul li.f-contact span {
	display: block;
	padding: 0 0 1vw 1vw;
	font-size: 5.5vw;
	font-weight: normal;
	padding-right: 1.0em;
	letter-spacing: 0.05em;
}
#footer .ft_inner .info ul li.f-contact span i {
	padding-right: 2vw;
	font-size: 5vw;
}
#footer .ft_inner .info ul li.f-contact span a {
	text-decoration: none;
}
#footer .ft_inner .info ul li.f-contact .tel-hours {
	padding: 0 0 1.5vw;
}

/********** ボタン **********/
#footer .ft_inner .info ul li.f-shopping-contact {
	display: flex;
	justify-content: space-between;
	
	width: 100%;
	padding: 0 6.5vw;
}
#footer .ft_inner .info ul li.f-shopping-contact .f-btn-shopping,
#footer .ft_inner .info ul li.f-shopping-contact .f-btn-contact {
	display: flex;
}
#footer .ft_inner .info ul li.f-shopping-contact a {
	display: block;
	width: 40vw;
	padding: 3vw 0 1vw;
	font-size: 4vw;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	background: #2D4B63;
	color: #FFF;
}
#footer .ft_inner .info ul li.f-shopping-contact a i {
	display: block;
	padding: 0.5vw 1vw 0;
	font-size: 7vw;
}
#footer .ft_inner .info ul li.f-shopping-contact .f-btn-contact a i {
	font-size: 7.5vw;
}

/********** コピーライト **********/
#footer .ft_inner .copyright {
	font-size: 3vw;
	text-align: center;
	color: #fff;
}



/********** 記事の画像の高さ調整 **********/
html :where(img[class*=image--]) {
    height: auto;
}

/********** 画像のキャプションの幅調整 **********/
.wp-caption {
    width: 100% !important;
}




