@charset "UTF-8";

/*----------------------------------------------------------*/
/* カスタマイズ用CSS
/*----------------------------------------------------------*/
:root {
	--main: #044D60;
	--link: #2B6A7B;
	--base: #FBF0BD;
	--base2:#FDF7DE;
	--text: #353535;
	--gray: #EAEAEA;
	--gold: #D4C086;
	--gradient: linear-gradient(to right, #7D755C 0%, #D4C086 100%);
	--ease-out: cubic-bezier(0.30, 1.00, 0.30, 1.00);
	--ease-in: cubic-bezier(0.75, 0.05, 0.9, 0.05);
	--ease-inout: cubic-bezier(0.85, 0.00, 0.07, 1.00);
	--font-jp: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
	--font-en: "Cormorant Garamond", serif;
	--font-num: "Noto Serif JP", serif;
	--font-all: "Cormorant Garamond", YakuHanJP, "Zen Kaku Gothic New", sans-serif;
	--ease: all 0.3s ease;
}
*{
	margin: 0;
	padding: 0;
}
*:focus {
	outline: none;
}
html{
	box-sizing:border-box;
	line-height:1;
	font-size: 62.5%; /*  50 56.25 62.5 68.75 75*/
	background: #fff;
	-webkit-font-smoothing: antialiased;
}
html {
	visibility: hidden;
}
html.wf-active {
	visibility: visible;
}
::placeholder {
	color: #ccc;
}
body {
	font-family: var(--font-jp);
	font-style: normal;
	font-weight: 500;
	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt" 1;
	overflow-x: hidden;
	counter-reset: count;
	animation: fadeIn 2.5s ease 0s 1 normal;
	letter-spacing: 0.05em;
	color: var(--text);
}

/*構成*/
#all_wrap {
	width: calc(100%);
	padding: 0;
	margin: 0;
	position: relative;
}
.widget {
	padding: 0;
	margin: 0;
}
#all_wrap.single_page {
	padding-top: 70px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*構成*/
	#all_wrap {
		width: calc(100%);
		padding: 0;
		margin: 0 auto;
		position: relative;
	}
	.l-footer {
		width: calc(100%);
		padding: 0;
		margin: 0 auto;
		position: relative;
	}
	.widget {
		margin-bottom: 0;
	}
}


.content a { color: var(--text); font-weight: 500; text-decoration: underline; transition: var(--ease); }
.content a:hover { color: var(--text); font-weight: 500; text-decoration: none; transition: var(--ease); }
img { width: 100%; height: auto; }

.content .size-full,
.content .size-large,
.content .size-medium,
.content .size-thumbnail {
	margin-bottom: 1em;
}

#all_wrap .content a.wp-block-button__link {
	display: block;
	width: 50%;
	color: #fff;
	transition: ease 0.2s;
	position: relative;
	padding: 10px 20px;
	margin: 0 auto;
}
#all_wrap .content a.wp-block-button__link:hover { text-decoration: none; opacity: 0.8; transition: ease 0.2s; }
#all_wrap .content a.wp-block-button__link::after {
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	background: none;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translate(0,-50%) rotate(-45deg);
	-webkit-transform: translate(0,-50%) rotate(-45deg);
	transition: ease 0.2s;
}
#all_wrap .content a.wp-block-button__link:hover::after {
	right: 18px;
	transition: ease 0.2s;
}

/* スクロールの幅の設定 */
html::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

/* スクロールの背景の設定 */
html::-webkit-scrollbar-track {
	border-radius: 0;
	box-shadow: 0 0 4px #fff inset;
}

/* スクロールのつまみ部分の設定 */
html::-webkit-scrollbar-thumb {
	border-radius: 0;
	background: #c8c8c8;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
	display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
	outline-offset: -2px;
}

#all_wrap .single_content a { color: var(--text); font-weight: 500; transition: ease 0.2s; }
#all_wrap .single_content a:hover { color: #var(--text); font-weight: 500; text-decoration: underline; transition: ease 0.2s; }


/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap { position: relative; overflow: hidden; }
	#all_wrap .content a.wp-block-button__link {
		display: block;
		width: 90%;
		color: #fff;
		transition: ease 0.2s;
		position: relative;
		padding: 10px 50px;
		margin: 0 auto;
	}
}

/*ページトップ*/
#to_top {
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 40px;
	height: 40px;
	background: var(--main);
	border-radius: 50%;
	position: fixed;
	bottom: 25px;
	right: 25px;
	transition: var(--ease);
	opacity: 0;
	visibility: hidden;
	filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.1));
}
#to_top.fixed {
	transition: var(--ease);
	opacity: 1;
	visibility: visible;
}
#to_top::before {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	padding: 0;
	margin: 0;
	background: none;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	position: absolute;
	top: calc(50% + 2px);
	left: 50%;
	transform: translate(-50%,-50%) rotate(-45deg);
	-webkit-transform: rtranslate(-50%,-50%) rotate(-45deg);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*ページトップ*/
	#to_top {
		width: 30px;
		height: 30px;
		bottom: 65px;
		right: 15px;
	}
}

/*reCAPTCHA*/
.grecaptcha-badge {
	z-index: 999;
}


/************************************************************/
/*　共通
/************************************************************/
#all_wrap .contHead {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: baseline;
	column-gap: 20px;
}
#all_wrap .contHead > em {
	display: inline-block;
	font-family: var(--font-en);
	font-size: 48px;
	line-height: 1;
	font-weight: 500;
	font-style: normal;
	color: var(--main);
}
#all_wrap .contHead > h2 {
	display: inline-block;
	font-size: 16px;
	line-height: 1;
	font-weight: 500;
	color: var(--main);
	border: none;
	background: none;
	position: relative;
}
/*白*/
#all_wrap .contHead.white > em {
	color: #fff;
}
#all_wrap .contHead.white > h2 {
	color: #fff;
}

/*sec*/
.sec {
	padding: 0;
	margin: 0 auto;
	position: relative;
}
.sec.mb100 {
	margin-bottom: 100px;
}

/*ボタン*/
#all_wrap .btn {
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	column-gap: 20px;
	grid-row-gap: 10px;
	flex-wrap: wrap;
}
#all_wrap .btn.left {
	justify-content: flex-start;
}
#all_wrap .btn.right {
	justify-content: flex-end;
}
#all_wrap .btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 10px;
	width: 380px;
	height: 64px;
	padding: 20px 20px;
	margin: 0;
	background: var(--main);
	font-size: 18px;
	line-height: 1;
	font-weight: 500;
	color: #fff;
	letter-spacing: 0.15em;
	text-align: center;
	text-decoration: none;
	border-radius: 60px;
	transition: var(--ease);
}
#all_wrap .btn.mail a {
	border-radius: 10px;
}
#all_wrap .btn a:hover {
	background: var(--link);
	transition: var(--ease);
}
/* - ベースカラー*/
#all_wrap .btn.base a {
	background: var(--base);
	color: var(--main);
	transition: var(--ease);
}
#all_wrap .btn.base a:hover {
	background: var(--gray);
	transition: var(--ease);
}
/* - メール */
#all_wrap .btn.mail a::before {
	content: '';
	display: block;
	width: 18px;
	height: 18px;
	background-image: url('https://test-relief.coresv.com/wp-content/uploads/icon_mail.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
}

/*本文*/
#all_wrap .content {
	font-size: 15px;
	line-height: 2;
	padding: 0;
	margin: 0 auto;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*本文*/
	#all_wrap .content {
		font-size: 14px;
		line-height: 2;
		padding: 0;
		margin: 0 auto;
	}
}

/************************************************************/
/*　コンテンツ整形
/************************************************************/
#all_wrap p {
	font-size: 14px;
	line-height: 2;
	font-weight: 500;
	font-feature-settings: "palt" 1;
	font-style: normal;
}
#all_wrap .content p {
	font-size: 14px;
	line-height: 2;
	padding: 0;
	margin: 0 auto 20px;
}
#all_wrap img.alignleft {
	margin-right: 30px;
	margin-bottom: 30px;
}
#all_wrap img.alignright {
	margin-left: 30px;
	margin-bottom: 30px;
}

/*下マージン*/
#all_wrap .content .mb0,
#all_wrap .content .mb0 { margin-bottom: 0px; }
#all_wrap .content .mb5,
#all_wrap .content .mb5 { margin-bottom: 5px; }
#all_wrap .content .mb10,
#all_wrap .content .mb10 { margin-bottom: 10px; }
#all_wrap .content .mb20,
#all_wrap .content .mb20 { margin-bottom: 20px; }
#all_wrap .content .mb30,
#all_wrap .content .mb30 { margin-bottom: 30px; }
#all_wrap .content .mb40,
#all_wrap .content .mb40 { margin-bottom: 40px; }
#all_wrap .content .mb50,
#all_wrap .content .mb50 { margin-bottom: 50px; }
#all_wrap .content .mb60,
#all_wrap .content .mb60 { margin-bottom: 60px; }
#all_wrap .content .mb70,
#all_wrap .content .mb70 { margin-bottom: 70px; }
#all_wrap .content .mb80,
#all_wrap .content .mb80 { margin-bottom: 80px; }
#all_wrap .content .mb90,
#all_wrap .content .mb90 { margin-bottom: 90px; }
#all_wrap .content .mb100,
#all_wrap .content .mb100 { margin-bottom: 100px; }
#all_wrap .content .mb150,
#all_wrap .content .mb150 { margin-bottom: 150px; }
#all_wrap .content .mb200,
#all_wrap .content .mb200 { margin-bottom: 200px; }

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap p {
		font-size: 14px;
		line-height: 2em;
		font-weight: 500;
		font-feature-settings: "palt" 1;
		font-style: normal;
	}
	#all_wrap .content p {
		font-size: 14px;
		line-height: 2em;
		padding: 0;
		margin-bottom: 10px;
	}

	/*下マージン*/
	#all_wrap .content .mb0,
	#all_wrap .content .mb0 { margin-bottom: 0px; }
	#all_wrap .content .mb5,
	#all_wrap .content .mb5 { margin-bottom: 5px; }
	#all_wrap .content .mb10,
	#all_wrap .content .mb10 { margin-bottom: 10px; }
	#all_wrap .content .mb20,
	#all_wrap .content .mb20 { margin-bottom: 20px; }
	#all_wrap .content .mb30,
	#all_wrap .content .mb30 { margin-bottom: 30px; }
	#all_wrap .content .mb40,
	#all_wrap .content .mb40 { margin-bottom: 20px; }
	#all_wrap .content .mb50,
	#all_wrap .content .mb50 { margin-bottom: 25px; }
	#all_wrap .content .mb60,
	#all_wrap .content .mb60 { margin-bottom: 30px; }
	#all_wrap .content .mb70,
	#all_wrap .content .mb70 { margin-bottom: 35px; }
	#all_wrap .content .mb80,
	#all_wrap .content .mb80 { margin-bottom: 40px; }
	#all_wrap .content .mb90,
	#all_wrap .content .mb90 { margin-bottom: 45px; }
	#all_wrap .content .mb100,
	#all_wrap .content .mb100 { margin-bottom: 50px; }
	#all_wrap .content .mb150,
	#all_wrap .content .mb150 { margin-bottom: 70px; }
	#all_wrap .content .mb200,
	#all_wrap .content .mb200 { margin-bottom: 100px; }
}

/*== スマホ・PC 非表示 ==*/
.pc_none { display: none !important; }
.sp_none { display: block !important; }
@media only screen and (max-width: 768px){
	.pc_none { display: block !important; }
	.sp_none { display: none !important; }
}

/************************************************************/
/*　JS
/************************************************************/

/*lightbox*/
.nivo-lightbox-effect-fade {
	visibility: hidden;
	opacity: 0;
}
.nivo-lightbox-overlay.nivo-lightbox-open {
	visibility: visible;
	opacity: 1;
}
.nivo-lightbox-theme-default .nivo-lightbox-close {
	opacity: 1;
}
.nivo-lightbox-theme-default .nivo-lightbox-close {
	background-size: 20px 20px;
}
.nivo-lightbox-theme-default .nivo-lightbox-close {
	width: 20px;
	height: 20px;
}

/************************************************************/
/*　フェードアニメーション
/************************************************************/
/*フェードアップ*/
.fut {
	opacity: 0;
	transition-delay: 0.3s;
	transition-duration: 1s;
	animation-delay: 0.5s;
}
.fut.delay {
	animation-delay: 0.8s;
}
.fut.delay2 {
	animation-delay: 1.1s;
}
.fadeUp {
	animation-name: fadeUpAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes fadeUpAnime {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/*フェードダウン*/
.fdt {
	opacity: 0;
	transition-delay: 0.3s;
	transition-duration: 1s;
	animation-delay: 0.5s;
}
.fdt.delay {
	animation-delay: 0.8s;
}
.fdt.delay2 {
	animation-delay: 1.1s;
}
.fadeDown {
	animation-name: fadeDownAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes fadeDownAnime {
	from {
		opacity: 0;
		transform: translateY(-50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/*フェードイン*/
.fade {
	opacity: 0;
	transition-delay: 0.3s;
	transition-duration: 1s;
	animation-delay: 0.5s;
}
.fade.delay {
	animation-delay: 0.8s;
}
.fade.delay2 {
	animation-delay: 1.1s;
}
.fadeIn {
	animation-name: fadeInAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes fadeInAnime {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
/*フェードショー*/
.show::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: #fff;
	position: absolute;
	top: 0;
	right: 0;
	transform-origin: right;
	z-index: 11;
	animation-delay: 0.7s;
}
.show.delay::before {
	animation-delay: 1s;
}
.show.delay2::before {
	animation-delay: 1.2s;
}
.showopen::before {
	animation-name: fadeShowAnime;
	animation-duration: 1s;
	animation-timing-function: cubic-bezier(0.4, 0.4, 0, 1);
	animation-fill-mode: forwards;
}
@keyframes fadeShowAnime {
	from {
		width: 100%;
	}
	to {
		width: 0%;
	}
}
/*ズームアウト（画像用）*/
.zoomout {
	animation-name: zoomout;
	animation-duration: 5s;
	animation-fill-mode: forwards;
}
@keyframes zoomout {
	from {
		transform: translate(-50%,-50%) scale(1.1);
		transform-origin: center;
	}
	to {
		transform: translate(-50%,-50%) scale(1);
		transform-origin: center;
	}
}

/************************************************************/
/*　構成
/************************************************************/
.l-main {
	width: calc(100%);
	margin-bottom: 0;
	z-index: 1;
	position: static;
}
.top_wrapper {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}
#all_wrap .l-wrapper {
	width: calc(100% - 100px);
	max-width: 1200px;
	padding: 50px 0 100px;
	margin: 0 auto;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-content: stretch;
	align-items: stretch;
	column-gap: 50px;
}
#all_wrap .l-wrapper.single {
	width: calc(100% - 100px);
	max-width: 880px;
	padding: 50px 0 100px;
	margin: 0 auto;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-content: stretch;
	align-items: stretch;
	column-gap: 50px;
}
.l-wrapper-full {
	position: relative;
	width: 100%;
	padding: 0;
	margin: 0 auto;
}
.l-wrapper-cat {
	position: relative;
	width: calc(100%);
	max-width: 1200px;
	padding: 50px 0 100px;
	margin: 0 auto;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-content: stretch;
	align-items: stretch;
	column-gap: 50px;
}

.wrapper {
	width: 100%;
	padding: 50px 0 100px;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}
.wrapper.cat {
	width: 100%;
	padding: 50px 0 100px;
	margin: 0 auto;
	position: relative;
	z-index: 0;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-content: stretch;
	align-items: stretch;
	column-gap: 50px;
}

#all_wrap .l-wrapper .l-main {
	width: 100%;
	min-width: 900px;
	padding: 0;
	margin: 0 auto;
	order: 1;
}
#all_wrap .l-wrapper-full .l-main {
	width: 100%;
	min-width: 100%;
	max-width: 100%;
	padding: 0;
	margin: 0;
}
#all_wrap .l-wrapper-cat .l-main {
	width: 100%;
	padding: 0;
	margin: 0;
	order: 1;
}

.page {
	width: 100%;
}
.dividerBottom {
	margin-bottom: 0;
}
.pageContents .content,
.archiveContents .content {
	padding: 0;
	margin: 0 auto;
}
#all_wrap .l-wrapper-full .pageContents .content, #all_wrap .l-wrapper-full .archiveContents .content {
	margin: 0;
	padding: 0;
}
#all_wrap .l-wrapper-full .sitemap_content {
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin: 0 auto 100px;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .l-wrapper .l-main {
		width: 100%;
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	#all_wrap.main_page .l-wrapper {
		width: 100%;
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	#all_wrap.sub_page .l-wrapper {
		width: 100%;
		max-width: 100%;
		padding: 30px;
		margin: 0 auto;
		flex-wrap: wrap;
		grid-row-gap: 30px;
	}
	#all_wrap .l-wrapper.single {
		width: 100%;
		max-width: 100%;
		padding: 30px;
		margin: 0 auto;
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		align-content: stretch;
		align-items: stretch;
		column-gap: 0;
	}

	#all_wrap .l-wrapper .l-main {
		width: 100%;
		min-width: 100%;
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	#all_wrap .l-wrapper-full .l-main {
		width: 100%;
		padding: 0;
		margin: 0 auto;
	}

	.l-wrapper {
		width: 100%;
		padding: 0;
		margin: 0;
	}
	.l-wrapper-full {
		position:relative;
		width: 100%;
		margin: 0 auto;
		padding: 0;
	}
	.l-wrapper-full.cat {
		position:relative;
		width: 100%;
		margin: 0 auto;
		padding: 30px;
	}
	.l-wrapper-cat {
		position: relative;
		width: 100%;
		padding: 30px 0;
		margin: 0 auto;
	}

	/*トップ構成*/
	.top_wrapper {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	#topMain {
		width: calc(100%);
		padding: 0;
		margin: 0;
		overflow: hidden;
		background: #fff;
	}

	.side-banner {
		display: block;
		margin-bottom: 0 !important;
	}
	.side-contents {
		display: none;
	}

	.page {
		width: 100%;
		padding: 0;
		margin: 0;
	}
	.content {
		width: 100%;
		padding: 0;
		margin: 0;
	}
	.postContents {
		width: calc(100%);
		margin: 0 auto;
		padding: 0;
	}
	.pageContents .content,
	.archiveContents .content {
		padding: 0;
		margin: 0 auto;
	}

	/*グーグルマップ表示*/
	.l-wrapper iframe {
		width: 100%;
	}

}

