@charset "utf-8";

/*common
************************************************************************************/

/*google icons
----------------------------------------------------------------------*/
a.gicon-link,
span.gicon-link{
	position: relative;
	display: block;
	padding-right: 55px;
	text-decoration: none;
}
a.gicon-link:after,
span.gicon-link:after,
.swiper-nav-cube .swiper-button-prev::after,
.swiper-nav-cube .swiper-button-next::after{
	display: block;
	position: absolute;
	right: 15px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 10;
	width: 30px;
	height: 30px;
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	font-size: 20px;	/* Preferred icon size */
	line-height: 30px;
	text-transform: none;
	letter-spacing: normal;
	word-wrap: normal;
	white-space: nowrap;
	direction: ltr;
	color: #FFF;

	/* Support for all WebKit browsers. */
	-webkit-font-smoothing: antialiased;
	/* Support for Safari and Chrome. */
	text-rendering: optimizeLegibility;

	/* Support for Firefox. */
	-moz-osx-font-smoothing: grayscale;

	/* Support for IE. */
	font-feature-settings: 'liga';
}

/*title
----------------------------------------------------------------------*/
.main-ttl-box{
	margin-bottom: 35px;
	font-weight: bold;
}
.main-ttl-box .sub{
	font-size: 1.067em;
	color: var(--color-main, #5bd0db);
	position: relative;
	padding-left: 90px;
	margin-bottom: 15px;
}
.main-ttl-box .sub:before{
	content: "";
	width: 75px;
	height: 1px;
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	background: var(--color-main, #5bd0db);
}
.main-ttl-box h1{
	font-size: 3.2em;
	position: relative;
	margin: 0;
	line-height: 1;
	padding: 0 0 .2em .2em;
}
.main-ttl-box h1:before{
	content: "";
	width: 30px;
	height: 30px;
	position: absolute;
	left: 0;
	bottom: 0;
	background: var(--color-main, #5bd0db);
	z-index: -1;
}

/*swipper nav
----------------------------------------------------------------------*/
/* 前へ次への矢印カスタマイズ */
.swiper-nav-cube{
	position: relative;
	width: 105px;
	height: 50px;
	bottom: 0;
	z-index: 100;
}
.swiper-nav-cube .swiper-button-prev,
.swiper-nav-cube .swiper-button-next{
	width: 50px;
	height: 50px;
	background: #000;
}
.swiper-nav-cube .swiper-button-prev{
	left: 0;
}
.swiper-nav-cube .swiper-button-next{
	right: 0;
}
.swiper-nav-cube .swiper-button-prev::after,
.swiper-nav-cube .swiper-button-next::after{
	right: inherit;
	left: 0;
	top: 0;
	width: 50px;
	height: 50px;
	-webkit-transform:none;
	transform: none;
	line-height: 50px;
	text-align: center;
	color: #FFF;
}
.swiper-nav-cube .swiper-button-prev::after {
	content: "west";
}
.swiper-nav-cube .swiper-button-next::after{
	content: "east";
}

/*layout
----------------------------------------------------------------------*/
#user-contents > article{
	padding: 50px 0;
}
#user-contents > article:nth-child(even){
	position: relative;
}
#user-contents > article:nth-child(even):before{
	width: calc(100% - 50px);
	background: #f5f5f5;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	content: "";
	z-index: -1;
}
@media screen and (max-width: 1400px){
	#user-contents > article:nth-child(even) .wrapper{
		width: 80%;
	}
}
@media screen and (max-width: 599px) {
	#user-contents > article:nth-child(even):before{
		width: calc(100% - 30px);
	}
}

/*eyecatch
************************************************************************************/
.eyecatch-area{
	width: 100%;
	position: relative;
	overflow: hidden;
}
.eyecatch-area:before{
	content:"";
	display: block;
	padding-top: 37%;
}
.eyecatch-area .image{
	width: 75%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	overflow: hidden;
}
.eyecatch-area .image img{
	height: auto;
	width: 100%;
}
.eyecatch-area .copy-area{
	width: 40%;
	position: absolute;
	top: 50%;
	right: 2%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 20;
	padding: 40px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	background: #FFF;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.18);
	font-weight: bold;
}
.eyecatch-area .copy-area .title{
	font-size: 2em;
}
.eyecatch-area .copy-area .txt{
	padding-top: .6em;
	font-size: 1.4em;
}
@media screen and (max-width: 768px){
	.eyecatch-area:before{
		content:"";
		display: block;
		padding-top: 60%;
	}

	.eyecatch-area .copy-area{
		width: 80%;
		position: absolute;
		top: inherit;
		bottom: 5%;
		right: 2%;
		-webkit-transform: none;
		transform: none;
		padding: 30px;
	}
	.eyecatch-area .copy-area .title{
		font-size: 2em;
	}
	.eyecatch-area .copy-area .txt{
		padding-top: .6em;
		font-size: 1.4em;
	}
}
@media screen and (max-width: 599px) {
	.eyecatch-area:before{
		content:"";
		display: block;
		padding-top: 80%;
	}
	.eyecatch-area .image{
		width: 90%;
	}
	.eyecatch-area .copy-area{
		width: 90%;
		padding: 20px;
	}
	.eyecatch-area .copy-area .title{
		font-size: 1.5em;
	}
	.eyecatch-area .copy-area .txt{
		padding-top: .6em;
		font-size: 1em;
	}
}

