@charset "utf-8";
/* CSS Document */

/* MinaFrancesca's semantic and simple web production template CSS. */
/* --------------------------
	img-auto-width
		-column3 figure
		-column2 figure
		-crop figure
	separate
		-column3
		-column2
	link-button
	position
		-translate
		-translateX
		-translateY
	lightslider
		-arrow
	table-content
	pickup
	blog
	mailform-layout
		-simple
		-table
		-portable
-------------------------- */

/* -----------------------------------------------------------------------------
	responsive img-auto-width
 -------------------------------------------------------------------------------*/

.img-auto-width {
	position: relative;
	width: calc(100% + 30px);
}

.img-auto-width img, .img-auto-width figure, .img-auto-width .item {
	width: calc(25% - 30px);
	height: auto;
	margin-right: 30px;
	margin-bottom: 30px;
	float: left;
	transition: 0.3s;
}

/* figure */

@media screen and (max-width: 900px) {
	.img-auto-width img, .img-auto-width figure, .img-auto-width .item {
		width: calc(33.333% - 30px);
	}
}

@media screen and (max-width: 800px) {
	.img-auto-width img, .img-auto-width figure, .img-auto-width .item {
		width: calc(50% - 30px);
	}
}

@media screen and (max-width: 640px) {
	.img-auto-width img, .img-auto-width figure, .img-auto-width .item {
		width: calc(100% - 30px);
	}
}

.img-auto-width figure {
	text-align: center;
}

.img-auto-width figure img {
	width: 100% !important;
	height: auto;
	margin-bottom: 15px;
}

/* alternative */

.img-auto-width .item a {
	width: 100%;
	height: 300px !important;
	display: block;
	background-position: center top;
	background-repeat: no-repeat;
	background-size: contain;
}

/* alternative figure */

.img-auto-width .item figure {
	width: 100% !important;
}

.img-auto-width .item figure a {
	margin-bottom: 15px;
}

/* crop */

.img-auto-width.crop {}

.img-auto-width.crop .item {
	width: calc(25% - 30px);
	height: 0;
	padding-top: calc(25% - 30px);
	overflow: hidden;
	position: relative;
}

.img-auto-width.crop.column3 .item {
	width: calc(33.333% - 30px);
	padding-top: calc(33.333% - 30px);
}

.img-auto-width.crop.column2 .item {
	width: calc(50% - 30px);
	padding-top: calc(50% - 30px);
}

@media screen and (max-width: 900px) {
	.img-auto-width.crop .item {
		width: calc(33.333% - 30px);
		padding-top: calc(33.333% - 30px);
	}
}

@media screen and (max-width: 800px) {
	.img-auto-width.crop .item {
		width: calc(50% - 30px);
		padding-top: calc(50% - 30px);
	}
}

.img-auto-width.crop .item img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}

/* crop figure */

.img-auto-width.crop.figure {}

.img-auto-width.crop.figure .item {
	overflow: inherit;
	margin-bottom: 65px;
}

.img-auto-width.crop.figure .item figure {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 2;
}

.img-auto-width.crop.figure .item figure a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}

.img-auto-width.crop.figure figcaption {
	position: absolute;
	top: 0;
	left: 0;
	text-align: center;
	width: 100%;
	padding-top: calc(100% + 15px);
}

/* -----------------------------------------------------------------------------
	separate
 -------------------------------------------------------------------------------*/

.separate {
	width: calc(100% + 30px);
}

.separate .content {
	width: calc(25% - 30px);
	margin-right: 30px;
	margin-bottom: 30px;
	float: left;
}

.separate.column3 .content {
	width: calc(33.333% - 30px);
}

.separate.column2 .content {
	width: calc(50% - 30px);
}

@media screen and (max-width: 1000px) {
	.separate .content {
		width: calc(33.333% - 30px);
	}
}

@media screen and (max-width: 900px) {
	.separate .content {
		width: calc(50% - 30px);
	}
}

@media screen and (max-width: 750px) {
	.separate {
		width: 100%;
	}

	.separate .content {
		width: 100%;
		float: none;
		margin-right: 0;
	}
}

/* -----------------------------------------------------------------------------
	position
 -------------------------------------------------------------------------------*/

/* translate */