#all_wrap .pager {
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin: 0 auto;
	margin-top: 50px;
}

/************************************************************/
/*　見出し　＆　パンくず
/************************************************************/

h1,h2,h3,h4,h5,h6,b,strong {
	font-family: var(--font-ttl);
	font-weight: 500;
	font-style: normal;
	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt" 1;
	font-size: 1em;
}

/*ページビジュアル*/
#pagevisual {
	width: 100%;
	height: 380px;
	padding: 0 0 55px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-content: flex-end;
	align-items: flex-end;
	background: var(--base);
}
#all_wrap #page_title {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	grid-row-gap: 30px;
	z-index: 10;
}
#all_wrap #page_title > h1 {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align: left;
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	color: var(--main);
	letter-spacing: 0.15em;
}
#all_wrap #page_title > p {
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 14px;
	line-height: 1.8em;
	padding: 0;
	margin: 0;
}
#all_wrap #page_title > p b {
	font-size: 15px;
}
#pagevisual > figure {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	z-index: 0;
}
#pagevisual > figure::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to right, #dd732a 0%, #845824 100%);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: 0.8;
}
#pagevisual > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*ページビジュアル*/
	#pagevisual {
		width: 100%;
		height: 120px;
	}
	#pagevisual::before {
		content: '';
		display: block;
		width: 70px;
		height: auto;
		aspect-ratio: 28 / 56;
		background: rgba(221, 115, 42, 0.75);
		position: absolute;
		top: 0;
		left: 0;
		z-index: 1;
		clip-path: polygon(0 0, 0% 100%, 100% 0);
	}
	#pagevisual::after {
		content: '';
		display: block;
		width: 70px;
		height: auto;
		aspect-ratio: 40 / 80;
		background: rgba(221, 115, 42, 0.75);
		position: absolute;
		bottom: 0;
		right: 0;
		z-index: 1;
		clip-path: polygon(100% 0, 0% 100%, 100% 100%);
	}
	#all_wrap #page_title {
		width: calc(100% - 60px);
		max-width: 100%;
		grid-row-gap: 7px;
		z-index: 10;
	}
	#all_wrap #page_title > em {
		font-size: 30px;
	}
	#all_wrap #page_title > h1 {
		font-size: 12px;
	}
}

/*h2*/
#all_wrap .content h2 {
	display: block;
	width: 100%;
	padding: 0;
	margin: 1.5em auto 1em;
	font-size: 20px;
	line-height: 1.4em;
	font-weight: 700;
	letter-spacing: 0.15em;
	color: var(--main);
	font-feature-settings: "palt" 1;
	font-style: normal;
	border: none;
	background: none;
	position: relative;
}
#all_wrap .content h2:first-of-type {
	margin-top: 0;
}
#all_wrap .content h2 small {
	font-size: 14px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*h2*/
	#all_wrap .content h2 {
		display: block;
		width: 100%;
		padding: 0;
		margin: 1.5em auto 1em;
		font-size: 20px;
		line-height: 1.4em;
		font-weight: 700;
		letter-spacing: 0.15em;
		color: var(--main);
		font-feature-settings: "palt" 1;
		font-style: normal;
		border: none;
		background: none;
		position: relative;
	}
	#all_wrap .content h2:first-of-type {
		margin-top: 0;
	}
}

/*h3*/
#all_wrap .content h3 {
	padding: 10px 10px 10px 15px;
	margin: 1em auto 1em;
	border: none;
	background: #fafafa;
	border-left: 5px solid var(--text);
	font-size: 20px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
	position: relative;
}
#all_wrap .content h3:first-of-type {
	margin-top: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*h3*/
	#all_wrap .content h3 {
		padding: 10px 10px 10px 10px;
		margin: 1em auto 1em;
		border: none;
		background: #fafafa;
		border-left: 5px solid var(--text);
		font-size: 15px;
		line-height: 1.4em;
		font-weight: 700;
		color: var(--text);
		position: relative;
	}
	#all_wrap .content h3:first-of-type {
		margin-top: 0;
	}
}

/*h4*/
#all_wrap .content h4 {
	display: block;
	padding: 0;
	margin: 1em auto 10px;
	position: relative;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.4em;
	position: relative;
	color: var(--text);
}
#all_wrap .content h4:first-of-type {
	margin-top: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*h4*/
	#all_wrap .content h4 {
		display: block;
		padding: 0;
		margin: 1em auto 0.5em;
		position: relative;
		font-weight: 700;
		font-size: 15px;
		line-height: 1.4em;
		position: relative;
		color: var(--text);
	}
}

/*h5*/
#all_wrap .content h5 {
	display: block;
	padding: 0;
	margin: 0.5em auto 5px;
	position: relative;
	font-weight: 700;
	font-size: 15px;
	line-height: 1.4em;
	position: relative;
	color: var(--text);
}
#all_wrap .content h5:first-of-type {
	margin-top: 0;
}

/************************************************************/
/*　ページネーション
/************************************************************/
.pager {
	width: 100%;
	list-style: none;
	padding: 0;
	margin: 0 auto;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-items: stretch;
	flex-wrap: wrap;
}
.pager > li {
	line-height: 1;
	padding: 0;
	margin: 0 5px 0 0;
	text-align: center;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: var(--font-en);
	font-weight: lighter;
	font-style: normal;
	font-feature-settings: "palt";
	color: var(--text);
	border: 1px solid var(--text);
}
.pager > li:hover {
	border: 1px solid var(--text);
	background: none;
}
.pager > li.pager__item-current {
	padding: 5px;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--text);
	border: 1px solid var(--text);
	color: #fff;
}
.pager > li.pager__item-next,
.pager > li.pager__item-prev {
	background: none;
	border-radius: 0;
	font-family: var(--font-en);
	font-weight: lighter;
	font-style: normal;
	font-feature-settings: "palt";
}
.pager > li a {
	text-align: center;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: var(--font-en);
	font-weight: lighter;
	font-style: normal;
	font-weight: normal;
	font-feature-settings: "palt";
	transition: ease 0.2s;
	line-height: 1;
	background: none;
}
.pager > li a:hover {
	background: var(--text);
	color: #fff;
	font-family: var(--font-en);
	font-weight: lighter;
	font-style: normal;
	font-weight: normal;
	font-feature-settings: "palt";
	transition: ease 0.2s;
	line-height: 1;
}

/************************************************************/
/*　パンくず
/************************************************************/
/*パンくず*/
.breadcrumb {
	width: calc(100%);
	max-width: 100%;
	padding: 25px 0;
	margin: 0 auto;
	background: var(--base);
	border: none;
	overflow-x: scroll;
	position: relative;
	z-index: 5;
	-ms-overflow-style: none;
	scrollbar-width: none;
	z-index: 10;
}
#all_wrap .breadcrumb .container {
	width: calc(100%);
	max-width: 1200px;
}
.breadcrumb::-webkit-scrollbar { 
	display:none;
}
.breadcrumb > ul {
	display: flex;
	justify-content: flex-start;
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	font-size: 10px;
	color: var(--text);
	justify-content: flex-start;
	font-family: var(--font-jp);
}
.breadcrumb a {
	font-size: 10px;
	line-height: 1;
	padding: 0;
	margin: 0;
	text-decoration: none;
	transition: var(--ease);
	color: var(--text);
	font-family: var(--font-jp);
	font-weight: 500;
	font-style: normal;
	font-feature-settings: "palt";
}
.breadcrumb a:hover {
	text-decoration: underline;
	transition: var(--ease);
	color: var(--link);
}
.icon-home a {
	font-family: var(--font-en);
}
.breadcrumb__list {
	padding: 0;
}
.breadcrumb__item {
	position: relative;
	display: table-cell;
	white-space: nowrap;
	padding-right: 15px;
	padding-left: 15px;
	font-size: 10px;
	line-height: 1;
	color: var(--text);
}
.breadcrumb__item::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -2px;
	width: 5px;
	height: 5px;
	border-top: 1px solid var(--text);
	border-right: 1px solid var(--text);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*パンくず*/
	.breadcrumb {
		width: 100%;
		max-width: 100%;
		padding: 10px 20px;
		margin: 0 auto;
		border: none;
		overflow-x: scroll;
		position: relative;
		z-index: 5;
		-ms-overflow-style: none;
		scrollbar-width: none;
		z-index: 10;
	}
	#all_wrap .breadcrumb .container {
		width: 100%;
		max-width: 100%;
	}
	.breadcrumb::-webkit-scrollbar {
		display: none;
	}
	.breadcrumb::before {
		display: none;
	}
	.breadcrumb::after {
		display: none;
	}
	.breadcrumb > ul {
		width: 100%;
		padding: 0;
		margin: 0;
		font-size: 10px;
		background: none;
		justify-content: flex-start;
	}
	.breadcrumb a {
		font-size: 10px;
		line-height: 1;
		padding: 0;
		margin: 0;
		text-decoration: none;
		transition: ease 0.2s;
	}
	.breadcrumb a:hover {
		text-decoration: none;
		transition: ease 0.2s;
		opacity: 0.8;
	}
	.breadcrumb__list {
		padding: 0;
		display: block;
	}
	.breadcrumb__item {
		position: relative;
		display: table-cell;
		white-space: nowrap;
		padding-right: 15px;
		padding-left: 15px;
		font-size: 10px;
		line-height: 1;
	}
	.breadcrumb__item::after {
		content: "";
		position: absolute;
		right: 0;
		top: 50%;
		margin-top: -2px;
		width: 5px;
		height: 5px;
	}
}


/************************************************************/
/*　フォントサイズ
/************************************************************/
.content table {
	font-size: 15px;
	color: #fff;
}


/************************************************************/
/*　ヘッダー
/************************************************************/
#header {
	width: 100%;
	height: 70px;
	padding: 0 0 0 50px;
	margin: 0 auto;
	background: rgba(255,255,255,0.4);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	display: flex;
	justify-content: flex-end;
	align-content: center;
	align-items: center;
}
/*ロゴ*/
#logo {
	width: auto;
	width: fit-content;
	padding: 0;
	margin: 0 20px 0 0;
}
#logo img {
	width: auto;
	height: 25px;
}
/*説明*/
#all_wrap #head_disc {
	width: auto;
	width: fit-content;
	font-size: 11px;
	line-height: 1.7em;
	font-weight: 500;
	color: var(--main);
	padding: 0;
	margin: 0 auto 0 0;
	white-space: nowrap;
}
/*メインナビ*/
#all_wrap #menu-header-menu {
	width: auto;
	width: fit-content;
	padding: 0;
	margin: 0 30px;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-end;
	align-content: center;
	align-items: center;
	column-gap: 30px;
}
#all_wrap #menu-header-menu > li {
	width: auto;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap #menu-header-menu > li::after {
	content: '/';
	display: inline-block;
	font-size: 14px;
	line-height: 1;
	font-weight: 500;
	color: var(--text);
	padding: 0;
	margin: 0;
	position: absolute;
	top: 50%;
	right: -18px;
	transform: translate(0,-50%);
}
#all_wrap #menu-header-menu > li:last-child::after {
	display: none;
}
#all_wrap #menu-header-menu > li a {
	font-size: 14px;
	line-height: 1;
	font-weight: 500;
	color: var(--text);
	text-decoration: none;
	transition: var(--ease);
	position: relative;
	white-space: nowrap;
}
#all_wrap #menu-header-menu > li a:hover {
	color: var(--link);
	transition: var(--ease);
}
#all_wrap #menu-header-menu > li a::after {
	content: '';
	display: block;
	width: 0;
	height: 1px;
	background: var(--link);
	position: absolute;
	bottom: -5px;
	left: 0;
	transition: var(--ease);
}
#all_wrap #menu-header-menu > li a:hover::after {
	width: 100%;
	transition: var(--ease);
}

/*ボタン*/
#all_wrap #header-btn {
	width: auto;
	width: fit-content;
	height: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-end;
	align-content: center;
	align-items: center;
	column-gap: 1px;
}
#all_wrap #header-btn > li {
	width: auto;
	height: 100%;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap #header-btn > li a {
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	width: auto;
	height: 100%;
	padding: 0 50px;
	margin: 0;
	background: var(--main);
	font-size: 16px;
	line-height: 1;
	font-weight: 500;
	color: #fff;
	text-align: center;
	transition: var(--ease);
	white-space: nowrap;
}
#all_wrap #header-btn > li a:hover {
	background: var(--link);
	transition: var(--ease);
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
}


/************************************************************/
/*　ハンバーガーメニュー
/************************************************************/
/* ドロワーメニュー */
.navicon {
	display: none;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/* ドロワーメニュー */
	.navicon {
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 100;
		width: 50px;
		height: 50px;
		min-width: 50px;
	}
	.humburger {
		width: 20px;
		height: 20px;
		padding: 0;
		margin: 0;
		background: )none;
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
		grid-row-gap: 12px;
	}
	.humburger > span {
		width: 20px;
		display: inline-block;
		transition: var(--ease);
		position: relative;
		height: 1px;
		background: #fff;
		margin: auto;
	}
	.humburger span::before {
		content: '';
		width: 100%;
		display: inline-block;
		transition: var(--ease);
		position: absolute;
		right: 0;
		height: 1px;
		background: #fff;
	}
	.humburger span::after {
		content: '';
		width: 100%;
		display: inline-block;
		transition: var(--ease);
		position: absolute;
		left: 0;
		height: 1px;
		background: #fff;
	}
	.humburger span::before {
		top: -5px;
	}
	.humburger span::after {
		top: 5px;
	}
	#navTgl:checked + .open .humburger span {
		background: #fff;
	}
	#navTgl:checked + .open .humburger span::before {
		width: 0;
		transition: var(--ease);
	}
	#navTgl:checked + .open .humburger span::after {
		width: 0;
		transition: var(--ease);
	}
	#navTgl:checked + .open .humburger {
		background: none;
	}

	#navTgl {
		display: none;
	}
	label.open,
	label.close {
		cursor: pointer;
	}
	.open {
		opacity: 1;
		z-index: 10001;
		width: 50px;
		height: 50px;
		padding: 10px 10px;
		color: #fff;
		background: var(--text);
		border-radius: 0;
		box-sizing: border-box;
		font-size: 3em;
		text-align: center;
		transition: var(--ease);
		position: relative;
		display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		column-gap: 10px;
	}
	#navTgl:checked + .open,
	.open:hover {
		background: var(--main);
		transition: var(--ease);
	}
	.close {
		pointer-events: none;
		z-index: 1;
		width: 100%;
		height: 100%;
		transition: var(--ease);
	}
	#navTgl:checked ~ .close {
		pointer-events: auto;
	}
}

/*パネル*/
#menu.menuNav {
	position: fixed;
	top: 0;
	right: 0;
	width: 500px;
	height: calc(100vh);
	background: none;
	transition: var(--ease);
	padding: 0;
	overflow: hidden;
	z-index: 99;
	transform: translateX(500px);
}
#menu.menuNav::-webkit-scrollbar {  /* Chrome, Safari 対応 */
	display:none;
}
#navTgl:checked ~ #menu.menuNav {
	width: 500px;
	transition: var(--ease);
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}

/*メニュー*/
#menuNavBox {
	width: 100%;
	height: 100%;
	padding: 75px 50px 50px;
	margin: 0;
	background-color: #000;
	overflow-y: scroll;
	-ms-overflow-style: none;    /* IE, Edge 対応 */
	scrollbar-width: none;       /* Firefox 対応 */
	position: fixed;
	top: 0;
	left: 0;
	transition: var(--ease);
	visibility: hidden;
	opacity: 0;
	display: flex;
	flex-direction: column;
	grid-row-gap: 50px;
}
#menuNavBox::-webkit-scrollbar {  /* Chrome, Safari 対応 */
	display:none;
}
#navTgl:checked ~ #menu.menuNav #menuNavBox {
	width: 100%;
	transition: var(--ease);
	visibility: visible;
	opacity: 1;
}


/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*パネル*/
	#menu.menuNav {
		position: fixed;
		top: 0;
		right: 0;
		width: 100%;
		height: 100%;
		transform: translateX(100%);
	}
	#menu.menuNav::-webkit-scrollbar {  /* Chrome, Safari 対応 */
		display:none;
	}
	#navTgl:checked ~ #menu.menuNav {
		width: 100%;
		transition: var(--ease);
		opacity: 1;
		visibility: visible;
		transform: translateX(0);
	}

	/*メニュー*/
	#menuNavBox {
		width: 100%;
		height: 100%;
		padding: 90px 30px 70px;
		margin: 0;
		background: rgba(0,0,0, 0.7);
		backdrop-filter: blur(5px);
		overflow-y: scroll;
		-ms-overflow-style: none;    /* IE, Edge 対応 */
		scrollbar-width: none;       /* Firefox 対応 */
		position: fixed;
		top: 0;
		left: 0;
		transition: var(--ease);
		visibility: hidden;
		opacity: 0;
		display: flex;
		flex-direction: column;
		grid-row-gap: 30px;
	}
	#menuNavBox::-webkit-scrollbar {  /* Chrome, Safari 対応 */
		display:none;
	}
	#navTgl:checked ~ #menu.menuNav #menuNavBox {
		width: 100%;
		transition: var(--ease);
		visibility: visible;
		opacity: 1;
	}
}

#all_wrap #menu-panel-menu {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	border-top: 1px solid rgba(255,255,255,0.5);
}
#all_wrap #menu-panel-menu > li {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap #menu-panel-menu > li > a {
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	padding: 15px 10px 15px 25px;
	margin: 0;
	background: none;
	border-bottom: 1px solid rgba(255,255,255,0.5);
	position: relative;
	font-size: 15px;
	line-height: 1.2em;
	color: #fff;
	text-decoration: none;
	transition: var(--ease);
}
#all_wrap #menu-panel-menu > li > a::before {
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translate(0,-50%) rotate(45deg);
}
#all_wrap #menu-panel-menu > li > a:hover {
	opacity: 0.8;
	color: #fff;
	text-decoration: none;
	transition: var(--ease);
}
/*-段落ちメニュー*/
#all_wrap #menu-panel-menu .sub-menu {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
}
#all_wrap #menu-panel-menu .sub-menu > li {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap #menu-panel-menu .sub-menu > li > a {
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	padding: 10px 10px 10px 45px;
	margin: 0;
	background: none;
	border-bottom: 1px solid rgba(255,255,255,0.5);
	position: relative;
	font-size: 14px;
	line-height: 1.2em;
	color: #fff;
	text-decoration: none;
	transition: var(--ease);
}
#all_wrap #menu-panel-menu .sub-menu > li > a::before {
	content: '';
	display: block;
	width: 5px;
	height: 1px;
	border: none;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 30px;
	transform: translate(0,-50%);
}
#all_wrap #menu-panel-menu .sub-menu > li > a:hover {
	opacity: 0.8;
	font-size: 14px;
	line-height: 1.2em;
	color: #fff;
	text-decoration: none;
	transition: var(--ease);
}

