@charset "utf-8";

/* トップスライド
--------------------------- */

/* ---------------------------
トップコンテンツ
--------------------------- */
/* MAIN VISUAL */
.p-top__mainvisual {
	position: relative;
}
.p-top__mainvisual-slider {
	width: 100%;
	margin-bottom: 0;
}
.p-top__mainvisual-slider li {
	width: 100%;
	height: 100vh;
}

.p-top__mainvisual-slider li:nth-child(1) {
	background-image: url("./../images/page/top01.jpg");
}
.p-top__mainvisual-slider li:nth-child(2) {
	background-image: url("./../images/page/top02.jpg");
}

/* VISUAL SLIDER PROGRESS */
.p-top__mainvisual-slider .slick-slide::before,
.p-top__mainvisual-slider .slick-slide::after {
	content: "";
	display: block;
	width: 2px;
	height: 33.15%;
	position: absolute;
	right: 4%;
	z-index: 99;
}
.p-top__mainvisual-slider .slick-slide::before {
	background-color: rgba(220, 220, 220, 0.2);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	top: 50%;
}
.p-top__mainvisual-slider .slick-slide::after {
	background-color: rgba(255, 255, 255, 0.8);
	top: 33%;
	-webkit-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
	z-index: 100;
	-webkit-transform-origin: 50% top;
	-ms-transform-origin: 50% top;
	transform-origin: 50% top;
}
.p-top__mainvisual-slider .slick-slide.slick-active:after {
	-webkit-animation: scale-y-zero-to-max 3s linear 1.6s 1 forwards;
	animation: scale-y-zero-to-max 3s linear 1.6s 1 forwards;
	/* 3s : autoplaySpeed in Slick slider
	   1.6s: speed in Slick
	*/
}
@-webkit-keyframes scale-y-zero-to-max {
	0% {
		-webkit-transform: scaleY(0);
		transform: scaleY(0);
	}
	100% {
		-webkit-transform: scaleY(1);
		transform: scaleY(1);
	}
}
@keyframes scale-y-zero-to-max {
	0% {
		-webkit-transform: scaleY(0);
		transform: scaleY(0);
	}
	100% {
		-webkit-transform: scaleY(1);
		transform: scaleY(1);
	}
}
@media screen and (max-width: 749px) {
	.p-top__mainvisual-slider .slick-slide::before,
	.p-top__mainvisual-slider .slick-slide::after {
		height: 65px;
		top: auto;
		left: 50%;
		bottom: 100px;
	}
	.p-top__mainvisual-slider .slick-slide::before {
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
	}
	.p-top__mainvisual-slider .slick-slide::after {
		-webkit-transform: translateX(-50%) scaleY(0);
		-ms-transform: translateX(-50%) scaleY(0);
		transform: translateX(-50%) scaleY(0);
	}
	@-webkit-keyframes scale-y-zero-to-max {
		0% {
			-webkit-transform: translateX(-50%) scaleY(0);
			transform: translateX(-50%) scaleY(0);
		}
		100% {
			-webkit-transform: translateX(-50%) scaleY(1);
			transform: translateX(-50%) scaleY(1);
		}
	}
	@keyframes scale-y-zero-to-max {
		0% {
			-webkit-transform: translateX(-50%) scaleY(0);
			transform: translateX(-50%) scaleY(0);
		}
		100% {
			-webkit-transform: translateX(-50%) scaleY(1);
			transform: translateX(-50%) scaleY(1);
		}
	}
}
/* VISUAL TEXT */
.p-top__mainvisual-text {
	position: absolute;
	left: 11.8%;
	bottom: 21%;
	letter-spacing: 0.05em;
	font-weight: 700;
	font-size: 34px;
	color: #000;
	margin-bottom: 0;
	text-shadow: 2px 2px 1px rgba(255, 255, 255, 0.75);
}
.p-top__mainvisual-text span {
	display: block;
	font-weight: 600;
	font-size: 106px;
	letter-spacing: 0.005em;
	margin-bottom: 18px;

}
@media screen and (max-width: 1200px) {
	.p-top__mainvisual-text {
		left: 5%;
	}
}
@media screen and (max-width: 991px) {
	.p-top__mainvisual-text {
		font-size: 30px;
	}
	.p-top__mainvisual-text span {
		font-size: 70px;
		margin-bottom: 5px;
	}
}
@media screen and (max-width: 749px) {
	.p-top__mainvisual-text {
		font-size: 15px;
		bottom: 50%;
		-webkit-transform: translateY(50%);
		-ms-transform: translateY(50%);
		transform: translateY(50%);
        line-height: 1.5;
	}
	.p-top__mainvisual-text span {
		font-size: 35px;
		margin-bottom: 5px;
	}
}
/* NEW */
.p-top__new {
	width: 100%;
	position: absolute;
	bottom: 0;
	right: 0;
	background: #000;
	padding: 22px 0;
}
.p-top__new a {
	width: 90%;
	max-width: 520px;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #ffffff;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0;
	padding-right: 35px;
	position: relative;
}
.p-top__new a::after {
	content: "";
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 0;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background-color: #fff;
	background-image: url("./../images/svg/icon_arrow_black.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 5px 6px;
}
.p-top__new .post-cat {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-weight: 600;
	padding-right: 34px;
	margin-right: 42px;
	position: relative;
}
.p-top__new .post-cat::after {
	content: "";
	width: 1px;
	height: 11px;
	background-color: #fff;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 0;
}
.p-top__new .post-date {
	color: #d3d3d3;
	letter-spacing: 0.03em;
	margin-right: 15px;
}
.p-top__new .post-content {
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	font-size: 15px;
}
@media screen and (max-width: 576px) {
	.p-top__new {
		padding: 15px 0;
	}
	.p-top__new a {
		font-size: 12px;
	}
	.p-top__new .post-cat {
		padding-right: 10px;
		margin-right: 15px;
	}
	.p-top__new .post-date {
		letter-spacing: 0.015em;
		margin-right: 8px;
	}
	.p-top__new .post-content {
		font-size: 14px;
	}
}
/* EVENT */
.p-top__events {
	background-color: #f0f0f0;
	padding: 66px 0 82px;
}
.p-top__events-inner {
	width: 88.3%;
	margin-left: auto;
}
.p-top__events .c-title1 {
	margin-bottom: 35px;
}
#slider-event {
	margin-bottom: 0;
}
#slider-event .slick-list {
	margin: 0 -24px;
	padding-right: 22.8%;
}
#slider-event li {
	margin: 0 24px;
}
#slider-event a:hover {
	opacity: 0.6;
}
#slider-event .post-img {
	height: 249px;
	margin-bottom: 28px;
}

