/*========  リセット  =========*/
*,html, body, div, span, applet, object, iframe, strong,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, legend, caption, 
tbody, tfoot, thead, table, label, tr, th, td{
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
	list-style: none;
}
/*========  メインスタイル  =========*/
body{
/*  フォントの種類  */
	font-family: -apple-system, BlinkMacSystemFont,
               "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;

/*  フォントのサイズ  */
	font-size: 100%;

/*  フォントの色  */
	color: #333;

/* カーニングの設定 */
	letter-spacing: 1.2px;

/* 行間の設定 */
	line-height: 1.75;
	text-align: center;
	width: 100%;
	height: auto;
}
.clear{
	clear: both;
}
b{
	color: #ff0000;
}
a{
	text-decoration: none;
}
a:hover{
	color: #ff0000;
	text-decoration: underline;
}
.no-break{
  word-break: keep-all;
}
.no-wrap{
	white-space: nowrap;
}
.c{
	font-size: 80%;
	margin: 0 20px;
}
.small{
	font-size: small;
	display: inline;
}
#wrapper{
	width: 100%;
	margin: 0 auto;
}
header{
	width: 100%;
	height: 70px;
	margin: 0 auto;
	overflow: hidden;
	position: sticky;
	top: 0;
	background-color: #0e0e0e;
	z-index: 2;
}
#header-box{
	max-width: 1980px;
	height: 100px;
	display: flex;
	margin: 0 auto;
}
.headerbox1{
	flex: 0 0 350px;
	height: 100px;
}
.headerbox1 img{
	width: auto;
	max-height: 100px;
}
.headerbox2{
	flex: 1 1 auto;
}
.header {
  position: relative;
  padding: 20px;
}
/*topハンバーガーメニュー*/
.hamburger {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 100;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hamburger__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 2px;
  background-color: #333;
  transition: all .4s;
}

.hamburger__line:nth-of-type(1) {
  top: 14px;
}
.hamburger__line:nth-of-type(2) {
  top: 23px;
}
.hamburger__line:nth-of-type(3) {
  top: 32px;
}

/* メニューオープン時 */
.hamburger.active .hamburger__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.hamburger.active .hamburger__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger.active .hamburger__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100vh;
  background-color: #fff;
  box-shadow: 2px 0 4px rgba(0,0,0,.1);
  transform: translateX(-100%);
  transition: transform .4s;
  z-index: 90;
}

.nav.active {
  transform: translateX(0);
}

.nav__list {
  margin: 0;
  padding: 100px 0 0;
  list-style: none;
}

.nav__item {
  padding: 0 20px;
}

.nav__link {
  display: block;
  padding: 15px 0;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}
/*topハンバーガーメニュー　ここまで*/

footer{
	position: relative;
	margin: 50px auto;
	padding: 0;
}
.read-more{
	width: 100% auto;
	text-align: right;
	margin: 20px;
}
#index-wapper{
	width: 100%;
}
#content-box{
	display: flex;
	width: 100% auto;
	max-width: 1980px;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	margin: 0 auto;
	background-image: url(/images/index-bg.png);
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: 100%;
	background-position-y: top;
}
#content-box1{
	flex: 1 2 60%;
	margin: 0;
}
#content-box2{
	flex: 0 1 350px;
	height: 100vh;
	z-index: 1;
	background-color: rgb(255, 255, 255, 0.8);
	position: sticky;
	top: 70px;
}

.main-content{
	display: flex;
	flex-wrap: wrap;
	width: 100% auto;
	text-align: left;
	margin: 10px;
}
.sub-box{
	flex: 0 1 300px;
	width: 100% auto;
	margin: 50px 10px 0 10px;
	padding: 10px;
	background-color: rgb(255, 255, 255, 0.8);
}
#sub-contentbox1{
	flex: 1 1 350px;
}
#sub-contentbox2{
	flex: 1 1 350px;
}
#side-menu{
	align-self: stretch;
	width: 350px;
	height: 100%;
	margin: 10px 20px 0 20px;
}
#side-menu-item{
	position: sticky;
	top: 100px;
}
#side-menu-item a:hover{
	color: #ff0000;
}