/************************************************************/
/*　メインビジュアル
/************************************************************/
#mainVisual {
	width: 100%;
	padding: 220px 0 150px;
	margin: 0 auto;
	background: var(--base);
	position: relative;
}
#mainVisual > h2 {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto 30px;
	border: none;
	background: none;
	position: relative;
	font-size: 35px;
	line-height: 1.4em;
	font-weight: 500;
	color: var(--text);
	text-align: left;
	letter-spacing: 0.1em;
}
.mv_txt {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto 100px;
	position: relative;
	text-align: right;
}
#all_wrap .mv_txt > p {
	width: 500px;
	padding: 0;
	margin: 0 0 0 auto;
	position: relative;
	font-size: 16px;
	line-height: 2;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .mv_txt > p:first-of-type {
	margin-bottom: 20px;
}
/*無限ループ*/
#all_wrap .infinite-slider .swiper-wrapper {
	transition-timing-function: linear;
}
#all_wrap .infinite-slider .swiper-slide {
	height: 300px !important; /* 高さを指定 */
	width: auto !important;
	aspect-ratio: 7 / 5;
	overflow: hidden;
	text-align: center;
}
#all_wrap .infinite-slider .swiper-slide::before {
	content: '';
	display: block;
	padding-top: 71.43%;
}
#all_wrap .infinite-slider .swiper-slide img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
}

/************************************************************/
/*　サイドバー
/************************************************************/

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
}

/************************************************************/
/*　フッター
/************************************************************/
.l-footer {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
.footer_wrap {
	width: 100%;
	max-width: 1200px;
	padding: 100px 50px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	column-gap: 50px;
	position: relative;
	border-top: 1px solid #bbb;
}
.footer_left {
	width: calc((100% - 50px) / 2);
	padding: 0;
	margin: 0;
	position: relative;
}
.footer_left::before {
	content: '';
	display: block;
	width: 340px;
	height: 340px;
	aspect-ratio: 1 / 1;
	background-image: url('https://test-relief.coresv.com/wp-content/uploads/logomark_gray.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	position: absolute;
	top: 0;
	left: -20px;
	z-index: -1;
}
.footer_right {
	width: calc((100% - 50px) / 2);
	padding: 0;
	margin: 0;
	position: relative;
}
.footer_btm {
	width: 100%;
	max-width: 1200px;
	padding: 50px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 50px;
	position: relative;
}
.l-footer .copyright {
	width: 100%;
	padding: 30px;
	margin: 0 auto;
	background: var(--main);
	position: relative;
	font-family: var(--font-en);
	font-size: 16px;
	line-height: 1;
	font-style: normal;
	font-weight: 500;
	color: #fff;
	text-align: center;
}
/*メニュー*/
#all_wrap #menu-footer-menu {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 30px;
}
#all_wrap #menu-footer-menu > li {
	width: calc((100% - 30px) / 2);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap #menu-footer-menu > li a {
	font-size: 16px;
	line-height: 1.2em;
	font-weight: 500;
	color: var(--text);
	text-decoration: none;
	transition: var(--ease);
}
#all_wrap #menu-footer-menu > li a:hover {
	color: var(--link);
	text-decoration: none;
	transition: var(--ease);
}
/*SNS*/
#all_wrap #footer-sns {
	width: 50%;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 30px;
}
#all_wrap #footer-sns > li {
	width: 30px;
	height: auto;
	position: relative;
}
#all_wrap #footer-sns > li img {
	width: 100%;
	height: auto;
}
/*リンク*/
#all_wrap #footer-link {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 30px;
}
#all_wrap #footer-link > li {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap #footer-link > li a {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: flex-start;
	grid-row-gap: 15px;
	padding: 20px;
	margin: 0;
	background: var(--base);
	border-radius: 10px;
	transition: var(--ease);
}
#all_wrap #footer-link > li a > p {
	width: 100%;
	padding: 0 10px 15px;
	margin: 0;
	position: relative;
	border-bottom: 1px solid #7a7a7a;
	font-size: 16px;
	line-height: 1.2em;
	color: var(--main);
	transition: var(--ease);
}
#all_wrap #footer-link > li a > p::after {
	content: '';
	display: block;
	width: 15px;
	height: 15px;
	aspect-ratio: 1/1;
	background-image: url('https://test-relief.coresv.com/wp-content/uploads/check.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	position: absolute;
	top: 2px;
	right: 10px;
	transition: var(--ease);
}
#all_wrap #footer-link > li a > span {
	display: block;
	width: 100%;
	padding: 0 10px;
	margin: 0;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 14px;
	line-height: 1.5em;
	order: 1;
	transition: var(--ease);
}
#all_wrap #footer-link > li a:hover {
	background: var(--main);
	transition: var(--ease);
}
#all_wrap #footer-link > li a:hover > p {
	border-bottom: 1px solid #fff;
	color: #fff;
	transition: var(--ease);
}
#all_wrap #footer-link > li a:hover > p::after {
	background-image: url('https://test-relief.coresv.com/wp-content/uploads/check_base.svg');
	transition: var(--ease);
}
#all_wrap #footer-link > li a:hover > span {
	color: #fff;
	transition: var(--ease);
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
}

/************************************************************/
/*　アーカイブ　リスト
/************************************************************/

/************************************************************/
/*　リスト
/************************************************************/
.content ul {
	list-style: none;
	padding: 0;
	margin: 5px auto 20px;
}
.content ul li {
	width: 100%;
	padding: 0 0 0 15px;
	margin: 0 0 5px;
	list-style: none;
	border: none;
	background: none;
	position: relative;
	line-height: 1.5em;
}
.content ul li::before {
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	padding: 0;
	margin: 0;
	background: var(--text);
	position: absolute;
	top: 0.7em;
	left: 0;
	transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
	border-radius: 50%;
}

.content ol {
	list-style: none;
	padding: 0;
	margin: 10px auto 10px;
}
.content ol li {
	padding: 0 0 0 30px;
	margin: 0 0 5px;
	list-style: none;
	border: none;
	background: none;
	position: relative;
	line-height: 1.8em;
}
.content ol li::before {
	font-family: var(--font-en);
	counter-increment: count;
	content: counter(count);
	background: #fff;
	border: 1px solid var(--text);
	color: var(--text);
	width: 2.2rem;
	height: 2.2rem;
	line-height: 2rem;
	font-size: 1rem;
	font-weight: lighter;
	text-align: center;
	border-radius: 50%;
	position: absolute;
	top: 1.6em;
	left: 0;
	transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
	border-radius: 50%;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){

	.l-wrapper-full .pageContents .content ul.harf li,
	.l-wrapper-full .postContents .content ul.harf li {
		width: 100%;
		margin: 0 auto 10px
	}
	.l-wrapper-full .pageContents .content ul.harf li:last-child,
	.l-wrapper-full .postContents .content ul.harf li:last-child {
		margin-bottom: 0;
	}
}


/************************************************************/
/*　テーブル
/************************************************************/

/*表*/
#all_wrap table {
	overflow: hidden;
	table-layout: fixed;
	border: none;
	background: none;
	padding: 0;
	width: 100%;
	max-width: 100%;
	margin: 0 auto 10px;
	border-radius: 0;
	background: #fff;
	border: 10px solid #e3e3e3;
}
#all_wrap table th {
	display: table-cell;
	font-style: normal;
	font-feature-settings: "palt";
	border: none;
	border-bottom: 1px solid #e3e3e3;
	text-align: center;
	vertical-align: middle;
	font-family: var(--font-jp);
	font-size: 16px;
	font-weight: 900;
	background: none;
	color: var(--text);
	width: 30%;
	padding: 20px;
	margin: 0;
}
#all_wrap table td {
	display: table-cell;
	border: none;
	background: none;
	vertical-align: inherit;
	border-bottom: none;
	padding: 20px;
	margin: 0;
	font-size: 15px;
	font-weight: 400;
	border-bottom: 1px solid #e3e3e3;
}
#all_wrap table td.ttl {
	display: table-cell;
	border: none;
	background: #fafafa;
	vertical-align: inherit;
	border-bottom: none;
	padding: 10px;
	margin: 0;
	font-size: 12px;
	font-weight: 400;
	border-bottom: 1px solid var(--text);
}
#all_wrap .content table td > p:last-of-type {
	margin-bottom: 0;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*表*/
	#all_wrap table {
		overflow: hidden;
		table-layout: fixed;
		border: none;
		background: #fff;
		padding: 0;
		width: 100%;
		max-width: 100%;
		margin: 0 auto 20px;
		border: none;
	}
	#all_wrap table th {
		font-style: normal;
		font-feature-settings: "palt";
		border: none;
		border-bottom: none;
		background: rgba(0,0,0,0.1);
		vertical-align: inherit;
		padding: 10px 15px;
		margin: 0;
		width: 100%;
		min-width: 100%;
		font-size: 14px;
		display: block;
		text-align: left;
	}
	#all_wrap table td {
		border: none;
		background: #fff;
		vertical-align: inherit;
		border-bottom: none;
		padding: 10px 15px;
		margin: 0;
		border-left: 1px solid rgba(0,0,0,0.1);
		border-right: 1px solid rgba(0,0,0,0.1);
		border-bottom: 1px solid rgba(0,0,0,0.1);
		font-size: 14px;
		width: 100%;
		min-width: 100%;
		display: block;
	}
}

/************************************************************/
/*　お問い合わせ&テーブル
/************************************************************/

/*新フォーム*/
#all_wrap .content .contactform,
#all_wrap .contactform {
	width: 100%;
	max-width: 800px;
	padding: 50px;
	margin: 0 auto 40px;
	background: #fff;
	position: relative;
	list-style: none;
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	grid-row-gap: 30px;
	border-radius: 20px;
}
#all_wrap .content .contactform > li {
	padding: 0 0 30px;
	margin: 0;
	position: relative;
	list-style: none;
	border-bottom: 1px dashed #e3e3e3;
}
#all_wrap .content .contactform > li.center {
	text-align: center;
}
#all_wrap .content .contactform > li:last-child {
	border: none;
	padding: 0;
}
#all_wrap .content .contactform > li::before,
#all_wrap .content .contactform > li::after {
	display: none;
}
#all_wrap .contactform > li p {
	margin: 0 auto;
}
#all_wrap .contactform > li h3 {
	font-size: 16px;
	line-height: 1;
	font-weight: 600;
	color: var(--text);
	padding: 0;
	margin: 0 auto 15px;
	border: none;
	background: none;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 10px;
}
#all_wrap .contactform > li h3 .att {
	display: inline;
	padding: 3px 7px;
	margin: 0;
	font-size: 10px;
	line-height: 1;
	color: #fff;
	background: #e03131;
	border-radius: 3px;
}
#all_wrap .contactform > li h3::before,
#all_wrap .contactform > li h3::after {
	display: none;
}
#all_wrap .contactform > li input {
	border-radius: 0;
	border: 1px solid #ccc;
	box-shadow: none;
	font-size: 15px;
	padding: 15px;
}
#all_wrap .contactform > li input[type="radio"] {
	width: 12px;
}
#all_wrap .contactform > li.add span:first-of-type input {
	margin: 0 0 10px;
}
#all_wrap .contactform > li input[type="file"] {
	border-radius: 0;
	border: none;
	box-shadow: none;
	font-size: 15px;
	padding: 0;
}
#all_wrap .contactform > li input.wpcf7-text {
	width: 100%;
	padding: 15px;
	margin: 0;
	border-radius: 5px;
	border: 1px solid #ccc;
	box-shadow: none;
	font-family: var(--font-jp);
	font-weight: 500;
	font-style: normal;
	font-feature-settings: "palt";
	font-size: 15px;
	line-height: 1;
	background: #fafafa;
	outline: none;
}
#all_wrap .contactform > li input.wpcf7-text.w50 {
	width: 50%;
}
#all_wrap .contactform > li input.wpcf7-text.w25 {
	width: 25%;
}
/*ラジオボタン*/
#all_wrap .contactform > li .wpcf7-radio {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 10px;
}
#all_wrap .contactform > li .wpcf7-list-item {
	display: inline-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	column-gap: 5px;
	padding: 0;
	margin: 0;
	cursor: pointer;
}
/*チェックボックス*/
#all_wrap .wpcf7-checkbox {
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 10px;
	position: relative;
}
#all_wrap .wpcf7-checkbox span {
	cursor: pointer;
}
/*テキストエリア*/
#all_wrap .contactform > li textarea {
	width: 100%;
	padding: 15px;
	margin: 0;
	border-radius: 5px;
	border: 1px solid #ccc;
	box-shadow: none;
	font-family: var(--font-jp);
	font-weight: 500;
	font-style: normal;
	font-feature-settings: "palt";
	font-size: 15px;
	line-height: 2;
	background: #fafafa;
	outline: none;
}
#all_wrap .txt_cent {
	text-align: center;
}
#all_wrap .txt_cent input[type="submit"] {
	-webkit-appearance: none;
}
#all_wrap .txt_cent input[type="submit"] {
	display: inline-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	column-gap: 10px;
	padding: 15px 50px;
	margin: 0;
	background: var(--main);
	border-radius: 50px;
	font-family: var(--font-jp);
	font-size: 15px;
	line-height: 1.4;
	font-weight: 600;
	color: #fff;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	z-index: 0;
	transition: var(--ease);
	cursor: pointer;
}
#all_wrap .txt_cent input[type="submit"]::after {
	content: '';
	display: block;
	width: 7px;
	height: 7px;
	background: none;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
	transition: var(--ease);
}
#all_wrap .txt_cent input[type="submit"]:hover {
	filter: brightness(1.1);
	transition: var(--ease);
}

#all_wrap .wpcf7 .ajax-loader {
	display: none;
}
.wpcf7-spinner {
	display: none;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.contactform_area {
		width: 100%;
		padding: 20px;
		margin: 0 auto;
		background: #fafafa;
		position: relative;
	}
	/*新フォーム*/
	#all_wrap .content .contactform,
	#all_wrap .contactform {
		width: calc(100%);
		max-width: 100%;
		padding: 30px 20px;
		margin: 0 auto 20px;
		background: #fff;
		border-radius: 20px;
		grid-row-gap: 20px;
	}
	#all_wrap .contactform > li h3 {
		font-size: 15px;
		margin: 0 auto 10px;
	}
	#all_wrap .contactform > li input {
		font-size: 14px;
		padding: 10px;
	}
	#all_wrap .contactform > li.add span:first-of-type input {
		margin: 0 0 10px;
	}
	#all_wrap .contactform > li input[type="file"] {
		font-size: 14px;
	}
	#all_wrap .contactform > li input.wpcf7-text {
		width: 100%;
		padding: 10px;
		font-size: 14px;
	}
	#all_wrap .contactform > li input.wpcf7-text.w50 {
		width: 100%;
	}
	#all_wrap .contactform > li input.wpcf7-text.w25 {
		width: 50%;
	}
	/*ラジオボタン*/
	#all_wrap .contactform > li .wpcf7-radio {
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		column-gap: 15px;
		grid-row-gap: 5px;
	}
	#all_wrap .contactform > li .wpcf7-list-item {
		display: inline-flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		flex-wrap: nowrap;
		column-gap: 5px;
		padding: 0;
		margin: 0;
		cursor: pointer;
	}
	/*チェックボックス*/
	#all_wrap .wpcf7-checkbox {
		column-gap: 20px;
		grid-row-gap: 5px;
		position: relative;
	}
	#all_wrap .wpcf7-checkbox span {
		cursor: pointer;
	}
	/*テキストエリア*/
	#all_wrap .contactform > li textarea {
		width: 100%;
		padding: 10px;
		font-size: 14px;
	}
	#all_wrap .txt_cent {
		text-align: center;
	}

	#all_wrap .wpcf7 .ajax-loader {
		display: none;
	}
	.wpcf7-spinner {
		display: none;
	}
}

/*表削除*/
#all_wrap .pageContents .content .tablenone,
#all_wrap .postContents .content .tablenone {
	padding: 0;
	margin: 0;
	border-top: none;
	border-bottom: none;
	border-left: none;
	border-right: none;
	border-radius: none;
	background: none;
	color: var(--text);
}
#all_wrap .pageContents .content .tablenone tbody,
#all_wrap .pageContents .content .tablenone th,
#all_wrap .pageContents .content .tablenone td,
#all_wrap .pageContents .content .tablenone tr,
#all_wrap .pageContents .content .tablenone tr:nth-child(odd) td,
#all_wrap .pageContents .content .tablenone tr:nth-child(even) td {
	padding: 0;
	margin: 0;
	border-top: none;
	border-bottom: none;
	border-left: none;
	border-right: none;
	border-radius: none;
	background: none;
	color: var(--text);
}
#all_wrap .postContents .content .tablenone tbody,
#all_wrap .postContents .content .tablenone th,
#all_wrap .postContents .content .tablenone td,
#all_wrap .postContents .content .tablenone tr,
#all_wrap .postContents .content .tablenone tr:nth-child(odd) td,
#all_wrap .postContents .content .tablenone tr:nth-child(even) td {
	padding: 0;
	margin: 0;
	border-top: none;
	border-bottom: none;
	border-left: none;
	border-right: none;
	border-radius: none;
	background: none;
	color: var(--text);
}


/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){

}