#slider-event p {
	letter-spacing: 0;
	font-weight: 400;
}
#slider-event .post-title {
	font-size: 18px;
	line-height: 34px;
	color: #000;
	margin-bottom: 10px;
}
#slider-event .post-txt-small {
	color: #333333;
	font-size: 15px;
	line-height: 28px;
}
#slider-event .post-txt-small span {
	display: block;
}
@media screen and (max-width: 1600px) {
	#slider-event .slick-list {
		margin: 0 -12px;
		padding-right: 15%;
	}
	#slider-event li {
		margin: 0 12px;
	}
}
@media screen and (max-width: 1500px) {
	.p-top__events-inner {
		width: 90%;
	}
}
@media screen and (max-width: 1300px) {
	.p-top__events-inner {
		width: 95%;
	}
}
@media screen and (max-width: 576px) {
	.p-top__events {
		padding-bottom: 60px;
	}
	.p-top__events .c-title1 {
		margin-bottom: 25px;
	}
	#slider-event .slick-list {
		margin: 0 -5px;
	}
	#slider-event li {
		margin: 0 5px;
	}
	#slider-event .post-img {
		height: 200px;
		margin-bottom: 15px;
	}
	#slider-event .post-title,
	#slider-event .post-txt-small {
		line-height: normal;
	}
	#slider-event .post-title {
		font-size: 14px;
		margin-bottom: 5px;
	}
	#slider-event .post-txt-small {
		font-size: 12px;
		margin-bottom: 0;
	}
}
/* CONCEPT */
.p-top__concept {
	padding: 108px 0 155px;
}
.p-top__concept .c-section-textimg {
	width: 88.3%;
	margin-left: auto;
	padding-right: 4.8%;
}
.p-top__concept .c-section-img {
	width: 52%;
	height: 585px;
}
.p-top__concept .c-section-img::before {
	content: "";
	background-image: url("./../images/page/102_p.jpg");
}
.p-top__concept .c-section-img::after {
	content: "";
	background-image: url("./../images/page/113_p.jpg");
	width: 33%;
	height: 420px;
	top: auto;
	bottom: -40px;
	left: -28.5%;
}
.p-top__concept .c-section-info {
	padding-top: 32px;
	padding-right: 16%;
}
@media screen and (min-width: 1920px) {
	.p-top__concept .c-section-info {
		padding-left: 2px;
	}
}
.p-top__concept .c-title1 span {
	margin-right: 30px;
}
@media screen and (max-width: 1650px) {
	.p-top__concept .c-section-textimg {
		width: 90%;
	}
	.p-top__concept .c-section-info {
		padding-right: 9%;
	}
	.p-top__concept .c-section-img {
		width: 50%;
	}
	.p-top__concept .c-section-img::after {
		left: -18%;
	}
}
@media screen and (max-width: 1300px) {
	.p-top__concept {
		padding-bottom: 205px;
	}
	.p-top__concept .c-section-textimg {
		width: 95%;
		padding-right: 0%;
	}
	.p-top__concept .c-section-img::after {
		height: 300px;
		bottom: -160px;
	}
	.p-top__concept .c-section-info {
		padding-right: 3%;
	}
}
@media screen and (max-width: 991px) {
	.p-top__concept {
		padding: 108px 0;
	}
	.p-top__concept .c-section-textimg {
		width: 100%;
		margin: auto;
		padding-right: 0;
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
	.p-top__concept .c-section-img {
		width: 90%;
		height: 500px;
	}
	.p-top__concept .c-section-img::after {
		content: none;
	}
	.p-top__concept .c-section-info {
		width: 90%;
		margin-left: auto;
		background-color: #fff;
		padding-left: 8%;
		margin-top: -50px;
		z-index: 1;
	}
}
@media screen and (max-width: 576px) {
	.p-top__concept {
		padding: 60px 0;
	}
	.p-top__concept .c-section-img,
	.p-top__concept .c-section-info {
		width: 95%;
	}
	.p-top__concept .c-section-img {
		height: 250px;
	}
	.p-top__concept .c-section-info {
		margin-top: -25px;
		padding-left: 5%;
	}
	.p-top__concept .c-line-break {
		display: none;
	}
}
/* TOUR */
.p-top__tour {
	position: relative;
}
.p-top__tour-slide {
	margin-bottom: 0;
}
.p-top__tour-slide .slick-list {
	padding: 0 28.26%;
}
.p-top__tour-slide:nth-of-type(2) .slick-list {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}
.p-top__tour-slide:nth-of-type(2) .slick-slide {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}
.p-top__tour-slide img {
	width: 100%;
	height: 360px;
}
.p-top__tour-inner {
	width: 520px;
	height: 488px;
	background-color: #333333;
	color: #fff;
	position: absolute;
	bottom: 78px;
	right: 16.2%;
	z-index: 1;
	text-align: center;
	padding-top: 86px;
}
.p-top__tour .c-title1-2,
.p-top__tour .c-title1-2 span {
	color: #fff;
}
.p-top__tour .c-title1-2 {
	margin-bottom: 30px;
}
.p-top__tour .c-title1-2 span {
	font-size: 21px;
	margin-bottom: 14px;
	margin-right: 0;
}
.p-top__tour p.big-p {
	font-size: 27px;
	letter-spacing: 0;
	margin-bottom: 28px;
}
.p-top__tour p.big-p-2 {
	font-weight: 500;
	font-size: 20px;
	line-height: 30px;
	letter-spacing: 0.03em;
	margin-bottom: 52px;
}
.p-top__tour-inner .c-btn2 {
	margin: 0 auto;
}
@media screen and (max-width: 1500px) {
	.p-top__tour-inner {
		right: 8%;
	}
}
@media screen and (max-width: 991px) {
	.p-top__tour-inner {
		height: 400px;
		right: auto;
		padding-top: 0;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}
@media screen and (max-width: 576px) {
	.p-top__tour-slide img {
		height: 180px;
	}
	.p-top__tour-slide:nth-of-type(2) {
		margin-top: 200px;
	}
	.p-top__tour-slide .slick-list {
		padding: 0;
	}
	.p-top__tour-inner {
		width: 90%;
		height: auto;
		right: 50%;
		-webkit-transform: translateX(50%);
		-ms-transform: translateX(50%);
		transform: translateX(50%);
		bottom: 160px;
		padding: 20px;
	}
	.p-top__tour .c-title1-2 {
		font-size: 12px;
		margin-bottom: 15px;
	}
	.p-top__tour .c-title1-2 span {
		font-size: 18px;
		margin-bottom: 5px;
	}
	.p-top__tour p.big-p {
		font-size: 16px;
		margin-bottom: 10px;
	}
	.p-top__tour p.big-p-2 {
		font-size: 14px;
		line-height: normal;
		margin-bottom: 25px;
	}
}
/* BANNER  */
.p-top__banner {
	padding-top: 80px;
	margin-bottom: 92px;
}
.p-top__banner::before {
	width: 100%;
	height: 71.2%;
}
.p-top__banner-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 90%;
	max-width: 1052px;
	height: 224px;
	margin: 0 auto;
}
.p-top__banner-inner .c-section-img:nth-child(1) {
	width: 34.4%;
}
.p-top__banner-inner .c-section-img:nth-child(2) {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding: 15px 19px;
}
.p-top__banner-inner .c-section-img:nth-child(1)::after {
	content: "";
	background-image: url("./../images/page/101.jpg");
}
.p-top__banner-inner .c-section-img:nth-child(2)::after {
	content: "";
	background-image: url("./../images/page/7.jpg");
	z-index: -1;
}

.p-top__banner .c-inner {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	background-color: rgba(255, 120, 0, 0.6);
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	color: #fff;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-top: 36px;
}
.p-top__banner .c-inner:hover {
	opacity: 1;
	background-color: rgba(255, 120, 0, 0.85);
}
.p-top__banner .c-inner::after {
	content: "";
	width: 0;
	height: 0;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	border-left: 7px solid #fff;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 76px;
}
.p-top__banner .c-inner-logo {
	display: block;
	width: 94px;
	height: 22px;
	margin-bottom: 8px;
}
.p-top__banner p.big-p {
	font-weight: 400;
	font-size: 21px;
	letter-spacing: 0;
	margin-bottom: -2px;
}
@media screen and (max-width: 991px) {
	.p-top__banner .c-inner {
		padding-top: 0;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.p-top__banner .c-inner::after {
		right: 5%;
	}
}
@media screen and (max-width: 576px) {
	.p-top__banner {
		padding: 40px 0;
		margin-bottom: 45px;
	}
	.p-top__banner::before {
		height: 100%;
	}
	.p-top__banner-inner {
		height: 190px;
	}
	.p-top__banner-inner .c-section-img:nth-child(1) {
		display: none;
	}
	.p-top__banner p.big-p {
		font-size: 16px;
	}
	.p-top__banner .c-inner::after {
		border-width: 5px;
	}
}
/* RENO ESTATE */
.p-top__reno {
	width: 90%;
	max-width: 1472px;
	margin: 0 auto 104px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.p-top__reno li {
	width: calc((100% - 48px) / 2);
	-webkit-box-shadow: 7px 7px 5px rgba(232, 232, 232, 0.75);
	box-shadow: 7px 7px 5px rgba(232, 232, 232, 0.75);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.p-top__reno .c-img-wrapper {
	height: 360px;
}
.p-top__reno a:hover {
	opacity: 1;
}
.p-top__reno .c-section-info {
	flex: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	text-align: center;
	padding: 40px 20px;
}
.p-top__reno .c-title1-2 {
	margin-bottom: 34px;
}
.p-top__reno .c-title1-2 span {
	color: #000;
	font-size: 30px;
	margin-bottom: 10px;
}
.p-top__reno p.main-p {
	font-weight: 500;
	line-height: 27px;
	margin-bottom: 0;
}
.p-top__reno .c-btn2 {
	height: 47px;
	margin-top: 30px;
}
@media screen and (max-width: 991px) {
	.p-top__reno {
		max-width: 550px;
	}
	.p-top__reno li {
		width: 100%;
	}
	.p-top__reno li + li {
		margin-top: 50px;
	}
}
@media screen and (max-width: 576px) {
	.p-top__reno {
		margin-bottom: 50px;
	}
	.p-top__reno .c-img-wrapper {
		height: 200px;
	}
	.p-top__reno .c-section-info {
		padding: 20px;
	}
	.p-top__reno .c-title1-2 {
		font-size: 13px;
		margin-bottom: 15px;
	}
	.p-top__reno .c-title1-2 span {
		font-size: 25px;
		margin-bottom: 5px;
	}
	.p-top__reno p.main-p br {
		display: none;
	}
	.p-top__reno .c-btn2 {
		margin-top: 15px;
		margin-bottom: 20px;
	}
}
/* GALLERY	 */
.p-top__gallery {
	margin-bottom: 76px;
}
.p-top__gallery .c-title1 {
	margin-bottom: 42px;
}
.p-top__gallery .c-title1 span {
	margin-bottom: 15px;
}
#slider-gallery {
	margin-bottom: 0;
	padding-bottom: 90px;
}
#slider-gallery .slick-list {
	margin: 0 -7.5px;
	padding: 0 16.5%;
}
#slider-gallery .c-slide-item {
	margin: 0 7.5px;
}
#slider-gallery a {
	display: block;
	background-color: #494949;
	color: #fff;
	padding: 15px;
	font-weight: 400;
	letter-spacing: 0;
	-webkit-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
#slider-gallery a:hover {
	opacity: 0.9;
}
#slider-gallery .post-img {
	height: 340px;
}
#slider-gallery .post-title {
	font-family: "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3",
		"Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
	font-size: 20px;
	padding: 18px 0;
	border-bottom: 1px solid rgba(110, 103, 101, 0.9);
	white-space: nowrap;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	margin-bottom: 24px;
}
#slider-gallery .post-bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 18px;
}
#slider-gallery .post-info {
	margin-bottom: 0;
	font-weight: 500;
	letter-spacing: 0;
	margin-right: 10px;
}
#slider-gallery .post-info span {
	display: block;
}
#slider-gallery .post-place {
	font-size: 16px;
	margin-bottom: 5px;
}
#slider-gallery .post-date {
	color: #808080;
	font-size: 14px;
}
#slider-gallery .post-viewmore {
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	font-size: 15px;
	letter-spacing: 0;
	position: relative;
	padding-right: 56px;
	margin-bottom: 2px;
	margin-top: 10px;
}
#slider-gallery .post-viewmore::after {
	content: "";
	width: 25px;
	height: 25px;
	border-radius: 50%;
	border: 1px solid #ffffff;
	background-image: url("./../images/svg/icon_arrow_white.svg");
	background-repeat: no-repeat;
	background-size: 6px 10px;
	background-position: center;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 2px;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}
