@charset "UTF-8";
/*================================================
コーディネート専用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.coordinate {}


/* 一覧
--------------------------------------------------------------------*/
.coordinate_content {}
.coordinate_search {
	margin-bottom: 60px;
}
.coordinate_search_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-left: -20px;
	margin-right: -20px;
}
.coordinate_search_item {
	padding: 0 20px;
}
.coordinate_search_box {
	display: flex;
	align-items: center;
}
.coordinate_search_heading {
	-webkit-flex: 0 0 auto;
	flex: 0 0 auto;
	width: auto;
	font-family: 'Roboto', sans-serif;
	font-size: 13px;
	padding: 7px 10px 7px 0;
	position: relative;
}
.coordinate_search_heading:after {
	content: ":";
	display: block;
	position: absolute;
	top: 6px;
	right: 0;
}
.coordinate_select {
	display: inline-block;
	position: relative;
}
.coordinate_select:after {
	content: "";
	width: 8px;
	height: 8px;
	margin-top: -6px;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	position: absolute;
	top: 50%;
	right: 10px;
	pointer-events: none;
	transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
}
.select_coordinate {
	display: inline-block;
	font-family: 'Roboto', sans-serif;
	font-size: 13px;
	background-color: #fff;
	padding: 7px 25px 7px 10px;
}
.coordinate_list:before,
.coordinate_list:after {
	content: none;
}
.coordinate_list {
	display: flex;
	flex-wrap: wrap;
	margin-left: -20px;
	margin-right: -20px;
}
.coordinate_item {
	flex: 0 0 20%;
	width: 100%;
	max-width: 20%;
	margin-bottom: 40px;
	padding: 0 20px;
	position:relative;
}
.coordinate_link {
	display: block;
	position: relative;
}
.coordinate_photo {
	overflow: hidden;
	margin:0 0 15px;
	position:relative;
}
.coordinate_image {
	width: 100%;
	height: auto;
	transition: opacity 1s, transform .5s;
}
.coordinate_list .ls-blur-up-is-loading,
.coordinate_list .lazyload:not([src]) {
	visibility: hidden;
}
.journal_list .ls-blur-up-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}
.coordinate_fadein .coordinate_image {
	opacity: 0;
}
.coordinate_fadein.lazyloaded .coordinate_image.lazyloaded {
	opacity: 1;
}
.coordinate_link:hover .coordinate_image {
	transform: scale(1.1);
}
.coordinate_notfound {
	display: block;
	width: 100%;
	text-align: center;
	padding: 20px 0;
}
.coordinate_notfound_text {
	font-size: 13px;
	line-height: 1.5;
}

.coordinate_pager {}
.pager {
	display: flex;
	justify-content: center;
	margin-left: -15px;
	margin-right: -15px;
	position: relative;
}
.pager li {
	display:inline-block;
	height: 22px;
	margin: 0 15px;
	position: relative;
}
.pager li a {
	display: block;
	color: #000;
	font-family: "Roboto", sans-serif;
	font-size: 13px;
	line-height: 22px;
}
.pager .pager_number {
	line-height: 22px;
}
.pager .pager_number a {
	display: block;
	font-family: "Roboto", sans-serif;
	font-size: 13px;
	line-height: 22px;
	text-align: center;
	position: relative;
}
.pager_number a:hover {
	color: #000;
	font-weight: 700;
	text-decoration: none;
}
.pager_number a:after {
	content: "";
	display: block;
	width: 0%;
	height: 3px;
	background-color: transparent;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	transition: all .4s;
}
.pager_number a:hover:after {
	width: 100%;
	background-color: #000;
}
.pager .pager_number.active span {
	display: block;
	color: #000;
	font-family: "Roboto", sans-serif;
	font-size: 13px;
	font-weight: 700;
	line-height: 22px;
}
.pager_number.active span:after {
	content: "";
	display: block;
	width: 100%;
	height: 3px;
	background-color: #000;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	transition: all .4s;
}
.pager_number.brank span {
	color: #000;
}
.pager .pager_prev {
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	margin-right: 20px;
}
.pager_prev a {
	transition: all .2s;
}
.pager_prev a:hover {
	opacity: .5;
}
.pager .pager_prev a:after {
	content: "";
	width: 8px;
	height: 8px;
	margin-top: -4px;
	margin-left: -2px;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	transform: rotate(-135deg);
	position: absolute;
	top: 50%;
	left: 50%;
}
.pager_prev span:after {
	content: "";
	width: 8px;
	height: 8px;
	margin-top: -4px;
	margin-left: -2px;
	border-top: 1px solid #ddd;
	border-right: 1px solid #ddd;
	transform: rotate(-135deg);
	position: absolute;
	top: 50%;
	left: 50%;
}
.pager .pager_next {
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	margin-left: 20px;
}
.pager_next a {
	transition: all .2s;
}
.pager_next a:hover {
	opacity: .5;
}
.pager .pager_next a:after {
	content: "";
	width: 8px;
	height: 8px;
	margin-top: -4px;
	margin-right: -2px;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 50%;
}
.pager_next span:after {
	content: "";
	width: 8px;
	height: 8px;
	margin-top: -4px;
	margin-right: -2px;
	border-top: 1px solid #ddd;
	border-right: 1px solid #ddd;
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 50%;
}

