<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

*{
	box-sizing: border-box;
}

body{
	
	color: #333;
	font-family: YuGothic,'Yu Gothic','Yu Gothic UI','ヒラギノ角ゴシック','Hiragino Sans',sans-serif;
	background-color: #e9e9e9;
}
img{
	vertical-align: bottom;
}

main{
	overflow-x: hidden;
}

/* --------------------------

	独自CSS 解除
	
-------------------------------	*/


/* --------------------------

	表示非表示 
	
-------------------------------	*/
.sp{ display: none; }
@media screen and (max-width: 640px){
	.pc{ display: none; }
	.sp{ display: block; }	
}	

#wrap{
	overflow-x: hidden;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

	
/* ---------------------------

	見出し
	
-------------------------------	*/

.section-title{
	margin-bottom: 70px;
}
.section-title-en,
.section-title-ja{
	display: block;
	text-align: center;
	line-height: 1;
}

.section-title-en{
	font-size: 30px;
	font-family: 'Oswald';
	font-weight: 600;
	letter-spacing: 0.1em;
	margin-bottom: 16px;
}

@media screen and (max-width: 640px){
	.section-title{
		margin-bottom: 40px;
	}
}

/* ----------------------------

	イントロ
	
-------------------------------	*/

.intro{
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.title{
	font-size: 50px;
	font-family: 'Oswald';
	font-weight: 600;
	letter-spacing: 0.1em;
	line-height: 1;
	text-align: center;
	padding: 47px 0;
}

@media screen and (max-width: 1200px){
	.intro{
		width: 96%;
	}
}

@media screen and (max-width: 640px){
	.intro{
		width: calc(100% - 40px);
		paddin: 40px 0;
	}
	.title{
		font-size: 40px;
	}
}


.contents{
	background-color: #fff;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto 70px;
	padding: 70px 0;
}

@media screen and (max-width: 1200px){
	.contents{
		width: calc(100% - 40px);
		margin: 0 20px;
		padding: 35px 0 20px;
	}
}


/* ---------------------------

	ハンバーガーメニュー
	
-------------------------------	*/

.menu{
	cursor: pointer;
	z-index: 2;
	position: absolute;
	top: 0;
	right: 0;
	background-color: #000;
	width: 66px;
	height: 66px;
	padding: 17px 12px;
}

.menuBtn,
.menuBtn span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menuBtn {
	z-index: 2;
	position: relative;
	width: 42px;
	height: 33px;
}
.menuBtn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #fff;
  border-radius: 4px;
}
.menuBtn span:nth-of-type(1) {
  top: 0;
}
.menuBtn span:nth-of-type(2) {
  top: 15px;
}
.menuBtn span:nth-of-type(3) {
  bottom: 0;
}

/* click */
.menuBtn.active span:nth-of-type(1) {
  -webkit-transform: translateY(15px) rotate(-45deg);
  transform: translateY(15px) rotate(-45deg);
}
.menuBtn.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  -webkit-animation: active-menu-bar02 .8s forwards;
  animation: active-menu-bar02 .8s forwards;
}
@-webkit-keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
@keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
.menuBtn.active span:nth-of-type(3) {
  -webkit-transform: translateY(-15px) rotate(45deg);
  transform: translateY(-15px) rotate(45deg);
}

@media screen and (max-width: 640px){
	.menu{
		width: 50px;
		height: 50px;
		padding: 10px;
	}
	.menuBtn{
		width: 100%;
		height: 100%;
	}

	.menuBtn span:nth-of-type(2){
		top: 13px;
	}

	/* click */
	.menuBtn.active span:nth-of-type(1) {
	  -webkit-transform: translateY(13px) rotate(-45deg);
	  transform: translateY(13px) rotate(-45deg);
	}
	@keyframes active-menu-bar02 {
	  100% {
	    height: 0;
	  }
	}
	.menuBtn.active span:nth-of-type(3) {
	  -webkit-transform: translateY(-13px) rotate(45deg);
	  transform: translateY(-13px) rotate(45deg);
	}
}


/* ---------------------------

	プレイヤーメニュー
	
-------------------------------	*/


.menuPlyer{
	transition: opacity .4s;
	opacity: 0;
	visibility: hidden;
	z-index: 1;
	position: absolute;
	top: -15px;
	right: 0;
	
	width: 224px;
	background-color: #000;
	padding: 90px 0 0;
}




.menuPlayer-list{
	
}
.menuPlayer-list-item{
	position: relative;
}
.menuPlayer-list-item:before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 76%;
	border-top: 1px solid #2f2f2f;
}

