/**
 * Featherlight – ultra slim jQuery lightbox
 * Version 1.7.13 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2018, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/

html.with-featherlight {
	/* disable global scrolling when featherlights are visible 
	overflow: hidden;*/
}

.featherlight {
	display: none;

	/* dimensions: spanning the background from edge to edge */
	position:fixed;
	top: 0; right: 0; bottom: 0; left: 0;
	z-index: 2147483647; /* z-index needs to be >= elements on the site. */

	/* position: centering content */
	text-align: center;

	/* insures that the ::before pseudo element doesn't force wrap with fixed width content; */
	white-space: nowrap;

	/* styling */
	cursor: pointer;
	background: #333;
	/* IE8 "hack" for nested featherlights */
	background: rgba(0, 0, 0, 0);
}

/* support for nested featherlights. Does not work in IE8 (use JS to fix) */
.featherlight:last-of-type {
	background: rgba(0, 0, 0, 0.8);
}

.featherlight:before {
	/* position: trick to center content vertically */
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.featherlight .featherlight-content {
	/* make content container for positioned elements (close button) */
	position: relative;

	/* position: centering vertical and horizontal */
	text-align: left;
	vertical-align: middle;
	display: inline-block;

	/* dimensions: cut off images */
	overflow: auto;
	padding: 25px 25px 0;
	border-bottom: 25px solid transparent;
	width: 90%;
	max-width: 800px;

	/* dimensions: handling large content */
	margin-left: 5%;
	margin-right: 5%;
	max-height: 95%;

	/* styling */
	background: #fff;
	cursor: auto;

	/* reset white-space wrapping */
	white-space: normal;
}

/* contains the content */
.featherlight .featherlight-inner {
	/* make sure its visible */
	display: block;
}

/* don't show these though */
.featherlight script.featherlight-inner,
.featherlight link.featherlight-inner,
.featherlight style.featherlight-inner {
	display: none;
}

.featherlight .featherlight-close-icon {
	/* position: centering vertical and horizontal */
	position: absolute;
	z-index: 9999;
	top: 0;
	right: 0;

	/* dimensions: 25px x 25px */
	line-height: 25px;
	width: 25px;

	/* styling */
	cursor: pointer;
	text-align: center;
	font-family: Arial, sans-serif;
	background: #fff; /* Set the background in case it overlaps the content */
	background: rgba(255, 255, 255, 0.3);
	color: #000;
	border: none;
	padding: 0;
}

/* See http://stackoverflow.com/questions/16077341/how-to-reset-all-default-styles-of-the-html5-button-element */
.featherlight .featherlight-close-icon::-moz-focus-inner {
	border: 0;
	padding: 0;
}

.featherlight .featherlight-image {
	/* styling */
	width: 100%;
}


.featherlight-iframe .featherlight-content {
	/* removed the border for image croping since iframe is edge to edge */
	border-bottom: 0;
	padding: 0;
	-webkit-overflow-scrolling: touch;
}

.featherlight iframe {
	/* styling */
	border: none;
}

.featherlight * { /* See https://github.com/noelboss/featherlight/issues/42 */
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/* handling phones and small screens */
@media only screen and (max-width: 1024px) {
	.featherlight .featherlight-content {
		/* dimensions: maximize lightbox with for small screens */
		margin-left: 0;
		margin-right: 0;
		max-height: 98%;
		width: 90%;

		padding: 10px 10px 0;
		border-bottom: 10px solid transparent;
	}
}

/* hide non featherlight items when printing */
@media print {
	html.with-featherlight > * > :not(.featherlight) {
		display: none;
	}
}


/* size */


.wetsuits_sizelist table{
	width: 100%;
	margin: 10px auto;
	text-align: center;
	border-collapse: collapse;
}

.wetsuits_sizelist table th{
	border-collapse: collapse;
	border: 1px solid #CCC;
	padding: 5px;
	background-color: #0084c9;
	color: #FFF;
}

.wetsuits_sizelist table td{
	border-collapse: collapse;
	border: 1px solid #CCC;
	padding: 5px;
}

.wetsuits_sizelist table th:last-child,
.wetsuits_sizelist table td:last-child{
	border-right: none;
}

.wetsuits_sizelist table .listname{
	text-align: left;
	border-right: none;
	border-left: none;
}

.wetsuits_sizelist table .listnumber{
	border-left: none;
	color: #0084c9;
	font-weight: bold;
}

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

/* size */

.wetsuits_sizelist .sizeimage{
	width: 80%;
	margin: 0 auto 30px;
}

/*タブ切り替え全体のスタイル*/
.wetsuits_sizelist .tabs {
	margin-top: 50px;
	background-color: #fff;
	width: 100%;
	margin: 0 auto;
}

/*タブのスタイル*/
.wetsuits_sizelist .tab_item {
	width: calc(100%/2);
	height: 50px;
	background-color: #cccccc;
	line-height: 50px;
	font-size: 16px;
	text-align: center;
	color: #FFF;
	display: block;
	float: left;
	text-align: center;
	font-weight: bold;
	transition: all 0.2s ease;
}


/*ラジオボタンを全て消す*/
input[name="tab_item"] {
	display: none;
}

/*タブ切り替えの中身のスタイル*/
.wetsuits_sizelist .tab_content {
	display: none;
	padding: 5% 0 0;
	clear: both;
	overflow: hidden;
}

/*選択されているタブのコンテンツのみを表示*/
#all:checked ~ #all_content,
#programming:checked ~ #programming_content,
#design:checked ~ #design_content {
	display: block!important;
}

/*選択されているタブのスタイルを変える*/
.wetsuits_sizelist .tabs input:checked + .tab_item {
	background-color: #0084c9;
	color: #FFF;
}

}

.featherlight-sample {
	display: none;
}

.wetsuits_item{
	width: 100%!important;
	margin: 0 auto 20px;
}

.wetsuits_item h1{
	width: 40%;
	max-width: 200px;
	margin: 0 auto 20px;
}

.wetsuits_item h3{
	position: relative;
  padding: 0.3em 0.5em;
  background: -webkit-linear-gradient(to right, rgb(0, 132, 201), #FFF);
  background: linear-gradient(to right, rgb(0, 132, 201), #FFF);
	text-align: left;
	font-weight: bold;
	font-size: 1.2em;
	color: #FFF;
	margin: 20px auto 15px;
}

.wetsuits_item a{
	text-decoration: underline;
}

.wetsuits_item p.itemtext{
	margin-bottom: 10px!important;
}

.wetsuits_item td.tblank{
	text-align: left!important;
}

.wetsuits_item .video{
  position:relative;
  width:100%;
	max-width: 800px;
  padding-top:56.25%;
	margin: 0 auto;
}

.wetsuits_item iframe{
  position:absolute;
  top:0;
  right:0;
  width:100%;
  height:100%;
}

.wetsuits_item .attention{
	padding: 10px;
	margin: 10px auto;
	border: 5px double #0084c9;
}

.wetsuits_item .attention h4{
	font-size: 1.1em;
	color: #0084c9;
	margin-bottom: 5px;
}

.sizespeck table.main {
	width: 100%!important;
}

.FS2_figure_table_td_input_cnt input{
	width: 50px;
}

@media screen and (max-width:748px) {
.wetsuits_item{
	font-size: 3.125vw!important;
	line-height: 180%;
	width: 98%;
	margin: 20px auto;
}
}