/* Y'S GEAR : boat.css */


html, 
body { height: auto !important; }

.contentsWidth {
	color: #000;
}
.contentsWidth *,
.contentsWidth *::before,
.contentsWidth *::after { box-sizing: border-box; }
.contentsWidth a,
.contentsWidth a img {
	-webkit-transition: all ease .3s; /* Safari */
	transition: all ease .3s;
}


/*==============================================*
 *  [ Common ] 
 *==============================================*/

/* [ タブっぽいタイトル ] */
.tabTitle {
	margin-bottom: 30px;
	border-bottom: 4px solid #4894ce;
}
.tabTitle span {
	display: block;
	width: 270px;
	padding: 12px 20px 10px;
	background: #4894ce;
	color: #fff;
	font-size: 2rem;
	line-height: 1.2;
}

/* [ 元からある下線タイトルの日本語版 ] */
.dbListDxWrap h2.jp {
	padding-bottom: 5px;
	font-size:  2rem;
	font-weight: bold;
	font-family:
		Verdana, 
		"游ゴシック体", "Yu Gothic", YuGothic, 
		"メイリオ", Meiryo, 
		"ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", 
		"ＭＳ Ｐゴシック", "MS PGothic", 
		sans-serif;
}

/* [ 艤装一覧 ] */
.productLineup li.end, 
.productLineup li.daitai a {
	position: relative;
}
.productLineup li.end a::before,
.productLineup li.daitai a::before {
	position: absolute;
	top: 1px;
	left: 1px;
	margin: 0 5px 2px 0;
	padding: 2px;
	color: #fff;
	font-size: 1rem;
	z-index: 10;
}
.productLineup li.end a::before {
	background: #666;
	content: "生産終了";
}
.productLineup li.daitai a::before {
	background: #4794CF;
	content: "代替商品";
}

/* [ リンク ] */
.specialLink a img {
	width: 100%;
	height: auto;
}

@media screen and (max-width: 568px) {
	/* [ タブっぽいタイトル ] */
	.tabTitle {
		margin-bottom: 15px;
	}
	.tabTitle span {
		width: 180px;
		padding: 10px 10px 8px;
		font-size: 1.8rem;
	}
	
	/* [ 元からある下線タイトルの日本語版 ] */
	.dbListDxWrap h2.jp {
		font-size:  1.8rem;
	}
	
	/* [ 艤装一覧のタイトル ] */
	.productLineup h2 {
		display: block;
		padding: 0 10px;
		border: 0;
	}
	.productLineup h3 {
		padding: 10px !important;
	}
	.productLineup h3:before {
		display: none !important;
	}
} /* */

/*==============================================*
 *  [ promotionMovie ] 
 *==============================================*/