.translate {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

.translateX {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}

.translateY {
	position: absolute;
	top: 50%;
	left: 0%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}

/* -----------------------------------------------------------------------------
	lightslider
 -------------------------------------------------------------------------------*/

.lightslider .item img {
	max-width: 100%;
}

.lightslider.arrow {
	position: relative;
	margin-bottom: 70px;
}

@media screen and (max-width: 1280px) {
	.lightslider.arrow {
		padding-left: 50px;
		padding-right: 50px;
	}
}

.lightslider.arrow .slider {}

.lightslider.arrow .slider .item img {
	max-width: 100%;
}

.lSAction>a {
	top: 35%;
}

.prevnext {
	width: 100%;
	height: calc(100% - 40px);
	/* pagerがある場合に使用する。無ければ100%を指定。 */
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}

@media screen and (max-width: 1280px) {
	.prevnext {
		width: calc(100% - 100px);
		margin-left: auto;
		margin-right: auto;
		left: inherit;
	}
}

.prevnext div:hover {
	cursor: pointer;
}

.goToPrevSlide {
	background-image: url("../image/contents/top/arrow-left.png");
	width: 59px;
	height: 60px;
	display: block;
	background-position: top left;
	left: -80px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transition: 0.2s;
}

.goToNextSlide {
	background-image: url("../image/contents/top/arrow-right.png");
	width: 59px;
	height: 60px;
	display: block;
	background-position: top left;
	right: -80px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transition: 0.2s;
}

.goToPrevSlide:hover {
	left: -85px;
}

.goToNextSlide:hover {
	right: -85px;
}


/* -----------------------------------------------------------------------------
	responsive pickup
 -------------------------------------------------------------------------------*/

.pickup {
	position: relative;
}

.pickup-layout {
	width: calc(100% + 30px);
}

.pickup-layout .list {
	box-sizing: border-box;
	position: relative;
	float: left;
	overflow: hidden;
	background-color: #ffffff;
	box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.09);
	-moz-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.09);
	-webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.09);
}

.pickup-layout .list a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 99;
}

.pickup-layout .list a:after {
	content: "";
	background-color: rgba(255, 255, 255, 0);
	transition: 0.3s;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.pickup-layout .list a:hover:after {
	background-color: rgba(255, 255, 255, 0.3);
}

.pickup-layout .list .new {
	position: absolute;
	top: -40px;
	left: -40px;
	width: 80px;
	height: 80px;
	background-color: #ff3f3f;
	color: #ffffff;
	text-indent: 100%;
	overflow: hidden;
	white-space: nowrap;
	z-index: 100;
	transform: rotate(-45deg);
}

.pickup-layout .list .new:before {
	content: "NEW";
	color: #ffffff;
	font-size: 12px;
	display: block;
	text-align: center;
	width: 100%;
	position: absolute;
	top: 65px;
	left: -55px;
}

/* column 6 */

.pickup-layout .list {
	width: calc(16.662% - 30px);
	box-sizing: border-box;
	margin-right: 30px;
	margin-bottom: 30px;
}

/* column 5 */

@media screen and (max-width: 1750px) {
	.pickup-layout .list {
		width: calc(20% - 30px);
		box-sizing: border-box;
		margin-right: 30px;
		margin-bottom: 30px;
	}
}

/* column 4 */

@media screen and (max-width: 1500px) {
	.pickup-layout .list {
		width: calc(25% - 30px);
		box-sizing: border-box;
		margin-right: 30px;
		margin-bottom: 30px;
	}
}

/* column 3 */

@media screen and (max-width: 1270px) {
	.pickup-layout .list {
		width: calc(33.333% - 30px);
		box-sizing: border-box;
		margin-right: 30px;
		margin-bottom: 30px;
	}
}

/* column 2 */

@media screen and (max-width: 1080px) {
	.pickup-layout .list {
		width: calc(50% - 30px);
		box-sizing: border-box;
		margin-right: 30px;
		margin-bottom: 30px;
	}
}

/* column 4 */

@media screen and (max-width: 1000px) {
	.pickup-layout .list {
		width: calc(25% - 30px);
		box-sizing: border-box;
		margin-right: 30px;
		margin-bottom: 30px;
	}
}

/* column 3 */

@media screen and (max-width: 900px) {
	.pickup-layout .list {
		width: calc(33.333% - 30px);
		box-sizing: border-box;
		margin-right: 30px;
		margin-bottom: 30px;
	}
}

/* column 2 */

@media screen and (max-width: 730px) {
	.pickup-layout .list {
		width: calc(50% - 30px);
		box-sizing: border-box;
		margin-right: 30px;
		margin-bottom: 30px;
	}
}

/* thum-area */

.pickup-layout .list .thum-area {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 233px;
}

.pickup-layout .list .thum-area:after {
	content: "";
	background-position: bottom;
	background-repeat: no-repeat;
	background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 1%, rgba(255, 255, 255, 0) 55%, rgba(255, 255, 255, 1) 100%);
	background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 1%, rgba(255, 255, 255, 0) 55%, rgba(255, 255, 255, 1) 100%);
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 1%, rgba(255, 255, 255, 0) 55%, rgba(255, 255, 255, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=0);
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	min-height: 233px;
	display: block;
	z-index: 10;
}

.pickup-layout .list .thum-area .thum {
	background-image: url(../image/contents/top/sample.jpg);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 233px;
	position: relative;
	z-index: 2;
}