.menuPlayer-list-item a{
	position: relative;
	display: block;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 0.1em;
	line-height: 1;
	padding: 20px 37px;
}
.menuPlayer-list-item a:after,
.menuPlyaer-topBtn a:after{
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	right: 30px;
	
	transform: translateY(-50%) rotate(-45deg);
	
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	width: 6px;
	height: 6px;
}


.menuPlyaer-topBtn{
	margin-top: 26px;
}
.menuPlyaer-topBtn a{
	position: relative;
	display: block;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 0.1em;
	line-height: 1;
	background-color: #515151;
	padding: 20px 37px;
}

.menuPlyaer-topBtn a span,
.menuPlayer-list-item a span{
	display: block;
	transition: all .4s;
}

.menuPlyaer-topBtn a:hover span,
.menuPlayer-list-item a:hover span{
	transform: translateX(10px);
}

.active + .menuPlyer {
    opacity: 1;
    visibility: visible;
}

.menuPlyer-scroll{
    overflow-y: auto;
    height: 80vh;
    max-height: 566.5px;
    -webkit-overflow-scrolling: touch;
}

.sticky{
  z-index: 1;
  position: sticky;;
  position: -webkit-sticky;
  top: 60px; 
  transform: translateY(38px);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 1200px){
  .sticky{
    width: calc(100% - 40px);
    padding: 0 20px;
  }
}

@media screen and (max-width: 768px){
	.menuPlyer-scroll{
	    height: 60vh;
	}
}






/* ---------------------------

	Profile
	
-------------------------------	*/

.profile-inner{
	display: flex;
	justify-content: space-between;
	padding: 0 4.16%;
}

.profile-img,
.profile-detail{
	width: 50%;
}
.profile-img{
	overflow: hidden;
	text-align: center;
	height: 328px;
	padding-right: 20px;
}
.profile-detail{
	padding-left: 50px;
}
.profile-detail-name{
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 40px;
}
.profile-detail-sns{
	display: flex;
	justify-content: center;
	margin: 0 0 40px;
}
.profile-detail-sns li{
	transition: all .4s;
	margin: 0 7px;
}
.profile-detail-sns img{
	width: 38px;
	height: 38px;
}
.profile-detail-data{
	margin-bottom: 30px;
}
.profile-detail-data dl{
	display: flex;
	justify-content: center;
	align-items: center;
}
.profile-detail-data dt,
.profile-detail-data dd{
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 2.357;
}
.profile-detail-data dt{
	font-weight: bold;
}
.profile-detail-data dd:before{
	content: ':';
	margin: 0 .25em;
}

@media screen and (min-width: 769px){
	.profile-detail-sns li:hover{
		transform: scale(1.1);
	}
}


@media screen and (max-width: 1200px){
	
}
@media screen and (max-width: 1100px){
	
}
@media screen and (max-width: 640px){
	.profile-inner{
		flex-wrap: wrap;
		padding: 0 4.16%;
	}
	.profile-img,
	.profile-detail{
		width: 100%;
		padding: 0;
	}
	.profile-img{
		order: -1;
		margin: 0 auto;
		padding: 0 0 0;
		width: auto;
		height: auto;
	}
	.profile-img img{
		width: 80%;
	}
	.profile-detail{
		padding: 0 0;
	}
}


/* ---------------------------

	Photo
	
-------------------------------	*/
.photo_cap{
	text-align: right;
	margin-top: 10px;
	font-size: 12px;
}
.photo{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.photo-img{
	width: calc(100% / 3);
}
.photo-img img{
	width: 100%;
}

@media screen and (max-width: 640px){
	.photo-img{
		width: calc(100% / 2);
	}
	.photo-img--spNone{
		display: none;
	}
	
	.photo{
		visibility: hidden;
	}
	.photo_cap{
		visibility: hidden;
	}
	
	.photos{
		order: -1;
  	margin: 0 -4.16% 40px;
	}
	.photos .photo,
	.photos .photo_cap{
		visibility: visible;
	}
	
	#profile + .photo,
	#profile + .photo + .photo_cap{
		display: none;
	}
}


/* ---------------------------

	Player Model
	
-------------------------------	*/

#model{
	margin-top: 70px;
}

.model-inner{
	width: 75%;
	max-width: 900px;
	margin: 0 auto 67px;
}
.model-product{
	text-align: center;
}
.model-product-name{
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 0.1em;
	line-height: 1.5;
	margin-bottom: 70px;
}
.model-product-img{
	margin-bottom: 62.5px;
}
.model-product-detail{
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 2.35;
}
.model-product-detail-txt{
	margin-bottom: 2.35em;
}

