@charset "utf-8";

/* ================================================================================
	Layout
================================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@600..700&family=Noto+Sans+JP:wght@500..700&family=Shippori+Mincho:wght@500;600;700&display=swap');

:root {
	--site_grad_fallback: #ddac00;
	--site_grad: linear-gradient(34deg, #debd23 0%, #ddac00 100%);
}

@font-face {
	font-family: 'Yu Gothic';
	font-weight: 100;
	src: local('Yu Gothic Medium');
}
@font-face {
	font-family: 'Yu Gothic';
	font-weight: 200;
	src: local('Yu Gothic Medium');
}
@font-face {
	font-family: 'Yu Gothic';
	font-weight: 300;
	src: local('Yu Gothic Medium');
}
@font-face {
	font-family: 'Yu Gothic';
	font-weight: 400;
	src: local('Yu Gothic Medium');
}
@font-face {
	font-family: 'Yu Gothic';
	font-weight: bold;
	src: local('Yu Gothic Bold');
}

html {
	/* scroll-behavior: smooth; */
}

body {
	min-width: 1160px;
	background: #fff;
	color: #4e2e25;
	font-family: 'Noto Sans JP', 'Yu Gothic', 'YuGothic', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-size: 14px;
	font-weight: 500;
}

a {
	color: #c49508;
}
a:active, a:hover, a:focus {
	color: #c49508;
}

.l-container {
	overflow: hidden;
}


/* ---------------------------------------------------------
	header
---------------------------------------------------------- */
.l-header {
	position: relative;
	z-index: 1000;
}
.l-header_inner {
	display: flex;
	justify-content: space-between;
	height: 155px;
	background: #4e2e25;
	color: #fff;
}

.header_logo {
	width: 220px;
	height: 210px;
	background: #fff;
}

.header_description {
	display: flex;
	flex: 1;
	align-items: center;
	padding: 0 40px;
	color: #b5acaa;
	font-size: 16px;
}

.header_info {
	display: flex;
	padding: 33px 35px 0 0;
}

.header_tel {
	margin-right: 35px;
	padding-top: 15px;
	font-family: 'Shippori Mincho', serif;
	line-height: 1;
	text-align: right;
}
.header_tel_num {
	margin-bottom: 10px;
	font-size: 33px;
	font-weight: 500;
	letter-spacing: 0.06em;
}
.header_tel_num i {
	margin-right: 7px;
	font-size: 28px;
	letter-spacing: normal;
}
.header_tel_time {
	padding-right: 4px;
	font-size: 15px;
	font-weight: 600;
}

.header_mail {
}
.header_mail a {
	display: block;
	position: relative;
	width: 125px;
	height: 90px;
	padding-top: 19px;
	background: var(--site_grad_fallback);
	background: var(--site_grad);
	color: #fff;
	font-family: 'Shippori Mincho', serif;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	text-align: center;
}
.header_mail a::after {
	content: '';
	position: absolute;
	right: 5px;
	bottom: 5px;
	border-width: 0 0 8px 8px;
	border-style: solid;
	border-color: transparent transparent #4e2e25 transparent;
}
.header_mail a i {
	display: block;
	margin-bottom: 7px;
	font-size: 30px;
}

/* ---------------------------------------------------------
	mainvisual
---------------------------------------------------------- */
.l-mainvisual {
}
.l-mainvisual_inner {
	position: relative;
	height: 825px;
}

.mv_detail {
	position: absolute;
	top: 185px;
	left: 208px;
	z-index: 100;
	color: #fff;
}
.mv_ttl {
	margin-bottom: 7px;
	font-family: 'Shippori Mincho', serif;
	font-size: 82px;
	font-weight: 600;
	line-height: 1.207;
	white-space: nowrap;
}
.mv_ttl .kata {
	letter-spacing: -0.175em;
}
.mv_ttl .hira {
	letter-spacing: -0.125em;
}
.mv_ttl .yaku {
	margin: 0 -0.25em 0 -0.05em;
}
.mv_txt {
	margin-bottom: 40px;
	padding-left: 10px;
	font-family: 'Cormorant', serif;
	font-size: 45px;
	font-weight: 700;
	line-height: 1.111;
	letter-spacing: 0.04em;
}
.mv_badge {
	display: flex;
	margin-left: -3px;
}
.mv_badge_item { margin-right: 13px; }
.mv_badge_item:last-child { margin: 0; }
.mv_badge_item a:hover {
	opacity: 1;
	-webkit-filter: brightness(0.75) contrast(1.05);
	filter: brightness(0.75) contrast(1.05);
}

.mv_slider {
}
.mv_slider_list_item {
	height: 825px;
}
.mv_slider_list_item img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}


/* ---------------------------------------------------------
	gnav
---------------------------------------------------------- */
.l-gnav {
	background: #4e2e25;
}
.l-gnav_inner {
	width: 1160px;
	margin: 0 auto;
}
.gnav_list {
	display: flex;
	justify-content: center;
}
.gnav_list_item {
	position: relative;
	flex: 1 1 auto;
}
.gnav_list_item::before,
.gnav_list_item:last-child::after {
	content: '';
	position: absolute;
	top: 50%;
	width: 1px;
	height: 30px;
	margin-top: -15px;
	background: #836d67;
}
.gnav_list_item::before {
	left: 0;
}
.gnav_list_item:last-child::after {
	right: 0;
}
.gnav_list_item > a {
	display: block;
	height: 100px;
	color: #fff;
	font-size: 17px;
	font-weight: 500;
	line-height: 100px;
	text-align: center;
}


/* ---------------------------------------------------------
	content
---------------------------------------------------------- */
.l-content_inner {
	width: 1160px;
	margin: 0 auto;
	padding: 90px 0 160px;
}
.home .l-content_inner {
	width: auto;
	padding: 0;
}


/* ---------------------------------------------------------
	main
---------------------------------------------------------- */
.l-main {
}
.home .l-main {
}


/* ---------------------------------------------------------
	sidebar
---------------------------------------------------------- */
.l-sidebar {
	padding-top: 80px;
}