/*アコーディオン　メニュー*/
.accordion-wrap{
    border-bottom: 1px solid #303030;
}
.accordion-item{
	width: 100%;
	margin: 0 auto;
	cursor: pointer;
}
.accordion-header{
	transition: ease-in-out 100ms;
	padding: 10px 0;
}
.accordion-text{
	width: 100%;
	display: none;
	margin: 0 0 40px 0;
}
.accordion-text ul{
	display: flex;
	flex-wrap: wrap;
	padding-left: 10px;
}
.accordion-text ul li{
	line-height: 1.7em;
	list-style-type: circle;
	list-style-position: inside;
	margin: 0 10px;
}
.accordion-text ul li a{
	padding: 0;
}

.fa{
	transition: ease-in-out 300ms;
}
.rotate-fa{
	transform: rotate(180deg);
}
.accordion-header .fa{
	float: right;
}
.accordion-gold{
	color: #2e2e2e;
	font-size: 160%;
}
.accordion-no-bar{
	border-bottom: 0;
}
/*アコーディオン　メニュー*/

/*トップページユーチューブコンテンツ*/
.youtube-content{
	display: flex;
	flex-direction: column;
	padding: 0;
	background-color: #cacaca;
}
.youtube-box{
	display: flex;
	align-items: flex-start;
	margin: 10px;
	height: 150px;
	background-color: #fff;
}
.youtube-box_f{
	flex: 1 1 auto;
	position: sticky;
	height: 100%;
	top: 0;
	left: 0;
	background-image: url(/images/youtube-photo-bg.png);
	background-repeat: repeat-x;
}
.youtube-box_f a{
	margin: 10px;
}
.youtube-box_p{
	flex: 1 1 auto;
	line-height: 1.5em;
	height: 130px;
	margin: 10px;
	font-size: 90%;
	overflow-y: scroll;
}
.youtube-box_p::-webkit-scrollbar{
	background: #707070;
	width: 10px;
	height: 20px;
	border: 1px solid #2e2e2e;
	border-radius: 10px;
}
.youtube-box_p::-webkit-scrollbar-thumb{
	background-color: #02e032;
	border: 1px solid #010058;
	border-radius: 10px;
}
.youtube-box a img{
	margin: 0;
	width: 250px;
	height: 150px;
	object-fit: contain;
	z-index: 2;
}
.youtube-h{
	display: block;
	width: 100% auto;
	line-height: 1.5em;
	background-color: #fff;
	margin: 10px;
	color: #da0000;
	text-align: center;
	white-space: nowrap;
}
.youtube-index{
	width: 100% auto;
	margin: 0 10px 10px 0;
	font-size: 120%;
	font-weight: bold;
	background: linear-gradient(transparent 50%, #7ff893 60%);
	white-space: nowrap;
	overflow: hidden;
}
/*トップページ ユーチューブコンテンツここまで*/
/*最新釣具情報*/
.new-item{
	display: flex;
	flex-wrap: wrap;

}
.new-item-box{
	flex: 1 1 200PX;
	min-width: 200px;
	margin: 5px;
	border-bottom: 1px solid #2e2e2e;
	overflow: hidden;
}
.new-item-box p{
	line-height: 1.5em;
	font-size: 90%;
	overflow: ellipsis;
}
.new-item img{
	width: 100%;
}
.new-item-h{
	display: block;
	padding: 5px 10px;
	width: 100%;
	font-size: 80%;
	line-height: 1.1em;
	background-image: url(/images/itembg.png);
	color: #fff;
}

/*最新釣具情報ここまで*/

/*コラム記事*/
#column{
	display: flex;
	width: 100%;
}
#column dl{
	display: flex;
	width: 100%;
	flex-direction: column;
	background-color: #e2f8e6;
	line-height: 1.2em;
}
#column dt{
	display: flex;
	width: 100% auto;
	margin: 0 10px;
}
#column dd{
	flex: 1 1 auto;
	min-width: 100px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin: 0 10px;
}
.column-list{
	display: flex;
}

/*コラム記事ここまで*/