/************************************************************/
/*　Google Map
/************************************************************/
.google-maps {
	position: relative;
	padding-bottom: 30%;
	height: 0;
	overflow: hidden;
}
.google-maps iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}
.access_info p {
	font-size: 1.1em;
	line-height: 2em;
	margin-bottom: 20px;
	text-align: center;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.access_info p {
		width: 90%;
		padding: 0;
		margin: 0 auto;
		font-size: 1.1em;
		line-height: 2em;
		margin-bottom: 20px;
		text-align: center;
	}
	.top_gmap iframe {
		height: 200px;
	}
}



/************************************************************/
/*　全体
/************************************************************/


/************************************************************/
/*　サイトマップ
/************************************************************/
.sitemap ul {
	width: 100%;
	max-width: 980px;
	padding: 0;
	margin: 0 auto;
}
.sitemap ul li {
	width: 100%;
	padding: 0;
	margin: 0;
	background: none;
	list-style: none;
}
.sitemap ul li a {
	display: block;
	padding: 15px 15px 15px 30px;
	margin: 0;
	font-family: var(--font-jp);
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	position: relative;
	transition: var(--ease);
	color: var(--text);
	border-bottom: 1px solid rgba(0,0,0,0.2);
}
.sitemap ul li a:hover {
	transition: var(--ease);
	opacity: 0.8;
}
.sitemap ul li a::before {
	content: "";
	position: absolute;
	left: 10px;
	top: 50%;
	width: 5px;
	height: 5px;
	border-top: 1px solid rgba(0,0,0,0.2);
	border-right: 1px solid rgba(0,0,0,0.2);
	transform: translate(0,-50%) rotate(45deg);
	-webkit-transform: translate(0,-50%) rotate(45deg);
	transition: ease 0.2s;
}
.sitemap ul li a > span {
	display: none;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.sitemap ul {
		width: calc(100%);
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	.sitemap ul .sub-menu {
		padding: 0 0 0 10px;
	}
}

/*スマホ改行
------------------------------------------------------------*/

.pc { display:block !important; }
.sp { display:none !important; }
@media screen and (max-width: 768px){   
	.pc { display:none !important; }
	.sp { display:block !important; }
}


/************************************************************/
/*　本文ギャラリー
/************************************************************/

/*プラグイン*/
#swipebox-overlay {
	background: rgba(0, 0, 0, 0.8);
}
#swipebox-slider .slide img,
#swipebox-slider .slide .swipebox-video-container,
#swipebox-slider .slide .swipebox-inline-container {
	display: inline-block;
	max-height: 90%;
	max-width: 90%;
	margin: 0;
	padding: 0;
	width: auto;
	height: auto;
	vertical-align: middle;
}
/*ギャラリー*/
#all_wrap .content .gallery {
	width: 100%;
	max-width: 980px;
	padding: 0;
	margin: 0 auto 30px;
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 20px;
	grid-row-gap: 20px;
}
#all_wrap .content .gallery::after {
	content: '';
	display: block;
	width: calc(100% / 3 - 13.4px);
}
#all_wrap .content .gallery dl {
	width: calc(100% / 3 - 13.4px);
	padding: 0;
	margin: 0;
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	grid-row-gap: 5px;
}
#all_wrap .content .gallery dt {
	padding: 0;
	margin: 0;
	text-align: center;
}
#all_wrap .content .gallery dd {
	padding: 0;
	margin: 0;
	text-align: center;
}
#all_wrap .content .gallery dl img {
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0;
}
/*閉じる*/
.tos-close {
	height: 40px;
	top: 10px;
	left: 10px;
	right: unset;
}
.tos-close span:after,
.tos-close span:before {
	width: 10px;
	height: 10px;
	margin-top: -4px;
	margin-left: 0;
	margin-right: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .content .gallery {
		width: 100%;
		max-width: 100%;
		margin: 0 auto 20px;
		column-gap: 20px;
		grid-row-gap: 20px;
	}
	#all_wrap .content .gallery::after {
		content: '';
		display: none;
	}
	#all_wrap .content .gallery dl {
		width: calc(100% / 2 - 10px);
		grid-row-gap: 5px;
	}
}

/************************************************************/
/*　Youtube
/************************************************************/
#all_wrap .l-wrapper .youtubeBox {
	width:860px;              /*横幅いっぱいにwidthを指定*/
	padding-bottom: 56.25%;  /*高さをpaddingで指定(16:9)*/
	height:0px;              /*高さはpaddingで指定するためheightは0に*/
	position: relative;
	margin: 0 auto;
}
#all_wrap .l-wrapper .youtubeBox > iframe {
	position: static;
	top: auto;
	left: auto;
	width: 860px;
	height: 500px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .l-wrapper .youtubeBox {
		width:100%;              /*横幅いっぱいにwidthを指定*/
		padding-bottom: 56.25%;  /*高さをpaddingで指定(16:9)*/
		height:0px;              /*高さはpaddingで指定するためheightは0に*/
		position: relative;
	}
	#all_wrap .l-wrapper .youtubeBox > iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
}


/************************************************************/
/*　アーカイブ
/************************************************************/
#all_wrap .archiveList {
	width: calc(100%);
	max-width: 980px;
	padding: 0;
	margin: 0 auto;
	list-style: none;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#all_wrap .archiveList::after {
	content: '';
	display: block;
	width: 31%;
}
#all_wrap .archiveList > li {
	width: 31%;
	padding: 0;
	margin: 0 0 40px;
}
#all_wrap .archiveList > li::before,
#all_wrap .archiveList > li::after {
	display: none;
}
#all_wrap .archiveList > li figure {
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	text-align: center;
	overflow: hidden;
	border-radius: 5px;
}
#all_wrap .archiveList > li figure::before {
	content: '';
	display: block;
	padding-top: 56.25%;
}
#all_wrap .archiveList > li figure img {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .archiveList > li .date {
	display: inline-block;
	font-family: var(--font-en);
	font-size: 12px;
	font-weight: lighter;
	line-height: 1em;
	color: #c8c8c8;
	font-style: normal;
	white-space: nowrap;
	padding: 0;
	margin: 0 0 5px;
}
#all_wrap .archiveList > li > h3,
#all_wrap .content .archiveList > li > h3 {
	padding: 0;
	margin: 0 auto 5px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.4em;
	font-style: normal;
	border: none;
	background: none;
}
#all_wrap .archiveList > li > p {
	font-size: 14px;
	line-height: 1.7em;
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .archiveList {
		width: calc(100%);
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
		list-style: none;
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	#all_wrap .archiveList::after {
		content: '';
		display: none;
	}
	#all_wrap .archiveList > li {
		width: 100%;
		padding: 0;
		margin: 0 auto 20px;
	}
	#all_wrap .archiveList > li::before,
	#all_wrap .archiveList > li::after {
		display: none;
	}
	#all_wrap .archiveList > li figure {
		width: 100%;
		padding: 0;
		margin: 0 auto 10px;
		position: relative;
		text-align: center;
		overflow: hidden;
		border-radius: 5px;
	}
	#all_wrap .archiveList > li figure::before {
		content: '';
		display: block;
		padding-top: 56.25%;
	}
	#all_wrap .archiveList > li figure img {
		width: 100%;
		height: 100%;
		padding: 0;
		margin: 0;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		-webkit-transform: translate(-50%,-50%);
		object-fit: cover;
	}
	#all_wrap .archiveList > li .date {
		display: inline-block;
		font-family: var(--font-en);
		font-size: 12px;
		font-weight: lighter;
		line-height: 1em;
		color: #c8c8c8;
		font-style: normal;
		white-space: nowrap;
		padding: 0;
		margin: 0 0 5px;
	}
	#all_wrap .archiveList > li > h3,
	#all_wrap .content .archiveList > li > h3 {
		padding: 0;
		margin: 0 auto 5px;
		font-size: 15px;
		font-weight: 700;
		line-height: 1.4em;
		font-style: normal;
		border: none;
		background: none;
	}
	#all_wrap .archiveList > li > p {
		font-size: 14px;
		line-height: 1.7em;
		padding: 0;
		margin: 0;
		text-align: justify;
		text-justify: inter-ideograph;
	}
}

/************************************************************/
/*　記事詳細
/************************************************************/
.singleContent {
	margin-bottom: 100px;
}


.tags {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 5px;
	grid-row-gap: 5px;
}
.tags > span {
	display: inline-block;
	padding: 0;
	margin: 0;
	font-size: 10px;
	line-height: 1;
	color: #8c8c8c;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.singleContent {
		margin-bottom: 50px;
	}
	.singleHeader {
		width: 100%;
		padding: 0 0 15px;
		margin: 0 auto 20px;
		position: relative;
		display: flex;
		flex-direction: column;
		grid-row-gap: 10px;
	}
}

/*==============================*/
/*目次*/
/*==============================*/
#all_wrap .content .toc {
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
}
#all_wrap .content .toc-title {
	display: inline-block;
	padding: 5px 10px;
	margin: 0;
	background: var(--main);
	font-size: 14px;
	line-height: 1;
	font-weight: 500;
	color: #fff;
	position: relative;
	top: 15px;
	left: 0;
	z-index: 2;
}
#all_wrap .content .toc .toc-list {
	padding: 30px;
	margin: 0;
	position: relative;
	list-style: none;
	background: #f4f4f4;
}
#all_wrap .content .toc .toc-list li ul {
	margin: 10px 0 !important;
	padding: 0 0 0 1.2em;
}
#all_wrap .content .toc .toc-list li {
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .content .toc .toc-list li a {
	display: inline-block;
	padding: 0 0 0 2em;
	position: relative;
	text-decoration: none;
	font-family: var(--font-jp);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.6em;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .content .toc .toc-list li ul li a {
	display: inline-block;
	padding: 0 0 0 2em;
	position: relative;
	text-decoration: none;
	font-family: var(--font-jp);
	font-size: 14px;
	font-weight: lighter;
	line-height: 1.6em;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .content .toc .toc-list li a:hover {
	text-decoration: underline;
	opacity: 0.8;
}
#all_wrap .content .toc .toc-list li a strong,
#all_wrap .content .toc .toc-list li a span {
	font-family: var(--font-jp);
	font-weight: lighter;
	font-size: 14px !important;
}
#all_wrap .content .contentstable-number {
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}
#all_wrap .content .toc .toc-list > li > a > .contentstable-number::after {
	content: '.';
}
#all_wrap .content .toc-toggle > a {
	display: inline-block;
	font-size: 14px;
	line-height: 1;
	color: #fff;
	text-decoration: none;
}
/*タグ*/
.post-tag {
	margin-top: 5px;
}
.post-tag,
.post-tag a {
	font-size: 14px;
	text-decoration: none;
}
.post-tag a:hover {
	text-decoration: underline;
	color: #0c61a8;
	text-decoration: underline;
}
@media only screen and (max-width: 768px){
	#all_wrap .content .toc .toc-list {
		padding: 20px;
		margin: 0;
		position: relative;
		list-style: none;
		background: #f4f4f4;
	}
	/*タグ*/
	.post-tag,
	.post-tag a {
		font-size: 12px;
	}
	.toc .toc-list {
		padding: 25px 20px 20px;
	}
}

/*==============================*/
/*記事詳細（関連記事）*/
/*==============================*/
.relatedPost {
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
}
.relatedPost > header {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 5px;
	padding: 12px;
	margin: 0 auto;
	background: var(--text);
	position: relative;
	z-index: 0;
}
.relatedPost > header > em {
	font-family: var(--font-en);
	font-size: 18px;
	line-height: 1;
	text-transform: uppercase;
	font-weight: 700;
	font-style: normal;
	color: #fff;
	text-decoration: none;
	white-space: nowrap;
}
#all_wrap .relatedPost > header > h2 {
	font-size: 10px;
	line-height: 1;
	font-weight: 400;
	color: #fff;
	background: none;
	border: none;
	padding: 0;
	margin: 0;
}

/* 記事一覧*/
#all_wrap .relatedList {
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
}
#all_wrap .relatedList > li {
	padding: 20px 0;
	margin: 0 auto;
	border-bottom: 1px dotted #999;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	column-gap: 20px;
	position: relative;
}
.relatedList > li > a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
.relatedList > li figure {
	width: 150px;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.relatedList > li figure::before {
	content: '';
	display: block;
	padding-top: 75%;
}
.relatedList > li figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .relatedList_info {
	width: calc(100% - 20px - 150px);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 5px;
}
#all_wrap .relatedList_info > h3 {
	padding: 0;
	margin: 0;
	position: relative;
	font-size: 15px;
	line-height: 1.4em;
	font-weight: 500;
	color: #19244c;
	background: none;
	border: none;
	transition: all 0.3s ease;
}
.relatedList_info > .date {
	font-size: 12px;
	line-height: 1;
	color: #999;
}
#all_wrap .relatedList > li:hover .relatedList_info > h3 {
	text-decoration: underline;
	transition: all 0.3s ease;
	color: var(--main);
	background: none;
	border: none;
}
@media screen and (max-width: 768px) {
	.relatedPost {
		margin: 0 auto;
	}
	#all_wrap .relatedList > li {
		padding: 10px 0;
		column-gap: 10px;
	}
	.relatedList > li figure {
		width: 80px;
	}
	#all_wrap .relatedList_info {
		width: calc(100% - 10px - 80px);
	}
	#all_wrap .relatedList_info > h3 {
		font-size: 14px;
	}
	.relatedList_info > .date {
		font-size: 11px;
	}
	#all_wrap .relatedList_info > h3 {
		font-size: 13px;
	}
	.relatedList_info > .date {
		font-size: 10px;
	}
}

/************************************************************/
/*　ブログ　詳細＆サイドバー 
/************************************************************/

/*ランキング*/
#all_wrap .sidRankList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	list-style: none;
	border: none;
	position: relative;
	display: flex;
	flex-direction: column;
}
#all_wrap .sidRankList > li {
	width: 100%;
	padding: 15px 0;
	margin: 0 auto;
	border-bottom: 1px solid #E5E5E5;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	flex-wrap: nowrap;
	column-gap: 15px;
}
.sidRankList > li > figure {
	width: 80px;
	padding: 0;
	margin: 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.sidRankList > li > figure:before {
	content: "";
	display: block;
	padding: 50%;
}
.sidRankList > li > figure a > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	padding: 0;
	margin: 0;
	transition: var(--ease);
}
.sidRankList > li:hover > figure a > img {
	transform: translate(-50%, -50%) scale(1.05);
	-webkit-transform: translate(-50%, -50%) scale(1.05);
	-ms-transform: translate(-50%, -50%) scale(1.05);
	transform-origin: center;
	transition: var(--ease);
}
.sidRankList > li > figure > .rank {
	display: inline-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	width: 20px;
	height: 20px;
	aspect-ratio: 1/1;
	background: var(--main);
	font-size: 0.8rem;
	line-height: 1;
	color: #fff;
	font-weight: 400;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
.sidRankList > li > .sidRankInfo {
	width: calc(100% - 15px - 80px);
	padding: 0;
	margin: 0;
}
#all_wrap .sidRankList > li > .sidRankInfo > h3 {
	padding: 0;
	margin: 0;
	height: 100%;
	color: var(--text);
	font-size: 12px;
	line-height: 1.4em;
	font-weight: 400;
	border: none;
	background: none;
}
#all_wrap .sidRankList > li > .sidRankInfo > h3 a {
	width: 100%;
	height: 100%;
	display: -webkit-flex;
	display: flex;
	align-content: center;
	align-items: center;
	color: var(--text);
	font-family: var(--font-jp);
	font-size: 12px;
	line-height: 1.4em;
	font-weight: 400;
	text-decoration: none;
	text-align: justify;
	text-align: -webkit-justify;
	transition: var(--ease);
}
#all_wrap .sidRankList > li > .sidRankInfo > h3 a:hover {
	color: var(--main);
	transition: var(--ease);
}


/*==============================*/
/*記事詳細（関連記事）*/
/*==============================*/
#all_wrap .editor {
	padding: 0;
	margin: 50px auto 50px;
	position: relative;
}
#all_wrap .editor > header {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 5px;
	padding: 12px;
	margin: 0 auto;
	background: var(--main);
	position: relative;
	z-index: 0;
}
#all_wrap .editor > header > em {
	font-family: var(--font-en);
	font-size: 18px;
	line-height: 1;
	text-transform: uppercase;
	font-weight: 700;
	font-style: normal;
	color: #fff;
	text-decoration: none;
}
#all_wrap .editor > header > h2 {
	font-size: 10px;
	line-height: 1;
	font-weight: 400;
	color: #fff;
	padding: 0;
	margin: 0;
}
#all_wrap .editorBox {
	width: 100%;
	padding: 20px;
	margin: 0;
	background: #fff;
	border: 5px solid var(--main);
	border-top: none;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	column-gap: 20px;
}
#all_wrap .editorBox > figure {
	width: 150px;
	padding: 0;
	margin: 0;
	position: relative;
	text-align: center;
	overflow: hidden;
	border-radius: 50%;
}
#all_wrap .editorBox > figure::before {
	content: '';
	display: block;
	padding: 50%;
}
#all_wrap .editorBox > figure img {
	width: 100%;
	max-width: unset;
	height: 100%;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	object-fit: cover
}
#all_wrap .editorBox_info {
	width: calc(100% - 150px - 20px);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	align-content: center;
	align-items: center;
	grid-row-gap: 5px;
}
#all_wrap .editorBox_info > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	font-size: 16px;
	line-height: 1.2em;
	font-weight: bold;
	border: none;
	background: none;
}
#all_wrap .editorBox_info > h3 > small {
	font-size: 12px;
	font-weight: lighter;
}
#all_wrap .editorBox_info > p {
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 12px;
	line-height: 1.7em;
}

@media screen and (max-width: 768px) {
	#all_wrap .editorBox > figure {
		width: 100px;
	}
	#all_wrap .editorBox_info {
		width: calc(100% - 100px - 20px);
	}
	#all_wrap .editorBox_info > h3 {
		font-size: 15px;
	}
	#all_wrap .editorBox {
		width: 100%;
		padding: 15px;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 10px;
	}
	#all_wrap .editorBox > figure {
		width: 150px;
		padding: 0;
		margin: 0 auto;
	}
	#all_wrap .editorBox_info {
		width: calc(100%);
	}
	#all_wrap .editorBox_info > h3 {
		width: 100%;
		font-size: 15px;
		text-align: center;
	}
}