/* 詳細
--------------------------------------------------------------------*/
.coordinate_detail {}
.coordinate_detail_content {
	width: 960px;
	margin: 0 0 80px auto;
}
.coordinate_detail_content:before, .coordinate_detail_content:after {
	content: '';
	display: block;
}
.coordinate_detail_content:after {
	clear: both;
}
.coordinate_main {
	width:560px;
	float:left;
}
.coordinate_side {
	width: 340px;
	float: right;
}
.coordinate_gallery {
	display: flex;
}
.coordinate_gallery_main {
	position:relative;
	width: 400px;
}
.coordinate_gallery_slide {
	position: relative;
}
.coordinate_gallery_list {}
.coordinate_gallery_item {
	position: relative;
}
.coordinate_gallery_photo {}
.coordinate_gallery_image {
	display: block;
	width: 100%;
	height: auto;
}
.coordinate_gallery_slide .slick-arrow {
	display: block;
	width: 10%;
	height: 100%;
	outline: none;
	text-decoration: none;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	position: absolute;
	top: 0;
	z-index: 10;
	opacity: 0;
	cursor: pointer;
	transition: all .5s ease;
}
.coordinate_gallery_slide .slick-arrow:hover {
	opacity: 1;
}
.coordinate_gallery_slide .slick-prev {
	left: 0;
}
.coordinate_gallery_slide .slick-prev:after {
	content: "";
	width: 15px;
	height: 15px;
	margin-top: -8px;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	transform: rotate(-135deg);
	position: absolute;
	top: 50%;
	left: 25px;
}
.coordinate_gallery_slide .slick-next {
	right: 0;
}
.coordinate_gallery_slide .slick-next:after {
	content: "";
	width: 15px;
	height: 15px;
	margin-top: -8px;
	border-top: 1px solid #000;
	border-left: 1px solid #000;
	transform: rotate(135deg);
	position: absolute;
	top: 50%;
	right: 25px;
}
.coordinate_gallery_slide .slick-slide img{
	opacity: 1 !important;
}
.coordinate_gallery_slide .slick-dots {
	display: none !important;
}

.coordinate_gallery_thumb {
	width: 132px;
	margin: 0 auto 0 0;
	padding: 0 2px;
	position: relative;
}
.coordinate_gallery_thumb_list:before, .coordinate_gallery_thumb_list:after {
	content: none;
}
.coordinate_gallery_thumb_list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -6px;
}
.coordinate_gallery_thumb_item {
	width: 50%;
	margin-top: 12px;
	padding: 0 6px;
}
.coordinate_gallery_thumb_item:nth-child(-n+2) {
	margin-top: 0;
}
.coordinate_gallery_thumb_photo {
	display: block;
	border: 2px solid transparent;
	cursor: pointer;
	overflow: hidden;
	opacity: 1;
	-webkit-transition: 0.3s ease;
	transition: 0.3s ease;
	position: relative;
}
.coordinate_gallery_thumb_item.is_active .coordinate_gallery_thumb_photo {
	border-color: #000;
}
.coordinate_gallery_thumb_photo:hover {
	opacity: .8;
}
.coordinate_gallery_thumb_item.is_active .coordinate_gallery_thumb_photo:after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	border: 2px solid #fff;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
}
.coordinate_gallery_thumb_image {
	width: 100%;
	height: auto;
}