/*news
************************************************************************************/
#news{
	padding: 50px 0 0;
}
#news h1{
	width: 4em;
	font-weight: bold;
	font-size: 1.2em;
	border-right: 1px solid #000;
	margin: 0;
	padding: 0;
	line-height: 35px;
	height: 35px;
}
#news .swiper{
	margin: -35px 0 0 7em;
}
#news .swiper-wrapper{
}
#news .swiper li{
	display: table;
	width: 100%;
	margin-left: 0;
	height: 35px;
}
#news .swiper li p{
	display: table-cell;
	vertical-align: middle;
}
#news .swiper li p.date{
	width: 7em;
}
/* 前へ次への矢印カスタマイズ */
#news .swiper-nav{
	position: relative;
	width: 80px;
	height: 30px;
	margin-left: auto;
	top: -35px;
}
#news .swiper-button-prev::after,
#news .swiper-button-next::after {
	bottom: 0;
	content: "" !important;
	height: 0;
	margin: auto;
	position: absolute;
	top: 0;
	width: 0;
}
/* 前への矢印カスタマイズ */
#news .swiper-button-prev::after {
	border-bottom: 7px solid transparent;
	border-right: 10px solid #000;
	border-top: 7px solid transparent;
	border-radius: 3px;
}
/* 次への矢印カスタマイズ */
#news .swiper-button-next::after {
	border-bottom: 7px solid transparent;
	border-left: 10px solid #000;
	border-top: 7px solid transparent;
	border-radius: 3px;
}
#news .btn-border{
	text-align: right;
}
@media screen and (max-width: 599px) {
	#news h1{
		width: auto;
		font-size: 1.2em;
		border-right: 0;
		border-bottom: 1px solid #000;
		margin: 0 0 1em;
		line-height: 35px;
		height: 35px;
	}
	#news .swiper{
		margin: 0;
	}
	#news .swiper li p{
		vertical-align: top;
	}
	#news .swiper li p.date{
		color: #595959;
	}
	#news .swiper-nav{
		top: inherit;
		bottom: 0;
	}
	#news .btn-border{
		text-align: center;
	}
}

/*contents01
************************************************************************************/
#contents-message .contents-wrap .text,
#contents-message .contents-wrap .photo-area{
	width: 50%;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	float: left;
}
#contents-message .contents-wrap .text{
	padding-right: 40px;
}
#contents-message .btn-border{
	margin-top: 30px;
}
.photo-area{
	display: block;
	overflow: hidden;
}
#contents-message .contents-wrap .photo{
	overflow: hidden;
	background: #000;
	color: #FFF;
	position: relative;
	width: 100%;
}
#contents-message .contents-wrap .photo:before{
	content:"";
	display: block;
	padding-top: 68%;
}
#contents-message .contents-wrap .photo a{
	text-decoration: none;
	color: #FFF;
}
#contents-message .contents-wrap .photo img{
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	opacity: .8;
}
#contents-message .contents-wrap .photo .subtitle{
	font-size: 1.2em;
	padding: 35px;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 20;
}
#contents-message .contents-wrap .photo .linktitle{
	/*background-color: rgba( 0, 0, 0, 0.55 );*/
	background: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,.5));
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	padding: .7em 0 .7em 35px;
	height: 70px;
	z-index: 20;
	display: table;
	width: 100%;
	font-size: 1.6em;
}
#contents-message .contents-wrap .photo .linktitle span.gicon-link{
	text-decoration: none;
	color: #FFF;
	display: table-cell;
	vertical-align: middle;
	height: 100%;
	line-height: 1.2;
}
#contents-message .contents-wrap .photo .linktitle span.gicon-link:after{
	content: "arrow_right_alt"
}