.pickup-layout .list .thum-area .thum-blur {
	background-image: url(../image/contents/top/sample.jpg);
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: cover;
	width: calc(100% + 20px);
	height: 233px;
	margin-left: -5px;
	margin-top: -5px;
	-webkit-filter: blur(5px);
	-moz-filter: blur(5px);
	-o-filter: blur(5px);
	-ms-filter: blur(5px);
	filter: blur(5px);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: 0.5;
	filter: alpha(opacity=50);
	-ms-filter: "alpha( opacity=50 )";
}

.pickup-layout .list .thum-area.portrait .thum {
	background-size: contain;
	background-position: center top;
	max-height: 233px;
	width: auto;
	margin-left: auto;
	margin-right: auto;
}

.pickup-layout .list .thum-area.nocrop .thum {
	width: calc(100% - 40px);
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
	background-position: center top;
	background-size: contain;
	background-repeat: no-repeat;
}

/* detail */

.pickup-layout .list .detail {
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	margin-top: -20px;
	position: relative;
	z-index: 11;
}

.pickup-layout .list .detail .detail-option {
	padding-bottom: 6px;
}

.pickup-layout .list .detail .detail-option .space {
	display: inline-block;
	background-color: #4b4b4b;
	color: #ffffff;
	text-align: center;
	height: 26px;
	line-height: 24px;
	font-size: 16px;
	padding-left: 10px;
	padding-right: 10px;
}

.pickup-layout .list .detail .detail-option .price {
	display: inline-block;
	background-color: #d14e4e;
	color: #ffffff;
	text-align: center;
	height: 26px;
	line-height: 24px;
	font-size: 16px;
	padding-left: 10px;
	padding-right: 10px;
}

@media screen and (max-width: 640px) {
	.pickup-layout .list .detail .detail-option .space {
		font-size: 20px;
		height: 32px;
		line-height: 32px;
	}

	.pickup-layout .list .detail .detail-option .price {
		font-size: 20px;
		height: 32px;
		line-height: 32px;
	}
}

.pickup-layout .list .detail h4 {
	margin: 0;
	position: 0;
	font-size: 16px;
	color: #19896e;
	font-weight: normal;
	line-height: 20px;
}

@media screen and (max-width: 640px) {
	.pickup-layout .list .detail h4 {
		font-size: 22px;
		line-height: 26px;
	}
}

.pickup-layout .list .detail p {
	margin: 0;
	padding: 0;
	padding-top: 3px;
	line-height: 18px;
}

@media screen and (max-width: 640px) {
	.pickup-layout .list .detail p {
		line-height: 26px;
	}
}

/* -----------------------------------------------------------------------------
	table
 -------------------------------------------------------------------------------*/

.table-content {
	margin-bottom: 30px;
}

.table-content table {
	width: 100%;
	border-collapse: collapse;
	text-align: left;
	border: 1px solid #d8d8d8;
}

.table-content th {
	text-align: left;
	background-color: #f4f4f4;
	/*width:28%;*/
	padding: 20px;
	border-bottom: 1px solid #d8d8d8;
	border-right: 1px solid #d8d8d8;
	vertical-align: top;
	white-space: nowrap;
}

.table-content th .ic-required {
	float: right;
	margin-left: 150px;
}

.table-content td {
	padding: 15px;
	border-bottom: 1px solid #d8d8d8;
	border-right: 1px solid #d8d8d8;
	background-color: #ffffff;
}

@media screen and (max-width: 700px) {
	/* column break - example 700px */

	.table-content th {
		text-align: left;
		background-color: #f4f4f4;
		width: 100% !important;
		padding: 20px;
		border-bottom: 1px solid #d8d8d8;
		vertical-align: top;
		white-space: nowrap;
		display: block;
		box-sizing: border-box;
	}

	.table-content th .ic-required {
		float: right;
		margin-left: 150px;
	}

	.table-content td {
		width: inherit;
		padding: 15px;
		border-bottom: 1px solid #d8d8d8;
		display: block;
	}

}

/* -----------------------------------------------------------------------------
	link button
 -------------------------------------------------------------------------------*/

.link-button a {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 250px;
	height: 60px;
	line-height: 60px;
	border-radius: 30px;
	position: relative;
	margin-top: 30px;
	margin-bottom: 50px;
	text-align: center;
	text-decoration: none !important;
	font-size: 18px;
	font-weight: bold;
	color: #023990 !important;
	border: 3px solid #023990;
	background-color: #ffffff;
	overflow: visible;
	transition: 0.2s;
}

.link-button a:hover {
	background-color: #023990;
	color: #ffffff !important;
}

.link-button.prev a {
	text-indent: 15px;
}

.link-button.next a {
	text-indent: -15px;
}

.link-button.prev a:before {
	content: "〈";
	font-weight: bold;
	color: #023990;
	position: absolute;
	left: 5px;
	display: block;
	transition: 0.2s;
}

