@charset "UTF-8";

/* ===================================================================
   NEWSページ専用css
=================================================================== */

/* 共通レイアウト
--------------------------------------------------------------------*/

body {
	opacity: 0;
	-webkit-transition: all 2.0s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: all 2.0s cubic-bezier(0.215, 0.61, 0.355, 1);
}
body.visible {
	opacity: 1;
}
#contents.fitguide {}
.fitguide_content {}
.fitguide_gender {
	margin-bottom: 20px;
}
.fitguide_gender_list:before, .fitguide_gender_list:after {
	content: none;
}
.fitguide_gender_list {
	display: flex;
	justify-content: center;
}
.fitguide_gender_item {
	margin: 0 10px;
}
.fitguide_gender_item.selected {}
.fitguide_gender_link {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: center;
	height: 44px;
	color: #ddd;
	font-family: "Oswald", sans-serif;
	font-size: 24px;
	position: relative;
}
.fitguide_gender_item.selected .fitguide_gender_link {
	color: #000;
}
.fitguide_gender_link:hover {
	color: #000;
	text-decoration: none;
}
.fitguide_gender_link:after {
	content: "";
	display: block;
	width: 0%;
	height: 3px;
	background-color: transparent;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	transition: all .4s;
}
.fitguide_gender_item.selected .fitguide_gender_link:after {
	opacity: 0;
	-webkit-animation: typoFade 1s ease 1.5s 1 forwards;
	animation: typoFade 1s ease 1.5s 1 forwards;
	-webkit-transition: all .4s;
	transition: all .4s;
}
.fitguide_gender_link:hover:after,
.fitguide_gender_item.selected .fitguide_gender_link:after {
	width: 100%;
	background-color: #000;
}
.fitguide_slide {
	margin-bottom: 20px;
	padding: 0 120px;
}
.fitguide_slide_list {}
.fitguide_slide_item {}

.fitguide_slide .slide-arrow {
	display: block;
	outline: none;
	text-decoration: none;
	position: absolute;
	top: 50%;
	z-index: 10;
	cursor: pointer;
	color: #000;
	font-family: "Roboto", sans-serif;
	font-size:13px;
	transition: all .2s;
}
.fitguide_slide .slide-arrow:hover {
	opacity: .5;
}
.fitguide_slide .prev-arrow {
	left: -120px;
	padding: 5px 0 5px 20px;
}
.fitguide_slide .prev-arrow:after {
	content: "";
	width: 10px;
	height: 10px;
	margin-top: -6px;
	margin-left: -2px;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	transform: rotate(-135deg);
	position: absolute;
	top: 50%;
	left: 5px;
}
.fitguide_slide .next-arrow {
	right: -120px;
	padding: 5px 20px 5px 0;
}
.fitguide_slide .next-arrow:after {
	content: "";
	width: 10px;
	height: 10px;
	margin-top: -6px;
	margin-right: -2px;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 5px;
}
.fitguide_slide .slick-slide img{
	/* opacity: 1 !important; */
}
.fitguide_slide .slick-dots {
	display: none !important;
}

.fitguide_gallary {
	display: flex;
	justify-content: space-between;
	position: relative;
}
.fitguide_gallary_main {
	width: 450px;
	position: relative;
}
.fitguide_gallary_photo {
	position: relative;
	height: 580px;
}
.fitguide_gallary_image {
	width: 100%;
	height: auto;
	position: absolute;
}

.fitguide_gallary_image.hidden {
	display:none;
}

.fitguide_slide_view {
	display: block;
	text-align: center;
	position: absolute;
	right: 5px;
	bottom: 60px;
	z-index: 2;
}
.fitguide_slide_view_btn {
	display: block;
	width: 24px;
	height: 20px;
}
.fitguide_slide_view:hover .fitguide_slide_view_btn {
	animation:3s linear infinite viewSpin;
}

/* アニメーション */
@-webkit-keyframes viewSpin {
	0% {
		transform:rotate(0);
	}
	100% {
		transform:rotate(360deg);
	}
}
@keyframes viewSpin {
	0%{
		transform:rotate(0);
	}
	100%{
		transform:rotate(360deg);
	}
}
.fitguide_slide_view svg {}
.fitguide_slide_view_text {
	display: block;
	font-family: "Roboto", sans-serif;
	font-size:11px;
	margin-top: 5px;
}
.fitguide_gallary_side {
	width: 450px;
	padding: 100px 0 0;
}
.fitguide_gallary_name {
	font-family: "Roboto", sans-serif;
	font-size:24px;
	font-weight: 700;
	line-height: 1.6;
	margin-bottom: 5px;
}
.fitguide_gallary_fit {
	font-family: "Roboto", sans-serif;
	font-size:15px;
	font-weight: 700;
	line-height: 1.6;
	margin-bottom: 40px;
}
.fitguide_gallary_text {
	font-size: 14px;
	line-height: 2;
	margin-bottom: 35px;
}
.fitguide_gallary_more {}
.fitguide_gallary_link {
	display: inline-block;
	color: #000;
	font-size: 14px;
	font-weight: bold;
	padding: 0 50px 0 0;
	position: relative;
}
.fitguide_gallary_link:hover {
	color: #000;
	text-decoration: none;
}
.fitguide_gallary_more_text {
	color: #000;
	font-family: "Roboto", sans-serif;
	font-size: 15px;
	font-weight: 700;
	transition: .2s;
}
.fitguide_gallary_link:hover .fitguide_gallary_more_text {
	opacity: .5;
}
.fitguide_gallary_more_svg {
	position: absolute;
	top: 50%;
	right: 0;
	transition: all .2s;
}
.fitguide_gallary_link:hover .fitguide_gallary_more_svg {
	width: 36px;
	right: 5px;
}
.fitguide_type {}
.fitguide_type_list {
	display: flex;
	justify-content: center;
}
.fitguide_type_item {
	padding: 0 8px;
}
.fitguide_type_title {
	font-family: "Roboto", sans-serif;
	font-size:13px;
	text-align: center;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid #ddd;
}
.fitguide_thumb_list:before,
.fitguide_thumb_list:after {
	content: none;
}
.fitguide_thumb_list {
	display: flex;
	flex-wrap: nowrap;
	margin: 0 -6px;
}
.fitguide_thumb_item {
	width: 86px;
	padding: 0 6px;
}
.fitguide_thumb_photo {
	display: block;
	margin-bottom: 10px;
	border: 2px solid transparent;
	cursor: pointer;
	overflow: hidden;
	opacity: 1;
	-webkit-transition: 0.3s ease;
	transition: 0.3s ease;
	position: relative;
}
.fitguide_thumb_item.is_active .fitguide_thumb_photo {
	border-color: #000;
}
.coordinate_gallery_thumb_photo:hover {
	opacity: .8;
}
.fitguide_thumb_item.is_active .fitguide_thumb_photo:after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	border: 2px solid #fff;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
}
.fitguide_thumb_image {
	width: 100%;
	height: auto;
}
.fitguide_thumb_name {
	display: block;
	font-family: "Roboto", sans-serif;
	font-size:13px;
	font-weight: 700;
	text-align: center;
}
