@charset 'utf-8';

/*------------------------------------------------
p-main ポスト紹介
------------------------------------------------*/

.p-main__top {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	height: 200px;
	background-color: #f7f5f6;
}
.p-main__top-ttl-wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.p-main__top-ttl {
	line-height: 1;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	min-height: 0;
}
.p-main__top-ttl-ico {
	width: 44px;
	margin-right: 35px;
}
.p-main__top-ttl-txt {
	font-size: 34px;
	font-weight: bold;
	letter-spacing: .1em;
	color: #cb3d1f;
}
.p-main__top-ttl-en {
	font-size: 18px;
	min-height: 0;
	margin-top: 15px;
	letter-spacing: .2em;
}

/*------------ p-main__nav ------------*/

.p-main__nav {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: nowrap;
	width: 100%;
}
.p-main__nav-item {
	height: 60px;
	border-left: 1px solid #c3c3c3;
}
.p-main__nav-item:last-child {
	border-right: 1px solid #c3c3c3;
}
.p-main__nav-link {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	height: 100%;
	transition: .3s;
	letter-spacing: .05em;
}
/* pc-only ------------*/
@media screen and (min-width: 768px) {
	.p-main__nav-link:hover {
		color: #fff;
		background: #333;
	}
}
/* /pc-only -----------*/

/* option ------------*/

.p-main__nav-item.select .p-main__nav-link {
	color: #fff;
	background: #333;
}
.p-main__nav--4col .p-main__nav-item {
	width: calc(100% / 4);
}

.p-main__nav--3col .p-main__nav-item {
	width: calc(100% / 3);
}

.p-main__nav--2col .p-main__nav-item {
	width: calc(100% / 2);
}

/* /option -----------*/

/*------------ p-main__name ------------*/