.promotionMovie {
	position: relative;
	padding-bottom: 56.25%;
}
.promotionMovie iframe {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


/*==============================================*
 *  [ modalMovie ] 
 *==============================================*/

.modalMovie { display: flex; }
.modalMovie > * {
	display: block;
	width: 50%;
}

@media screen and (max-width: 568px) {
	.modalMovie { display: block; }
	.modalMovie > * { width: 100%; }
} /* */


/*==============================================*
 *  [ modalBox ] 
 *==============================================*/

.modalBox {
	position: relative;
	width: 100% !important;
	max-width: 880px !important;
	margin: 0 auto;
	padding: 40px 20px !important;
	background: #fff;
	color: #000;
	font-size: 1.6rem;
}
.modalBox * { box-sizing: border-box; }
.modalBox a {
	-webkit-transition: all ease .3s; /* Safari */
	transition: all ease .3s;
}

/* [ タイトル ] */
.modalBox h2 {
	margin-bottom: 20px;
	font-size: 2.4rem;
	text-align: center;
}
.modalBox h2 span { display: inline-block; }

/* [ 動画 ] */
.modalBox .movie {
	position: relative;
	padding-top: 56.25%;
	background: #daeaf5;
	overflow: hidden;
}
.modalBox .movie iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* [ 閉じる ] */
.modalBox button {
	position: absolute;
	top: 0;
	right: 0 !important;
	width: 40px !important;
	height: 40px !important;
	padding: 0 0 0.2em !important;
	border: none;
	background: #000;
	color: #fff !important;
	font-size: 3rem;
	font-weight: bold;
	cursor: pointer;
	outline: none;
	-webkit-transition: all ease .3s; /* Safari */
	transition: all ease .3s;
}
.modalBox button:hover { background: #666; }
.modalBox button::before, 
.modalBox button::after { display: none; }

@media screen and (max-width: 568px) {
	.modalBox {
		margin: 10px 0;
		padding: 20px 10px !important;
	}
	
	/* [ タイトル ] */
	.modalBox h2 {
		padding: 0 30px;
		font-size: 1.8rem;
	}
} /* */


/*==============================================*
 *  [ customTheme ] 
 *==============================================*/

.customTheme {
	margin-bottom: 50px;
}

/* [ テーマ ] */
.customTheme h2 {
	float: left;
	color: #4894ce;
	font-size: 2rem;
}
.customTheme h2::before {
	display: inline-block;
	margin: 3px 5px 0 0;
	color: #666;
	font-size: 1.4rem;
	vertical-align: text-top;
	content: "[艤装テーマ]";
}

/* [ アイコン ] */
.customTheme ul {
	display: -webkit-flex;
	display: flex;
	float: right;
}
.customTheme li + li {
	margin-left: 5px;
}

/* [ テキスト ] */
.customTheme p {
	font-size: 1.6rem;
	clear: both;
}

@media screen and (max-width: 568px) {
	.customTheme {
		margin-bottom: 30px;
	}
	
	/* [ テーマ ] */
	.customTheme h2 {
		float: none;
		margin-bottom: 15px;
		font-size: 1.8rem;
	}
	.customTheme h2::before {
		font-size: 1.2rem;
	}
	
	/* [ アイコン ] */
	.customTheme ul {
		margin-bottom: 20px;
	}
	
	/* [ テキスト ] */
	.customTheme p {
		font-size: 1.5rem;
	}
} /* */


/*==============================================*
 *  [ staffComment ] 
 *==============================================*/

.staffComment {
	margin-bottom: 60px;
	padding: 30px;
	border: 3px solid #000;
	font-size: 1.6rem;
}
.staffComment h2 {
	margin: -55px 0 15px -30px;
}
.staffComment p + p {
	margin-top: 10px;
}
.staffComment p b {
	font-size: 1.8rem;
}

@media screen and (max-width: 568px) {
	.staffComment {
		margin-bottom: 40px;
		padding: 15px;
		font-size: 1.4rem;
	}
	.staffComment h2 {
		width: 220px;
		margin: -40px 0 10px -20px;
	}
	.staffComment p b {
		font-size: 1.6rem;
	}
} /* */


/*==============================================*
 *  [ recommendStyle ] 
 *==============================================*/

.recommendStyle { margin: 0 0 60px !important; }

.recommendStyleInner { display: block; }
.recommendStyleInner figure { width: 100%; }
.recommendStyleInner .wrap {
	display: flex;
	justify-content: space-between;
	width: 100%;
	padding: 15px 20px;
}
.recommendStyleInner .wrap > div { width: calc(50% - 10px); }
.recommendStyleInner p, 
.recommendStyleInner p * { line-height: 1.1 !important; }
.recommendStyleInner .head p { padding: 5px; }

.recommendStyleInner li.end .item,
.recommendStyleInner li.end .price {
	background: #ddd;
}
.recommendStyleInner li.end .item b::before,
.recommendStyleInner li.daitai .item b::before {
	display: inline-block;
	margin: 0 5px 2px 0;
	padding: 2px;
	color: #fff;
	font-size: 1rem;
	vertical-align: middle;
}
.recommendStyleInner li.end .item b::before {
	background: #666;
	content: "生産終了";
}
.recommendStyleInner li.daitai .item {
	border-right: none;
}
.recommendStyleInner li.daitai .item span {
	background: #ECF4FA;
}
.recommendStyleInner li.daitai .item b::before {
	background: #4794CF;
	content: "代替商品";
}

.recommendStyleInner .price b {
	display: inline-block;
	width: 5.5em;
	font-weight: normal;
}
.recommendStyleInner .price span { font-size: 1.1rem !important; }
.recommendStyleInner .total {
	width: 100%;
	margin: 0;
	padding: 10px 20px;
}

@media screen and (max-width: 768px) {
	.recommendStyleInner .wrap {
		display: block;
		width: 100%;
		height: 60vh;
		overflow-y: scroll;
		padding: 15px 20px;
		border-top: 15px solid transparent;
		border-bottom: 15px solid transparent;
	}
	.recommendStyleInner .wrap > div { width: 100%; }
	.recommendStyleInner .wrap > div:nth-child(2) .head { display: none; }
} /* */

@media screen and (max-width: 568px) {
	.recommendStyle { margin-bottom: 40px !important; }
	.recommendStyleInner .wrap { padding: 0 10px; }
	.recommendStyleInner .price span { font-size: 1rem !important; }
	.recommendStyleInner .total { padding: 10px; }
} /* */

/*==============================================*
 *  [ customGallery ] 
 *==============================================*/

.customGallery {
	margin-bottom: 60px;
}

/* [ リスト ] */
.customGallery ul {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.customGallery li {
	width: 18.4%;
	margin-left: 2%;
}
.customGallery li:nth-child(5n+1) {
	margin-left: 0;
}
.customGallery li:nth-child(5n) ~ li {
	margin-top: 2%;
}

/* [ ボタン ] */
.customGallery .more {
	position: relative;
	text-align: center;
}
.customGallery .more::before {
	display: block;
	position: absolute;
	right: 0;
	bottom: 100%;
	left: 0;
	padding-bottom: 10%;
	background: -moz-linear-gradient(top,  rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
	background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
	background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
	content: "";
}
.customGallery .more.close::before {
	position: static;
	padding-bottom: 30px;
}
.customGallery .more b {
	display: inline-block;
	width: 100%;
	max-width: 400px;
	padding: 10px;
	border: 2px solid #4894ce;
	color: #4894ce;
	font-size: 1.8rem;
	cursor: pointer;
}
.customGallery .more b::before { content: "もっと見る"; }
.customGallery .more.close b::before { content: "閉じる"; }

@media screen and (max-width: 568px) {
	.customGallery {
		margin-bottom: 40px;
	}
	
	/* [ リスト ] */
	.customGallery li {
		width: 32%;
		margin-left: 2% !important;
	}
	.customGallery li:nth-child(3n+1) {
		margin-left: 0 !important;
	}
	.customGallery li:nth-child(3n) ~ li {
		margin-top: 2%;
	}
	
	/* [ ボタン ] */
	.customGallery .more::before {
		padding-bottom: 20%;
	}
	.customGallery .more.close::before {
		padding-bottom: 20px;
	}
	.customGallery .more b {
		padding: 7px 10px;
		font-size: 1.6rem;
	}
} /* */


/*==============================================*
 *  [ productPickup ] 
 *==============================================*/

.productPickup {
	margin-bottom: 60px;
}
.productPickup section {
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid #ccc;
	font-size: 1.6rem;
}
.productPickup section h3 {
	margin-bottom: 15px;
	padding: 5px 0 5px 10px;
	border-left: 5px solid #4894ce;
	color: #4894ce;
	font-size: 1.8rem;
	line-height: 1.1;
}
.productPickup section a {
	color: #4894ce;
}
.productPickup section a:hover,
.productPickup section a:active {
	text-decoration: underline;
}
.productPickup section a.daitai {
	display: inline-block;
	margin-top: 10px;
	padding: 5px 10px;
	border: 2px solid #ddd;
	text-decoration: none;
}
.productPickup section a.daitai::before {
	display: inline-block;
	margin: 0 5px 3px 0;
	padding: 2px;
	background: #4894ce;
	color: #fff;
	font-size: 1rem;
	line-height: 1;
	vertical-align: middle;
	content: "代替商品";
}
.productPickup section > div {
	padding: 0 15px;
}
.productPickup section > div.flex {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.productPickup section > div.flex.right {
	-webkit-flex-flow: row-reverse;
	flex-flow: row-reverse;
}
.productPickup section > div.flex figure {
	width: 25%;
}
.productPickup section > div.flex p {
	width: 72%;
}
.productPickup section > div a {
	font-weight: bold;
	text-decoration: underline;
}
.productPickup section > div a:hover,
.productPickup section > div a:active {
	text-decoration: none;
}

@media screen and (max-width: 568px) {
	.productPickup {
		margin-bottom: 40px;
	}
	.productPickup section {
		margin-bottom: 15px;
		font-size: 1.4rem;
	}
	.productPickup section h3 {
		padding: 3px 0 3px 10px;
		font-size: 1.6rem;
	}
	.productPickup section > div {
		padding: 0;
	}
	.productPickup section > div.flex {
		display: block;
	}
	.productPickup section > div.flex figure {
		width: 100%;
		margin-bottom: 15px;
	}
	.productPickup section > div.flex p {
		width: 100%;
	}
} /* */


/*==============================================*
 *  [ boatLink ] 
 *==============================================*/

.boatLink {
	margin: 70px 0;
}
.boatLink img {
	width: 100%;
	height: auto;
}

@media screen and (max-width: 980px) {
	.boatLink {
		margin: 50px 0;
		padding: 0 20px;
	}
} /* */

@media screen and (max-width: 568px) {
	.boatLink {
		margin: 30px 0;
		padding: 0 10px;
	}
} /* */


/*==============================================*
 *  [ moveLink ] 
 *==============================================*/

.moveLink {
	margin: 70px 0;
	text-align: center;
}

/* [ モデル ] */
.moveLink .model {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.moveLink .model > * {
	position: relative;
	width: 31%;
}
.moveLink .model b {
	position: absolute;
	top: calc(50% - 0.5em);
	left: 0;
	width: 100%;
	color: #fff;
	font-size: 2.4rem;
	line-height: 1;
}

/* [ トップ ] */
.moveLink a.top {
	display: inline-block;
	margin-top: 50px;
	color: #000;
	font-size: 2rem;
}
.moveLink a.top::before {
	display: inline-block;
	width: 14px;
	height: 14px;
	margin-top: -3px;
	border-top: 4px solid #a6a6a6;
	border-left: 4px solid #a6a6a6;
	vertical-align: middle;
	transform: rotate(-45deg);
	content: "";
}

@media screen and (max-width: 980px) {
	.moveLink {
		margin: 50px 0;
		padding: 0 20px;
	}
} /* */

@media screen and (max-width: 568px) {
	.moveLink {
		margin: 30px 0;
		padding: 0 10px;
	}
	
	/* [ モデル ] */
	.moveLink .model > * {
		width: calc(50% - 5px);
	}
	.moveLink .model > div {
		display: none;
	}
	.moveLink .model b {
		font-size: 1.8rem;
	}
	
	/* [ トップ ] */
	.moveLink a.top {
		margin-top: 30px;
		font-size: 1.6rem;
	}
	.moveLink a.top::before {
		width: 10px;
		height: 10px;
	}
	.moveLink a.top span {
		display: none;
	}
} /* */