/*前後の記事*/
#all_wrap .prevNext {
	width: 100%;
	padding: 0;
	margin: 0 auto;
}
#all_wrap .prevNext__pop {
	background-color: var(--text);
}
#all_wrap .eyecatch {
	background: var(--text);
}
#all_wrap .heading-secondary {
	color: var(--text);
}
#all_wrap .prevNext__text {
	padding: 0;
	margin: 0;
	color: var(--text);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*前後の記事*/
	#all_wrap .prevNext {
		width: 90%;
		padding: 0;
		margin: 0 auto;
	}
}

/*プロフィール*/
#all_wrap .profile {
	border: none;
	margin-top: 0;
	padding: 20px;
	background: var(--text);
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
	align-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
}
#all_wrap .profile__text {
	background: none;
	font-size: 15px;
	padding: 0 0 0 13px;
	margin-bottom: 15px;
	margin-top: 40px;
	border-left: 2px solid #d3c8a8;
	font-style: italic;
	text-align: left;
	color: #d3c8a8;
}
#all_wrap .profile__contents {
	width: 80%;
	padding: 0;
	margin: 0;
}
#all_wrap .profile__name {
	color: #d3c8a8;
	font-size: 19px;
	line-height: 1.4em;
	font-style: italic;
	padding: 0 0 10px;
	margin: 0 auto 10px;
	border-bottom: 1px solid #d3c8a8;
}
#all_wrap .profile__author {
	width: 15%;
	text-align: left;
	padding: 0;
	margin: 0 20px 0 0;
}
#all_wrap .profile__author img {
	width: 100%;
	height: auto;
	margin: 0;
}
#all_wrap .profile__list {
	display: none;
}
#all_wrap .profile__description {
	padding: 0;
	margin: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*プロフィール*/
	#all_wrap .profile {
		border: none;
		margin-top: 0;
		padding: 20px;
		background: var(--text);
		display: -webkit-flex;
		display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	}
	#all_wrap .profile__text {
		background: none;
		font-size: 15px;
		padding: 0 0 0 13px;
		margin-bottom: 15px;
		margin-top: 40px;
		border-left: 2px solid #d3c8a8;
		font-style: italic;
		text-align: left;
		color: #d3c8a8;
	}
	#all_wrap .profile__contents {
		width: 80%;
		padding: 0;
		margin: 0;
	}
	#all_wrap .profile__name {
		color: #d3c8a8;
		font-size: 19px;
		line-height: 1.4em;
		font-style: italic;
		padding: 0 0 10px;
		margin: 0 auto 10px;
		border-bottom: 1px solid #d3c8a8;
	}
	#all_wrap .profile__author {
		width: 15%;
		text-align: left;
		padding: 0;
		margin: 0 0 0 0;
	}
	#all_wrap .profile__author img {
		width: 100%;
		height: auto;
		margin: 0;
	}
	#all_wrap .profile__list {
		display: none;
	}
	#all_wrap .profile__description {
		padding: 0;
		margin: 0;
	}
}

/************************************************************/
/*　共通
/************************************************************/

/*mt*/
.mt10 { margin-top: 10px !important; }
.mt15 { margin-top: 15px !important; }
.mt20 { margin-top: 20px !important; }
.mt30 { margin-top: 30px !important; }
.mt40 { margin-top: 40px !important; }
.mt50 { margin-top: 50px !important; }
.mt100 { margin-top: 100px !important; }
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*mt*/
	.mt10 { margin-top: 10px !important; }
	.mt15 { margin-top: 10px !important; }
	.mt20 { margin-top: 10px !important; }
	.mt30 { margin-top: 15px !important; }
	.mt40 { margin-top: 20px !important; }
	.mt50 { margin-top: 25px !important; }
	.mt100 { margin-top: 50px !important; }
}

/*リスト*/
.content ul {
	padding: 0;
	margin: 0;
	position: relative;
	list-style: disc;
	list-style-position: inside;
}
.content ul > li {
	padding: 0;
	margin: 0;
	margin-bottom: 5px;
}
.content ul > li:last-child {
	margin-bottom: 0;
}
.content ul > li::before,
.content ul > li::after {
	display: none;
}


/************************************************************/
/*　トップページ メディア
/************************************************************/
#topMedia {
	width: 100%;
	padding: 150px 0;
	margin: 0 auto;
	background: #fff;
	position: relative;
}
#topMedia .contHead {
	width: calc(100% - 100px);
	max-width: 1400px;
}
.topMedia_wrap {
	width: calc(100% - 100px);
	max-width: 1400px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	column-gap: 50px;
}
.topMedia_left {
	width: calc(50% - 25px);
	padding: 0;
	margin: 0;
	position: relative;
}
.topMedia_right {
	width: calc(50% - 25px);
	padding: 0;
	margin: 0;
	position: relative;
}

/*メディアリスト左*/
#all_wrap .mediaList {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	column-gap: 30px;
}
#all_wrap .mediaList > li {
	width: calc((100% - 30px) / 2);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
#all_wrap .mediaList > li figure {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	text-align: center;
	overflow: hidden;
}
#all_wrap .mediaList > li figure::before {
	content: '';
	display: block;
	padding-top: 65%;
}
#all_wrap .mediaList > li figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
	transform-origin: center;
	transition: var(--ease);
}
#all_wrap .mediaList > li figure:hover img {
	transform-origin: center;
	transform: translate(-50%,-50%) scale(1.05);
	transition: all 2s ease;
}
.mediaList_info {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
	flex-grow: 1;
}
#all_wrap .mediaList_info > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	font-size: 14px;
	line-height: 1.4em;
	font-weight: 500;
	color: var(--text);
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .mediaList_info > h3 a {
	font-size: 15px;
	line-height: 1.4em;
	font-weight: 500;
	color: var(--text);
	text-decoration: none;
	transition: var(--ease);
}
#all_wrap .mediaList_info > h3 a:hover {
	color: var(--link);
	transition: var(--ease);
}
.mediaList_data {
	width: 100%;
	padding: 0;
	margin: auto auto 0;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 20px;
}
.mediaList_data .tags {
	width: auto;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 5px;
	grid-row-gap: 5px;
}
.mediaList_data .tags > span {
	display: inline-block;
	padding: 0;
	margin: 0;
}
.mediaList_data .tags > span a {
	display: inline-block;
	padding: 5px 10px;
	margin: 0;
	background: var(--main);
	border-radius: 16px;
	font-size: 10px;
	line-height: 1;
	color: #fff;
	font-weight: 500;
	text-decoration: none;
	transition: var(--ease);
}
.mediaList_data .tags > span a:hover {
	background: var(--link);
	transition: var(--ease);
}
.mediaList_data .date {
	display: inline-block;
	padding: 0;
	margin: 0;
	font-family: var(--font-num);
	font-size: 12px;
	line-height: 1;
	color: var(--text);
}

/*メディアリスト右*/
#all_wrap .newsList {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	border-top: 1px solid #878787;
}
#all_wrap .newsList > li {
	width: 100%;
	padding: 20px;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: space-between;
	column-gap: 15px;
	border-bottom: 1px solid #878787;
}
#all_wrap .newsList > li figure {
	width: 170px;
	padding: 0;
	margin: 0;
	position: relative;
	text-align: center;
	overflow: hidden;
}
#all_wrap .newsList > li figure::before {
	content: '';
	display: block;
	padding-top: 65%;
}
#all_wrap .newsList > li figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
	transform-origin: center;
	transition: var(--ease);
}
#all_wrap .newsList > li figure:hover img {
	transform-origin: center;
	transform: translate(-50%,-50%) scale(1.05);
	transition: all 2s ease;
}
.newsList_info {
	width: calc(100% - 15px - 170px);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
#all_wrap .newsList_info > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	font-size: 15px;
	line-height: 1.4em;
	font-weight: 500;
	color: var(--text);
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .newsList_info > h3 a {
	font-size: 15px;
	line-height: 1.4em;
	font-weight: 500;
	color: var(--text);
	text-decoration: none;
	transition: var(--ease);
}
#all_wrap .newsList_info > h3 a:hover {
	color: var(--link);
	transition: var(--ease);
}
.newsList_data {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 20px;
}
.newsList_data .tags {
	width: auto;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 5px;
	grid-row-gap: 5px;
}
.newsList_data .tags > span {
	display: inline-block;
	padding: 0;
	margin: 0;
}
.newsList_data .tags > span a {
	display: inline-block;
	padding: 5px 10px;
	margin: 0;
	background: var(--main);
	border-radius: 16px;
	font-size: 10px;
	line-height: 1;
	color: #fff;
	font-weight: 500;
	text-decoration: none;
	transition: var(--ease);
}
.newsList_data .tags > span a:hover {
	background: var(--link);
	transition: var(--ease);
}
.newsList_data .date {
	display: inline-block;
	padding: 0;
	margin: 0;
	font-family: var(--font-num);
	font-size: 12px;
	line-height: 1;
	color: var(--text);
}
/*More*/
.more_arrow {
	text-align: right;
	margin-top: 20px;
}
.more_arrow > a {
	display: inline-flex;
	justify-content: flex-end;
	align-items: center;
	column-gap: 15px;
	font-size: 16px;
	line-height: 1;
	color: var(--text);
	position: relative;
	transition: var(--ease);
}
.more_arrow > a::after {
	content: '';
	display: block;
	width: 30px;
	height: auto;
	aspect-ratio: 30 / 12;
	background-image: url('https://test-relief.coresv.com/wp-content/uploads/more_arrow.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
}
.more_arrow > a:hover {
	opacity: 0.8;
	transition: var(--ease);
}


/************************************************************/
/*　トップページ リリーフポートについて
/************************************************************/
#topAbout {
	width: 100%;
	padding: 150px 0 200px;
	margin: 0 auto;
	background: var(--main);
	position: relative;
}
#all_wrap #topAbout .contHead {
	margin: 0 auto 80px;
}
.topAbout_information {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto 80px;
	position: relative;
}
#all_wrap .topAbout_information > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	border: none;
	background: none;
	font-size: 20px;
	line-height: 1.4em;
	font-weight: 500;
	color: #fff;
	text-align: center;
}
#all_wrap .topAbout_information > p {
	padding: 0;
	margin: 0 auto;
	text-align: center;
	color: #fff;
}
/*リスト*/
#all_wrap .aboutList {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	column-gap: 45px;
	grid-row-gap: 45px;
}
#all_wrap .aboutList > li {
	width: calc((100% - 90px) / 3);
	padding: 30px 35px;
	margin: 0;
	position: relative;
	border-radius: 10px;
	background: #fff;
	display: flex;
	flex-direction: column;
	grid-row-gap: 25px;
	transition: var(--ease);
}
#all_wrap .aboutList > li:hover {
	background: var(--base2);
	transition: var(--ease);
}
#all_wrap .aboutList > li > header {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 10px;
}
#all_wrap .aboutList > li > a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
}
#all_wrap .aboutList > li > header > h3 {
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	font-size: 16px;
	line-height: 1.4em;
	font-weight: 500;
	color: var(--main);
	text-align: left;
}
#all_wrap .aboutList > li > header > span a {
	display: inline-flex;
	justify-content: flex-end;
	align-items: center;
	column-gap: 5px;
	font-size: 14px;
	line-height: 1;
	font-weight: 500;
	color: var(--main);
	transition: var(--ease);
}
#all_wrap .aboutList > li > header > span a::after {
	content: '';
	display: block;
	width: 14px;
	height: 14px;
	background-image: url('https://test-relief.coresv.com/wp-content/uploads/check.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
}
#all_wrap .aboutList > li > header > span a:hover {
	opacity: 0.8;
	transition: var(--ease);
}
#all_wrap .aboutList > li > figure {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	text-align: center;
	overflow: hidden;
}
#all_wrap .aboutList > li > figure::before {
	content: '';
	display: block;
	padding-top: 75%;
}
#all_wrap .aboutList > li > figure img {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .aboutList > li > p {
	padding: 0;
	margin: 0 auto;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}


/************************************************************/
/*　トップページ 料金
/************************************************************/
#topPrice {
	width: 100%;
	padding: 150px 0;
	margin: 0 auto;
	background-image: url('https://test-relief.coresv.com/wp-content/uploads/topPrice_bg.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
}
.topPrice_area {
	width: 100%;
	max-width: 1000px;
	padding: 50px 50px 80px;
	margin: 0 auto;
	position: relative;
	background: var(--base);
	border-radius: 40px;
}
#all_wrap .topPrice_area > h2 {
	width: 100%;
	padding: 0 0 15px;
	margin: 0 auto 40px;
	border: none;
	background: none;
	border-bottom: 1px solid var(--main);
	font-size: 20px;
	line-height: 1.4em;
	font-weight: 500;
	color: var(--main);
	text-align: center;
}
#all_wrap .topPrice_area > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto 40px;
	border: none;
	background: none;
	font-size: 26px;
	line-height: 1.4em;
	font-weight: 500;
	color: var(--main);
	text-align: center;
}
/*価格*/
.topPrice_wrap {
	width: 100%;
	padding: 0;
	margin: 0 auto 100px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 30px;
}
/* - 通常価格*/
.normal_price {
	width: auto;
	width: fit-content;
}
.normal_price dt {
	font-size: 13px;
	line-height: 1;
	font-weight: 500;
	color: var(--text);
	margin-bottom: 5px;
}
.normal_price dd {
	padding: 0;
	margin: 0;
}
#all_wrap .normal_price dd > p {
	display: flex;
	justify-content: center;
	align-items: baseline;
	padding: 0;
	margin: 0;
	font-size: 20px;
	line-height: 1;
	font-weight: 500;
	color: var(--text);
}
#all_wrap .normal_price dd > p strong {
	font-family: var(--font-num);
	font-size: 35px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
	letter-spacing: 0.05em;
}
/* - 矢印*/
.topPrice_wrap .arrow {
	display: block;
	width: 26px;
	height: 26px;
	aspect-ratio: 1/1;
	background-image: url('https://test-relief.coresv.com/wp-content/uploads/arrow.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}
/* - 初回価格*/
.special_price {
	width: auto;
	width: fit-content;
	display: flex;
	justify-content: center;
	column-gap: 15px;
	align-items: center;
	position: relative;
}
.special_price dt {
	font-size: 16px;
	line-height: 1.4em;
	font-weight: 500;
	color: var(--text);
	padding: 10px 15px;
	margin: 0;
	background: none;
	border: 1px solid var(--text);
	text-align: center;
}
.special_price dd {
	padding: 0;
	margin: 0;
}
.special_price dd span {
	display: block;
	padding: 0;
	margin: 0;
	font-size: 15px;
	line-height: 1;
	font-weight: 500;
	margin-bottom: 5px;
}
#all_wrap .special_price dd > p {
	display: flex;
	justify-content: center;
	align-items: baseline;
	padding: 0;
	margin: 0;
	font-size: 22px;
	line-height: 1;
	font-weight: 500;
	color: var(--text);
}
#all_wrap .special_price dd > p strong {
	font-family: var(--font-num);
	font-size: 50px;
	line-height: 1;
	font-weight: 700;
	color: var(--main);
	letter-spacing: 0.05em;
}
#all_wrap .special_price dd > em {
	display: block;
	position: absolute;
	bottom: -30px;
	left: 0;
	font-size: 10px;
	line-height: 1;
	font-weight: 500;
	white-space: nowrap;
	font-style: normal;
}


/************************************************************/
/*　トップページ 料金
/************************************************************/
#topFlow {
	width: 100%;
	padding: 150px 0;
	margin: 0 auto;
	background: #fff;
	position: relative;
}
/*リスト*/
#all_wrap .flowList {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 80px;
	grid-row-gap: 80px;
}
#all_wrap .flowList > li {
	width: calc((100% - 80px) / 2);
	padding: 30px 35px;
	margin: 0;
	background: var(--base2);
	border-radius: 10px;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	column-gap: 20px;
	grid-row-gap: 30px;
}
#all_wrap .flowList > li:nth-child(3n + 1) {
	background: var(--base);
}
#all_wrap .flowList > li:nth-child(3n + 2) {
	background: var(--gray);
}
#all_wrap .flowList > li:nth-child(3n) {
	background: var(--main);
}
#all_wrap .flowList > li > h3 {
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 30px;
	border: none;
	background: none;
	position: relative;
	font-size: 16px;
	line-height: 1em;
	font-weight: 500;
	width: 100%;
	padding: 0;
	margin: 0;
}
#all_wrap .flowList > li > h3 > em {
	display: inline-block;
	font-family: var(--font-num);
	font-size: 20px;
	line-height: 1em;
	font-style: normal;
	font-weight: 500;
	position: relative;
}
#all_wrap .flowList > li > h3 > em::after {
	content: '';
	display: block;
	width: 1px;
	height: 15px;
	background: var(--text);
	position: absolute;
	top: 55%;
	right: -15px;
	transform: translate(0,-50%);
}
#all_wrap .flowList > li > figure {
	width: 200px;
	min-width: 200px;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}
#all_wrap .flowList > li > figure::before {
	content: '';
	display: block;
	padding-top: 75%;
}
#all_wrap .flowList > li > figure img {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .flowList > li > p {
	width: calc(100% - 20px - 200px);
	padding: 0;
	margin: 0 auto;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 14px;
	line-height: 1.7em;
}
#all_wrap .flowList > li:nth-child(3n) > h3,
#all_wrap .flowList > li:nth-child(3n) > h3 > em,
#all_wrap .flowList > li:nth-child(3n) > p {
	color: #fff;
}
#all_wrap .flowList > li:nth-child(3n) > h3 > em::after {
	background: #fff;
}