.side_blog {
	overflow: hidden;
	margin: 0 -15px;
}
.side_nav {
	float: left;
	width: 25%;
	padding: 0 15px;
}
.side_nav.-recent {
	width: 50%;
}
.side_nav_ttl {
	position: relative;
	margin-bottom: 15px;
	padding-bottom: 15px;
	font-size: 19px;
}
.side_nav_ttl::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 20px;
	height: 3px;
	/* edit */
	background: #555;
}
.side_nav_scroll {
	height: 285px;
	padding-right: 15px;
}
.side_nav .simplebar-scrollbar {
	right: 0;
	width: 1px;
}
.side_nav .simplebar-scrollbar::before {
	background: rgba(0, 0, 0, 0.3);
}
.side_nav li a {

	display: block;
	position: relative;
	padding: 17px 20px 17px 0;
	/* edit */
	border-bottom: 1px solid #eee;
	color: inherit;
}
.side_nav li a::after {

	content: '\f054';
	position: absolute;
	top: 50%;
	right: 5px;
	/* edit */
	color: #666;
	font-family: 'Font Awesome 6 Pro';
	font-size: 11px;
	font-style: normal;
	font-weight: 400;
	font-variant: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height: 1;
	text-rendering: auto;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.side_nav li li a {
	padding-left: 1em;
}
.side_nav li li li a {
	padding-left: 2em;
}
.side_nav li a span {
	margin-right: 15px;
}


/* ---------------------------------------------------------
	footer
---------------------------------------------------------- */
.l-footer {
}
.l-footer_inner {
}

.site_sns {
	position: fixed;
	top: 50%;
	right: 45px;
	z-index: 1000;
	margin-top: -75px;
	mix-blend-mode: exclusion;
	transition: all 0.3s ease;
}
.site_sns.-in-header {
	mix-blend-mode: normal;
}
.site_btn.-in-footer {
	visibility: hidden;
}
.site_sns_list {
}
.site_sns_list_item {
	margin-bottom: 30px;
	line-height: 1;
	text-align: center;
}
.site_sns_list_item:last-child {
	margin: 0;
}
.site_sns_list_item a {
	display: block;
	color: #fff;
	font-size: 34px;
}
.site_sns.-in-footer .site_sns_list_item a {
	opacity: 0;
}

.footer_banner {
	background: #e5e0df;
}
.footer_banner_inner {
	width: 1160px;
	margin: 0 auto;
	padding: 70px 0;
}
.footer_banner_list {
	display: flex;
	margin: 0 -12px;
}
.footer_banner_list_item {
	flex: 0 0 33.333333%;
	width: 33.333333%;
	max-width: 33.333333%;
	padding: 0 12px;
}

.footer_map {
	overflow: hidden;
	height: 560px;
	background: #e5e3df; /* ロード時の背景色 */
}
.footer_map iframe {
	display: block;
	width: 100%;
	height: 860px;
	margin-top: -150px;
}

.footer_detail {
	background: #3e231b;
	color: #fff;
}
.footer_detail_inner {
	width: 1160px;
	margin: 0 auto;
	padding: 84px 0 105px;
}

.footer_info {
	display: flex;
	padding-left: 123px;
}

.footer_brand {
	flex: 0 0 auto;
	width: 190px;
	max-width: 100%;
	margin-right: 73px;
}
.footer_brand_logo {
	margin-bottom: 22px;
}
.footer_brand_sns {
	display: flex;
	justify-content: center;
}
.footer_brand_sns_item {
	margin: 0 10px;
	font-size: 30px;
}
.footer_brand_sns_item a {
	color: inherit;
}

.footer_about {
	flex: 0 0 auto;
	width: 360px;
	max-width: 100%;
	margin-right: 35px;
	padding-top: 6px;
}
.footer_about_txt {
	margin-bottom: 28px;
	font-size: 15px;
	line-height: 2;
	letter-spacing: 0.06em;
}
.footer_about_btn {
}
.footer_about_btn a {
	display: inline-block;
	width: 200px;
	height: 40px;
	background: linear-gradient(34deg, #debd23 0%, #ddac00 100%);
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 38px;
	text-align: center;
}

.footer_card {
	padding-top: 14px;
}

.footer_nav {
	display: flex;
	gap: 85px;
	justify-content: center;
	padding-top: 68px;
}
.footer_nav_list {
}
.footer_nav_list_item {
	margin-bottom: 13px;
	font-size: 16px;
	letter-spacing: 0.04em;
}
.footer_nav_list_item:last-child { margin: 0; }
.footer_nav_list_item a { color: inherit; }

.footer_copyright {
	overflow: hidden;
	height: 50px;
	background: #281611;
	font-size: 13px;
	line-height: 50px;
	text-align: center;
	letter-spacing: 0.04em;
}


/* ================================================================================
	Content
================================================================================ */
/* ---------------------------------------------------------
	Top
---------------------------------------------------------- */
.top_kern-kata {
	letter-spacing: -0.125em;
}
.top_kern-hira {
	letter-spacing: -0.125em;
}
.top_kern-hira.-one {
	letter-spacing: -0.025em;
}
.top_kern-yaku {
	margin: 0 -0.35em 0 0;
}
[class^='top_kern-'] + .top_kern-yaku {
	margin-left: 0;
}

.top_btn a {
	display: inline-block;
	width: 200px;
	height: 46px;
	background: var(--site_grad_fallback);
	background: var(--site_grad);
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 46px;
	text-align: center;
}

.top_ig {
	width: 1160px;
	margin: 0 auto;
	padding-top: 70px;
}
.top_ig_ttl {
	margin-bottom: 43px;
	line-height: 1;
	text-align: center;
}
.top_ig_ttl_en {
	display: block;
	margin-bottom: 15px;
	color: #c49508;
	font-family: 'Cormorant', serif;
	font-size: 36px;
	font-weight: 600;
	letter-spacing: 0.04em;
}
.top_ig_ttl_ja {
	font-family: 'Shippori Mincho', serif;
	font-size: 40px;
	font-weight: 700;
}
.top_ig_inner {
}
.top_ig .slick-list {
	overflow: visible;
}
.top_ig_list {
	min-height: 280px;
	margin: 0 -57px;
}
.top_ig_list_item {
	padding: 0 15px;
}

.top_concept {
	position: relative;
	min-height: 540px;
	margin: 187px 0 215px;
	text-align: center;
}
.top_concept_ttl {
	margin-bottom: 38px;
	line-height: 1;
}
.top_concept_ttl_en {
	display: block;
	margin-bottom: 18px;
	color: #c49508;
	font-family: 'Cormorant', serif;
	font-size: 36px;
	font-weight: 600;
	letter-spacing: 0.04em;
}
.top_concept_ttl_ja {
	font-family: 'Shippori Mincho', serif;
	font-size: 43px;
	font-weight: 700;
}
.top_concept_ttl_ja .top_kern-hira.-to {
	margin: 0 -0.05em 0 -0.125em;
	letter-spacing: normal;
}
.top_concept_inner {
	width: 600px;
	margin: 0 auto;
}
.top_concept_txt {
	margin-bottom: 40px;
	font-size: 17px;
	font-feature-settings: 'palt';
	line-height: 1.764;
	letter-spacing: 0.06em;
}
.top_concept_txt h3 {
	margin-bottom: 15px;
	font-size: 19px;
	font-weight: 700;
}
.top_concept_txt p {
	margin-bottom: 16px;
}
.top_concept_txt :last-child {
	margin: 0;
}
.top_concept_btn {
	display: flex;
	justify-content: center;
}
.top_concept_btn_item {
	margin: 0 10px;
}

[class^='top_concept_img'] {
	position: absolute;
	top: 50%;
	transition: all 0.3s ease;
}
[class^='top_concept_img'] img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.top_concept_img01 {
	right: calc(50% + 455px);
	left: 0;
	height: 320px;
	margin-top: -282px;
}
.top_concept_img02 {
	right: calc(50% + 400px);
	left: 235px;
	min-width: 325px;
	height: 250px;
	margin-top: 88px;
}
.top_concept_img03 {
	right: 0;
	left: calc(50% + 430px);
	height: 475px;
	margin-top: -197px;
}

/* media queries */
@media screen and (max-width: 1940px) {
	.top_concept_img02 {
		left: auto;
	}
}
@media screen and (max-width: 1600px) {
	.top_concept_img01 {
		right: calc(50% + 355px);
	}
	.top_concept_img02 {
		right: calc(50% + 300px);
		left: auto;
	}
	.top_concept_img03 {
		left: calc(50% + 330px);
	}
}

.top_photo {
	background: #edeae9;
}
.top_photo_inner {
	width: 1160px;
	margin: 0 auto;
	padding: 130px 0 120px;
}
.top_photo_detail {
	float: left;
	width: 475px;
}
.top_photo_ttl {
	margin-bottom: 28px;
	line-height: 1;
}
.top_photo_ttl_en {
	display: block;
	width: 110px;
	height: 35px;
	margin-bottom: 22px;
	background: #4e2e25;
	color: #fff;
	font-family: 'Cormorant', serif;
	font-size: 22px;
	font-weight: 700;
	line-height: 35px;
	text-align: center;
}
.top_photo_ttl_ja {
	margin-left: -0.2em;
	font-family: 'Shippori Mincho', serif;
	font-size: 40px;
	font-weight: 700;
}
.top_photo_txt {
	margin-bottom: 41px;
	font-size: 17px;
	font-feature-settings: 'palt';
	line-height: 1.764;
	letter-spacing: 0.05em;
}
.top_photo_txt p {
	margin-bottom: 18px;
}
.top_photo_txt :last-child {
	margin: 0;
}
.top_photo_btn {
	display: flex;
}
.top_photo_btn_item {
	margin-right: 20px;
}
.top_photo_btn_item:last-child {
	margin: 0;
}
.top_photo_btn_item a {
	width: 210px;
}
.top_photo_img {
	display: flex;
	float: right;
	flex-wrap: wrap;
	gap: 20px;
	width: 730px;
	margin-right: -100px;
}
.top_photo_img_item {
	flex: 0 0 auto;
	width: calc(50% - 10px); /* gap 20px × 1 ÷ 2 */
	max-width: 100%;
}
.top_photo_img_item img {
	padding: 5px;
	border: 1px solid #e0d9d6;
	background: #fff;
}

.top_award {
	position: relative;
	margin-bottom: 160px;
}
.top_award.-no-badge {
	margin-bottom: 140px;
}
.top_award::before {
	content: '';
	position: absolute;
	inset: 0 0 165px;
	z-index: -100;
	background: #4e2e25;
}
.top_award.-no-badge::before {
	inset: 0;
}
.top_award_inner {
	width: 1160px;
	margin: 0 auto;
	padding: 91px 0 0;
}
.top_award.-no-badge .top_award_inner {
	padding-bottom: 120px;
}
.top_award_ttl {
	margin-bottom: 60px;
	color: #fff;
	font-family: 'Shippori Mincho', serif;
	font-size: 45px;
	font-weight: 600;
	line-height: 1;
	text-align: center;
	letter-spacing: 0.04em;
}
.top_award_rating {
	display: flex;
	justify-content: space-between;
}
.top_award_rating_item {
	flex: 0 0 auto;
	width: 570px;
	max-width: 100%;
}
.top_award_rating_item a {
	display: block;
	background: #fff;
	color: inherit;
}
.top_award_rating_ttl {
	display: block;
	height: 140px;
	padding: 32px 0 0 30px;
	background: no-repeat 0 0;
	color: #4e2e25;
	font-size: 30px;
	font-weight: 700;
	font-feature-settings: 'palt';
	line-height: 1.333;
	letter-spacing: 0.04em;
}
.top_award_rating_item:nth-child(1) .top_award_rating_ttl { background-image: url(/shared/img/pc/top_award_rating_item_bg01.png); }
.top_award_rating_item:nth-child(2) .top_award_rating_ttl { background-image: url(/shared/img/pc/top_award_rating_item_bg02.png); }
.top_award_rating_detail {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 80px;
	padding: 0 20px 0 30px;
}
.top_award_rating_sub_ttl {
	position: relative;
	top: -2px;
	margin-right: 20px;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0.04em;
}
.top_award_rating_star {
	overflow: hidden;
	position: relative;
	top: -4px;
	flex: 0 0 auto;
	width: 5.2em;
	max-width: 100%;
	margin-right: 15px;
	font-size: 32px;
	line-height: 1;
	letter-spacing: 0.04em;
	white-space: nowrap;
}
.top_award_rating_star::before,
.top_award_rating_star::after {
	content: '★★★★★';
}
.top_award_rating_star::before { color: #ced4da; }
.top_award_rating_star::after {
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	color: #ffba00;
}
.top_award_rating_star.-star-0::after { width: 0; }
.top_award_rating_star.-star-0_5::after { width: 0.52em; }
.top_award_rating_star.-star-1::after { width: 1.04em; }
.top_award_rating_star.-star-1_5::after { width: 1.56em; }
.top_award_rating_star.-star-2::after { width: 2.08em; }
.top_award_rating_star.-star-2_5::after { width: 2.6em; }
.top_award_rating_star.-star-3::after { width: 3.12em; }
.top_award_rating_star.-star-3_5::after { width: 3.64em; }
.top_award_rating_star.-star-4::after { width: 4.16em; }
.top_award_rating_star.-star-4_5::after { width: 4.68em; }
.top_award_rating_star.-star-5::after { width: 5.2em; }
.top_award_rating_txt {
	position: relative;
	top: -2px;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0.04em;
}
.top_award_rating_btn {
	width: 30px;
	height: 30px;
	margin-left: auto;
	border-radius: 50%;
	background: var(--site_grad_fallback);
	background: var(--site_grad);
	color: #fff;
	font-size: 18px;
	line-height: 28px;
	text-align: center;
}
.top_award_badge {
	min-height: 318px;
	margin: 70px 5px 0;
}
.top_award_badge .slick-list {
	overflow: visible;
}
.top_award_badge_item {
	width: 230px;
	padding: 0 15px;
	text-align: center;
}
.top_award_badge_item a:hover {
	opacity: 1;
	-webkit-filter: brightness(0.75) contrast(1.05);
	filter: brightness(0.75) contrast(1.05);
}

.top_benefit {
	width: 1160px;
	margin: 0 auto 85px;
	text-align: center;
}
.top_benefit_head {
	margin-bottom: 55px;
	padding-bottom: 34px;
	border-bottom: 1px solid #c5b279;
}
.top_benefit_ttl {
	margin-bottom: 27px;
	line-height: 1;
}
.top_benefit_ttl_en {
	display: block;
	position: relative;
	margin-bottom: 37px;
}
.top_benefit_ttl_en span {
	display: inline-block;
	padding: 0 37px;
	background: #fff;
	color: #c49508;
	font-family: 'Cormorant', serif;
	font-size: 43px;
	letter-spacing: 0.04em;
	vertical-align: top;
}
.top_benefit_ttl_en::before {
	content: '';
	position: absolute;
	top: calc(50% + 1px);
	left: 0;
	z-index: -100;
	width: 100%;
	height: 2px;
	background: #c5b279;
}
.top_benefit_ttl_ja {
	font-family: 'Shippori Mincho', serif;
	font-size: 43px;
	font-weight: 700;
	letter-spacing: 0.04em;
}
.top_benefit_txt {
	font-size: 16px;
}
.top_benefit_inner {
}
.top_benefit_list {
	display: flex;
}
.top_benefit_list_item {
	flex: 0 0 auto;
	width: 33.333333%;
	max-width: 100%;
}
.top_benefit_list_img {
	position: relative;
	margin-bottom: 25px;
}
.top_benefit_list_add {
	position: absolute;
	top: -6px;
	left: 30px;
}
.top_benefit_list_txt {
	font-size: 17px;
	font-weight: 700;
	line-height: 1.764;
	letter-spacing: 0.04em;
}

.top_gallery {
	width: 1160px;
	margin: 0 auto 100px;
}
.top_gallery_inner {
}
.top_gallery_ttl {
	margin-bottom: 45px;
	line-height: 1;
	text-align: center;
}
.top_gallery_ttl_en {
	display: block;
	margin-bottom: 10px;
	color: #c49508;
	font-family: 'Cormorant', serif;
	font-size: 36px;
	font-weight: 600;
	letter-spacing: 0.04em;
}
.top_gallery_ttl_ja {
	font-family: 'Shippori Mincho', serif;
	font-size: 40px;
	font-weight: 700;
	letter-spacing: 0.02em;
}
.top_gallery_list {
	display: flex;
	margin: 0 -10px 48px;
}
.top_gallery_list_item {
	flex: 0 0 auto;
	width: 25%;
	max-width: 100%;
	padding: 0 10px;
}
.top_gallery_list_img {
	margin-bottom: 20px;
}
.top_gallery_list_date {
	display: block;
	margin-bottom: 7px;
	color: #888;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.04em;
}
.top_gallery_list_ttl {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.733;
	letter-spacing: 0.04em;
}
.top_gallery_list_ttl a {
	color: inherit;
}
.top_gallery_btn {
	text-align: center;
}
.top_gallery_btn a {
	width: 240px;
	height: 50px;
	line-height: 50px;
}

.top_banner {
	margin-bottom: 140px;
	background: #f7f0cc;
}
.top_banner_inner {
	width: 1160px;
	margin: 0 auto;
	padding: 120px 0;
}
.top_banner_list {
	display: flex;
	justify-content: space-between;
}
.top_banner_list_item {
	flex: 0 0 auto;
	width: calc(50% - 15px);
	max-width: 100%;
	background: #fff;
}
.top_banner_list_item a {
	display: block;
	height: 300px;
	padding: 71px 75px 0;
	background: no-repeat 0 0;
	color: #fff;
	text-align: center;
}
.top_banner_list_item:nth-child(1) a { background-image: url(/shared/img/pc/top_banner_list_item_bg01.jpg); }
.top_banner_list_item:nth-child(2) a { background-image: url(/shared/img/pc/top_banner_list_item_bg02.jpg); }
.top_banner_list_en {
	display: block;
	margin-bottom: 10px;
	font-family: 'Cormorant', serif;
	font-size: 50px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.06em;
}
.top_banner_list_jp {
	display: block;
	margin-bottom: 36px;
	font-family: 'Shippori Mincho', serif;
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.04em;
}
.top_banner_list_btn {
	display: inline-block;
	width: 240px;
	height: 50px;
	border: 1px solid #fff;
	font-size: 15px;
	font-weight: 700;
	line-height: 46px;
	text-align: center;
	letter-spacing: 0.04em;
}
.top_banner_insurance {
	margin-top: 40px;
	text-align: center;
}
.top_banner_insurance .in {
	display: inline-block;
	background: #fff;
}

.top_blog_group {
	width: 1160px;
	margin: 0 auto;
	padding-bottom: 165px;
}
.top_blog_group_inner {
	display: flex;
	margin: 0 -40px;
}
.top_blog {
	flex: 0 0 auto;
	width: 50%;
	max-width: 100%;
	padding: 0 40px;
}
.top_blog_head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
}
.top_blog_ttl {
	flex: 0 0 auto;
	width: 180px;
	max-width: 100%;
	height: 56px;
	border: 1px solid #4e2e25;
	font-family: 'Cormorant', serif;
	font-size: 32px;
	font-weight: 600;
	line-height: 54px;
	text-align: center;
	letter-spacing: 0.04em;
}
.top_blog_btn {
}
.top_blog_btn a {
	width: 136px;
	height: 43px;
	font-size: 15px;
	line-height: 43px;
}
.top_blog_inner {
}
.top_blog_list {
}
.top_blog_list_item {
	position: relative;
	padding: 22px 0 23px;
}
.top_blog_list_item::before {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 1px;
	background-image: radial-gradient(circle, #4e2e25 1px, transparent 1px);
	background-repeat: repeat-x;
	background-size: 6px 1px;
}
.top_blog_list_img {
	float: left;
	width: 120px;
	margin-right: 25px;
}
.top_blog_list_detail {
	overflow: hidden;
}
.top_blog_list_date {
	display: block;
	margin-bottom: 2px;
	color: #888;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.04em;
}
.top_blog_list_ttl {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.733;
	letter-spacing: 0.04em;
	-webkit-line-clamp: 2;
}
.top_blog_list_ttl a {
	color: inherit;
}


/* ---------------------------------------------------------
	Lower
---------------------------------------------------------- */
.l-page_header {
	background: url(/shared/img/pc/page_header_bg.jpg) no-repeat center 0 / cover;
}
.l-page_header_inner {
	display: flex;
	overflow: hidden;
	align-items: center;
	justify-content: center;
	width: 1160px;
	height: 450px;
	margin: 0 auto;
	color: #fff;
	text-align: center;
}

.page_ttl_group {
	padding-top: 25px;
}
.page_ttl_en {
}
.page_ttl {
	margin-bottom: 15px;
	font-family: 'Shippori Mincho', serif;
	font-size: 46px;
	font-weight: 700;
	line-height: 1.3;
}
.page_ttl span {
	margin-left: 15px;
	font-size: 26px;
}

.bread_wrap {
}
.bread {
}
.bread_item {
	display: inline-block;
	position: relative;
	font-size: 14px;
	font-weight: 500;
}
.bread_item.-home {
}
.bread_item.-home::before {
}
.bread_item::after {
	content: '\f105';
	position: relative;
	margin: 0 10px;
	font-family: 'Font Awesome 6 Pro';
	font-size: 13px;
	font-style: normal;
	font-weight: 300;
	font-variant: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height: 1;
	text-rendering: auto;
}
.bread_item a {
	color: inherit;
}
.bread_item:last-child::after {
	content: none;
}
.bread_item:last-child a {
	color: inherit;
	pointer-events: none;
}


/* ================================================================================
	Entry
================================================================================ */
.entry {
	margin-bottom: 50px;
}
.entry:last-of-type {
	margin: 0;
}

.entry_thumb {
	margin-bottom: 40px;
}

.no_entry_txt {
	padding: 60px 0;
	text-align: center;
}

.entry_meta {
	margin: 50px 0 0;
	padding: 15px 0;
	border-width: 1px 0;
	border-style: solid;
	border-color: #ddd;
	font-size: 11px;
	line-height: 20px;
	text-align: right;
}
.entry_meta_detail {
	float: right;
}
.entry_meta_date {
	color: #888;
}
.entry_meta_cat {
	margin-left: 10px;
}
.entry_meta_cat::before {
	content: 'a';
	margin-right: 5px;
	font-family: 'CONDENSEicon';
}
.entry_share {
	float: left;
}
.entry_share_list {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.entry_share_list_item {
	padding: 0 4px 0 0;
}
.entry_share_list_item * {
	vertical-align: top !important;
}

.entry_body, .mceContentBody {
	font-size: 17px;
	line-height: 2.2;
}

.entry_body h2, .mceContentBody h2,
.entry_body h3, .mceContentBody h3,
.entry_body h4, .mceContentBody h4,
.entry_body h5, .mceContentBody h5 {
	clear: both;
}
.entry_body h2 img, .mceContentBody h2 img,
.entry_body h3 img, .mceContentBody h3 img,
.entry_body h4 img, .mceContentBody h4 img,
.entry_body h5 img, .mceContentBody h5 img {
	vertical-align: middle;
}

/* entry_ttl */
.entry_ttl, .entry_body h2, .mceContentBody h2 {
	margin: 90px 0 40px;
	padding: 26px 0 25px;
	border-width: 2px 0 1px;
	border-style: solid;
	border-color: #4e2e25;
	color: #3f241d;
	font-family: 'Shippori Mincho', serif;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.6;
}
.entry_ttl a, .entry_body h2 a, .mceContentBody h2 a {
	color: inherit;
}

/* h3 */
.h3, .entry_body h3, .mceContentBody h3 {
	position: relative;
	margin: 2.2em 0 1em;
	padding-left: 23px;
	color: #3f241d;
	font-family: 'Shippori Mincho', serif;
	font-size: 25px;
	font-weight: 700;
	line-height: 1.6;
}
.h3::before, .entry_body h3::before, .mceContentBody h3::before {
	content: '';
	position: absolute;
	top: 7px;
	left: 0;
	width: 4px;
	height: 30px;
	background: #4e2e25;
}

/* h4 */
.h4, .entry_body h4, .mceContentBody h4 {
	position: relative;
	margin: 1.8em 0 1em;
	padding-left: 30px;
	color: #3f241d;
	font-family: 'Shippori Mincho', serif;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.6;
}
.h4::before,
.h4::after,
.entry_body h4::before,
.entry_body h4::after,
.mceContentBody h4::before,
.mceContentBody h4::after {
	content: '';
	position: absolute;
	top: 56%;
	border-radius: 50%;
	transform: translateY(-50%);
}
.h4::before,
.entry_body h4::before,
.mceContentBody h4::before {
	left: 0;
	width: 16px;
	height: 16px;
	background: var(--site_grad_fallback);
	background: var(--site_grad);
}
.h4::after,
.entry_body h4::after,
.mceContentBody h4::after {
	left: 4px;
	width: 8px;
	height: 8px;
	background: #fff;
}

/* h5 */
.h5, .entry_body h5, .mceContentBody h5 {
	margin: 1.8em 0 1em;
	padding-bottom: 5px;
	border-bottom: 1px solid #ccc4ba;
	color: #3f241d;
	font-family: 'Shippori Mincho', serif;
	font-size: 20px;
	font-weight: 700;
}

.entry_body h2 + h3, .mceContentBody h2 + h3,
.entry_body h2 + h4, .mceContentBody h2 + h4,
.entry_body h2 + h5, .mceContentBody h2 + h5 {
	margin-top: 0;
}

.entry_body p, .entry_body hr, .entry_body table,
.mceContentBody p, .mceContentBody hr, .mceContentBody table {
	margin: 0 0 1em 0;
}
.entry_body hr,
.mceContentBody hr {
	height: 1px;
	margin: 30px 0;
	border-width: 1px 0 0;
	border-style: dashed;
	border-color: #ccc; /* edit */
}
.entry_body strong,
.mceContentBody strong {
}
.entry_body code,
.mceContentBody code {
	display: inline-block;
	padding: 4px 5px;
	border: 1px solid #d6d6d6;
	border-radius: 2px;
	background: #f8f8f8;
	font-family: inherit;
}
.entry_body * code,
.mceContentBody * code {
	margin: 0 5px;
}

.entry_body table,
.mceContentBody table {
	width: 100%;
}
.entry_body table th, .entry_body table td,
.mceContentBody table th, .mceContentBody table td {
	padding: 12px 15px;
	border: 1px solid #ccc; /* edit */
	text-align: left;
	vertical-align: top;
}
.entry_body table th p, .entry_body table td p,
.mceContentBody table th p, .mceContentBody table td p {
	margin: 10px 0;
}
.entry_body table th,
.mceContentBody table th {
	background: #f7f7f7; /* edit */
}
.entry_body table thead th,
.mceContentBody table thead th {
	padding: 8px 10px;
	text-align: center;
}

.entry_body .tbl_std th, .mceContentBody .tbl_std th {
	width: 25%;
}

.entry_body .tbl_underline th, .entry_body .tbl_underline td,
.mceContentBody .tbl_underline th, .mceContentBody .tbl_underline td {
	border-width: 0 0 1px;
	background: none;
}

.entry_body .tbl_fixed,
.mceContentBody .tbl_fixed {
	table-layout: fixed;
}

.entry_body ul, .entry_body ol,
.mceContentBody ul, .mceContentBody ol {
	margin: 10px 0;
}
.entry_body ul ul, .entry_body ol ul,
.mceContentBody ul ul, .mceContentBody ol ul {
	margin: 5px 0 5px 2em !important;
}
.entry_body ul ol, .entry_body ol ol,
.mceContentBody ul ol, .mceContentBody ol ol {
	margin: 5px 0 !important;
}
.entry_body ol,
.mceContentBody ol {
	counter-reset: num;
	list-style: none;
}
.entry_body ol > li,
.mceContentBody ol > li {
	position: relative;
	padding-left: 2em;
}
.entry_body ol > li::before,
.mceContentBody ol > li::before {
	content: counter(num) '. ';
	counter-increment: num;
	position: absolute;
	top: 0;
	left: 0;
	font-weight: bold;
}
.entry_body .list_disc li, .entry_body .list_check li,
.mceContentBody .list_disc li, .mceContentBody .list_check li {
	font-size: 16px;
}
.entry_body .list_disc li::before, .entry_body .list_check li::before,
.mceContentBody .list_disc li::before, .mceContentBody .list_check li::before {
	position: relative;
	top: 1px;
	left: 0;
	margin-right: 10px;
	font-family: 'Font Awesome 6 Pro';
	font-style: normal;
	font-weight: 400;
	font-variant: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height: 1;
	text-rendering: auto;
}
.entry_body .list_disc ul, .entry_body .list_check ul,
.mceContentBody .list_disc ul, .mceContentBody .list_check ul {
	margin: 5px 0 5px 25px !important;
}
.entry_body .list_disc li::before,
.mceContentBody .list_disc li::before {
	content: '\f111';
}
.entry_body .list_check li::before,
.mceContentBody .list_check li::before {
	content: '\f00c';
}
.entry_body .list_l li,
.mceContentBody .list_l li {
	margin-bottom: 15px;
}
.entry_body .list_l ul,
.mceContentBody .list_l ul {
	margin: 15px 0 15px 2em !important;
}
.entry_body img,
.mceContentBody img {
	max-width: 100%;
	height: auto;
}
.entry > .entry_ttl:first-child,
.entry_body .entry_ttl:first-child, .mceContentBody .entry_ttl:first-child,
.entry_body h2:first-child, .mceContentBody h2:first-child,
.entry_body h3:first-child, .mceContentBody h3:first-child,
.entry_body h4:first-child, .mceContentBody h4:first-child,
.entry_body h5:first-child, .mceContentBody h5:first-child,
.entry_body p:first-child, .mceContentBody p:first-child,
.entry_body ul:first-child, .mceContentBody ul:first-child,
.entry_body ol:first-child, .mceContentBody ol:first-child,
.entry_body dl:first-child, .mceContentBody dl:first-child,
.entry_body hr:first-child, .mceContentBody hr:first-child,
.entry_body table:first-child, .mceContentBody table:first-child,
.entry_body div:first-child, .mceContentBody div:first-child {
	margin-top: 0;
}
.entry_body .entry_ttl:last-child, .mceContentBody .entry_ttl:last-child,
.entry_body h2:last-child, .mceContentBody h2:last-child,
.entry_body h3:last-child, .mceContentBody h3:last-child,
.entry_body h4:last-child, .mceContentBody h4:last-child,
.entry_body h5:last-child, .mceContentBody h5:last-child,
.entry_body p:last-child, .mceContentBody p:last-child,
.entry_body ul:last-child, .mceContentBody ul:last-child,
.entry_body ol:last-child, .mceContentBody ol:last-child,
.entry_body dl:last-child, .mceContentBody dl:last-child,
.entry_body hr:last-child, .mceContentBody hr:last-child,
.entry_body table:last-child, .mceContentBody table:last-child,
.entry_body div:last-child, .mceContentBody div:last-child {
	margin-bottom: 0;
}


/* ---------------------------------------------------------
Wordpress editor style
---------------------------------------------------------- */
.entry_body .aligncenter, .entry_body div.aligncenter,
.mceContentBody .aligncenter, .mceContentBody div.aligncenter {
	display: block;
	margin-right: auto;
	margin-left: auto;
}
.entry_body .alignleft,
.mceContentBody .alignleft {
	float: left;
}
.entry_body .alignright,
.mceContentBody .alignright {
	float: right;
}
.entry_body .wp-caption,
.mceContentBody .wp-caption {
	margin: 10px;
	padding-top: 4px;
	border-top: 1px dotted #d1d1d1;
	border-radius: 3px;
	background-color: #f3f3f3;
	text-align: center;
}
.entry_body .wp-caption img,
.mceContentBody .wp-caption img {
	margin: 0;
	padding: 0;
	border: 0 none;
}
.entry_body .wp-caption p.wp-caption-text,
.mceContentBody .wp-caption p.wp-caption-text {
	margin: 0;
	padding: 0 4px 5px;
	font-size: 11px;
	line-height: 17px;
}
.entry_body dl.gallery-item dt.gallery-icon,
.mceContentBody dl.gallery-item dt.gallery-icon {
	margin: 0;
	padding: 0;
	border: none;
	background: none;
	font-size: 13px;
	font-weight: normal;
}
.entry_body dl.gallery-item dt.gallery-icon::after,
.mceContentBody dl.gallery-item dt.gallery-icon::after {
	display: none;
}
.entry_body dl.gallery-item dt.gallery-icon img,
.mceContentBody dl.gallery-item dt.gallery-icon img {
	margin-bottom: 0;
}
.entry_body dl.gallery-item dd.gallery-caption,
.mceContentBody dl.gallery-item dd.gallery-caption {
	margin: 4px 0;
}


/* ================================================================================
	Pager
================================================================================ */
/* pager */
.pager {
	margin-top: 50px;
	text-align: center;
}
.pager a, .pager span {
	display: inline-block;
	min-width: 32px;
	height: 32px;
	margin: 0 4px;
	padding: 0 7px;
	border: 1px #333 solid;
	background: #fff;
	color: #333;
	font-size: 12px;
	line-height: 30px;
}
.pager span.extend {
	padding: 0;
	border: none;
	background: none;
}
.pager a {
	color: inherit;
	text-decoration: none;
}
.pager a:hover {
	opacity: 1;
	background: #333;
	color: #fff;
}
.pager .current {
	background: #333;
	color: #fff;
}
.pager .first, .pager .last, .pager .previouspostslink, .pager .nextpostslink {
	padding: 0 10px;
}

/* single */
.single_pager {
	margin-top: 40px;
}
.single_pager_item.-prev {
	float: left;
}
.single_pager_item.-next {
	float: right;
}


/* ================================================================================
	Blog
================================================================================ */
.blog_list {
	margin-bottom: 30px;
}
.blog_list_item {
	margin-bottom: 60px;
}
.blog_list_body {
	position: relative;
}
.blog_list_ttl {
	margin-top: 0;
}
.list_blog_inner {
	overflow: hidden;
	position: relative;
}
.blog_list_img {
	float: left;
	width: 240px;
	margin-right: 30px;
}
.blog_list_img a {
	display: block;
	overflow: hidden;
	height: 180px;
}
.blog_list_img.-blank a {
	position: relative;
	background: #eee;
}
.blog_list_img.-blank a::before,
.blog_list_img.-blank a::after {
	position: absolute;
	top: 50%;
	left: 50%;
	color: #ccc;
	font-family: 'Font Awesome 6 Pro';
	font-size: 35px;
	font-style: normal;
	font-weight: 300;
	font-variant: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height: 1;
	text-rendering: auto;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.blog_list_img.-blank a::before {
	content: '\f03e';
}
.blog_list_img.-blank a::after {
	content: '\f715';
}

.blog_list_txt {
	overflow: hidden;
	margin-bottom: 15px;
	font-size: 15px;
	line-height: 2;
}
.blog_list_more {
	position: absolute;
	right: 0;
	bottom: 0;
	font-size: 13px;
}
.blog_list_more a {
}
.blog_list_more i {
	margin-left: 10px;
}

/* detail */
.single.tmpl-type-blog .l-main .entry {
}

.single-blog .gallery_oembed {
	margin-bottom: 60px !important;
}
.single-blog .gallery_detail_meta {
}


/* ================================================================================
	Gallery
================================================================================ */
/* nav */
.gallery_nav {
	margin: -30px 0 45px;
}
.gallery_nav_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 -5px;
}
.gallery_nav_list li {
	margin: 0 5px 10px;
}
.gallery_nav_list li a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 200px;
	height: 46px;
	padding: 0 10px;
	border: 1px solid #b7aaa7;
	color: inherit;
	font-size: 16px;
	font-weight: 700;
	text-align: center;
	transition-property: opacity, background, color;
}
.gallery_nav_list li.current-cat a,
.gallery_nav_list li a:hover,
.gallery_nav_list li a:focus,
.gallery_nav_list li a:active {
	opacity: 1;
	border-color: transparent;
	background: var(--site_grad_fallback);
	background: var(--site_grad);
	color: #fff;
}
.gallery_nav_list li.current-cat a:hover {
	opacity: 0.7;
}

/* list */
.gallery_list {
	display: grid;
	grid-template-columns: repeat(4, 25%);
	margin: 0 -10px;
}
.gallery_list_item {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 3;
	width: auto;
	max-width: 100%;
	padding: 0 10px 30px;
}
.gallery_list_img {
	margin-bottom: 13px;
}
.gallery_list_img img {
	width: 100%;
	height: auto;
	padding: 8px;
	border: 1px solid #4e2e25;
	background: #fff;
}
.gallery_list_ttl {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.7;
}
.gallery_list_ttl a {
	color: inherit;
}
.gallery_list_meta {
	margin-top: 13px;
}
.gallery_list_meta table {
	width: 100%;
}
.gallery_list_meta table th,
.gallery_list_meta table td {
	padding: 5px 6px;
	border: 1px solid #b7aaa7;
	line-height: 1.8;
	vertical-align: top;
}
.gallery_list_meta table th {
	width: 30%;
	/* background: #e5e0df; */
	background: #e8e3e2;
	font-weight: 600;
}

/* detail */
.single.tmpl-type-gallery .l-content_inner,
.single.tmpl-type-family .l-content_inner {
	width: 980px;
}
.single.tmpl-type-gallery .l-main .entry,
.single.tmpl-type-family .l-main .entry {
	padding: 0 40px;
}

.gallery_ttl {
	margin: 0 -40px 40px;
}

.gallery_detail {
	margin-bottom: 60px;
}
.gallery_detail_main {
	overflow: hidden;
	position: relative;
	height: 600px;
}
/* ワンちゃん・ネコちゃん紹介のみ */
.single-gallery .gallery_detail_main img {
	padding: 10px;
	border: 1px solid #4e2e25;
	background: #fff;
}

.gallery_detail_sub {
	margin-top: 10px;
}
.gallery_detail_sub ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.gallery_detail_sub ul li {
	flex: 0 0 auto;
	width: calc(12.5% - 8.75px); /* 8列：gap 7個分(70px)を8等分 */
	max-width: 100%;
}
.gallery_detail_sub ul li a { opacity: 0.6; }
.gallery_detail_sub ul li a:hover,
.gallery_detail_sub ul li a.-is-current { opacity: 1; }
.gallery_detail_sub ul li img { image-rendering: high-quality; }
/* ワンちゃん・ネコちゃん紹介のみ */
.single-gallery .gallery_detail_sub ul li img {
	padding: 6px;
	border: 1px solid #4e2e25;
	background: #fff;
}

.gallery_oembed {
	aspect-ratio: 16 / 9;
	margin-bottom: 90px;
}
.gallery_oembed iframe {
	display: block; /* 余白防止 */
	width: 100%;
	height: 100%;
	border: 0;
}

.gallery_detail_meta {
	margin-bottom: 60px;
}
.gallery_detail_meta table {
	width: 100%;
}
.gallery_detail_meta table th,
.gallery_detail_meta table td {
	padding: 10px;
	border: 1px solid #b7aaa7;
	font-size: 16px;
	line-height: 1.8;
	text-align: left;
	vertical-align: top;
}
.gallery_detail_meta table th {
	width: 20%;
	/* background: #e5e0df; */
	background: #e8e3e2;
	font-weight: 700;
}


/* ================================================================================
	Family
================================================================================ */
/* list */
.family_list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}
.family_list_item {
	flex: 0 0 auto;
	/* width: 33.333333%; */
	width: 33.333333%;
	max-width: 100%;
	/* padding: 0 15px 30px; */
	padding: 0 15px 30px;
}
.family_list_img {
	/* margin-bottom: 15px; */
	margin-bottom: 13px;
}
.family_list_ttl {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.7;
}
.family_list_ttl a {
	color: inherit;
}
.family_list_meta {
	/* margin-top: 15px; */
	margin-top: 13px;
}
.family_list_meta table {
	width: 100%;
}
.family_list_meta table th,
.family_list_meta table td {
	padding: 5px 6px;
	border: 1px solid #ccc;
	line-height: 1.8;
	vertical-align: top;
}
.family_list_meta table th {
	width: 30%;
	background: #f7f7f7;
	font-weight: 600;
}


/* ================================================================================
	Contact
================================================================================ */
.form_header {
	margin-bottom: 80px;
}

.form table th, .form table td {
	border-color: #e5e5e5; /* edit */
	border-right: none;
	border-left: none;
	vertical-align: middle;
}
.form table th {
	width: 30%;
	padding: 15px 20px;
	background: none !important;
	line-height: 1.5;
	text-align: left;
}
.form table td {
	padding: 20px 20px 20px 0;
}
.form table tr:first-child th, .form table tr:first-child td {
	padding-top: 0;
	border-top: none;
}

.form table th.va_top {
	padding-top: 15px;
	vertical-align: top;
}

.form input[type='text'], .form input[type='tel'], .form input[type='email'], .form select, .form textarea {
	display: block;
	height: 30px;
	padding: 3px 5px;
	border: 1px solid #ccc;
	border-radius: 1px;
	background: #fff;
	color: #474747;
	line-height: 1.42857;
	-webkit-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
}
.form input[type='text']:focus, .form input[type='tel']:focus, .form input[type='email']:focus, .form select:focus, .form textarea:focus {
	outline: 0;
	border-color: #333;
}
.form select {
	/* height: 30px; */
}
.form textarea {
	height: auto;
}
.form input[type='radio'], .form input[type='checkbox'] {
	position: relative;
	top: 2px;
	margin-right: 5px;
}
.form ul li {
	margin-bottom: 5px;
}
.form ul li label {
	cursor: pointer;
}
.form ul li:last-child {
	margin-bottom: 0;
}
.form .submessage {
	color: #707070;
	font-size: 10px;
}
.form .require {
	padding-left: 5px;
	color: #dc3545;
}
.form .error {
	padding-top: 5px;
	color: #dc3545;
}

.form .form_footer {
	margin: 0;
	padding-top: 20px;
	text-align: center;
}
.form .form_footer input {
	width: 100px;
	height: 35px;
	margin: 0 5px;
	background: #aaa;
	color: #fff;
}
.form .form_footer input.-primary {
	background: #333;
}
.form .form_footer input:hover, .form .form_footer input:active {
	opacity: 0.8;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.form .form_footer .ajax-loader {
	display: block;
	margin: 20px auto 0;
	line-height: 1;
}


/* ================================================================================
	Override
================================================================================ */
/* side_nav */
.side_nav_ttl {
	/* color: #c49508; */
	font-family: 'Cormorant', serif;
	font-size: 30px;
	font-weight: 700;
}
.side_nav_ttl::after {
	border-radius: 2px;
	background: #c5b279;
	/* background: #4e2e25; */
}
.side_nav_list,
.side_nav_list li a {
	border-color: #ddd;
	font-size: 16px;
}
.side_nav_list li a::after {
	color: inherit;
}


/* entry */
.entry_body hr {
	border-color: #ccc;
}

.entry_body strong,
.mceContentBody strong {
	color: inherit;
}

.entry_body table th, .entry_body table td,
.mceContentBody table th, .mceContentBody table td {
	border-color: #ccc;
}
.entry_body table th {
	background: #f7f7f7;
}

.entry_body ol > li::before,
.mceContentBody ol > li::before,
.entry_body .list_disc li::before, .entry_body .list_check li::before,
.mceContentBody .list_disc li::before, .mceContentBody .list_check li::before {
	color: #c49508;
}
.entry_body ol > li::before,
.mceContentBody ol > li::before {
	font-family: 'Shippori Mincho', serif;
}


/* pager */
.pager a, .pager span {
	border-color: #deb212;
	color: #deb212;
}
.pager a:hover {
	background: #deb212;
}
.pager .current {
	background: #deb212;
}


/* form */
.page-contact .site_sns {
	display: none;
}
.page-contact .l-content_inner {
	width: 1060px;
}

.form_header_alert {
	margin: 20px 0;
	padding: 15px 20px;
	border: 1px solid #c5b279;
	background: #fbf7e5;
	font-weight: 600;
}

.form table th,
.form table td {
	border-color: #e5e5e5;
}
.form table th {
	padding: 38px 20px 0;
	font-weight: 700;
	vertical-align: top;
}
.form table td {
	padding: 25px 25px 25px 0;
}

.form input[type='text'],
.form input[type='tel'],
.form input[type='email'],
.form select,
.form textarea {
	padding: 10px;
	border-color: #ccc;
	/* border-radius: 2px; */
	background: #f7f7f8;
}
.form input[type='text'],
.form input[type='tel'],
.form input[type='email'],
.form select {
	height: 50px;
}
.form input[type='text']:focus,
.form input[type='tel']:focus,
.form input[type='email']:focus,
.form select:focus,
.form textarea:focus {
	border-color: #4e2e25;
}

.form .form_footer {
	padding-top: 60px;
}
.form .form_footer input.-primary {
	width: 290px;
	height: 60px;
	background: var(--site_grad_fallback);
	background: var(--site_grad);
	font-size: 16px;
	font-weight: 700;
}