@media screen and (max-width: 640px){
	.model-inner{
		width: 100%;
		padding: 0 20px;
	}
	.model-product-img{
		width: 96%;
		margin: 0 auto 40px;
	}
	.model-product-img img{
		width: 100%;
	}

	.model-product-name,
	.model-product-detail-txt{
		text-align: left;
	}

	.model-product-name{
		margin-bottom: 40px;
	}
	.model-product-detail{
		line-height: 1.65;
	}
}






/* ---------------------------

	Setting
	
-------------------------------	*/

.setting-inner{
	width: 75%;
	max-width: 900px;
	margin: 0 auto 67px;
}
.setting-list-item{
	display: flex;
	align-items: center;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 0.1em;
	border-top: 1px solid #cccccc;
	padding: 23px 28px 21px;
}
.setting-list-item a{
	color: #333;
	display: block;
	width: 100%;
}
.setting-list-item:before{
	content: '';
	display: inline-block;
	width: 28px;
	height: 28px;
	margin-right: 33px;
}
.setting-list-item:last-child{
	border-bottom: 1px solid #cccccc;
}
.setting-list-item--barrel:before{
	background: url('../images/common/icon_barrel@2x.png') center center no-repeat;
	background-size: 25px 25px;
}
.setting-list-item--flight:before{
	background: url('../images/common/icon_flight@2x.png') center center no-repeat;
	background-size: 25px 27px;
}
.setting-list-item--shaft:before{
	background: url('../images/common/icon_shaft@2x.png') center center no-repeat;
	background-size: 28px 28px;
}
.setting-list-item--chips:before{
	background: url('../images/common/icon_chips@2x.png') center center no-repeat;
	background-size: 24px 24px;
}

@media screen and (min-width: 769px){
	.setting-list-item a:hover{
		text-decoration: underline;
	}
}

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

	#setting{
		padding-bottom: 1px;
	}
	.setting-inner{
		width: 100%;
		padding: 0 20px;
	}
	.setting-list-item{
		flex-wrap: wrap;
		flex-direction: column;
		align-items: flex-start;
		padding: 23px 20px;
	}
	.setting-list-item:before{
		margin-bottom: 10px;
	}
}


/* ----------------------------

	Grip
	
-------------------------------	*/

.grip-inner{
	width: 91.7%;
	max-width: 1100px;
	margin: 0 auto;
}
.grip-list{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.grip-list-img{
	width: 32%;
	border: 2px solid #cfcfcf;
}
.grip-list-img img{
	max-width: 100%;
}

@media screen and (max-width: 640px){
	.grip-inner{
		width: 100%;
		padding: 0 20px;
	}
	.grip-list{
		flex-direction: column;
		align-items: center;
		justify-content: center;;
	}
	.grip-list-img{
		width: auto;
		margin-bottom: 20px;
	}
	.grip-list-img:last-child{
		margin-bottom: 0;
	}
}

/* ----------------------------

	Youtube
	
-------------------------------	*/

.youtube{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 70px;
	margin-bottom: -1px;
}
.youtube-video iframe{
	display: block;
}
.youtube-detail{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background-color: #ffffd6;
	width: 50%;
}
.youtube-detail-thm{
	overflow: hidden;
	border-radius: 50%;
	background-color: #fff;
	width: 80px;
	margin: 0 auto 10px;
}
.youtube-detail-thm img{
	max-width: 100%;
}
.youtube-detail-name{
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 0.1em;
	text-align: center;	
	margin-bottom: 14px;
}
.youtube-detail-summary p{
	font-size: 13px;
	letter-spacing: 0.1em;
	line-height: 2.15;
	text-align: center;
}
.youtube-detail-summary{
	margin-bottom: 20px;
}

@media screen and (max-width: 1200px){
	.youtube-video{
		width: 50%;
	}
	.youtube-video iframe{
		width: 100%;
	}
}
@media screen and (max-width: 640px){
	.youtube{
		margin-bottom: -21px;
	}
	.youtube-video{
		position: relative;
		width: 100%;
		padding-top: 57%;
	}
	.youtube-video iframe{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
	.youtube-detail{
		width: 100%;
		padding: 20px 0;
	}
}



/* ----------------------------

	Btn - 購入はこちら チャンネル登録はこちら
	
-------------------------------	*/

.btn{
	width: 151px;
	margin: 0 auto;
}
.btn a{
	display: block;
	transition: all .4s;
	color: #fff;
	font-size: 14px;
	line-height: 1;
	text-align: center;
	background-color: #b50005;
	border: 1px solid #b50005;
	padding: 12px 0 11px;
}

@media screen and (min-width: 769px){
	.btn a:hover{
		color: #b50005;
		background-color: transparent;
	}
}

#page-top{
	position: fixed;
	right: 10px;
	bottom: 10px;
}


</pre></body></html>