/************************************************************/
/*　トップページ 患者さまの声
/************************************************************/
#topReview {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	background: #fff;
	position: relative;
}
.topReview_wrap {
	width: 100%;
	padding: 80px 0 130px;
	background: var(--base);
	position: relative;
}
/*リスト*/
#all_wrap .topReviewList {
	width: 90%;
	padding: 0 80px 80px 0;
	margin: 0 0 0 auto;
	overflow-x: scroll;
	display: flex;
	justify-content: flex-start;
	column-gap: 40px;
	overflow-x: auto;
	scrollbar-width: none;
}
#all_wrap .topReviewList > li {
	width: 480px;
	min-width: 480px;
	padding: 60px 40px;
	margin: 0;
	background: #fff;
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	grid-row-gap: 20px;
}
#all_wrap .topReviewList > li > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 10px;
	font-size: 16px;
	line-height: 1.2em;
	font-weight: 500;
	color: var(--text);
}
#all_wrap .topReviewList > li > h2 > p {
	padding: 0;
	margin: 0;
	position: relative;
	font-size: 16px;
	line-height: 1.2em;
	font-weight: 500;
	color: var(--text);
}
#all_wrap .topReviewList > li > h2 > span {
	display: inline-block;
	padding: 5px 15px;
	margin: 0;
	background: var(--base);
	font-size: 14px;
	line-height: 1;
	font-weight: 500;
	color: var(--main);
	border-radius: 20px;
}
#all_wrap .topReviewList > li > .name {
	width: 100%;
	padding: 0;
	margin: 0 auto 15px;
	text-align: right;
	font-size: 14px;
	line-height: 1;
	font-weight: 500;
}
#all_wrap .topReviewList > li > .before_after {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	column-gap: 20px;
	grid-row-gap: 20px;
	position: relative;
}
#all_wrap .topReviewList > li > .before_after dt {
	width: 70px;
	padding: 0;
	margin: 0 0 0 auto;
	text-align: left;
	font-family: var(--font-num);
	font-size: 18px;
	line-height: 1;
	font-weight: 500;
}
#all_wrap .topReviewList > li > .before_after dd {
	width: 180px;
	padding: 0;
	margin: 0 auto 0 0;
}
#all_wrap .topReviewList > li > .before_after dd figure {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	text-align: center;
	overflow: hidden;
}
#all_wrap .topReviewList > li > .before_after dd figure::before {
	content: '';
	display: block;
	padding-top: 65%;
}
#all_wrap .topReviewList > li > .before_after dd figure img {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .topReviewList > li > p {
	padding: 0;
	margin: 15px auto 0;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 13px;
	line-height: 1.7em;
}

/*スクロールバー*/
.topReviewList::-webkit-scrollbar {
	display: none;                /* Chrome, Safari 対応 */
}
.custom-scrollbar {
	position: relative;
	height: 5px;
	width: calc(90% - 80px);        /* ★ 幅90%にする */
	margin: 0 80px 30px auto;     /* 中央寄せ */
	background: #B5B5B5;
	border-radius: 5px;
	overflow: hidden;
}
.scroll-thumb {
	position: absolute;
	height: 100%;
	width: calc(100% / 4); /*投稿数分 / 2*/
	background: #5D5D5D;
	border-radius: 5px;
	left: 0;
	transition: left 0.1s ease-out;
}
/*ボタン*/
.topReview_btn {
	width: 100%;
	padding: 0 80px;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	column-gap: 30px;
}
.topReview_btn > button {
	display: block;
	padding: 0;
	margin: 0;
	background: none;
	border: none;
	height: 40px;
	width: 85px;
	aspect-ratio: 85 / 40;
	transition: var(--ease);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	cursor: pointer;
}
.topReview_btn > button#scrollLeft {
	background-image: url('https://test-relief.coresv.com/wp-content/uploads/arrow-left.svg');
}
.topReview_btn > button#scrollRight {
	background-image: url('https://test-relief.coresv.com/wp-content/uploads/arrow-right.svg');
}
.topReview_btn > button#scrollLeft:hover {
	background-image: url('https://test-relief.coresv.com/wp-content/uploads/arrow-left_on.svg');
}
.topReview_btn > button#scrollRight:hover {
	background-image: url('https://test-relief.coresv.com/wp-content/uploads/arrow-right_on.svg');
}

/************************************************************/
/*　トップページ アクセス
/************************************************************/
#topAccess {
	width: 100%;
	padding: 150px 0;
	margin: 0 auto;
	background: #fff;
	position: relative;
}
#all_wrap #topAccess .contHead {
	margin-bottom: 80px;
}
.topAccess_wrap {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: center;
	column-gap: 50px;
}
.topAccess_wrap > figure {
	width: 400px;
	min-width: 400px;
	padding: 0;
	margin: 0;
	position: relative;
	aspect-ratio: 7 / 5;
}
.topAccess_wrap > figure::before {
	content: '';
	display: block;
	padding-top: 71.43%;
}
.topAccess_wrap > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.topAccess_info {
	width: calc(100% - 50px - 400px);
	padding: 0;
	margin: 0;
	position: relative;
}
.topAccess_info > header {
	width: 100%;
	padding: 15px 0;
	margin: 0 auto 20px;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 20px;
	border-bottom: 1px solid #d9d9d9;
}
#all_wrap .topAccess_info > header > h2 {
	width: auto;
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	position: relative;
	font-size: 20px;
	line-height: 1;
	font-weight: 500;
	color: var(--main);
	text-align: left;
}
.topAccess_info > header > a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	min-width: 200px;
	max-height: 35px;
	column-gap: 10px;
	padding: 10px 20px;
	margin: 0;
	font-size: 15px;
	line-height: 1;
	font-weight: 500;
	letter-spacing: 0.1em;
	color: #fff;
	background: var(--main);
	border-radius: 35px;
	transition: var(--ease);
}
.topAccess_info > header > a.tel {
	font-family: var(--font-num);
	font-size: 15px;
	margin: 0 0 0 auto;
}
.topAccess_info > header > a.tel::before {
	content: '';
	display: block;
	width: 15px;
	height: auto;
	aspect-ratio: 20 / 21;
	background-image: url('https://test-relief.coresv.com/wp-content/uploads/icon_tel_w.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}
.topAccess_info > header > a.line::before {
	content: '';
	display: block;
	width: 15px;
	height: auto;
	aspect-ratio: 20 / 20;
	background-image: url('https://test-relief.coresv.com/wp-content/uploads/icon_line_w.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}
.topAccess_info > header > a:hover {
	background: var(--link);
	transition: var(--ease);
}
.topAccess_info > .flexbox {
	display: flex;
	justify-content: flex-start;
	column-gap: 50px;
}
.topAccess_info > .flexbox > div {
	width: fit-content;
	min-width: 250px;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .topAccess_info > .flexbox > div > h3 {
	display: inline-block;
	padding: 5px 10px 7px;
	margin: 10px auto 10px;
	position: relative;
	font-size: 15px;
	line-height: 1;
	font-weight: 500;
	color: var(--main);
	background: var(--base);
}
#all_wrap .topAccess_info > .flexbox > div > p {
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 15px;
	line-height: 1.7em;
}
#all_wrap .topAccess_info > .flexbox > div > p small {
	color: #878787;
	line-height: 1.2em;
}

/************************************************************/
/*　トップページ 採用情報
/************************************************************/
#topRecruit {
	width: 100%;
	padding: 150px 0;
	margin: 0 auto;
	background: var(--main);
	position: relative;
}
.recruit_head {
	width: 100%;
	padding: 0;
	margin: 0 auto 100px;
	position: relative;
}
.recruit_head > i {
	display: block;
	width: 80px;
	height: auto;
	padding: 0;
	margin: 0 auto 50px;
}
.recruit_head > i img {
	width: 100%;
	height: auto;
}
#all_wrap .recruit_head > p {
	padding: 0;
	margin: 0 auto;
	text-align: center;
	font-size: 18px;
	line-height: 1.7em;
	color: #fff;
}
#all_wrap .topRecruitList {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto 100px;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 50px;
	grid-row-gap: 50px;
}
#all_wrap .topRecruitList > li {
	width: calc((100% - 100px) / 3);
	padding: 50px 20px;
	margin: 0;
	background: #fff;
	border-radius: 10px;
	position: relative;
}
#all_wrap .topRecruitList > li > p {
	padding: 0;
	margin: 0 auto;
	font-size: 15px;
	text-align: center;
}

/************************************************************/
/*　トップページ コンセプト
/************************************************************/
#topConcept {
	width: 100%;
	padding: 150px 0;
	margin: 0 auto;
	background: #fff;
	position: relative;
}
.topConcept_wrap {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 80px;
}
.topConcept_wrap > figure {
	width: 650px;
	padding: 0;
	margin: 0;
	position: relative;
}
.topConcept_wrap > figure img {
	width: 100%;
	height: auto;
}
.topConcept_info {
	width: calc(100% - 50px -600px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .topConcept_info > h2 {
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	border: none;
	background: none;
	font-family: var(--font-en);
	font-size: 36px;
	line-height: 1.2em;
	font-weight: 500;
	color: var(--main);
}
#all_wrap .topConcept_info > p {
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .topConcept_info > p:last-of-type {
	margin-bottom: 0;
}


/************************************************************/
/*　メディア スライダー
/************************************************************/
#mediaSlide {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	position: relative;
}
.media_slider {
	position: relative;
	max-width: 1100px !important;
	padding: 30px 0 0 !important;
}
#all_wrap #mediaSlide .media_slider::before {
	content: '';
	display: block;
	width: 240px;
	height: 240px;
	aspect-ratio: 1/1;
	background-image: url('https://test-relief.coresv.com/wp-content/uploads/circle.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	position: absolute;
	top: 0;
	right: 20px;
	z-index: -1;
	animation: spin 30s linear infinite;
}
@keyframes spin {
	0%   { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
#all_wrap #mediaSlide .swiper-wrapper {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap #mediaSlide .swiper-slide  {
	width: 100%;
	padding: 0 0 50px;
	margin: 0;
	position: relative;
}
#all_wrap #mediaSlide .swiper-slide figure {
	width: 700px;
	min-width: 700px;
	padding: 0;
	margin: 0;
	position: relative;
	aspect-ratio: 7 / 5;
}
#all_wrap #mediaSlide .swiper-slide figure::before {
	content: '';
	display: block;
	padding-top: 71.43%;
}
#all_wrap #mediaSlide .swiper-slide figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .media_slider_info {
	width: 525px;
	max-width: 525px;
	padding: 30px;
	margin: 0;
	background: var(--base);
	position: absolute;
	bottom: 0;
	right: 0;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	grid-row-gap: 25px;
	box-sizing: border-box;
	z-index: 2;
	transition: var(--ease);
}
#all_wrap #mediaSlide .swiper-slide:hover .media_slider_info {
	filter: brightness(0.95);
	transition: var(--ease);
}
#all_wrap .media_slider_info > a {
	display: block;
	width: 100%;
	height: 100%;
	background: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
#all_wrap .media_slider_info > header {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 10px;
}
#all_wrap .media_slider_info > header .date {
	display: inline-block;
	font-family: var(--font-num);
	font-size: 12px;
	line-height: 1;
	color: var(--text);
	white-space: nowrap;
	padding: 0px;
	margin: 0px;
	order: 1;
}
#all_wrap .media_slider_info > header::before {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background: #7a7a7a;
	order: 2;
}
#all_wrap .media_slider_info > header em {
	display: inline-block;
	font-family: var(--font-en);
	font-size: 14px;
	line-height: 1;
	color: var(--text);
	font-style: normal;
	white-space: nowrap;
	padding: 0px;
	margin: 0px;
	order: 3;
}
#all_wrap .media_slider_info > h3 {
	width: 100%;
	padding: 0 0 0 25px;
	margin: 0;
	position: relative;
	border: none;
	background: none;
	font-size: 16px;
	line-height: 1.4em;
	font-weight: 500;
	color: var(--text);
}
#all_wrap .media_slider_info > h3::before {
	content: '';
	display: block;
	width: 16px;
	height: 16px;
	background-image: url('https://test-relief.coresv.com/wp-content/uploads/check.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	position: absolute;
	top: 3px;
	left: 0;
}
#all_wrap .media_slider_tags {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 10px;
	grid-row-gap: 10px;
}
#all_wrap .media_slider_tags > span {
	display: inline-block;
}
#all_wrap .media_slider_tags > span a {
	display: inline-block;
	font-size: 12px;
	line-height: 1;
	color: var(--main);
	font-weight: 500;
	padding: 5px 10px;
	margin: 0px;
	background: #fff;
	border-radius: 16px;
	text-decoration: none;
	transition: var(--ease);
}
/* - ページネーション*/
#all_wrap #mediaSlide .swiper-pagination {
	position: absolute;
	bottom: 0;
	left: 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 10px;
}
#all_wrap #mediaSlide .swiper-pagination span {
	border: 1px solid #878787;
	padding: 0;
	margin: 0;
}
#all_wrap #mediaSlide .swiper-pagination .swiper-pagination-bullet-active {
	background: #878787;
	padding: 0;
	margin: 0;
}

/************************************************************/
/*　メディア 切り替え一覧
/************************************************************/
/*ボタン*/
#category-buttons {
	width: 100%;
	max-width: 1200px;
	padding: 50px 0;
	margin: 0 auto 100px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 40px;
	border-top: 1px solid #878787;
	border-bottom: 1px solid #878787;
}
#all_wrap #category-buttons > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	text-align: center;
	font-family: var(--font-en);
	font-size: 30px;
	line-height: 1;
	font-weight: 500;
	color: var(--main);
	letter-spacing: 0.08em;
}
.cat-btn {
	display: inline-block;
	padding: 0;
	margin: 0;
	font-size: 16px;
	line-height: 1;
	font-weight: 500;
	color: #878787;
	cursor: pointer;
	background: none;
	border: none;
	position: relative;
	transition: var(--ease);
}
.cat-btn:hover,
.cat-btn.active {
	color: var(--main);
	transition: var(--ease);
}
.cat-btn::before {
	content: '';
	display: block;
	width: 0;
	height: 1px;
	position: absolute;
	bottom: -10px;
	left: 0;
	background: var(--main);
	transition: var(--ease);
}
.cat-btn:hover::before,
.cat-btn.active::before{
	width: 100%;
	transition: var(--ease);
}

/*リスト*/
#all_wrap .media-list {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto 100px;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 40px;
	grid-row-gap: 50px;
}
#all_wrap .media-list::after {
	content: '';
	display: block;
	width: calc((100% - 80px) / 3);
}
#all_wrap .media-list > li {
	width: calc((100% - 80px) / 3);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 20px;
}
#all_wrap .media-list > li figure {
	width: 100%;
	aspect-ratio: 7 / 5;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	aspect-ratio: 7 / 5;
}
#all_wrap .media-list > li figure::before {
	content: '';
	display: block;
	padding-top: 71.43%;
}
#all_wrap .media-list > li figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
	transition: all 2s ease;
	transform-origin: center;
}
#all_wrap .media-list > li figure:hover img {
	transform-origin: center;
	transform: translate(-50%,-50%) scale(1.05);
	transition: all 2s ease;
}
#all_wrap .media-list-info {
	width: 100%;
	padding: 0;
	margin: 0;
	background: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 17px;
	box-sizing: border-box;
	z-index: 2;
	transition: var(--ease);
}
#all_wrap .media-list-info > header {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 10px;
}
#all_wrap .media-list-info > header .date {
	display: inline-block;
	font-family: var(--font-num);
	font-size: 12px;
	line-height: 1;
	color: var(--text);
	white-space: nowrap;
	padding: 0px;
	margin: 0px;
	order: 1;
}
#all_wrap .media-list-info > header::before {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background: #878787;
	order: 2;
}
#all_wrap .media-list-info > header em {
	display: inline-block;
	font-family: var(--font-en);
	font-size: 14px;
	line-height: 1;
	color: var(--text);
	font-style: normal;
	white-space: nowrap;
	padding: 0px;
	margin: 0px;
	order: 3;
}
#all_wrap .media-list-info > h3 {
	width: 100%;
	padding: 0 0 0 25px;
	margin: 0;
	position: relative;
	border: none;
	background: none;
	font-size: 15px;
	line-height: 1.4em;
	font-weight: 500;
	color: var(--text);
}
#all_wrap .media-list-info > h3::before {
	content: '';
	display: block;
	width: 14px;
	height: 14px;
	background-image: url('https://test-relief.coresv.com/wp-content/uploads/check.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	position: absolute;
	top: 3px;
	left: 0;
}
#all_wrap .media-list-info > h3 a {
	font-size: 15px;
	line-height: 1.4em;
	font-weight: 500;
	color: var(--text);
	transition: var(--ease);
}
#all_wrap .media-list-info > h3 a:hover {
	color: var(--main);
	transition: var(--ease);
}
#all_wrap .media-list-info .tags {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 10px;
	grid-row-gap: 10px;
}
#all_wrap .media-list-info .tags > span {
	display: inline-block;
}
#all_wrap .media-list-info .tags > span a {
	display: inline-block;
	font-size: 12px;
	line-height: 1;
	color: var(--main);
	font-weight: 500;
	padding: 5px 10px;
	margin: 0px;
	background: var(--base);
	border-radius: 16px;
	text-decoration: none;
	transition: var(--ease);
}
#all_wrap .media-list-info .tags > span a:hover {
	color: #fff;
	background: var(--main);
	transition: var(--ease);
}
/*ページネーション*/
#all_wrap .pagination {
	width: 100%;
	max-width: 740px;
	padding: 0 150px;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 20px;
}
#all_wrap .pagination > .page-numbers {
	display: inline-block;
	min-width: unset;
	padding: 0;
	margin: 0;
	background: none;
	border: none;
	position: relative;
	font-family: var(--font-num);
	font-size: 16px;
	line-height: 1;
	font-weight: 500;
	color: #bbb;
}
#all_wrap .pagination > .page-numbers.current {
	color: var(--main);
}
#all_wrap .pagination > .page-numbers.next {
	display: block;
	width: 85px;
	height: 23px;
	background-image: url('https://test-relief.coresv.com/wp-content/uploads/next.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	text-indent: -9999px;
	margin: 0;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%);
}
#all_wrap .pagination > .page-numbers.prev {
	display: block;
	width: 85px;
	height: 23px;
	background-image: url('https://test-relief.coresv.com/wp-content/uploads/prev.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	text-indent: -9999px;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0,-50%);
}
#all_wrap .pagination > .page-numbers.next::before,
#all_wrap .pagination > .page-numbers.next::after,
#all_wrap .pagination > .page-numbers.prev::before,
#all_wrap .pagination > .page-numbers.prev::after {
	display: none;
}
/*タグ*/
#category-tags {
	width: 100%;
	max-width: 1200px;
	padding: 50px 0;
	margin: 0 auto 100px;
	position: relative;
	border-top: 1px solid #878787;
	border-bottom: 1px solid #878787;
}
#all_wrap #category-tags > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto 40px;
	position: relative;
	text-align: center;
	font-family: var(--font-en);
	font-size: 30px;
	line-height: 1;
	font-weight: 500;
	color: var(--main);
	letter-spacing: 0.08em;
}
#all_wrap #category-tags > ul {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 30px;
	position: relative;
	list-style: none;
}
#all_wrap #category-tags > ul > li {
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap #category-tags > ul > li a {
	display: inline-block;
	font-size: 14px;
	line-height: 1;
	color: var(--main);
	font-weight: 500;
	padding: 7px 12px;
	margin: 0px;
	background: var(--base);
	border-radius: 30px;
	text-decoration: none;
	transition: var(--ease);
}
#all_wrap #category-tags > ul > li a:hover {
	color: #fff;
	background: var(--main);
	transition: var(--ease);
}