#contents-message .swiper-nav-cube{
	margin-left: auto;
}
@media screen and (max-width: 599px) {
	#contents-message .contents-wrap .text,
	#contents-message .contents-wrap .photo-area{
		width: 100%;
		float: none;
		padding: 0;
	}
	#contents-message .btn-border{
		margin: 30px 0;
	}
}

/*contents_gallery
************************************************************************************/
#contents_gallery .text{
	color: #8d8d8d;
}
#contents_gallery .slide-area{
	display: block;
	overflow: hidden;
	width: calc(100% - 50px);
	margin: 50px 0 0 0;
}
#contents_gallery .swiper-wrapper{
	margin: 0 0 40px 0;
}
#contents_gallery .swiper-wrapper a{
	text-decoration: none;
}
#contents_gallery .swiper-wrapper .photo{
	overflow: hidden;
	background: #000;
	color: #FFF;
	position: relative;
	margin-bottom: 20px;
}
#contents_gallery .swiper-wrapper .photo:before{
	content:"";
	display: block;
	padding-top: 68%;
}
#contents_gallery .swiper-wrapper .photo img{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	opacity: .8;
    object-fit: cover;
}

#contents_gallery .slide-area .swiper-slide img{
	object-fit: cover;
	width: 100%;
	height: 100%;
}
#contents_gallery .swiper-wrapper .title{
	font-weight: 700;
	color: #000;
	display: block;
}
#contents_gallery .swiper-wrapper .category{
	margin: 10px 0 0;
}
#contents_gallery .swiper-wrapper .category span{
	display: inline-block;
	margin: 0 2px 2px 0;
	border: 1px solid var(--color-main, #5bd0db);
	color: var(--color-main, #5bd0db);
	font-size: 0.933em;
	padding: 3px .5em;
}
#contents_gallery .swiper-nav-cube{
	float: left;
}
#contents_gallery .btn-border{
	float: right;
}
@media screen and (max-width: 768px){
	#contents_gallery .swiper-wrapper .title{
		padding: 0 1.5em;
	}
	#contents_gallery .swiper-wrapper .category{
		padding: 0 1.5em;
	}
	#contents_gallery .swiper-nav-cube,
	#contents_gallery .btn-border{
		float: none;
	}
	#contents_gallery .btn-border{
		margin-top: 20px;
		text-align: right;
	}
}
@media screen and (max-width: 599px) {
	#contents_gallery .slide-area{
		width: calc(100% - 30px);
	}
}

/*contents_blog
************************************************************************************/
/*title*/
#contents_blog .ttl-box{
	margin-bottom: 35px;
	text-align: center;
}
#contents_blog .ttl-box .sub{
	font-size: 1.067em;
	padding-top: 1.3em;
}
#contents_blog .ttl-box h1{
	font-size: 3.2em;
	position: relative;
	margin: 0;
	line-height: 1;
	padding: 0 0 .2em .2em;
	font-weight: 700;
}
#contents_blog .ttl-box h1:before{
	content: "";
	width: 1em;
	height: 1px;
	position: absolute;
	left: 50%;
	bottom: 0;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background: var(--color-main, #5bd0db);
}

/*post-area
----------------------------------------------------------------------*/
#contents_blog .post-area ul{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-template-rows: auto;
	column-gap: 20px;
	row-gap: 40px;
	align-items: stretch;
}
#contents_blog .post-area ul li a{
	text-decoration: none;
}
#contents_blog .post-area ul li .image{
	position: relative;
	width: 100%;
	overflow: hidden;
	margin-bottom: 12px;
}
#contents_blog .post-area ul li .image:before {
	content:"";
	display: block;
	padding-top: 70%;
}
#contents_blog .post-area ul li .image img{
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#contents_blog .post-area ul li .date{
	color: #bcbcbc;
	font-size: 0.867em;
}
#contents_blog .post-area ul li .title a{
	font-size: 1.067em;
	color: #000;
	font-weight: 700;
	display: block;
	margin: 5px 0 7px;
}
#contents_blog .post-area ul li .category span{
	display: inline-block;
	margin: 0 2px 2px 0;
	border: 1px solid #bcbcbc;
	color: #bcbcbc;
	font-size: 0.933em;
	padding: 3px .5em;
}
#contents_blog .btn-border{
	text-align: right;
	margin-top: 40px;
}
@media screen and (max-width: 768px){
	#contents_blog .post-area ul{
		grid-template-columns: 1fr 1fr;
	}
}


@media screen and (min-width: 1025px) {
/*pc*/
}
@media screen and (max-width: 1024px){
/*smart phone*/
}
@media screen and (max-width: 599px) {
/*sp*/
}
@media screen and (max-width: 415px){
}