.coordinate_info {
	margin-bottom: 40px;
}
.coordinate_info_data {
	display: flex;
	margin-left: -5px;
	margin-right: -5px;
}
.coordinate_info_data + .coordinate_info_data {
	margin-top: 2px;
}
.coordinate_info_data.coordinate_info_comment {
	margin-top: 20px;
}
.coordinate_info_heading {
	width: 100px;
	font-family: "Roboto", sans-serif;
	font-size:13px;
	line-height: 1.6;
	padding: 0 5px;
}
.coordinate_info_label {
	font-family: "Roboto", sans-serif;
	font-size:13px;
	line-height: 1.6;
	cursor: default;
	padding: 0 5px 0 0;
	position: relative;
}
.coordinate_info_label:after {
	content: ":";
	display: block;
	position: absolute;
	top: 1px;
	right: 0;
}
.coordinate_detail_text {
	flex: 1;
	font-family: "Roboto", sans-serif;
	font-size:13px;
	line-height: 1.6;
	padding: 0 5px;
}
.coordinate_info_comment .coordinate_detail_text,
.coordinate_info_comment .coordinate_detail_text * {
	font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium","游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
	font-size:12px;
}
.coordinate_info_comment .coordinate_detail_text a {
	color: #000;
	font-size:12px;
	text-decoration: underline;
}
.coordinate_info_comment .coordinate_detail_text a:hover {
	color: #000;
	text-decoration: none;
}
.coordinate_styling {
	padding: 40px 0;
	border-top: 1px solid #ddd;
}
.coordinate_styling_title {
	font-family: "Roboto", sans-serif;
	font-size:15px;
	font-weight: 700;
	margin-bottom: 40px;
}
.coordinate_styling_list {}
.coordinate_styling_item {}
.coordinate_styling_item + .coordinate_styling_item {
	margin-top: 20px;
}
.coordinate_styling_item > a:link,
.coordinate_styling_item > a:visited {
	text-decoration: none;
}
.coordinate_styling_info {
	display: flex;
}
.coordinate_styling_photo {
	width:45%;
	position: relative;
}
.coordinate_styling_photo:before {
	content:"";
	display: block;
	padding-top: 133.3333333%;
}
.coordinate_styling_image {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.coordinate_styling_detail {
	flex: 1;
	padding: 0 0 0 20px;
}


.coordinate_detail_date {
	font-family: "Roboto", sans-serif;
	font-size:13px;
	text-align: center;
	margin-bottom: 20px;
}
.coordinate_detail_title {
	font-family: "Roboto", sans-serif;
	font-size:24px;
	line-height: 1.4;
	font-weight: 700;
	text-align: center;
	margin-bottom: 80px;
}
.coordinate_pager {}
.coordinate_pager_list:before, .coordinate_pager_list:after {
	content: none;
}
.coordinate_pager_list {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: nowrap;
	margin: 0 -10px 60px;
}
.coordinate_pager_item {
	padding: 0 10px;
}
.coordinate_pager_link {
	color: #000;
	font-family: "Roboto", sans-serif;
	font-size:13px;
	transition: all .2s;
	position: relative;
}
.coordinate_pager_link:hover {
	color: #000;
	text-decoration: none;
	opacity: .5;
}
.coordinate_pager_prev {
	padding: 5px 0 5px 20px;
}
.coordinate_pager_prev: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;
}
.coordinate_pager_next {
	padding: 5px 20px 5px 0;
}
.coordinate_pager_next: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;
}
.coordinate_pager_text {
	color: #bbb;
	font-family: "Roboto", sans-serif;
	font-size:13px;
	position: relative;
}
.coordinate_pager_text.coordinate_pager_prev:after {
	border-color: #bbb;
}
.coordinate_pager_text.coordinate_pager_next:after {
	border-color: #bbb;
}
.coordinate_pager_index {
	text-align: center;
}
.coordinate_pager_back {
	display: inline-block;
	color: #000;
	font-family: "Roboto", sans-serif;
	font-size: 15px;
	font-weight: 700;
	padding: 0 0 0 50px;
	transition: all .2s;
	position: relative;
}
.coordinate_pager_back:hover {
	color: #000;
	text-decoration: none;
}
.coordinate_pager_back_text {
	color: #000;
	font-family: "Roboto", sans-serif;
	font-size: 15px;
	font-weight: 700;
	transition: .2s;
}
.coordinate_pager_back:hover .coordinate_pager_back_text {
	opacity: .5;
}
.coordinate_pager_back_svg {
	position: absolute;
	top: 50%;
	left: 0;
	transition: all .2s;
}
.coordinate_pager_back:hover .coordinate_pager_back_svg {
	width: 36px;
	left: 5px;
}