#slider-gallery a:hover .post-viewmore::after {
	background-color: #018043;
	border-color: #018043;
}
#slider-gallery .slick-dots {
	bottom: 18px;
}
#slider-gallery .slick-dots li button {
	width: 8px;
	height: 8px;
}
@media screen and (max-width: 1500px) {
	#slider-gallery .slick-list {
		padding: 0 10%;
	}
	#slider-gallery .post-viewmore {
		padding-right: 40px;
	}
}
@media screen and (max-width: 1300px) {
	#slider-gallery .slick-list {
		padding: 0 5%;
	}
}
@media screen and (max-width: 991px) {
	#slider-gallery .slick-list {
		padding: 0 8%;
	}
}
@media screen and (max-width: 576px) {
	.p-top__gallery {
		margin-bottom: 50px;
	}
	.p-top__gallery .c-title1 {
		margin-bottom: 20px;
	}
	.p-top__gallery .c-title1 span {
		margin-bottom: 8px;
	}
	#slider-gallery {
		width: 90%;
		margin: 0 auto;
		padding-bottom: 50px;
	}
	#slider-gallery .slick-list {
		margin: 0 -5px;
		padding: 0;
	}
	#slider-gallery .c-slide-item {
		margin: 0 5px;
	}
	#slider-gallery a {
		padding: 10px;
	}
	#slider-gallery .post-img {
		height: 310px;
	}
	#slider-gallery .post-title {
		font-size: 16px;
		padding: 10px 0;
		margin-bottom: 12px;
	}
	#slider-gallery .post-bottom {
		margin-bottom: 10px;
	}
	#slider-gallery .post-place {
		font-size: 14px;
	}
	#slider-gallery .post-date {
		font-size: 12px;
	}
	#slider-gallery .post-viewmore {
		font-size: 13px;
	}
	#slider-gallery .slick-dots {
		bottom: 0;
	}
}
/* ABOUT */
.p-top__about {
	margin-bottom: 75px;
}
.p-top__about > .c-title1 {
	margin-bottom: 38px;
}
.p-top__about > .c-title1 span {
	margin-bottom: 10px;
}
.p-top__about ul {
	width: 90%;
	max-width: 1441px;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.p-top__about li {
	width: calc((100% - 67px) / 3);
	margin-bottom: 25px;
}
.p-top__about a {
	position: relative;
}
.p-top__about a:hover {
	opacity: 1;
}
.p-top__about img {
	height: 342px;
}
.p-top__about .c-section-info {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	text-align: center;
	padding: 76px 20px 78px;
	-webkit-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.p-top__about .c-section-info:hover {
	background-color: rgba(0, 0, 0, 0.75);
}
.p-top__about .c-list1 .c-title1,
.p-top__about .c-list1 .c-title1 span,
.p-top__about .c-list1 .main-p {
	color: #fff;
}
.p-top__about .c-list1 .c-title1 {
	font-family: "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3",
		"Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
	font-weight: 400;
	font-size: 20px;
	letter-spacing: 0.02em;
	margin-bottom: 18px;
}
.p-top__about .c-list1 .c-title1 span {
	font-size: 17px;
	font-weight: 600;
	letter-spacing: 0.05em;
	margin-bottom: -6px;
}
.p-top__about .c-list1 .main-p {
	font-weight: 500;
	font-size: 15px;
	margin-bottom: 0;
}
.p-top__about .c-list1 .c-btn3 {
	margin-top: auto;
}
@media screen and (max-width: 1550px) {
	.p-top__about .c-section-info {
		padding-bottom: 60px;
	}
}
@media screen and (max-width: 991px) {
	.p-top__about li {
		width: calc((100% - 30px) / 2);
		margin-bottom: 25px;
	}
}
@media screen and (max-width: 576px) {
	.p-top__about {
		margin-bottom: 40px;
	}
	.p-top__about li {
		width: 100%;
		margin-bottom: 15px;
	}
	.p-top__about li:last-child {
		margin-bottom: 0;
	}
	.p-top__about img {
		height: 200px;
	}
	.p-top__about .c-section-info {
		padding: 0 20px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.p-top__about .c-section-info br {
		display: none;
	}
	.p-top__about .c-list1 .c-btn3 {
		margin-top: 10px;
	}
	.p-top__about .c-list1 .c-title1 {
		font-size: 16px;
		margin-bottom: 10px;
	}
	.p-top__about .c-list1 .c-title1 span {
		font-size: 13px;
	}
	.p-top__about .c-list1 .main-p {
		font-size: 12px;
	}
}
/* NEWS NAV */
.p-top__news {
	width: 90%;
	max-width: 944px;
	margin: 0 auto;
	margin-bottom: 84px;
}
.p-top__news .c-title1 {
	margin-bottom: 52px;
}
.p-top__news .c-title1 span {
	margin-bottom: 14px;
}
#myTab {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 20px;
	border-bottom: 0;
}
#myTab li {
	width: calc((100% - 44px) / 3);
}
#myTab a {
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-bottom: 1px solid rgba(0, 0, 0, 0.96);
	padding: 6px 10px;
	cursor: pointer;
	border-radius: 0;
	font-weight: 400;
	font-size: 15px;
	letter-spacing: 0.03em;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}
