@charset "utf-8";
/**
/* 共通 CSS
----------------------------------------------- */
/*　　アニメーション　　*/
.js-inview{
	opacity: 0;
	filter: blur(30px);
	transform: matrix(1, 0, 0, 1, 0, 60);
	transition: all 1.5s cubic-bezier(.23,1,.32,1) 0.1s;
}
.js-inview.active{
	opacity: 1;
	filter: blur(0);
	transform: matrix(1, 0, 0, 1, 0, 0);
}
.decoration-text-container{
	position: relative;
}
.decoration-text-container .decoration-text{
	display: flex;
	font-family: "Shippori Mincho", serif;
	font-size: 6.875rem;
	font-weight: 500;
	line-height: 1.072;
	white-space: nowrap;
	overflow: hidden;
}
.decoration-text-container .decoration-text div:first-child {
	-webkit-animation: loopLeft1 80s -40s linear infinite;
	animation: loopLeft1 80s -40s linear infinite;
}
.decoration-text-container .decoration-text div:last-child {
	-webkit-animation: loopLeft2 80s linear infinite;
	animation: loopLeft2 80s linear infinite;
}
@-webkit-keyframes loopLeft1 {
	0% {
		-webkit-transform: translateX(100%);
			transform: translateX(100%);
	}
	to {
		-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
	}
}
@keyframes loopLeft2 {
	0% {
		-webkit-transform: translateX(0);
			transform: translateX(0);
	}
	to {
		-webkit-transform: translateX(-200%);
			transform: translateX(-200%);
	}
}
@media only screen and (max-width: 767px) {
	.decoration-text-container .decoration-text{
		font-size: 3.4375rem;
	}
}
/*　　背景色　　*/
.bg-gray{
	background: #F0F0ED;
}
/*　　見出し　　*/
.guide-ttl{
	position: relative;
}
.guide-ttl .roma{
	font-family: "Shippori Mincho", serif;
	font-size: 5rem;
	font-weight: 500;
	line-height: 1.45;
}
.guide-ttl .roma.border{
	position: relative;
}
.guide-ttl .roma.border::before{
	content:'';
	display: block;
	position: absolute;
	background: #BEBEBE;
	width: 200%;
	height: 1px;
	top: 4.25rem;
	left: calc((200% + 2.96875rem) * -1);
}
.guide-ttl h2{
	font-family: "Shippori Mincho", serif;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5;
}
@media only screen and (max-width: 767px) {
	.guide-ttl .roma{
		font-size: 3.125rem;
	}
	.guide-ttl .roma.border{
		display: inline-block;
	}
	.guide-ttl .roma.border::before{
		top: 3.25rem;
		left: auto;
		right: calc((200% + 1.96875rem) * -1);
	}
	.guide-ttl h2{
		font-size: 0.9375rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.guide-ttl .roma{
		font-size: 5rem;
	}
	.guide-ttl .roma.border::before{
		width: 200%;
		top: 4.25rem;
		left: calc((200% + 2.96875rem) * -1);
	}
	.guide-ttl h2{
		font-size: 1rem;
	}
}
/**
/* トップページ CSS
----------------------------------------------- */
/*　　MV　　*/
.mv-view{
	position: relative;
}
.mv-view .view-box{
	max-width: 1424px;
}
.mv-view .view-img{
	position: relative;
	width: 82%;
	max-width: 71.375rem;
	margin-top: -5.875rem;
	z-index: 2;
}
.mv-view .decoration-text-container{
	position: absolute;
	top: 41%;
}
.mv-view .decoration-text-container .decoration-text{
	color: #FFFFFF;
}
@media only screen and (max-width: 767px) {
	.mv-view .view-img{
		width: 160%;
		max-width: 34.0625rem;
		margin-top: 7.5rem;
		margin-left: -16rem;
	}
	.mv-view .decoration-text-container{
		top: auto;
		bottom: 1rem;
	}
}
/*　　コンセプト　　*/
.concept-guide{
	padding: 3.5625rem 0 4.0625rem 0;
}
.concept-guide .inner-wrap::after{
	background: url(../img/zen.png) center center no-repeat;
	background-size: cover;
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;
	width: 38.0625rem;
	height: 37rem;
}
.concept-guide .contentArea{
	position: relative;
	height: 24.125rem;
	writing-mode: vertical-rl;
	z-index: 2;
}
.concept-guide .contentArea .guide-ttl{
	margin-left: 4rem;
}
.concept-guide .contentArea .guide-ttl img{
	width: 4.375rem;
}
.concept-guide .contentArea .p-text{
	font-family: "Shippori Mincho", serif;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 3;
}
.concept-guide .contentArea .p-text span.mt{
	margin-top: -0.625rem;
}
.concept-guide .contentArea .p-text span.mb{
	margin-bottom: -0.3125rem;
}
@media only screen and (max-width: 767px) {
	.concept-guide{
		padding: 2.25rem 0 4.0625rem 0;
	}
	.concept-guide .inner-wrap::after{
		bottom: -5rem;
		right: -5rem;
		width: 19rem;
		height: 18.625rem;
	}
	.concept-guide .contentArea{
		height: auto;
		writing-mode: initial;
	}
	.concept-guide .contentArea .guide-ttl{
		width: 100%;
		text-align: center;
		margin-left: 0;
		margin-bottom: 1.5rem;
	}
	.concept-guide .contentArea .guide-ttl img{
		width: 4.375rem;
	}
	.concept-guide .contentArea .p-text{
		font-size: 0.875rem;
		line-height: 2.2;
	}
	.concept-guide .contentArea .p-text span.mt{
		margin-top: 0;
	}
	.concept-guide .contentArea .p-text span.mb{
		margin-bottom: 0;
	}
}
/*　　受賞歴　　*/
.awards-guide{
	padding: 4.0625rem 0 0 0;
}
.awards-guide .awards-grid{
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}
.awards-guide .contentArea{
	width: 40%;
	max-width: 30.25rem;
	padding-right: 2rem;
}
.awards-guide .contentArea .guide-ttl{
	margin-bottom: 3rem;
}
.awards-guide .contentArea .p-text{
	font-family: "Shippori Mincho", serif;
	font-size: 1rem;
	font-weight: 500;
	line-height: 2.25;
}
.awards-guide .imgArea{
	width: 56%;
	height: 27.875rem;
	margin-top: 2.5rem;
}
.awards-guide .imgArea img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.awards-guide .awards-bottom{
	padding: 1px 0 2.8125rem 0;
}
.awards-bottom .awards-box{
	background: #FFFFFF;
	text-align: center;
	margin-top: -8.75rem;
	padding: 2.5rem;
}
.awards-bottom .awards-box img{
	width: 100%;
	max-width: 56rem;
}
.awards-guide .line-btn{
	text-align: center;
	margin-top: 4.5rem;
}
.awards-guide .line-btn li{
	width: 90%;
	max-width: 50rem;
	display: inline-block;
}
.awards-guide .line-btn li a{
	display: block;
}
.awards-guide .line-btn li a img{
	box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 767px) {
	.awards-guide{
		padding: 4.0625rem 0 0 0;
	}
	.awards-guide .contentArea{
		width: calc(100% - 1.5rem);
		max-width: 100%;
		padding-right: 0;
	}
	.awards-guide .contentArea .guide-ttl{
		margin-bottom: 1.5rem;
	}
	.awards-guide .contentArea .p-text{
		font-size: 0.875rem;
		line-height: 1.71;
	}
	.awards-guide .imgArea{
		width: 85%;
		height: 11.8125rem;
		margin-top: 1.5rem;
	}
	.awards-guide .awards-bottom{
		padding: 1px 1rem 2.8125rem 1rem;
	}
	.awards-bottom .awards-box{
		width: 90%;
		margin-top: -5.875rem;
		padding: 1.25rem;
	}
	.awards-bottom .awards-box img{
		max-width: 56rem;
	}
	.awards-guide .line-btn{
		margin-top: 2.5rem;
	}
	.awards-guide .line-btn li{
		max-width: 50rem;
	}
}
/*　　原田屋の3つの強み　　*/
.strengths-guide{
	padding: 2.8125rem 0 8rem 0;
}
.strengths-guide .guide-ttl{
	margin-bottom: 2.875rem;
}
.strengths-guide .strengths-list{
	column-gap: 1.5rem;
}
.strengths-list .strengths-items{
	position: relative;
	background: #F4F4F2;
	width: calc(33.3333% - 1rem);
	padding: 3.5rem 1.5rem 1.875rem 1.5rem;
}
.strengths-list .strengths-items .imgArea{
	text-align: center;
	margin-bottom: 1.75rem;
}
.strengths-list .strengths-items .imgArea img{
	width: 6.25rem;
}
.strengths-list .strengths-items .strengths-icon{
	position: absolute;
	width: 6.6875rem;
	right: -1.5rem;
	top: -1.5rem;
}
.strengths-list .strengths-items h3{
	position: relative;
	display: grid;
	place-items: center;
	min-height: 3.25rem;
	font-family: "Shippori Mincho", serif;
	font-size: 1.375rem;
	font-weight: 500;
	line-height: 1.18;
	text-align: center;
	margin-bottom: 2.875rem;
}
.strengths-list .strengths-items h3::after{
	content:'';
	display: block;
	position: absolute;
	background: #000000;
	width: 4rem;
	height: 1px;
	bottom: -1.375rem;
	right: calc(50% - 2rem);
}
.strengths-list .strengths-items .p-text{
	font-family: "Shippori Mincho", serif;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.73;
}
@media only screen and (max-width: 767px) {
	.strengths-guide{
		padding: 1.4375rem 0 3rem 0;
	}
	.strengths-guide .guide-ttl{
		margin-bottom: 1.6875rem;
	}
	.strengths-guide .strengths-list{
		column-gap: 0;
		row-gap: 1rem;
		padding: 0 1rem;
	}
	.strengths-list .strengths-items{
		width: 100%;
		padding: 2rem 1.5rem 1.5rem 1.5rem;
	}
	.strengths-list .strengths-items .imgArea{
		margin-bottom: 1.3125rem;
	}
	.strengths-list .strengths-items .imgArea img{
		width: 4.25rem;
	}
	.strengths-list .strengths-items .strengths-icon{
		width: 6.125rem;
		right: -1.75rem;
		top: 0.75rem;
	}
	.strengths-list .strengths-items h3{
		min-height: auto;
		font-size: 1.125rem;
		margin-bottom: 2.1875rem;
	}
	.strengths-list .strengths-items h3::after{
		width: 2rem;
		bottom: -0.9375rem;
		right: calc(50% - 1rem);
	}
	.strengths-list .strengths-items .p-text{
		font-size: 0.875rem;
		line-height: 1.75;
	}
}
/*　　社長メッセージ　　*/
.message-guide{
	padding: 11.125rem 0 5.3125rem 0;
}
.message-guide .inner-wrap{
	max-width: 1424px;
}
.message-guide .imgArea{
	width: 36%;
	margin-top: 1rem;
}
.message-guide .contentArea{
	width: 64%;
	padding-left: 5.5rem;
}
.message-guide .guide-ttl{
	margin-bottom: 2.5rem;
}
.message-guide .guide-ttl .roma span{
	display: inline-block;
}
.message-guide .guide-ttl .roma span img{
	width: 10.25rem;
	margin-top: -4.5rem;
}
.message-guide .contentArea h3{
	font-family: "Shippori Mincho", serif;
	font-size: 2.75rem;
	font-weight: 500;
	line-height: 1.25;
	margin-bottom: 2.3125rem;
}
.message-guide .contentArea .p-text{
	font-family: "Shippori Mincho", serif;
	font-size: 1rem;
	font-weight: 500;
	line-height: 2.43;
	margin-bottom: 2.5rem;
}
.message-guide .contentArea .name{
	font-family: "Shippori Mincho", serif;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.45;
}
@media only screen and (max-width: 767px) {
	.message-guide{
		padding: 3.25rem 0 2.5rem 0;
	}
	.message-guide .inner-wrap{
		width: 100%;
	}
	.message-guide .imgArea{
		width: 21.875rem;
		margin-top: 1rem;
	}
	.message-guide .contentArea{
		width: 100%;
		padding: 0.75rem 1.5rem 0 1.5rem;
	}
	.message-guide .guide-ttl{
		margin-bottom: 1.5rem;
	}
	.message-guide .guide-ttl .roma span img{
		width: 6.25rem;
		margin-top: -3rem;
	}
	.message-guide .contentArea h3{
		font-size: 1.625rem;
		margin-bottom: 1.375rem;
	}
	.message-guide .contentArea .p-text{
		font-size: 0.875rem;
		line-height: 1.71;
		margin-bottom: 1.25rem;
	}
	.message-guide .contentArea .name{
		font-size: 1rem;
	}
}
/*　　お知らせ/ブログ　　*/
.front-wrap .news-guide{
	padding: 5.3125rem 0 1.5rem 0;
}
.news-guide .ttlArea{
	align-items: center;
	margin-bottom: 4rem;
}
.news-guide .ttlArea .guide-ttl{
	width: 50%;
}
.news-guide .ttlArea .p-text{
	width: 50%;
	font-family: "Shippori Mincho", serif;
	font-size: 1rem;
	line-height: 2.25;
}
.news-guide .ttlArea .guide-ttl .roma span{
	font-size: 3rem;
	margin: 0 1.25rem;
}
.front-wrap .news-guide .block_btn{
	margin-top: 3.5rem;
}
.news-guide .decoration-text-container{
	margin-top: 3.8125rem;
}
.news-guide .decoration-text-container .decoration-text{
	color: #E0E0D7;
}
@media only screen and (max-width: 767px) {
	.front-wrap .news-guide{
		padding: 2.5rem 0 0.25rem 0;
	}
	.news-guide .ttlArea{
		margin-bottom: 2rem;
	}
	.news-guide .ttlArea .guide-ttl{
		width: 100%;
		margin-bottom: 1.4375rem;
	}
	.news-guide .ttlArea .guide-ttl .roma span{
		font-size: 1.875rem;
		margin: 0 0.875rem;
	}
	.news-guide .ttlArea .p-text{
		width: 100%;
		font-size: 0.875rem;
	}
	.front-wrap .news-guide .block_btn{
		margin-top: 2.25rem;
	}
	.news-guide .decoration-text-container{
		margin-top: 2rem;
	}
}
/*　　会社概要　　*/
.company-guide{
	padding: 9.0625rem 0 6rem 0;
}
.company-guide .guide-ttl{
	width: 35%;
}
.company-guide .company-tbl{
	width: 60%;
}
.company-guide .company-tbl th,
.company-guide .company-tbl td{
	border-bottom: 1px solid #D1D1D1;
}
.company-guide .company-tbl tr:first-child th,
.company-guide .company-tbl tr:first-child td{
	border-top: 1px solid #D1D1D1;
}
.company-guide .company-tbl th,
.company-guide .company-tbl td{
	font-family: "Shippori Mincho", serif;
	font-size: 1rem;
	line-height: 1.56;
	padding: 1.875rem 0;
}
.company-guide .company-tbl th{
	width: 14.375rem;
	font-weight: 600;
}
.company-guide .company-tbl td{
	font-weight: 400;
}
@media only screen and (max-width: 767px) {
	.company-guide{
		padding: 1.875rem 0 2.75rem 0;
	}
	.company-guide .guide-ttl{
		width: 100%;
		margin-bottom: 2rem;
	}
	.company-guide .company-tbl{
		width: 100%;
	}
	.company-guide .company-tbl th,
	.company-guide .company-tbl td{
		padding: 1.25rem 0;
	}
	.company-guide .company-tbl td{
		font-size: 0.875rem;
	}
	.company-guide .company-tbl th{
		width: 9.0625rem;
	}
}
/*　　お問い合わせ　　*/
.contact-guide{
	padding: 6rem 0 0 0;
}
.contact-guide .guide-ttl{
	margin-bottom: 3.4375rem;
}
.contact-guide .form-grid{
	background: #FAFAFA;
	padding: 5rem 0;
}
.form-grid .form-box{
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
}
.form-box table th{
	width: 20.625rem;
	font-family: "Shippori Mincho", serif;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.45;
	vertical-align: top;
	padding: 0.875rem 0 2.5rem 0;
}
.form-box table th span{
	display: inline-block;
	color: #C83C27;
	font-size: 0.75rem;
	font-weight: 400;
	margin-left: 0.5rem;
}
.form-box table td{
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 1.25;
	vertical-align: middle;
	padding: 0 0 4rem 0;
}
.form-box table tr:last-child td{
	padding: 0;
}
.form-box table td .wpcf7-form-control-wrap{
	margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
	.contact-guide{
		padding: 1.625rem 0 0 0;
	}
	.contact-guide .guide-ttl{
		margin-bottom: 1.625rem;
	}
	.contact-guide .form-grid{
		padding: 1.625rem 0 2rem 0;
	}
	.form-grid .form-box{
		width: calc(100% - 3rem);
	}
	.form-box table th,
	.form-box table td{
		display: block;
	}
	.form-box table th{
		width: 100%;
		font-size: 1rem;
		padding: 0 0 0.5rem 0;
	}
	.form-box table th span{
		font-size: 0.875rem;
		margin-left: 0.5rem;
	}
	.form-box table td{
		font-size: 0.8125rem;
		padding: 0 0 1.25rem 0;
	}
}
/*　　個人情報保護方針　　*/
.privacy-grid{
	padding: 5rem 0 6rem 0;
}
.privacy-grid .privacy-box{
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
}
.privacy-grid .privacy-box h3{
	color: #1C1C1C;
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.45;
	margin-bottom: 1rem;
}
.privacy-grid .privacy-box .box{
	border-top: 1px solid #D0D0D0;
	border-bottom: 1px solid #D0D0D0;
	padding: 1.5rem 0;
	margin: 0 auto;
}
.privacy-grid .privacy-box .box p{
	color: #1C1C1C;
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 1.53;
	letter-spacing: 0.06em;
	margin-bottom: 1.875rem;
}
.privacy-grid .privacy-box .box dl{
	margin-bottom: 1.875rem;
}
.privacy-grid .privacy-box .box dl:last-child{
	margin-bottom: 0;
}
.privacy-grid .privacy-box .box dl dt{
	color: #1C1C1C;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.53;
	letter-spacing: 0.06em;
	margin-bottom: 0.6875rem;
}
.privacy-grid .privacy-box .box dl dd{
	color: #1C1C1C;
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 1.53;
	letter-spacing: 0.06em;
}
.privacy-grid .privacy-box .privacy-text{
	color: #1C1C1C;
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 1.53;
	letter-spacing: 0.06em;
	text-align: center;
	margin-top: 2rem;
}
.privacy-grid .acceptance-text{
	color: #1C1C1C;
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 1.4;
	text-align: center;
	margin-top: 2rem;
}
.privacy-grid .acceptance{
	transform: scale(1.5);
	border: 1px solid #D2D3C8;
}
.privacy-grid .acceptance-text .wpcf7-list-item-label{
	margin-left: 1rem;
}
@media only screen and (max-width: 767px) {
	.privacy-grid{
		padding: 2.25rem 0 3.75rem 0;
	}
	.privacy-grid .privacy-box{
		width: calc(100% - 3rem);
	}
	.privacy-grid .privacy-box h3{
		font-size: 0.9375rem;
		margin-bottom: 1.25rem;
	}
	.privacy-grid .privacy-box .box{
		padding: 1rem 0;
	}
	.privacy-grid .privacy-box .box p{
		font-size: 0.875rem;
		margin-bottom: 0.875rem;
	}
	.privacy-grid .privacy-box .box dl{
		margin-bottom: 0.875rem;
	}
	.privacy-grid .privacy-box .box dl dt{
		font-size: 0.875rem;
		margin-bottom: 0.5rem;
	}
	.privacy-grid .privacy-box .box dl dd{
		font-size: 0.8125rem;
	}
	.privacy-grid .privacy-box .privacy-text{
		font-size: 0.875rem;
		text-align: left;
		margin-top: 1.75rem;
	}
	.privacy-grid .acceptance-text{
		font-size: 0.875rem;
		margin-top: 1.25rem;
	}
	.privacy-grid .acceptance-text .wpcf7-list-item-label{
		margin-left: 0.75rem;
	}
}
/**
/* フォーム CSS
----------------------------------------------- */
input[type="date"],
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="url"],
textarea,
select{
	width: 100%;
	background: #FAFAFA;
	border: 1px solid #E2E2E2;
	font-family: 'Noto Sans JP', sans-serif;
	color: #1C1C1C;
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 1.25;
	border-radius: 0.25rem;
	padding: 0.9375rem 1rem;
}
input[type="date"]::placeholder,
input[type="text"]::placeholder,
input[type="tel"]::placeholder,
input[type="email"]::placeholder,
input[type="url"]::placeholder,
textarea::placeholder{
	color: #989898;
}
input[type="date"]:-ms-input-placeholder,
input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="url"]:-ms-input-placeholder,
textarea:-ms-input-placeholder{
	color: #989898;
}
input[type="date"]::-ms-input-placeholder,
input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="email"]::-ms-input-placeholder,
input[type="url"]::-ms-input-placeholder,
textarea::-ms-input-placeholder{
	color: #989898;
}
textarea{
	height: 15.4375rem;
	border-radius: 0.25rem;
}
.wpcf7-spinner{
	display: none;
}
.submit_btn{
	text-align: center;
	margin-top: 2.5rem;
}
.submit_btn li{
	position: relative;
	display: inline-block;
	width: 100%;
	max-width: 24.8125rem;
}
.submit_btn li::after{
	background: url(../img/icon/arrow_w.png) center center no-repeat;
	background-size: cover;
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 1.875rem;
	height: 0.875rem;
	right: 2.5rem;
	transition: all 1.5s cubic-bezier(.23,1,.32,1) 0.1s;
}
.submit_btn li:hover::after{
	right: 1.5rem;
}
input[type="submit"] {
	position: relative;
	display: block;
	width: 100%;
	background: #333333;
	border: none;
	font-family: "Shippori Mincho", serif;
	color: #FFFFFF;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.45;
	text-align: center;
	cursor: pointer;
	padding: 1rem 1.5rem;
}
@media only screen and (max-width: 767px) {
	input[type="date"],
	input[type="text"],
	input[type="tel"],
	input[type="email"],
	input[type="url"],
	textarea,
	select{
		font-size: 0.8125rem;
		padding: 0.9375rem 0.75rem;
	}
	textarea{
		height: 11.6875rem;
	}
	.submit_btn{
		margin-top: 1.75rem;
	}
	.submit_btn li{
		max-width: 17.375rem;
	}
	.submit_btn li::after{
		width: 1.3125rem;
		height: 0.625rem;
		right: 1rem;
	}
	.submit_btn li:hover::after{
		right: 1rem;
	}
	input[type="submit"] {
		font-size: 0.875rem;
		padding: 1rem;
	}
}
/**
/* 下層ページ共通 CSS
----------------------------------------------- */
/*　　ページヘッダー　　*/
.page-view{
	padding: 6rem 0 1rem 0;
}
.page-view .view-ttl{
	text-align: center;
	margin-bottom: 4rem;
}
.page-view .view-ttl .roma{
	font-family: "Shippori Mincho", serif;
	font-size: 5rem;
	font-weight: 500;
	line-height: 1.45;
	text-transform:capitalize;
}
.page-view .view-ttl .roma span{
	font-size: 3rem;
	margin: 0 1.25rem;
}
.page-view .view-ttl h1{
	font-family: "Shippori Mincho", serif;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5;
}
@media only screen and (max-width: 767px) {
	.page-view{
		padding: 2rem 0 1rem 0;
		margin-top: 4.5rem;
	}
	.page-view .view-ttl{
		margin-bottom: 2rem;
	}
	.page-view .view-ttl .roma{
		font-size: 2.5rem;
	}
	.page-view .view-ttl .roma span{
		font-size: 1.5rem;
		margin: 0 0.875rem;
	}
	.page-view .view-ttl h1{
		font-size: 0.9375rem;
	}
}
/**
/* お知らせ/ブログ CSS
----------------------------------------------- */
/*一覧*/
.page-wrap .news-guide{
	padding: 3.5rem 0 8rem 0;
}
.news-guide .news-list{
	max-width: 1080px;
    margin: 0 auto;
}
.news-list .news-items{
	border-bottom: 1px solid #D6D6CD;
	padding-bottom: 2.5rem;
	margin-bottom: 2.5rem;
}
.news-list .news-items:last-child{
	margin-bottom: 0;
}
.news-list .news-items a{
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding-right: 5rem;
}
.news-list .news-items a::after{
	background: url(../img/icon/arrow_b.png) center center no-repeat;
	background-size: cover;
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 1.875rem;
	height: 0.875rem;
	right: 2.5rem;
	transition: all 1.5s cubic-bezier(.23,1,.32,1) 0.1s;
}
.news-list .news-items a:hover::after{
	right: 1.5rem;
}
.news-list .news-items dt{
	width: 10rem;
}
.news-list .news-items dt .date{
	font-family: "Shippori Mincho", serif;
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.45;
}
.news-list .news-items dt .category{
	font-family: "Shippori Mincho", serif;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.45;
	margin-top: 0.5rem;
}
.news-list .news-items dd{
	width: calc(100% - 10rem);
	color: #161715;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
}
@media only screen and (max-width: 767px) {
	.page-wrap .news-guide{
		padding: 2.5rem 0 4.25rem 0;
	}
	.news-list .news-items{
		padding-bottom: 1.5625rem;
		margin-bottom: 1.5625rem;
	}
	.news-list .news-items a{
		padding-right: 0;
	}
	.news-list .news-items a::after{
		width: 2.0625rem;
		height: 0.9375rem;
		top: 1.25rem;
		transform: translateY(0%);
		right: 2.5rem;
	}
	.news-list .news-items a:hover::after{
		right: 1.5rem;
	}
	.news-list .news-items dt{
		width: 100%;
		margin-bottom: 0.6875rem;
	}
	.news-list .news-items dt .date{
		font-size: 1.0625rem;
	}
	.news-list .news-items dt .category{
		font-size: 0.8125rem;
		margin-top: 0.375rem;
	}
	.news-list .news-items dd{
		width: 100%;
		font-size: 0.875rem;
	}
}
/*　　詳細　　*/
.page-wrap .single-guide{
	padding: 3.5rem 0 8rem 0;
}
.single-guide article{
	border-bottom: 1px solid #AFB29C;
	padding-bottom: 2rem;
}
.single-guide .entry-header{
	border-bottom: 1px solid #D6D6CD;
	margin-bottom: 3rem;
	padding-bottom: 1rem;
}
.single-guide .entry-header .entry-deta {
	align-items: center;
	margin-bottom: 0.625rem;
}
.single-guide .entry-header .dete{
	font-family: "Shippori Mincho", serif;
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.45;
}
.single-guide .entry-header .category{
	font-family: "Shippori Mincho", serif;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.45;
	margin-left: 1.5rem;
}
.single-guide .entry-header h2{
	font-family: "Shippori Mincho", serif;
	font-size: 1.65rem;
	font-weight: 500;
	line-height: 1.45;
	letter-spacing: 0.03em;
}
.single-guide .entry-body h2{
	font-family: "Shippori Mincho", serif;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.03em;
	margin-bottom: 1.5rem;
}
.single-guide .entry-body h3{
	font-family: "Shippori Mincho", serif;
	font-size: 1.375rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.03em;
	border-bottom: 1px solid #AFB29C;
	border-left: 0.25rem solid #AFB29C;
	padding-left: 1rem;
	padding-bottom: 0.5rem;
	margin-bottom: 1.5rem;
}
.single-guide .entry-body h4{
	font-family: "Shippori Mincho", serif;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 1.5rem;
}
.single-guide .entry-body p{
	font-size: 1rem;
	line-height: 2.43;
	letter-spacing: 0.07em;
	margin-bottom: 2rem;
}
.single-guide .entry-body p img{
	margin: 0.5rem 0;
}
.single-guide .entry-body ol{
	list-style: decimal;
	margin-left: 1.25rem;
	margin-bottom: 2rem;
}
.single-guide .entry-body ul{
	list-style: disc;
	margin-left: 1.25rem;
	margin-bottom: 2rem;
}
.single-guide .entry-body ol li,
.single-guide .entry-body ul li{
	font-size: 1rem;
	line-height: 1.875;
	letter-spacing: 0.06em;
}
.single-guide .entry-body figure{
	margin: 0.5rem 0;
}
.single-guide .entry-body figcaption{
	font-size: 90%;
}
.alignleft {
	display: inline;
	float: left;
}
.alignright {
	display: inline;
	float: right;
}
.aligncenter {
	display: block;
	margin-right: auto;
	margin-left: auto;
}
blockquote.alignleft,
.wp-caption.alignleft,
img.alignleft {
	margin: 0 1rem 0 0;
}
blockquote.alignright,
.wp-caption.alignright,
img.alignright {
	margin: 0 0 0 1rem;
}
blockquote.aligncenter,
.wp-caption.aligncenter,
img.aligncenter {
	clear: both;
}
.single-guide .page-nav{
	margin-top: 3.5rem;
}
.single-guide .page-nav ul{
	width: 100%;
	display: flex;
	align-items: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.single-guide .page-nav ul .nav__item--prev a{
	position: relative;
	padding-left: 5rem;
}
.single-guide .page-nav ul .nav__item--next a{
	position: relative;
	padding-right: 5rem;
}
.single-guide .page-nav ul .nav__item--prev a span,
.single-guide .page-nav ul .nav__item--next a span{
	font-family: "Shippori Mincho", serif;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.45;
	text-transform: uppercase;
}
.single-guide .page-nav ul .nav__item--prev a::after,
.single-guide .page-nav ul .nav__item--next a::after{
	background: url(../img/icon/arrow_b.png) center center no-repeat;
	background-size: cover;
	width: 1.875rem;
	height: 0.875rem;
	content: '';
	position: absolute;
	top: calc(50% - 0.375rem);
	transition: all 1.5s cubic-bezier(.23,1,.32,1) 0.1s;
}
.single-guide .page-nav ul .nav__item--prev a::after{
	left: 1.5rem;
	transform: rotate(180deg);
}
.single-guide .page-nav ul .nav__item--prev a:hover::after{
	left: 0;
}
.single-guide .page-nav ul .nav__item--next a::after{
	right: 1.5rem;
}
.single-guide .page-nav ul .nav__item--next a:hover::after{
	right: 0;
}
.single-guide .page-nav ul .return_btn{
	width: 18.3125rem;
}
.single-guide .page-nav ul .return_btn .btn{
	position: relative;
	display: block;
	background: #333333;
	font-family: "Shippori Mincho", serif;
	color: #FFFFFF;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.45;
	text-align: center;
	padding: 1rem 1.5rem;
}
.single-guide .page-nav ul .return_btn .btn::after{
	background: url(../img/icon/arrow_w.png) center center no-repeat;
	background-size: cover;
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 1.875rem;
	height: 0.875rem;
	right: 2rem;
	transition: all 1.5s cubic-bezier(.23,1,.32,1) 0.1s;
}
.single-guide .page-nav ul .return_btn .btn:hover{
	opacity: 1;
}
.single-guide .page-nav ul .return_btn .btn:hover::after{
	right: 1.5rem;
}
@media only screen and (max-width: 767px) {
	.page-wrap .single-guide{
		padding: 2.5rem 0 4.25rem 0;
	}
	.single-guide article{
		padding-bottom: 1rem;
	}
	.single-guide .entry-header{
		margin-bottom: 1.5rem;
		padding-bottom: 1.25rem;
	}
	.single-guide .entry-header .entry-data{
		margin-bottom: 1.25rem;
	}
	.single-guide .entry-header .dete{
		font-size: 1.0625rem;
	}
	.single-guide .entry-header .category{
		font-size: 0.8125rem;
		margin-left: 0.625rem;
	}
	.single-guide .entry-header h2{
		font-size: 1.25rem;
	}
	.single-guide .entry-body h2{
		font-size: 1.125rem;
		margin-bottom: 1.125rem;
	}
	.single-guide .entry-body h3{
		font-size: 1.0625rem;
		padding-left: 0.875rem;
		padding-bottom: 0.5rem;
		margin-bottom: 1.125rem;
	}
	.single-guide .entry-body p{
		font-size: 0.875rem;
		line-height: 2.14;
		margin-bottom: 1.5rem;
	}
	.single-guide .entry-body ol{
		margin-bottom: 1.5rem;
	}
	.single-guide .entry-body ul{
		margin-bottom: 1.5rem;
	}
	.single-guide .entry-body ol li,
	.single-guide .entry-body ul li{
		font-size: 0.875rem;
	}
	.single-guide .entry-body p img{
		margin: 0.25rem 0;
	}
	.single-guide .entry-body figure{
		margin: 0.25rem 0;
	}
	blockquote.alignleft,
	.wp-caption.alignleft,
	img.alignleft {
		margin: 0 0.625rem 0 0;
	}
	blockquote.alignright,
	.wp-caption.alignright,
	img.alignright {
		margin: 0 0 0 0.625rem;
	}
	.single-guide .page-nav{
		margin-top: 2.5rem;
	}
	.single-guide .page-nav ul .nav__item--prev a span,
	.single-guide .page-nav ul .nav__item--next a span{
		font-size: 1rem;
	}
	.single-guide .page-nav ul .nav__item--prev a::after,
	.single-guide .page-nav ul .nav__item--next a::after{
		width: 1.5rem;
		height: 0.5rem;
		top: calc(50% - 0.125rem);
	}
	.single-guide .page-nav ul .nav__item--prev a::after{
		left: 0;
	}
	.single-guide .page-nav ul .nav__item--next a::after{
		right: 0;
	}
	.single-guide .page-nav ul .nav__item--prev a{
		padding-left: 2rem;
	}
	.single-guide .page-nav ul .nav__item--next a{
		padding-right: 2rem;
	}
	.single-guide .block_btn{
		width: 100%;
		text-align: center;
		margin-top: 2.5rem;
	}
}
/**
/* エラー CSS
----------------------------------------------- */
.page-wrap .error-guide{
	padding: 3.5rem 0 8rem 0;
}
.error-guide .entry p{
	text-align: center;
}
.error-guide .entry .error_url{
	padding: 3rem 0;
}
.error-guide .entry .block_btn{
	margin-top: 4rem;
}
@media only screen and (max-width: 767px) {
	.page-wrap .error-guide{
		padding: 2.5rem 0 4.25rem 0;
	}
	.error-guide .entry .error_url{
		padding: 1.5rem 0;
	}
	.error-guide .entry .block_btn{
		margin-top: 2rem;
	}
}