.h-line-1{
	display: box;
	width: 100% auto;
	margin: 10px 0;
	background-color: rgb(226, 5, 5);
	border-radius: 10px;
	text-align: center;
	color: #fff;
}
.h-line-2{
	display: box;
	width: 100% auto;
	margin: 10px 0;
	background-color: rgb(5, 27, 226);
	border-radius: 10px;
	text-align: center;
}
/*AUTHOR*/
#author{
	width: 100% auto;
	display: flex;
	margin: 0;
	background-color: #f1f1f0;
	background-image: url(/images/pfbg.png);
	background-size: 100% auto;
	overflow: hidden;
}
#author-profile{
	flex: 1 1 70%;
	margin: 20px;
}
.author-profile{
	background: linear-gradient(transparent 30%, #ffff00 90%);
	margin-bottom: 30px;
}
#author-photo{
	float: right;
	margin: 30px 0 0 20px;
}
.author-box{
	background-color: rgb(255, 255, 255, 0.9);
	height: 100% auto;
	margin: 10px 0 20px 0;
	padding: 20px;
}
.profile{
	font-size: 90%;
}
.profile_{
	border-bottom: 1px solid #ccc;
}
.name{
	font-weight: bold;
}
.name-spaced{
	letter-spacing: 1.2em;
	padding-left: 1.2em;
	font-weight: bold;
	font-size: large;
}

/*AUTHOR ここまで*/



@media screen and (max-width: 1200px) {
#content-box{
	display: flex;
	width: 100% auto;
	max-width: 1200px;
	flex-wrap: wrap;
	margin: 0 auto;
	background-image: url(/images/index-bg.png);
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: 150%;
	background-position-y: top;
}
#content-box1{
	flex: 1 1 100%;
	margin: 0;
	height: 100% auto;
}
#content-box2{
	flex: 1 1 100%;
	margin: 0;
}
#side-menu{
	width: 100%;
	margin: 0;
	padding: 0;
}
#side-menu-item{
	display: flex;
	flex-direction: column;
	width: 100% auto;
	height: auto;
	margin: 0;
}
#side-menu-item a:hover{
	color: #ff0000;
}
/*アコーディオン　メニュー*/
.accordion-wrap{
	width: 100%;
    border-bottom: 1px solid #303030;
}
.accordion-item{
	width: 100%;
	margin: 20px 0;
	cursor: pointer;
}
.accordion-header{
	transition: ease-in-out 100ms;
	padding: 0;
	margin: 0;
}
.accordion-text{
	width: 100%;
	margin: 0;
}
.accordion-text ul{
	display: flex;
	flex-wrap: wrap;
}
.accordion-text ul li{
	line-height: 1.7em;
	list-style-type: circle;
	list-style-position: inside;
	margin: 0 10px;
	white-space: nowrap;
}
.accordion-text ul li a{
	padding: 0;
}

.fa{
	transition: ease-in-out 300ms;
}
.rotate-fa{
	transform: rotate(180deg);
}
.accordion-header .fa{
	float: right;
}
.accordion-gold{
	color: #2e2e2e;
}
.accordion-no-bar{
	border-bottom: 0;
}
/*アコーディオン　メニュー*/
}