#myTab a:hover,
#myTab .active {
	border-color: black;
	background-color: black;
	color: white;
	opacity: 1;
}
.p-top__news .post-list a {
	padding: 12px 0;
	position: relative;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: black;
	font-weight: 500;
	letter-spacing: 0;
	border-bottom: 1px solid rgba(128, 128, 128, 0.5);
}
.p-top__news .post-list .post-info {
	min-width: 0;
}
.p-top__news .post-img {
	width: 80px;
	height: 80px;
	margin-right: 22px;
}
.p-top__news .post-img img {
	display: block;
	width: 100%;
	height: 100%;
}
.p-top__news .post-img img.eye-img {
	height: auto;
}
.p-top__news .post-list p {
	margin-bottom: 0;
}
.p-top__news .post-date {
	color: #808080;
	font-size: 14px;
	letter-spacing: 0.03em;
	margin-bottom: 5px;
}
.p-top__news .post-content {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	font-size: 16px;
	padding-right: 60px;
}
.p-top__news .c-icon1::after {
	top: 58%;
	right: 18px;
}
.p-top__news a.c-icon1:hover::after {
	background-color: #018043;
}
@media screen and (max-width: 576px) {
	.p-top__news {
		margin-bottom: 45px;
	}
	.p-top__news .c-title1 {
		margin-bottom: 30px;
	}
	.p-top__news .c-title1 span {
		margin-bottom: 8px;
	}
	#myTab {
		margin-bottom: 30px;
	}
	#myTab li {
		width: 100%;
	}
	.p-top__news .post-list a {
		padding: 6px;
	}
	.p-top__news .post-img {
		display: none;
	}
	.p-top__news .post-date {
		font-size: 13px;
	}
	.p-top__news .post-content {
		font-size: 15px;
		padding-right: 40px;
	}
	.p-top__news a.c-icon1::after {
		top: 50%;
		right: 0;
	}
}
/* CONTACT */
.p-top__contact {
	background-image: -o-linear-gradient(#000, #000);
	background-image: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(#000),
		to(#000)
	);
	background-image: linear-gradient(#000, #000);
	background-repeat: no-repeat;
	background-size: 100% 43%;
	background-position: bottom;
}
.p-top__contact-inner {
	width: 90%;
	max-width: 1590px;
	margin: 0 auto;
	margin-bottom: -2px;
	background-color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 68px 115px;
}
.p-top__contact #map {
	width: 36.62%;
}
.p-top__contact .c-section-textimg,
.p-top__contact .l-contact {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
.p-top__contact .c-section-img {
	width: 42.25%;
}
.p-top__contact .c-section-img::after {
	content: "";
	background-image: url("./../images/page/112.jpg");
}
.p-top__contact .l-contact {
	padding-top: 30px;
	padding-left: 6%;
	padding-right: 5%;
	padding-bottom: 12px;
}
.p-top__contact .c-title1 {
	margin-bottom: 25px;
}
.p-top__contact .c-title1 span {
	font-weight: 500;
	font-size: 15px;
	letter-spacing: 0;
}
.p-top__contact .l-contact .big-p {
	margin-bottom: 28px;
}
.p-top__contact .c-google-link {
	color: #797979;
}
.p-top__contact .c-google-link span {
	padding: 0;
}
.p-top__contact .c-google-link i {
	color: #cf5808;
}
.p-top__contact .l-contact ul .right {
	color: #797979;
}
@media screen and (max-width: 1500px) {
	.p-top__contact-inner {
		padding: 70px;
	}
	.p-top__contact .l-contact {
		padding-left: 5%;
	}
}
@media screen and (max-width: 1350px) {
	.p-top__contact-inner {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		padding: 5%;
	}
	.p-top__contact #map {
		width: 100%;
		height: 400px;
	}
	.p-top__contact .c-section-textimg {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
		margin-bottom: 30px;
	}
	.p-top__contact .c-section-img {
		display: block;
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
	}
	.p-top__contact .l-contact {
		-webkit-box-flex: 0;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
		padding-left: 0;
	}
}
@media screen and (max-width: 576px) {
	.p-top__contact {
		background-image: none;
	}
	.p-top__contact-inner {
		width: 100%;
		padding: 0;
	}
	.p-top__contact .c-section-textimg {
		padding: 0 5%;
	}
	.p-top__contact #map {
		height: 250px;
	}
	.p-top__contact .l-contact {
		-webkit-box-flex: 0;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
		padding: 0;
		padding-right: 5%;
	}
	.p-top__contact .c-title1 {
		margin-bottom: 10px;
	}
	.p-top__contact .l-contact .big-p {
		margin-bottom: 14px;
	}
	.p-top__contact .l-contact ul {
		margin-top: 14px;
	}
}
@media screen and (max-width: 450px) {
	.p-top__contact .c-section-textimg {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.p-top__contact .c-section-img {
		display: none;
	}
	.p-top__contact .l-contact {
		padding-right: 0;
	}
}