.link-button.next a:before {
	content: "〉";
	font-weight: bold;
	color: #023990;
	position: absolute;
	right: 13px;
	display: block;
	transition: 0.2s;
}

.link-button.prev a:hover:before {
	left: 0px;
}

.link-button.next a:hover:before {
	right: 8px;
}

.link-button.prev a:hover:before, .link-button.next a:hover:before {
	color: #ffffff;
}

/*----------------------------------------------------------------------------
   blog - ブログスタイルのレイアウト body.subpageに.blogを付与して使用
------------------------------------------------------------------------------*/

.blog #content-sidebar {
	width: 300px;
	border-right: none;
	box-sizing: border-box;
	transition: 0.2s;
}

@media screen and (max-width: 1240px) {
	.blog #content-sidebar {
		right: 30px;
	}
}

.blog #content-sidebar h2 {
	font-size: 18px !important;
	color: #ffffff !important;
	margin: 0 !important;
	padding: 13px 0;
	text-align: center !important;
	line-height: 1;
	border-radius: 5px;
	margin-bottom: 30px !important;
	background-color: var(--cl_main) !important;
}

.blog #content-sidebar .blog-latest {
	list-style: none;
	margin: 0;
	padding: 0;
	padding-bottom: 30px;
}

.blog #content-sidebar .blog-latest li {
	font-size: clamp(15px, 1.8vw, 17px);
}

.blog #content-sidebar .blog-latest li a {
	padding-top: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #cccccc;
	display: block;
	text-decoration: none !important;
}

.no_link {
	padding-top: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #cccccc;
	display: block;
	text-decoration: none !important;
}

.blog #content-sidebar .blog-latest li:last-of-type a {
	border-bottom: none;
	padding-bottom: 0;
}

.blog #content-sidebar .blog-latest li span {
	display: block;
	font-size: 14px;
	color: #777777;
}

.blog #content-sidebar .blog-category {
	list-style: none;
	margin: 0;
	padding: 0;
	margin-bottom: 50px;
}

.blog #content-sidebar .blog-category li a {
	background-color: #ffffff;
	padding: 10px;
	text-align: center;
	position: relative;
	text-indent: -10px;
	border: 1px solid #f5f5f5;
	border-radius: 5px;
	box-sizing: border-box;
	transition: 0.2s;
	text-decoration: none;
	color: #222222;
	display: block;
}

.blog #content-sidebar .blog-category li {
	margin-bottom: 5px;
}

.blog #content-sidebar .blog-category li a:after {
	content: "▶";
	position: absolute;
	top: 10px;
	right: 10px;
	display: block;
	transform: scale(0.4, 0.4);
	color: #cccccc;
}

.blog #content-sidebar .blog-category li a:hover {
	background-color: #ffffff;
	border: 1px solid #ff9900;
	box-sizing: border-box;
	color: #ff9900;
}

.blog #content-sidebar .blog-month ul {
	margin: 0;
	padding: 0;
}

.blog #content-sidebar .blog-month select {
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
}

.subpage.blog #contents article {
	padding-left: 0;
	margin: 85px 0;
}

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


	.blog #content-sidebar {

		border-left: none;
		margin-bottom: 100px;
		position: relative;
		top: inherit;
		left: inherit;
		right: inherit;
	}
}

.blog h3 {
	margin-bottom: 35px !important;
}

.blog .post h4 {
	position: relative;
	font-size: clamp(15px, 1.8vw, 17px);
	line-height: 1.6;
}

.blog .post::after {
	content: "";
	display: inline-block;
	background-image: url(../image/top/view_all.svg);
	width: 34px;
	height: 4px;
	background-size: contain;
	background-position: center;
	position: absolute;
	top: 50%;
	right: 10px;
	transition: all .3s;

}

.blog .post:hover::after {
	opacity: 1;
	transform: translateX(20px);
}

.blog .post h4 .day {
	display: block;
	font-size: 15px;
	color: #777777;
	padding-bottom: 7px;
}

.blog .post img {
	max-width: 100%;
	margin-bottom: 30px;
}

.blog .content.archives .post img.alignleft {
	width: 280px;
	height: auto;
}

.blog .content.archives .post .detail-button a {
	display: block;
	float: right;
}

.blog .content .pmove {
	list-style: none;
	margin: 0;
	padding: 0;
	padding-top: 40px;
	padding-bottom: 40px;
	margin-bottom: 50px;
	display: block;
	width: 100%;
	position: relative;
	border-top: 1px solid #cccccc;
	border-bottom: 1px solid #cccccc;
	background-color: #ffffff;
}

.blog .content .pmove .prev {
	position: absolute;
	left: 30px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}

.blog .content .pmove .next {
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}

.blog .content .pmove .show-back {
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}