.p-main__name {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	height: 300px;
	color: #fff;
	background-color: #d15c43;
}
.p-main__name-txt-wrap {
	line-height: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: calc(50% - 100px);
	padding: 0 30px;
}
.p-main__name-txt-wrap__in {
}
.p-main__name-ttl {
	font-size: 40px;
	font-weight: bold;
}
.p-main__name-ttl--jp {
	margin-top: 20px;
}
.p-main__name-img {
	width: calc(50% + 100px);
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

/*------------------------------------------------
p-main02
------------------------------------------------*/

.p-main02{
	width: 100%;
	height: 380px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	flex-direction: column;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	color: #FFF;
}
.p-main02__in{
	min-height: 0%;
}
.p-main02__ttl{
	font-weight: bold;
	font-size: 36px;
	letter-spacing: 0.1em;
	line-height: 1.4;
	text-align: center;
}
.p-main02__ttl-en{
	font-size: 18px;
	line-height: 1.4;
	letter-spacing: 0.2em;
	text-align: center;
	margin-top: 10px;
}
.p-main02__txt{
	width: 600px;
	letter-spacing: 0.03em;
	line-height: 1.6;
	margin: 40px auto 0;
}

/*------------------------------------------------
p-main02__nav
------------------------------------------------*/

.p-main02__nav{
	background-color: #FFF;
	padding: 20px 0;
	width: 1100px;
	margin-right: auto;
	margin-left: auto;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
}
.p-main02__item{
	flex-wrap: wrap;
	border-right: 1px solid #c3c3c3;
}
.p-main02__item:first-child{
	border-left: 1px solid #c3c3c3;
}
.p-main02__link{
	letter-spacing: 0.05em;
	line-height: 1.4;
	width: 100%;
	height: 100%;
	min-height: 63px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	text-align: center;
	transition: 0.3s;
}
.p-main02__link::after{
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 8px 6.5px 0 6.5px;
	border-color: #959595 transparent transparent transparent;
	margin-left: 12px;
	transition: 0.3s;
}

/* pc-only ------------*/
@media screen and (min-width: 768px){
	.p-main02__nav--7col .p-main02__item{
		width: calc(100% / 7);
	}
	.p-main02__nav--5col .p-main02__item{
		width: calc(100% / 5);
	}
	.p-main02__nav--4col .p-main02__item{
		width: calc(100% / 4);
	}
	.p-main02__link:hover{
		color: #609fb1;
	}
	.p-main02__link:hover::after{
		transform: translateY(5px);
		border-color: #609fb1 transparent transparent transparent;
	}
}
/* /pc-only -----------*/

/*------------------------------------------------
p-info
------------------------------------------------*/

.p-info {
	padding: 60px 0;
}
.p-info__in {
	width: 900px;
	margin-right: auto;
	margin-left: auto;
}
.p-info__block {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-wrap: wrap;
}
.p-info__txt-wrap {
	width: 50%;
}
.p-info__ttl {
	font-size: 30px;
	line-height: 1.35;
	letter-spacing: .06em;
}
.p-info__txt {
	line-height: 1.6;
	margin-top: 25px;
	letter-spacing: .03em;
}
.p-info__table {
	margin-top: 45px;
}
.p-info__table-dl {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-wrap: wrap;
}
.p-info__table-dl:not(:last-child) {
	margin-bottom: 4px;
}
.p-info__table-ttl {
	font-size: 11px;
	line-height: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 100px;
	min-height: 22px;
	color: #fff;
	background-color: #d2563b;
}
.p-info__table-txt {
	font-size: 12px;
	line-height: 1.8;
	width: calc(100% - 100px);
	padding-left: 7px;
}
.p-info__table-comment{
	color: #D43D3D;
	font-size: 12px;
	margin-top: 10px;
}
.p-info__main-img-wrap {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-wrap: wrap;
	width: 50%;
}
.p-info__main-img {
	width: 380px;
	height: 400px;
}
.p-info__main-img img {
	width: 100%;
}
.p-info__main-img-txt {
	font-size: 11px;
	line-height: 1;
	width: 380px;
	margin-top: 7px;
	text-align: center;
	min-height: 1em;
}
.p-info__sub-list {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-wrap: wrap;
	width: 100%;
	margin-top: 40px;
}
.p-info__sub-item {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	width: calc(100% / 8);
	margin-bottom: 10px;
	cursor: pointer;
	transition: .3s;
}
/* pc-only ------------*/
@media screen and (min-width: 768px) {
	.p-info__sub-item:hover {
		opacity: .7;
	}
	.p-info__sub-item.dn-w {
		display: none;
	}
	.p-info__sub-item.select {
		opacity: .5;
	}
}
/* /pc-only -----------*/

.p-info__sub-item-img {
	width: 107px;
}
.p-info__sub-item-txt {
	font-size: 11px;
	line-height: 1.4;
	margin-top: 5px;
	text-align: center;
}

/*------------------------------------------------
p-info02 表札 / 門柱
------------------------------------------------*/

.p-info02{
	width: 100%;
	padding-top: 0;
}
.p-info02__ttl-wrap{
	width: 100%;
	background-color: #609FB1;
	color: #FFF;
	margin-bottom: 45px;
}
.p-info02__ttl-in{
	width: 1100px;
	margin-right: auto;
	margin-left: auto;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	letter-spacing: 0.03em;
	padding: 35px 0;
}
.p-info02__ttl-type{
	margin-right: 30px;
	min-width: 300px;
	padding: 23px 15px;
	background-color: #FFF;
	color: #609FB1;
	font-size: 20px;
	line-height: 1;
	font-weight: bold;
	text-align: center;
}
.p-info02__ttl{
	font-size: 36px;
	line-height: 1;
	font-weight: bold;
}
.p-info02__ttl span{
	display: block;
	line-height: 1;
	font-size: 15px;
	margin-top: 15px;
	font-weight: normal;
}

/* pc-only ------------*/
@media screen and (min-width: 768px){
	.p-info02 .p-info__txt-wrap{
		order: 2;
	}
	.p-info02 .p-info__main-img-wrap{
		order: 1;
		justify-content: flex-start;
	}
	.p-info02 .p-info__sub-list{
		order: 3;
	}
}
/* /pc-only -----------*/
.p-info02 .p-info__table-ttl{
	background-color: #609FB1;
}

/*------------------------------------------------
sectionName
------------------------------------------------*/

.p-review {
	background-color: #f8f6f6;
}
.p-review__in {
	padding: 20px 0 80px;
}
.p-review__top-color {
	font-size: 18px;
	line-height: 1;
	text-align: center;
	letter-spacing: .3em;
}
.p-review__list {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-wrap: wrap;
	margin-top: 30px;
}
.p-review__item {
	width: 340px;
	margin-bottom: 40px;
}
/* pc-only ------------*/
@media screen and (min-width: 768px) {
	.p-review__item:not(:nth-child(3n)) {
		margin-right: 40px;
	}
	.p-review__item:nth-child(3n - 1) {
		margin-top: 60px;
	}
}
/* /pc-only -----------*/
.p-review__item-img {
	width: 100%;
	height: 400px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.p-review__item-ttl {
	font-size: 26px;
	font-weight: bold;
	line-height: 1.6;
	position: relative;
	z-index: 0;
	margin-top: 20px;
	letter-spacing: .05em;
	color: #d15c43;
}
.p-review__item-ttl::after {
	content: '';
	display: block;
	width: 30px;
	height: 3px;
	margin: 5px 0 20px;
	background-color: #d15c43;
}
/* option ------------*/
.p-review__item-ttl::before {
	content: '';
	position: absolute;
	z-index: -1;
	top: 0;
	right: 0;
	display: block;
	width: 89px;
	height: 87px;
}
.p-review__item:nth-of-type(1) .p-review__item-ttl::before {
	background: url(../img/post/num_01.png) no-repeat center / cover;
}
.p-review__item:nth-of-type(2) .p-review__item-ttl::before {
	background: url(../img/post/num_02.png) no-repeat center / cover;
}
.p-review__item:nth-of-type(3) .p-review__item-ttl::before {
	background: url(../img/post/num_03.png) no-repeat center / cover;
}
.p-review__item:nth-of-type(4) .p-review__item-ttl::before {
	background: url(../img/post/num_04.png) no-repeat center / cover;
}
.p-review__item:nth-of-type(5) .p-review__item-ttl::before {
	background: url(../img/post/num_05.png) no-repeat center / cover;
}
.p-review__item:nth-of-type(6) .p-review__item-ttl::before {
	background: url(../img/post/num_06.png) no-repeat center / cover;
}
.p-review__item:nth-of-type(7) .p-review__item-ttl::before {
	background: url(../img/post/num_07.png) no-repeat center / cover;
}
.p-review__item:nth-of-type(8) .p-review__item-ttl::before {
	background: url(../img/post/num_08.png) no-repeat center / cover;
}
.p-review__item:nth-of-type(9) .p-review__item-ttl::before {
	background: url(../img/post/num_09.png) no-repeat center / cover;
}
/* /option -----------*/
.p-review__item-txt {
	line-height: 1.6;
	position: relative;
	z-index: 2;
	letter-spacing: .03em;
}
.p-review__item-txt:not(:last-child) {
	margin-bottom: 10px;
}

/*------------------------------------------------
p-360
------------------------------------------------*/

.p-360{
}
.p-360 .block-ttl01__en span{
	width: 0.5em;
	display: inline-block;
	margin-left: -0.2em;
}
.p-360 .block-ttl01__ttl span{
	width: 0.5em;
	display: inline-block;
	margin-left: -0.2em;
}
.p-360__in{
	padding: 70px 0;
}
.p-360__item{
	width: 600px;
	height: 550px;
	margin-right: auto;
margin-left: auto;
}
.p-360__item iframe{
	width: 100%;
	height: 100%;
}

/*------------------------------------------------
sectionName
------------------------------------------------*/

.p-recommend__in {
	padding: 40px 0 60px;
}
.p-recommend__list {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
}
.p-recommend__item {
	width: 360px;
	padding-bottom: 20px;
	background-color: #f8f6f6;
	position: relative;
}
.p-recommend__item-img {
	width: 100%;
	height: 160px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	display: block;
	transition: 0.3s;
}
/* pc-only ------------*/
@media screen and (min-width: 768px){
	.p-recommend__item-img:hover{
		opacity: 0.7;
	}
}
/* /pc-only -----------*/
.p-recommend__item-txt-wrap {
	position: relative;
	padding: 20px 30px 55px;
}
.p-recommend__item-txt-wrap::after {
	content: '';
	position: absolute;
	top: 0;
	right: 40px;
	display: block;
	width: 8px;
	height: 45px;
	background-color: #609fb1;
}
.p-recommend__item-ttl {
	color: #609fb1;
	padding-right: 30px;
	line-height: 1;
}
.p-recommend__item-ttl--en {
	font-size: 24px;
	line-height: 1.3;
	font-weight: bold;
	width: 100%;
	display: block;
}
.p-recommend__item-ttl--min {
	font-size: 12px;
	display: block;
	margin-top: 8px;
}
.p-recommend__item-txt {
	font-size: 12px;
	height: 42px;
	line-height: 1.8;
	margin-top: 10px;
	letter-spacing: .03em;
	overflow: hidden;
}
.p-recommend .linkbtn01 {
	width: 180px;
	/*margin: 15px auto 0;*/
    margin: auto;
	position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
}

/*------------------------------------------------
p-popular
------------------------------------------------*/

.p-popular {
	padding: 65px 0 60px;
	background: url(../img/post/bg_01.jpg) no-repeat center / cover;
}
.p-popular__in {
	width: 1100px;
	margin-right: auto;
	margin-left: auto;
}
.p-popular__ttl-wrap {
	text-align: center;
	color: #fff;
}
.p-popular__ttl {
	font-size: 32px;
	font-weight: bold;
	letter-spacing: .15em;
}
.p-popular__ttl-en {
	width: 268px;
	height: 30px;
	margin: 10px auto 30px;
	background: url(../img/post/ttl_bg01.png) no-repeat center / cover;
}
.p-popular__block {
	margin-bottom: 30px;
}
.p-popular__list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 15px;
}
.p-popular__item {
	position: relative;
	width: 540px;
	height: auto;
	margin-bottom: 10px;
	min-height: 170px;
	background-color: #fff;
}
.p-popular__item::after {
	content: none;
	position: absolute;
	top: 0;
	right: 15px;
	display: block;
	width: 6px;
	height: 45px;
	background-color: #cb3d1f;
}
.p-popular__item a {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	width: 100%;
	height: 100%;
}
.p-popular__item-txt-wrap {
	width: calc(100% - 200px);
	padding: 10px 0 51px 30px;
}
.p-popular__item-txt-wrap .linkbtn01{
	border-color: #CB3D1F;
	color: #CB3D1F;
	max-width: 115px;
	height: 24px;
	padding-left: 21px;
	font-size: 13px;
	background-color: transparent;
	position: absolute;
	bottom: 15px;
	right: 30px;
	line-height: 1.2;
}
.p-popular__item-txt-wrap .linkbtn01::after{
	width: 30px;
	right: -15px;
	background-color: #CB3D1F;
}
@media screen and (min-width: 768px){
	.p-popular__item:hover .linkbtn01{
		background-color: #CB3D1F;
		color: #fff;
	}
	.p-popular__item:hover .linkbtn01::after{
		right: 0;
		opacity: 0;
	}
}
.p-popular__item-name {
	font-size: 30px;
	color: #cb3d1f;
	line-height: 1.2;
}
.p-popular__item-name span {
	font-size: 20px;
	margin-right: 5px;
}
.p-popular__item-name-jp {
	font-size: 13px;
	color: #cb3d1f;
	margin-top: 5px;
}
.p-popular__item-txt {
	margin-top: 5px;
}
.p-popular__item-img {
	width: 200px;
	height: 100%;
}
.p-popular__item-img01 {
	background: url(../img/post/img_01.jpg) no-repeat center / cover;
}
.p-popular__item-img02 {
	background: url(../img/post/img_02.jpg) no-repeat center / cover;
}
.p-popular__item-img03 {
	background: url(../img/post/img_03.jpg) no-repeat center / cover;
}
.p-popular__item-img04 {
	background: url(../img/post/img_04.jpg) no-repeat center / cover;
}
.p-popular__item-img05 {
	background: url(../img/post/img_05.jpg) no-repeat center / cover;
}
.p-popular__item-img06 {
	background: url(../img/post/img_06.jpg) no-repeat center / cover;
}
.p-popular__item-img07 {
	background: url(../img/post/img_07.jpg) no-repeat center / cover;
}
.p-popular__item-img08 {
	background: url(../img/post/img_08.jpg) no-repeat center / cover;
}
.p-popular__item-img09 {
	background: url(../img/post/img_09.jpg) no-repeat center / cover;
}
.p-popular__item-img10 {
	background: url(../img/post/img_10.jpg) no-repeat center / cover;
}
.p-popular__item-img11 {
	background: url(../img/post/img_11.jpg) no-repeat center / cover;
}
.p-popular__item-img12 {
	background: url(../img/post/img_12.jpg) no-repeat center / cover;
}
.p-popular__item-img13 {
	background: url(../img/post/img_13.jpg) no-repeat center / cover;
}
@media screen and (max-width: 767px) {
	.p-popular__item-img06 {
		background: url(../img/post/img_06.jpg) no-repeat -10px / cover;
	}
	.p-popular__item-img13 {
		background: url(../img/post/img_13.jpg) no-repeat center / contain;
	}
}

/* ---------------------------------------------------------------- SP ---- */
@media screen and (max-width: 767px) {
	/*------------------------------------------------
	p-main ポスト紹介
	------------------------------------------------*/

	.p-main__top {
		height: auto;
		padding: 16px 10px;
	}
	.p-main__top-ttl-wrap {
	}
	.p-main__top-ttl {
	}
	.p-main__top-ttl-ico {
		width: 22px;
		margin-right: 15px;
	}
	.p-main__top-ttl-txt {
		font-size: 17px;
	}
	.p-main__top-ttl-en {
		font-size: 10px;
		line-height: 1;
		margin-top: 6px;
	}

	/*------------ p-main__nav ------------*/

	.p-main__nav {
		display: none;
	}

	/*------------ p-main__name ------------*/

	.p-main__name {
		width: 100%;
		height: auto;
		padding: 17px 0;
		justify-content: flex-start;
	}
	.p-main__name-txt-wrap {
		justify-content: flex-start;
		width: 242px;
		padding: 0 15px;
	}
	.p-main__name-txt-wrap__in {
		transform: translateX(0);
	}
	.p-main__name-ttl {
		font-size: 25px;
	}
	.p-main__name-ttl--jp {
		font-size: 10px;
		margin-top: 8px;
	}
	.p-main__name-img {
		display: none;
	}

	/*------------------------------------------------
	p-main02
	------------------------------------------------*/

	.p-main02{
		height: auto;
		min-height: 270px;
	}
	.p-main02__in{
		padding: 15px;
	}
	.p-main02__ttl{
		font-size: 22px;
	}
	.p-main02__ttl-en{
		font-size: 11px;
		margin-top: 3px;
	}
	.p-main02__txt{
		width: 100%;
		line-height: 1.4;
		margin: 20px auto 0;
		font-size: 13px;
	}

	/*------------------------------------------------
	p-main02__nav
	------------------------------------------------*/

	.p-main02__nav{
		padding: 0;
		width: 100%;
		flex-wrap: wrap;
		align-items: stretch;
	}
	.p-main02__item{
		border-right: 0px;
		width: 50%;
		border-bottom: 1px solid #c3c3c3;
	}
	.p-main02__item:first-child{
		border-left: 0px solid #c3c3c3;
	}
	.p-main02__item:nth-child(2n - 1){
		border-right: 1px solid #c3c3c3;
	}
	.p-main02__item:first-child{
		border-left: 0px solid #c3c3c3;
	}
	.p-main02__link{
		font-size: 11px;
		min-height: 45px;
		position: relative;
		text-align: left;
		justify-content: flex-start;
		padding: 4px 5px 4px 15px;
	}
	.p-main02__link::after{
		border-width: 5px 4px 0 4px;
		margin-left: 0;
		position: absolute;
		height: 5px;
		line-height: 1;
		top: 0;
		bottom: 0;
		margin: auto;
		right: 10px;
	}
	/* option ------------*/
	.p-main02__nav--7col .p-main02__item:last-child,
	.p-main02__nav--5col .p-main02__item:last-child{
		border-bottom: 0;
	}
	.p-main02__nav--4col .p-main02__item:nth-child(4),
	.p-main02__nav--4col .p-main02__item:nth-child(3){
		border-bottom: 0;
	}
	/* /option -----------*/

	/*------------------------------------------------
	sectionName
	------------------------------------------------*/

	.p-info {
		padding: 40px 0;
	}
	.p-info__in {
		width: 100%;
		padding: 0 15px;
	}
	.p-info__block {
		justify-content: flex-start;
	}
	.p-info__txt-wrap {
		width: 100%;
		margin-top: 15px;

		order: 3;
	}
	.p-info__ttl {
		font-size: 22px;
		font-weight: 600;
		line-height: 1.3;
	}
	.p-info__txt {
		line-height: 1.6;
		margin-top: 10px;
	}
	.p-info__table {
		margin-top: 15px;
	}
	.p-info__table-dl:not(:last-child) {
		margin-bottom: 2px;
	}
	.p-info__table-ttl {
		font-size: 11px;
		width: 100px;
	}
	.p-info__table-txt {
		font-size: 12px;
	}
	.p-info__table-comment{
		font-size: 10px;
	}
	.p-info__main-img-wrap {
		display: none;
	}
	.p-info__main-img-txt {
		height: 11px;
		margin-top: 5px;
	}
	.p-info__sub-list {
		margin-top: 0;

		order: 1;
	}
	.p-info__sub-item {
		width: 100%;
		margin-bottom: 0;
		transition: 0s;
	}
	.p-info__sub-item-img {
		width: 100%;
	}
	.p-info__sub-item-txt {
		display: block;
	}
	.slick-dots {
		display: flex;
		justify-content: flex-start;
		align-items: stretch;
		flex-wrap: wrap;
		width: 100%;
		margin-top: 7px;
	}
	.slick-dots li {
		position: relative;
		display: flex;
		justify-content: center;
		align-items: flex-start;
		flex-wrap: wrap;
		width: calc(100% / 6);
		margin-bottom: 6px;
	}
	.welcomwall .slick-dots li:last-child{
		display: none;
	}
	.slick-dots li.slick-active::after {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		display: block;
		width: 100%;
		height: 100%;
		opacity: .6;
		background-color: #333;
	}
	.slick-dots img {
		width: calc(100% - 5px);
		border: 1px solid #e6e6e6;
	}
	.slick-prev,
	.slick-next {
		font-size: 23px;
		line-height: 1;
		position: absolute;
		z-index: 1;
		top: 41.3vw;
		left: -17px;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-wrap: wrap;
		width: 45px;
		height: 45px;
		color: #fff;
		border-radius: 50%;
		background-color: rgba(56, 56, 56, .5);;
	}
	.slick-next {
		right: -17px;
		left: auto;
	}

	/*------------------------------------------------
	p-info02 表札 / 門柱
	------------------------------------------------*/

	.p-info02{
		padding: 0 0 40px;
	}
	.p-info02__ttl-wrap{
		margin-bottom: 40px;
	}
	.p-info02__ttl-in{
		width: 100%;
		display: block;
		padding: 15px 15px;
	}
	.p-info02__ttl-type{
		margin-right: 0;
		min-width: auto;
		display: inline-block;
		padding: 5px 8px;
		font-size: 10px;
	}
	.p-info02__ttl{
		font-size: 22px;
		line-height: 1.3;
		margin-top: 5px;
	}
	.p-info02__ttl span{
		font-size: 10px;
		margin-top: 4px;
	}

	/*------------------------------------------------
	sectionName
	------------------------------------------------*/

	.p-review {
	}
	.p-review__in {
		padding: 20px 15px 40px;
	}
	.p-review__top-color {
		font-size: 14px;
		line-height: 1.4;
	}
	.p-review__list {
		display: block;
		margin-top: 20px;
	}
	.p-review__item {
		width: 100%;
		margin: 0 auto 45px;
	}
	.p-review__item-img {
		width: 100%;
		height: 0;
		padding-top: 117.65%;
	}
	.p-review__item-ttl {
		font-size: 19px;
		margin-top: 10px;
	}
	.p-review__item-ttl::after {
		width: 25px;
		height: 2px;
		margin: 3px 0 10px;
	}
	.p-review__item-ttl::before {
		width: 89px;
		height: 87px;
	}
	.p-review__item-txt {
		line-height: 1.6;
	}
	.p-review__item-txt:not(:last-child) {
		margin-bottom: 7px;
	}

	/*------------------------------------------------
	p-360
	------------------------------------------------*/

	.p-360{
	}
	.p-360__in{
		padding: 30px 15px;
	}
	.p-360__item{
		width: 280px;
		height: 280px;
	}

	/*------------------------------------------------
	sectionName
	------------------------------------------------*/


	.p-recommend__in {
		padding: 40px 15px;
	}
	.p-recommend__list {
		display: block;
	}
	.p-recommend__item {
		width: 100%;
		padding-bottom: 25px;
	}
	.p-recommend__item:not(:last-child) {
		margin-bottom: 20px;
	}
	.p-recommend__item-img {
		height: 150px;
	}
	.p-recommend__item-txt-wrap {
		padding: 15px 15px 0;
	}
	.p-recommend__item-txt-wrap::after {
		right: 25px;
		width: 5px;
		height: 30px;
	}
	.p-recommend__item-ttl--en {
		font-size: 16px;
		margin-right: 5px;
	}
	.p-recommend__item-ttl--min {
		font-size: 11px;
	}
	.p-recommend__item-txt {
		height: auto;
		overflow: visible;
	}
	.p-recommend .linkbtn01 {
		width: 180px;
		margin: 10px auto 0;
		position: relative;
		bottom: 0;
	}

	/*------------------------------------------------
	p-popular
	------------------------------------------------*/

	.p-popular {
		padding: 30px 15px;
	}
	.p-popular__in {
		width: 100%;
	}
	.p-popular__ttl {
		font-size: 18px;
		line-height: 1.3;
	}
	.p-popular__ttl-en {
		font-size: 10px;
		width: 189px;
		height: 21px;
		margin: 10px auto 20px;
	}
	.p-popular__list {
		display: flex;
		margin-top: 10px;
	}
	.p-popular__item {
		width: 100%;
		height: auto;
		min-height: 140px;
		margin-bottom: 10px;
	}
	.p-popular__item::after {
		right: 10px;
		width: 4px;
		height: 25px;
	}
	.p-popular__item-txt-wrap {
		width: calc(100% - 130px);
		padding: 5px 10px 50px;
	}
	.p-popular__item-name {
		font-size: 16px;
		line-height: 1.1;
	}
	.p-popular__item-name span {
		font-size: 13px;
		margin-right: 5px;
	}
	.p-popular__item-name-jp {
		font-size: 10px;
		margin-top: 0px;
	}
	.p-popular__item-txt {
		font-size: 10px;
		margin-top: 3px;
		line-height: 1.4;
	}
	.p-popular__item-img {
		width: 130px;
		height: 100%;
	}
}