/************************************************************/
/*　メディア 詳細
/************************************************************/
.singleHeader {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
}
#all_wrap .singleHeader_data {
	width: 100%;
	padding: 0;
	margin: 0 auto 40px;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 15px;
}
#all_wrap .singleHeader_data .date {
	display: inline-block;
	font-family: var(--font-num);
	font-size: 14px;
	line-height: 1;
	color: var(--text);
	white-space: nowrap;
	padding: 0px;
	margin: 0px;
	order: 1;
}
#all_wrap .singleHeader_data::before {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background: #7a7a7a;
	order: 2;
}
#all_wrap .singleHeader_data em {
	display: inline-block;
	font-family: var(--font-en);
	font-size: 14px;
	line-height: 1;
	color: var(--text);
	font-style: normal;
	white-space: nowrap;
	padding: 0px;
	margin: 0px;
	order: 3;
}
#all_wrap .singleHeader > h1 {
	width: 100%;
	padding: 0;
	margin: 0 auto 40px;
	position: relative;
	border: none;
	background: none;
	font-size: 22px;
	line-height: 1.4em;
	font-weight: 500;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .singleHeader > figure {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .singleHeader > figure img {
	width: 100%;
	height: auto;
}
#all_wrap .single_tags {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 10px;
	grid-row-gap: 10px;
	position: relative;
	list-style: none;
	padding: 30px 0;
	margin: 0 auto 50px;
	border-bottom: 1px solid #878787;
}
#all_wrap .single_tags > span {
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .single_tags > span a {
	display: inline-block;
	font-size: 14px;
	line-height: 1;
	color: var(--main);
	font-weight: 500;
	padding: 5px 10px;
	margin: 0px;
	background: var(--base);
	border-radius: 16px;
	text-decoration: none;
	transition: var(--ease);
}
#all_wrap .single_tags > span a:hover {
	color: #fff;
	background: var(--main);
	transition: var(--ease);
}

/*前後の記事*/
#all_wrap .post-navigation {
	width: 100%;
	padding: 30px;
	margin: 100px auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	column-gap: 60px;
	border-top: 1px solid #878787;
	border-bottom: 1px solid #878787;
}
#all_wrap .post-navigation::after {
	content: '';
	display: block;
	width: 1px;
	height: calc(100% - 60px);
	background: #878787;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
#all_wrap .post-navigation > .prev-post,
#all_wrap .post-navigation > .next-post {
	width: 50%;
	text-align: center;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .post-navigation > .prev-post::before {
	content: '';
	display: block;
	width: 85px;
	height: 23px;
	background-image: url('https://test-relief.coresv.com/wp-content/uploads/prev.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	padding: 0;
	margin: 0 auto 20px;
}
#all_wrap .post-navigation > .next-post::before {
	content: '';
	display: block;
	width: 85px;
	height: 23px;
	background-image: url('https://test-relief.coresv.com/wp-content/uploads/next.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	padding: 0;
	margin: 0 auto 20px;
}
#all_wrap .post-navigation a {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 14px;
	line-height: 1.7em;
	font-weight: 500;
	transition: var(--ease);
}
#all_wrap .post-navigation a:hover {
	color: var(--main);
	text-decoration: underline;
	transition: var(--ease);
}



/************************************************************/
/*　施術内容／アフターケア
/************************************************************/

/*症状*/
#about_symptoms {
	width: 100%;
	max-width: 1200px;
	padding: 150px 0;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 80px;
	grid-row-gap: 50px;
	position: relative;
}
#all_wrap #about_symptoms > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	border: none;
	background: none;
	position: relative;
	font-size: 20px;
	line-height: 1.4em;
	font-weight: 500;
	color: var(--main);
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 10px;
}
#all_wrap #about_symptoms > h2::before {
	content: '';
	display: block;
	width: 22px;
	height: 22px;
	min-width: 22px;
	background-image: url('https://test-relief.coresv.com/wp-content/uploads/logomark.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}
#all_wrap #about_symptoms > ul {
	width: calc(100% - 80px - 420px);
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
}
#all_wrap #about_symptoms > ul > li {
	width: 100%;
	padding: 30px 10px;
	margin: 0;
	position: relative;
	border-bottom: 1px solid #878787;
}
#all_wrap #about_symptoms > ul > li:first-child {
	padding-top: 0;
}
#all_wrap #about_symptoms > ul > li h3 {
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	border: none;
	background: none;
	font-size: 16px;
	line-height: 1.4em;
	font-weight: 500;
}
#all_wrap #about_symptoms > ul > li p {
	padding: 0;
	margin: 0;
	position: relative;
	border: none;
	background: none;
	font-size: 14px;
	line-height: 1.7em;
	font-weight: 500;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap #about_symptoms > figure {
	width: 420px;
	max-width: 420px;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap #about_symptoms > figure img {
	width: 100%;
	height: auto;
}

/*ブレシア*/
#about_brascia {
	width: 100%;
	padding: 80px 0;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	background-image: url('https://test-relief.coresv.com/wp-content/uploads/about_brascia_bg.webp');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	column-gap: 150px;
}
.about_brascia_left {
	width: calc(90% - 150px - 600px);
	max-width: 560px;
	min-width: 500px;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
}
.about_brascia_right {
	width: 600px;
	min-width: 600px;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .about_brascia_left > h2 {
	width: 100%;
	padding: 0 0 10px;
	margin: 0 auto 50px;
	border-bottom: 1px solid #fff;
	font-size: 22px;
	line-height: 1.4em;
	font-weight: 500;
	color: #fff;
	text-align-last: justify;
	white-space: nowrap;
}
#all_wrap .about_brascia_left > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto 15px;
	border: none;
	background: none;
	position: relative;
	font-size: 20px;
	line-height: 1.4em;
	font-weight: 500;
	color: #fff;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 10px;
}
#all_wrap .about_brascia_left > h3::before {
	content: '';
	display: block;
	width: 22px;
	height: 22px;
	min-width: 22px;
	background-image: url('https://test-relief.coresv.com/wp-content/uploads/logomark_base.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}
#all_wrap .about_brascia_left > p {
	padding: 0;
	margin: 0;
	position: relative;
	font-size: 14px;
	line-height: 1.7em;
	font-weight: 500;
	color: #fff;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .about_brascia_btn {
	width: 100%;
	padding: 0;
	margin: 150px auto 0;
	position: relative;
	text-align: center;
}
#all_wrap .about_brascia_btn > span {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
	font-size: 14px;
	line-height: 1.4em;
	font-weight: 500;
	color: #fff;
	text-align: center;
}
#all_wrap .about_brascia_btn > a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 380px;
	height: 64px;
	padding: 20px 20px;
	margin: 0 auto;
	background: var(--gradient);
	font-size: 18px;
	line-height: 1;
	font-weight: 500;
	color: #fff;
	letter-spacing: 0.15em;
	text-align: center;
	text-decoration: none;
	border-radius: 60px;
	transition: var(--ease);
	overflow: hidden;
	position: relative;
	z-index: 0;
}
#all_wrap .about_brascia_btn > a::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: var(--gold);
	opacity: 0;
	transition: var(--ease);
	z-index: -1;
}
#all_wrap .about_brascia_btn > a:hover::before {
	opacity: 1;
	transition: var(--ease);
}
/* - 主な特徴*/
#all_wrap .about_brascia_right > ul {
	width: 100%;
	padding: 30px 0 30px 30px;
	margin: 0;
	background: rgba(255,255,255,0.85);
	position: relative;
	list-style: none;
}
#all_wrap .about_brascia_right > ul > li {
	width: 100%;
	padding: 30px;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: baseline;
	column-gap: 20px;
}
#all_wrap .about_brascia_right > ul > li:first-child {
	padding-top: 0;
}
#all_wrap .about_brascia_right > ul > li::after {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background: var(--gradient);
	position: absolute;
	bottom: 0;
	left: 0;
}
#all_wrap .about_brascia_right > ul > li h3 {
	width: 100%;
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	position: relative;
	font-size: 18px;
	line-height: 1;
	font-weight: 500;
	color: var(--main);
}
#all_wrap .about_brascia_right > ul > li em {
	display: inline-block;
	padding: 0;
	margin: 0;
	font-family: var(--font-num);
	font-size: 16px;
	line-height: 1.2em;
	font-weight: 500;
	color: var(--text);
	font-style: normal;
}
#all_wrap .about_brascia_right > ul > li p {
	display: block;
	padding: 0;
	margin: 0;
	font-size: 16px;
	line-height: 1.2em;
	font-weight: 500;
	color: var(--text);
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}

/*アフターケア*/
#about_aftercare {
	width: 100%;
	padding: 150px 0;
	margin: 0 auto;
	position: relative;
}
#about_aftercare > header {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto 100px;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 80px;
	grid-row-gap: 60px;
}
#all_wrap #about_aftercare > header > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	border: none;
	background: none;
	position: relative;
	font-size: 20px;
	line-height: 1.4em;
	font-weight: 500;
	color: var(--main);
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 10px;
}
#all_wrap #about_aftercare > header > h2::before {
	content: '';
	display: block;
	width: 22px;
	height: 22px;
	min-width: 22px;
	background-image: url('https://test-relief.coresv.com/wp-content/uploads/logomark.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}
#about_aftercare > header > figure {
	width: 500px;
	min-width: 500px;
	padding: 0;
	margin: 0;
	position: relative;
}
#about_aftercare > header > figure img {
	width: 100%;
	height: auto;
}
#about_aftercare > header > .about_aftercare_info {
	width: calc(100% - 500px - 80px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .about_aftercare_info > p {
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	font-size: 14px;
	line-height: 1.7em;
	font-weight: 500;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .about_aftercare_info > p:last-of-type {
	margin-bottom: 0;
}
/*アフターケアリスト*/
#all_wrap .aftercareList {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	column-gap: 50px;
	grid-row-gap: 50px;
}
#all_wrap .aftercareList > li {
	width: calc((100% - 100px) / 3);
	padding: 150px 50px;
	margin: 0;
	background: var(--base);
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 40px;
	border-radius: 180px;
}
#all_wrap .aftercareList > li > h3 {
	width: 100%;
	padding: 0;
	margin: auto;
	border: none;
	background: none;
	position: relative;
	font-size: 18px;
	line-height: 1.4em;
	font-weight: 500;
	color: var(--text);
	text-align: center;
}
#all_wrap .aftercareList > li > i {
	width: auto;
	height: 80px;
	text-align: center;
	display: block;
}
#all_wrap .aftercareList > li > i img {
	width: auto;
	height: 100%;
}
#all_wrap .aftercareList > li > p {
	padding: 0;
	margin: 0 auto;
	position: relative;
	font-size: 14px;
	line-height: 1.7em;
	font-weight: 500;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	color: var(--text);
}
/* - 2番目*/
#all_wrap .aftercareList > li:nth-child(2) {
	background: var(--main);
}
#all_wrap .aftercareList > li:nth-child(2) > h3,
#all_wrap .aftercareList > li:nth-child(2) > p {
	color: #fff;
}
/* - 3番目*/
#all_wrap .aftercareList > li:nth-child(3) {
	background: var(--gray);
}

/*よくある質問*/
#about_faq {
	width: 100%;
	padding: 100px 0 150px;
	margin: 0 auto;
	position: relative;
}
#all_wrap .about_faq_wrap {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	column-gap: 80px;
}
#all_wrap .about_faq_wrap > header {
	width: calc(100% - 80px - 850px);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 20px;
}
#all_wrap .about_faq_wrap > header > em {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	font-family: var(--font-num);
	font-size: 36px;
	line-height: 1;
	font-weight: 500;
	color: var(--main);
	font-style: normal;
	text-align: left;
}
#all_wrap .about_faq_wrap > header > h2 {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	position: relative;
	font-size: 16px;
	line-height: 1;
	font-weight: 500;
	color: var(--main);
	letter-spacing: 0.1em;
	font-style: normal;
	text-align: left;
}
#all_wrap .about_faq_info {
	width: 850px;
	padding: 0;
	margin: 0;
	position: relative;
}
/* - よくある質問 */
#all_wrap .faqList {
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .faqList dl {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .faqList dl dt {
	width: 100%;
	padding: 25px 60px 25px 60px;
	margin: 0;
	position: relative;
	background: var(--base);
	font-size: 16px;
	line-height: 1.2em;
	font-weight: 600;
	color: var(--text);
	cursor: pointer;
	transition: var(--ease);
}
#all_wrap .faqList dl:nth-of-type(even) dt {
	background: var(--gray);
}
#all_wrap .faqList dl dt::before {
	content: 'Q';
	display: inline-block;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 21px;
	left: 30px;
	font-family: var(--font-en);
	font-size: 20px;
	line-height: 1.2em;
	font-weight: 600;
	color: var(--main);
	transition: var(--ease);
}
#all_wrap .faqList dl dt::after {
	content: '';
	display: block;
	width: 16px;
	height: 16px;
	background-image: url('https://test-relief.coresv.com/wp-content/uploads/arrow_bottom.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	position: absolute;
	top: 27px;
	right: 30px;
	transition: var(--ease);
}
#all_wrap .faqList dl dt.active::after {
	transform: rotate(180deg);
	transition: var(--ease);
}
#all_wrap .faqList dl dd {
	width: 100%;
	padding: 25px 30px 25px 60px;
	margin: 0;
	position: relative;
	background: var(--base);
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 15px;
	line-height: 2;
	font-weight: 400;
}
#all_wrap .faqList dl:nth-of-type(even) dd {
	background: var(--gray);
}
#all_wrap .faqList dl dd::after {
	content: '';
	display: block;
	width: calc(100% - 40px);
	height: 1px;
	background: #878787;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,0);
}
#all_wrap .faqList dl dd::before {
	content: 'A';
	display: inline-block;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 28px;
	left: 30px;
	font-family: var(--font-en);
	font-size: 20px;
	line-height: 1.2em;
	font-weight: 600;
	color: var(--main);
}
#all_wrap .faqList dl dd p {
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .faqList dl dd p:last-of-type {
	margin-bottom: 0;
}
/* - よくある質問本文 */
#all_wrap .diamond_list {
	width: 100%;
	padding: 0;
	margin: 0 auto 1em;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 5px;
}
#all_wrap .diamond_list > li {
	font-size: 14px;
	line-height: 1.4em;
	font-weight: 500;
	color: var(--main);
	position: relative;
	padding-left: 1.2em;
}
#all_wrap .diamond_list > li::before {
	content: '◆';
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	background: none;
	transform: unset;
	border-radius: 0;
	width: 1em;
	height: 1em;
	color: var(--main);
}


/************************************************************/
/*　検査について
/************************************************************/
#check {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
/*流れ*/
#check_flow {
	width: 100%;
	padding: 150px 0;
	margin: 0 auto;
	position: relative;
}
#check_flow > dl {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto 80px;
	position: relative;
}
#check_flow > dl dt {
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 40px;
}
#check_flow > dl dt em {
	display: inline-block;
	font-family: var(--font-en);
	font-size: 25px;
	line-height: 1;
	font-weight: 500;
	color: var(--main);
	font-style: normal;
	position: relative;
}
#check_flow > dl dt em small {
	display: inline-block;
	font-family: var(--font-en);
	font-size: 14px;
	line-height: 1;
	font-weight: 500;
	color: var(--main);
	position: absolute;
	top: 0;
	right: -18px;
}
#all_wrap #check_flow > dl dt h2 {
	width: auto;
	padding: 0 0 0 20px;
	margin: 0;
	border: none;
	background: none;
	position: relative;
	font-size: 18px;
	line-height: 1;
	font-weight: 500;
	color: var(--main);
	border-left: 1px solid #878787;
}
#check_flow > dl dd {
	width: 100%;
	padding: 0 0 0 50px;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-content: stretch;
	align-items: stretch;
}
#check_flow > dl dd > span.height {
	display: block;
	width: 1px;
	height: auto;
	background: #878787;
	transform: translateY(20px);
}
#check_flow .check_flow_box {
	width: 850px;
	min-width: 850px;
	padding: 40px;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 40px;
	border-radius: 10px;
	background: var(--base);
}
#check_flow > dl:nth-of-type(3n + 1) .check_flow_box {
	background: var(--main);
}
#check_flow > dl:nth-of-type(3n + 2) .check_flow_box {
	background: var(--gray);
}
#check_flow .check_flow_box > figure {
	width: 260px;
	min-width: 260px;
	padding: 0;
	margin: 0;
	position: relative;
	aspect-ratio: 7 / 5;
}
#check_flow .check_flow_box > figure::before {
	content: '';
	display: block;
	padding-top: 71.43%;
}
#check_flow .check_flow_box > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#check_flow .check_flow_txt {
	width: calc(100% - 260px - 40px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap #check_flow .check_flow_txt p {
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap #check_flow .check_flow_txt p:last-of-type {
	margin-bottom: 0;
}
#all_wrap #check_flow > dl:nth-of-type(3n + 1) .check_flow_txt p {
	color: #fff;
}

/*ご説明します*/
#check_desc {
	width: 100%;
	padding: 100px 50px;
	margin: 0 auto;
	position: relative;
	background-image: url('https://test-relief.coresv.com/wp-content/uploads/check_desc_bg.webp');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