@media screen and (max-width: 375px) {
#content-box{
	width: 100% auto;
	flex-wrap: wrap;
	flex-direction: row;
	margin: 0;
	text-align: left;
}
#content-box h1 img{
	width: 375px;
	height: auto;
}
#content-box1{
	flex: 0 0 350px;
	margin: 0;
	height: auto;
}
#content-box2{
	flex: 1 1 100% auto;
	margin: 0;
}
header{
	width: 375px;
	height: 70px;
	margin: 0;
	position: sticky;
	top: 0;
	background-color: #0e0e0e;
	z-index: 2;
}
#header-box{
	max-width: 375px;
	height: 100px;
	display: flex;
	margin: 0 auto;
}
.headerbox1{
	flex: 0 0 250px;
	height: 100px;
}
.headerbox1 img{
	width: 100% auto;
	height: auto;
}
.headerbox2{
	flex: 1 2 auto;
	background-color: #f75e06;
}
.main-content{
	display: flex;
	flex-wrap: wrap;
	width: 375px;
	text-align: left;
	margin: 0;
}
.sub-box{
	flex: 0 0 375px;
	width: 375px;
	margin: 0;
	padding: 0;
	background-color: rgb(255, 255, 255, 0.8);
}
#sub-contentbox1{
	flex: 1 1 350px;
}
#sub-contentbox2{
	flex: 1 1 350px;
}
/*トップページユーチューブコンテンツ*/
.youtube-content{
	display: flex;
	width: 375px;
	height: 100%;
	flex-direction: column;
	padding: 0;
	background-color: #cacaca;
}
.youtube-box{
	width: 375px;
	height: 300px;
	display: flex;
	align-items: center;
	flex-direction: column;
	margin: 0 auto 10px auto;
	height: auto;
	background-color: #ffffff;
}
.youtube-box_f{
	flex: 1 1 100%;
	height: 100px;
	top: 0;
	left: 0;
	background-image: url(/images/youtube-photo-bg.png);
	background-repeat: repeat-x;
	align-self: auto;
}
.youtube-box_f a{
	margin: 10px;
}
.youtube-box_p{
	flex: 1 1 100%;
	line-height: 1.2em;
	height: 40px;
	margin: 10px;
	font-size: 90%;
	overflow-y: scroll;
}
.youtube-box_p::-webkit-scrollbar{
	background: #707070;
	width: 10px;
	height: 20px;
	border: 1px solid #2e2e2e;
	border-radius: 10px;
}
.youtube-box_p::-webkit-scrollbar-thumb{
	background-color: #02e032;
	border: 1px solid #010058;
	border-radius: 10px;
}
.youtube-box a img{
	margin: 0;
	width: 250px;
	height: 150px;
	object-fit: contain;
	z-index: 2;
}
.youtube-h{
	display: block;
	margin: 0;
	padding: 0;
	width: 375px;
	line-height: 1.5em;
	background-color: #fff;
	color: #da0000;
	font-size: 12px;
}
.youtube-index{
	width: 100% auto;
	margin: 0 10px 10px 0;
	font-size: 120%;
	font-weight: bold;
	background: linear-gradient(transparent 50%, #7ff893 60%);
	white-space: nowrap;
	overflow: hidden;
}
/*トップページ ユーチューブコンテンツここまで*/
/*AUTHOR*/
#author{
	width: 375px;
	display: flex;
	margin: 0;
	background-color: #f1f1f0;
	background-image: url(/images/pfbg.png);
	background-size: 100% auto;
	overflow: hidden;
}
#author-profile{
	flex: 1 1 70%;
	margin: 0;
}
.author-profile{
	background: linear-gradient(transparent 30%, #ffff00 90%);
	margin-bottom: 30px;
}
#author-photo{
	width: auto;
	float: right;
	margin: 0;
	padding: 0;
}
#author-photo img{
	width: 100px;
}
.author-box{
	width: 365px;
	background-color: rgb(255, 255, 255, 0.9);
	height: 100% auto;
	margin: 0;
	padding: 5px;
}
.profile{
	font-size: 90%;
}
.profile_{
	border-bottom: 1px solid #ccc;
}
.name{
	font-weight: bold;
}
.name-spaced{
	letter-spacing: 1.2em;
	padding-left: 1.2em;
	font-weight: bold;
	font-size: large;
}

/*AUTHOR ここまで*/

#side-menu{
	width: 100%;
	text-align: center;
	margin: 0;
	padding: 0;
}
#side-menu-item{
	display: flex;
	flex-direction: column;
	width: 100% auto;
	height: auto;
	margin: 0;
}
#side-menu-item a:hover{
	color: #ff0000;
}
/*アコーディオン　メニュー*/
.accordion-wrap{
	width: 100%;
    border-bottom: 1px solid #303030;
}
.accordion-item{
	width: 100%;
	margin: 20px 0;
	cursor: pointer;
}
.accordion-header{
	transition: ease-in-out 100ms;
	padding: 0;
	margin: 0;
}
.accordion-text{
	width: 100%;
	margin: 0;
}
.accordion-text ul{
	display: flex;
	flex-wrap: wrap;
}
.accordion-text ul li{
	line-height: 1.7em;
	list-style-type: circle;
	list-style-position: inside;
	margin: 0 10px;
	white-space: nowrap;
}
.accordion-text ul li a{
	padding: 0;
}

.fa{
	transition: ease-in-out 300ms;
}
.rotate-fa{
	transform: rotate(180deg);
}
.accordion-header .fa{
	float: right;
}
.accordion-gold{
	color: #2e2e2e;
}
.accordion-no-bar{
	border-bottom: 0;
}
/*アコーディオン　メニュー*/
}