#all_wrap .check_desc_wrap {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .check_desc_wrap > h2 {
	width: auto;
	width: fit-content;
	font-size: 20px;
	line-height: 1.4em;
	font-weight: 500;
	color: #fff;
	padding: 0 0 10px;
	margin: 0 0 150px;
	background: none;
	border-bottom: 1px solid #fff;
}
.check_desc_txt {
	width: 600px;
	min-width: 600px;
	padding: 0;
	margin: 0 0 80px auto;
	position: relative;
}
#all_wrap .check_desc_txt p {
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	color: #fff;
}
#all_wrap .check_desc_txt p:last-of-type {
	margin-bottom: 0;
}
/*-リスト*/
#all_wrap .check_desc_wrap > ul {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: center;
	column-gap: 50px;
}
#all_wrap .check_desc_wrap > ul > li {
	width: auto;
	width: fit-content;
	padding: 15px 30px;
	margin: 0;
	background: var(--base);
	border-radius: 10px;
	font-size: 16px;
	line-height: 1.2em;
	font-weight: 500;
	text-align: center;
	color: var(--text);
}
/*原因*/
#check_cause {
	width: 100%;
	padding: 150px 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap #check_cause > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto 80px;
	position: relative;
	border: none;
	background: none;
	font-size: 20px;
	line-height: 1.4em;
	font-weight: 500;
	color: var(--main);
	text-align: center;
}
#all_wrap .check_cause_txt {
	width: 100%;
	max-width: 850px;
	padding: 0;
	margin: 0 auto 80px;
	position: relative;
}
#all_wrap .check_cause_txt > p {
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .check_cause_txt > p:last-of-type {
	margin-bottom: 0;
}
#all_wrap #check_cause .about_brascia_btn {
	width: 100%;
	padding: 0;
	margin: 0 auto 0;
	position: relative;
	text-align: center;
}
#all_wrap #check_cause .about_brascia_btn > span {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
	font-size: 14px;
	line-height: 1.4em;
	font-weight: 500;
	color: #7D755C;
	text-align: center;
}


/************************************************************/
/*　お問い合わせ
/************************************************************/
#contact_btn {
	width: 100%;
	padding: 150px 0;
	margin: 0 auto;
	position: relative;
}
/*リンク*/
#all_wrap .btn-link {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 50px;
	grid-row-gap: 50px;
}
#all_wrap .btn-link > li {
	width: calc((100% - 50px) / 2);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .btn-link > li a {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: flex-start;
	grid-row-gap: 15px;
	height: 100%;
	padding: 20px;
	margin: 0;
	background: var(--base);
	border-radius: 10px;
	text-decoration: none;
	transition: var(--ease);
}
#all_wrap .btn-link > li a > p {
	width: 100%;
	padding: 0 10px 15px;
	margin: 0;
	position: relative;
	border-bottom: 1px solid #7a7a7a;
	font-family: var(--font-en);
	font-size: 18px;
	line-height: 1.2em;
	color: var(--main);
	transition: var(--ease);
}
#all_wrap .btn-link > li a > p::after {
	content: '';
	display: block;
	width: 15px;
	height: 15px;
	aspect-ratio: 1/1;
	background-image: url('https://test-relief.coresv.com/wp-content/uploads/check.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	position: absolute;
	top: 2px;
	right: 10px;
	transition: var(--ease);
}
#all_wrap .btn-link > li a > span {
	display: block;
	width: 100%;
	padding: 0 10px;
	margin: 0;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 14px;
	line-height: 1.5em;
	transition: var(--ease);
}
#all_wrap .btn-link > li a:hover {
	background: var(--main);
	transition: var(--ease);
}
#all_wrap .btn-link > li a:hover > p {
	border-bottom: 1px solid #fff;
	color: #fff;
	transition: var(--ease);
}
#all_wrap .btn-link > li a:hover > p::after {
	background-image: url('https://test-relief.coresv.com/wp-content/uploads/check_base.svg');
	transition: var(--ease);
}
#all_wrap .btn-link > li a:hover > span {
	color: #fff;
	transition: var(--ease);
}
/*色変え 緑*/
#all_wrap .btn-link > li.green a {
	background: var(--main);
}
#all_wrap .btn-link > li.green a > span,
#all_wrap .btn-link > li.green a > p {
	color: #fff;
}
#all_wrap .btn-link > li.green a > p {
	border-color: var(--base);
}
#all_wrap .btn-link > li.green a > p::after {
	background-image: url('https://test-relief.coresv.com/wp-content/uploads/check_base.svg');
}
#all_wrap .btn-link > li.green a:hover {
	background: var(--link);
}
/*色変え 灰*/
#all_wrap .btn-link > li.gray a {
	background: #EAEAEA;
}
#all_wrap .btn-link > li.gray a:hover > span,
#all_wrap .btn-link > li.gray a:hover > p {
	color: var(--text);
}
#all_wrap .btn-link > li.gray a > p {
	border-color: var(--main);
}
#all_wrap .btn-link > li.gray a:hover > p::after {
	background-image: url('https://test-relief.coresv.com/wp-content/uploads/check.svg');
	transition: var(--ease);
}
#all_wrap .btn-link > li.gray a:hover {
	background: #BBBBBB;
}

/*お問い合わせ*/
#contact_area {
	width: 100%;
	padding: 0;
	margin: 0 auto 100px;
	position: relative;
}
#all_wrap #contact_area > h2 {
	width: 100%;
	padding: 0 0 50px;
	margin: 0 auto 50px;
	border-bottom: 1px solid #878787;
	font-size: 18px;
	line-height: 1;
	font-weight: 500;
	color: var(--main);
	text-align: center;
}
#all_wrap #contact_area > p {
	padding: 0;
	margin: 0 auto 50px;
	text-align: center;
}


/************************************************************/
/*　会社概要
/************************************************************/
#company_data {
	width: 100%;
	padding: 150px 0;
	margin: 0 auto;
	position: relative;
}

/*表*/
#all_wrap table.outline_table {
	overflow: hidden;
	table-layout: fixed;
	border: none;
	background: none;
	padding: 0;
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	border-radius: 0;
	background: none;
	border: none;
	border-top: none;
}
#all_wrap table.outline_table th {
	display: table-cell;
	font-style: normal;
	font-feature-settings: "palt";
	border: none;
	border-bottom: 1px solid #878787;
	text-align: center;
	vertical-align: top;
	font-family: var(--font-jp);
	font-size: 16px;
	font-weight: 900;
	background: none;
	color: var(--text);
	width: 30%;
	padding: 25px 20px 20px;
	margin: 0;
}
#all_wrap table.outline_table td {
	display: table-cell;
	border: none;
	background: none;
	vertical-align: inherit;
	border-bottom: none;
	padding: 20px;
	margin: 0;
	font-size: 14px;
	font-weight: 500;
	border-bottom: 1px solid #878787;
}
#all_wrap table.outline_table th h3 {
	padding: 0 0 0 30px;
	margin: 0;
	border: none;
	background: none;
	position: relative;
	font-size: 14px;
	line-height: 1.2em;
	font-weight: 500;
	color: var(--main);
	text-align: left;
}
#all_wrap table.outline_table th h3::before {
	content: '';
	display: block;
	width: 18px;
	height: 18px;
	background-image: url('https://test-relief.coresv.com/wp-content/uploads/logomark.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	position: absolute;
	top: 0;
	left: 0;
}
#all_wrap .content table.outline_table td > p {
	margin-bottom: 10px;
}
#all_wrap .content table.outline_table td > p:last-of-type {
	margin-bottom: 0;
}


/************************************************************/
/*　プライバシーポリシー
/************************************************************/
#all_wrap .sec {
	width: 100%;
	padding: 50px 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .border-sec {
	width: 100%;
	padding: 50px 0;
	margin: 0 auto;
	position: relative;
	border-top: 1px solid #878787;
}


/************************************************************/
/*　施術空間へのこだわり
/************************************************************/
#space_about {
	width: 100%;
	padding: 150px 0;
	margin: 0 auto;
	position: relative;
}
/*考え方*/
.space_about_box {
	width: 100%;
	max-width: 1140px;
	padding: 50px;
	margin: 0 auto;
	position: relative;
	border-radius: 15px;
	background: var(--main);
}
#all_wrap .space_about_box > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	font-size: 20px;
	line-height: 1.4em;
	font-weight: 500;
	color: #fff;
	text-align: left;
}
#all_wrap .space_about_box > p {
	width: 70%;
	padding: 0;
	margin: 0 0 10px auto;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	color: #fff;
}
#all_wrap .space_about_box > p:last-of-type {
	margin-bottom: 0;
}
/*アロマ*/
#space_smell {
	width: 100%;
	padding: 150px 0;
	margin: 0 auto;
	background-image: linear-gradient(to bottom, #fff 0%, #d9d9d9 100%);
	position: relative;
}
/* - ヘッダー */
#all_wrap .header_about {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto 150px;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 80px;
}
#all_wrap .header_about > figure {
	width: 370px;
	min-width: 370px;
	padding: 0;
	margin: 0 50px;
	position: relative;
	overflow: hidden;
	text-align: center;
}
#all_wrap .header_about > figure::before {
	content: '';
	display: block;
	padding: 50%;
}
#all_wrap .header_about > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .header_about_info {
	width: calc(100% - 80px - 370px - 100px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .header_about_info > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto 80px;
	position: relative;
	border: none;
	background: none;
	font-size: 20px;
	line-height: 1.4em;
	font-weight: 500;
	color: var(--main);
	z-index: 0;
}
#all_wrap .header_about_info > h2 em {
	display: block;
	font-family: var(--font-en);
	font-size: 130px;
	line-height: 1;
	font-weight: 400;
	color: #EFEFEF;
	font-style: normal;
	position: absolute;
	top: -75px;
	left: -50px;
	z-index: -1;
}
#all_wrap .header_about_info > p {
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .header_about_info > p:last-of-type {
	margin-bottom: 0;
}
/*- rev*/
#all_wrap .header_about.rev > figure {
	width: 370px;
	min-width: 370px;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	order: 1;
}
#all_wrap .header_about.rev .header_about_info {
	width: calc(100% - 80px - 370px - 100px);
	padding: 0;
	margin: 0 50px;
	position: relative;
}

/*素材*/
#all_wrap .smellList {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto 150px;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 50px;
	grid-row-gap: 40px;
}
#all_wrap .smellList > li {
	width: calc((100% - 50px) / 2);
	padding: 15px 50px;
	margin: 0;
	background: var(--base2);
	position: relative;
	display: flex;
	justify-content: flex-start;
	column-gap: 20px;
	align-items: center;
	border-radius: 60px;
}
#all_wrap .smellList > li:nth-child(6n+1),
#all_wrap .smellList > li:nth-child(6n+4),
#all_wrap .smellList > li:nth-child(6n+5) {
	background-color: var(--base2);
}
#all_wrap .smellList > li:nth-child(6n+2),
#all_wrap .smellList > li:nth-child(6n+3),
#all_wrap .smellList > li:nth-child(6n) {
	background-color: #fff;
}
#all_wrap .smellList > li > figure {
	width: 110px;
	min-width: 110px;
	height: 82px;
	position: relative;
	overflow: hidden;
	text-align: center;
}
#all_wrap .smellList > li > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .smellList_info {
	width: calc(1005 - 20px - 110px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .smellList_info > h3 {
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	font-size: 16px;
	line-height: 1.2em;
	font-weight: 700;
	color: var(--text);
	border: none;
	background: none;
}
#all_wrap .smellList_info > p {
	padding: 0;
	margin: 0;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	color: #878787;
	font-size: 14px;
	line-height: 1.2em;
	font-weight: 500;
}

/*効能*/
#all_wrap .smell_effect {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .smell_effect > p {
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	text-align: center;
	font-size: 15px;
}
#all_wrap .smell_effect > p.mb0 {
	margin-bottom: 0;
}
#all_wrap .smell_effect_list {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto 150px;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 50px;
	grid-row-gap: 50px;
}
#all_wrap .smell_effect_list > li {
	width: calc((100% - 100px) / 3);
	padding: 40px;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 20px;
	border-radius: 10px;
	background: linear-gradient(#e5e5e5, #e5e5e5) padding-box, 
		linear-gradient(-135deg, #7D755C, #D4C086) border-box;
	border: 2px solid transparent;
}
#all_wrap .smell_effect_list > li:nth-child(even) {
	background: linear-gradient(#e5e5e5, #e5e5e5) padding-box, 
		linear-gradient(-45deg, #7D755C, #D4C086) border-box;
}
#all_wrap .smell_effect_list > li > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	font-size: 18px;
	line-height: 1.2em;
	font-weight: 700;
	background: linear-gradient(to right, #7D755C, #D4C086);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
	text-align: center;
	border: none;
}
#all_wrap .smell_effect_list > li > figure {
	width: 100%;
	height: 180px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	text-align: center;
}
#all_wrap .smell_effect_list > li > figure img {
	width: auto;
	height: 100%;
}
#all_wrap .smell_effect_list > li > p {
	width: fit-content;
	padding: 0;
	margin: 0 auto;
	text-align: left;
}
#all_wrap .smell_effect > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	font-size: 20px;
	line-height: 1.2em;
	font-weight: 700;
	background: linear-gradient(to right, #7D755C, #D4C086);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
	text-align: center;
	border: none;
}

/*ヒアリング*/
#space_hearing {
	width: 100%;
	padding: 150px 0;
	margin: 0 auto;
	background-image: linear-gradient(to top, #fff 0%, #d9d9d9 100%);
	position: relative;
}
/*なぜ111Hz*/
#all_wrap .space_hearing_box {
	width: 100%;
	max-width: 980px;
	padding: 0;
	margin: 0 auto 150px;
	position: relative;
}
#all_wrap .space_hearing_box dt {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 20px;
	font-size: 18px;
	line-height: 1;
	font-weight: 500;
	color: #7D755C;
	white-space: nowrap;
}
#all_wrap .space_hearing_box dt::after {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background: linear-gradient(to right, #7D755C, #D4C086);
}
#all_wrap .space_hearing_box dd {
	padding: 0;
	margin: 0;
	position: relative;
	text-align: right;
}
/* - リスト */
#all_wrap .space_hearing_list {
	width: 100%;
	max-width: 620px;
	padding: 0;
	margin: 0 0 30px auto;
	position: relative;
	list-style: none;
}
#all_wrap .space_hearing_list > li {
	width: 100%;
	padding: 20px 50px;
	margin: 0;
	background: none;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 20px;
}
#all_wrap .space_hearing_list > li::after {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	bottom: 0;
	left: 0;
	background: linear-gradient(to right, #7D755C, #D4C086);
}
#all_wrap .space_hearing_list > li i {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 45px;
	min-width: 45px;
	height: 45px;
	aspect-ratio: 1/1;
	position: relative;
	overflow: hidden;
	text-align: center;
}
#all_wrap .space_hearing_list > li i img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#all_wrap .space_hearing_list > li > p {
	width: calc(100% - 20px - 45px);
	padding: 0;
	margin: 0;
	position: relative;
	text-align: left;
}
#all_wrap .space_hearing_list + small {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align: right;
	font-size: 12px;
	line-height: 1.4em;
	font-weight: 500;
	color: #878787;
}
/*サウンドデザイナー*/
.hearing_interview {
	width: 100%;
	max-width: 1140px;
	padding: 70px 60px;
	margin: 0 auto 150px;
	position: relative;
	border-radius: 15px;
	background: var(--main);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 50px;
	grid-row-gap: 30px;
}
#all_wrap .hearing_interview > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	font-size: 20px;
	line-height: 1.4em;
	font-weight: 500;
	color: #fff;
	text-align: left;
}
#all_wrap .hearing_interview > figure {
	width: 460px;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .hearing_interview > figure img {
	width: 100%;
	height: auto;
}
#all_wrap .hearing_interview_txt {
	width: calc(100% - 50px - 460px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .hearing_interview_txt > p {
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	color: #fff;
}
#all_wrap .hearing_interview_txt > p:last-of-type {
	margin-bottom: 0;
}
/*音響システム*/
#all_wrap .sound_system {
	width: 100%;
	max-width: 1000px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 80px;
}
#all_wrap .sound_system_txt {
	width: 50%;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .sound_system_txt > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto 40px;
	position: relative;
	font-size: 20px;
	line-height: 1.7em;
	font-weight: 700;
	background: linear-gradient(to right, #7D755C, #D4C086);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
	text-align: left;
	border: none;
}
#all_wrap .sound_system_txt > p {
	padding: 0;
	margin: 0;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .sound_system > figure {
	width: calc(50% - 80px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .sound_system > figure img {
	width: 100%;
	height: auto;
}

/*Sight*/
#space_sight {
	width: 100%;
	padding: 150px 0;
	margin: 0 auto;
	background-image: linear-gradient(to bottom, #fff 0%, #d9d9d9 100%);
	position: relative;
}

/*絵に込めた想い*/
#all_wrap .sight_data {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	column-gap: 80px;
}
#all_wrap .sight_data dl {
	width: calc(100% - 80px - 380px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .sight_data dt {
	width: 100%;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 20px;
	font-size: 18px;
	line-height: 1;
	font-weight: 500;
	color: #7D755C;
	white-space: nowrap;
}
#all_wrap .sight_data dt::after {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background: linear-gradient(to right, #7D755C, #D4C086);
}
#all_wrap .sight_data dd {
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .sight_data dd > p {
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .sight_data > figure {
	width: 380px;
	min-width: 380px;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .sight_data > figure img {
	width: 100%;
	height: auto;
}
/* - テーブル*/
#all_wrap .sight_data_table {
	overflow: hidden;
	border-spacing: 5px;
	border-collapse: separate;
	border: none;
	background: none;
	padding: 0;
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	border-radius: 0;
	background: none;
	border: none;
	table-layout: auto;
}
#all_wrap .sight_data_table th {
	display: table-cell;
	font-style: normal;
	font-feature-settings: "palt";
	border: none;
	text-align: center;
	vertical-align: middle;
	font-family: var(--font-jp);
	font-size: 14px;
	font-weight: 500;
	background: var(--base);
	color: var(--text);
	width: auto;
	padding: 3px 10px;
	margin: 0;
}
#all_wrap .sight_data_table td {
	display: table-cell;
	border: none;
	background: #fff;
	vertical-align: inherit;
	border-bottom: none;
	padding: 3px 10px;
	margin: 0;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
}
/*体験しませんか？*/
#check_cause.sight {
	width: 100%;
	padding: 150px 0;
	margin: 0 auto;
	position: relative;
	background-image: linear-gradient(to top, #fff 0%, #d9d9d9 100%);
}
#all_wrap .sight .check_cause_txt {
	width: 100%;
	max-width: 700px;
	padding: 0;
	margin: 0 auto 80px;
	position: relative;
}