@charset "UTF-8";

/*----------------------------------------------------------*/
/* カスタマイズ用CSS 1
/*----------------------------------------------------------*/
:root {
	--main: #E87E6E;
	--sub:  #8CAFE4;
	--act: #E15D54;
	--base: #FFF4EA;
	--base2: #E9F2FD;
	--base3: #FAD0B6;
	--orange: #ff6900;
	--yellow: #ffff00;
	--text: #333333;
	--link: #E87E6E;
	--line: #5ac263;
	--gradient: linear-gradient(to bottom, #E87E6E 0%, #E87E6E 25%, #E15D54 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.1em;
	color: var(--text);
}
.content div {
	margin: 0;
}

/*構成*/
#all_wrap {
	width: calc(100%);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap.sub_page {
	width: calc(100%);
	padding: 70px 0 0;
	margin: 0;
	position: relative;
}
.widget {
	padding: 0;
	margin: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*構成*/
	#all_wrap {
		width: calc(100%);
		padding: 0;
		margin: 0 auto;
		position: relative;
	}
	#all_wrap.sub_page {
		width: calc(100%);
		padding: 60px 0 0;
		margin: 0;
		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); }

.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 var(--text);
	border-right: 2px solid var(--text);
	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;
}


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


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

/*本文*/
#all_wrap .content {
	font-size: 14px;
	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: 13px;
		line-height: 1.8em;
		font-weight: 500;
		font-feature-settings: "palt" 1;
		font-style: normal;
	}
	#all_wrap .content p {
		font-size: 13px;
		line-height: 1.8em;
		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; }
}

/*リスト*/
#all_wrap ul.disc {
	list-style: none;
	padding: 0;
	margin: 0;
	margin-bottom: 1em;
}
#all_wrap ul.disc li {
	position: relative;
	padding: 0;
	margin: 0;
}
#all_wrap ul.disc li::before {
	content: "・";
	display: inline-block;
	width: auto;
	height: auto;
	background: none;
	border: none;
	color: var(--text);
	margin-right: 10px;
}

/************************************************************/
/*　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: flex-start;
	align-items: flex-start;
	column-gap: 100px;
}
#all_wrap .l-wrapper.single {
	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: flex-start;
	align-items: flex-start;
	column-gap: 100px;
}
.l-wrapper-full {
	position: relative;
	width: 100%;
	padding: 0;
	margin: 0 auto;
}
.l-wrapper-cat {
	position: relative;
	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: flex-start;
	align-items: flex-start;
	column-gap: 100px;
}

.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%;
	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 20px;
		margin: 0 auto;
		flex-wrap: wrap;
		grid-row-gap: 30px;
	}
	#all_wrap .l-wrapper.single {
		width: 100%;
		max-width: 100%;
		padding: 20px 20px 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: 0;
		margin: 0 auto;
		flex-wrap: wrap;
		grid-row-gap: 100px;
	}

	/*トップ構成*/
	.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: 300px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
}
#all_wrap #page_title {
	width: 100%;
	max-width: 1100px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
	z-index: 10;
}
#all_wrap #page_title > em {
	display: block;
	width: 100%;
	padding: 0 0 15px;
	margin: 0 auto 10px;
	text-align: center;
	font-family: var(--font-en);
	font-size: 13px;
	font-style: normal;
	font-weight: 900;
	color: #fff;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	position: relative;
}
#all_wrap #page_title > em::after {
	content: '';
	display: block;
	width: 30px;
	height: 1px;
	background: #fff;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%,0);
}
#all_wrap #page_title > h1 {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	font-size: 40px;
	font-style: normal;
	font-weight: 900;
	color: #fff;
}
#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: var(--main);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: 0.75;
}
#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;
		padding: 20px 0 0;
	}
	#all_wrap #page_title {
		width: 100%;
		max-width: 100%;
		grid-row-gap: 0;
	}
	#all_wrap #page_title > em {
		padding: 0 0 10px;
		margin: 0 auto 10px;
		font-size: 12px;
	}
	#all_wrap #page_title > h1 {
		font-size: 14px;
	}
}

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

/*h3*/
#all_wrap .content h3 {
	padding: 10px 10px 10px 15px;
	margin: 1em auto 1em;
	border: none;
	background: #fafafa;
	border-left: 5px solid var(--main);
	font-size: 20px;
	line-height: 1.4em;
	color: var(--text);
	position: relative;
}
/*== スマホ・タブレット対応 ==*/
@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(--main);
		font-size: 15px;
		line-height: 1.4em;
		color: var(--text);
		position: relative;
	}
}

/*h4*/
#all_wrap .content h4 {
	display: block;
	padding: 0;
	margin: 1em auto 10px;
	position: relative;
	font-size: 18px;
	line-height: 1.4em;
	position: relative;
	color: var(--text);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*h4*/
	#all_wrap .content h4 {
		display: block;
		padding: 0;
		margin: 1em auto 0.5em;
		position: relative;
		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-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: 40px 0;
	margin: 0 auto;
	background: none;
	border: none;
	overflow-x: scroll;
	position: relative;
	z-index: 5;
	-ms-overflow-style: none;
	scrollbar-width: none;
	z-index: 10;
}
#all_wrap.lp_page .breadcrumb {
	position: absolute;
	top: 70px;
	left: 0;
	z-index: 2;
}
#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: 13px;
	color: var(--main);
	justify-content: flex-start;
	font-family: var(--font-jp);
}
.breadcrumb a {
	font-size: 13px;
	line-height: 1;
	padding: 0;
	margin: 0;
	text-decoration: none;
	transition: var(--ease);
	color: var(--main);
	font-family: var(--font-jp);
	font-weight: 500;
	font-style: normal;
	font-feature-settings: "palt";
	position: relative;
}
.breadcrumb a:hover {
	opacity: 0.8;
	transition: var(--ease);
	color: var(--main);
}
.breadcrumb__list {
	padding: 0;
}
.breadcrumb__item {
	position: relative;
	display: table-cell;
	white-space: nowrap;
	padding-right: 15px;
	padding-left: 15px;
	font-size: 13px;
	line-height: 1;
	color: var(--main);
}
.breadcrumb__item::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -2px;
	width: 7px;
	height: 7px;
	border-top: 1px solid var(--main);
	border-right: 1px solid var(--main);
}
.breadcrumb__item-current a::before {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background: var(--main);
	position: absolute;
	bottom: -5px;
	left: 0;
}

/*パンくず LP 白*/
#all_wrap.lp_page.bread_white .breadcrumb > ul {
	color: #fff;
}
#all_wrap.lp_page.bread_white .breadcrumb .icon-home:before {
	color: #fff;
}
#all_wrap.lp_page.bread_white .breadcrumb a {
	color: #fff;
}
#all_wrap.lp_page.bread_white .breadcrumb a:hover {
	color: #fff;
}
#all_wrap.lp_page.bread_white .breadcrumb__item {
	color: 
}
#all_wrap.lp_page.bread_white .breadcrumb__item::after {
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
}
#all_wrap.lp_page.bread_white .breadcrumb__item-current a::before {
	background: #fff;
}
#all_wrap.lp_page.bread_red .breadcrumb__item-current a::before {
	background: #fff;
}


/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*パンくず*/
	.breadcrumb {
		width: 100%;
		max-width: 100%;
		padding: 30px 20px 60px;
		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%;
	padding: 15px 105px 15px 50px;
	margin: 0 auto;
	background: rgba(232, 126, 110, 0.9);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	column-gap: 30px;
}
#header #logo {
	width: auto;
	height: 40px;
	padding: 0;
	margin: 0;
	position: relative;
}
#header #logo img {
	width: auto;
	height: 100%;
}
#header > p {
	padding: 0;
	margin: 0 auto 0 0;
	font-size: 12px;
	line-height: 1.4em;
	color: #fff;
	text-align: left;
}
/*ボタン*/
#all_wrap #menu-headerBtn-menu {
	width: fit-content;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	column-gap: 10px;
}
#all_wrap #menu-headerBtn-menu > li {
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap #menu-headerBtn-menu > li a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 10px 30px;
	margin: 0;
	background: #fff;
	font-size: 14px;
	line-height: 1;
	color: var(--act);
	border-radius: 40px;
	text-decoration: none;
	transition: var(--ease);
}
#all_wrap #menu-headerBtn-menu > li a:hover {
	background: var(--act);
	color: #fff;
	transition: var(--ease);
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#header {
		width: 100%;
		height: 60px;
		padding: 10px 20px;
		background: rgba(225, 106, 84, 0.7);
		-webkit-backdrop-filter: blur(24px);
		backdrop-filter: blur(24px);
		column-gap: 10px;
	}
	#header #logo {
		width: auto;
		height: 32px;
	}
	#header > p {
		font-size: 12px;
	}
	/*ボタン*/
	#all_wrap #menu-headerBtn-menu {
		display: none;
	}
}



/************************************************************/
/*　ハンバーガーメニュー
/************************************************************/

/* ドロワーメニュー */
.navicon {
	display: block;
	position: fixed;
	top: 22px;
	right: 50px;
	width: 25px;
	height: 25px;
	min-width: 25px;
	z-index: 100;
}
.humburger {
	width: 25px;
	height: 25px;
	padding: 0;
	margin: 0;
	background: none;
	display: flex;
	justify-content: center;
	align-items: center;
}
.navicon .humburger > span {
	width: 25px;
	height: 25px;
	display: block;
	transition: var(--ease);
	position: relative;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/icon_blue.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	margin: auto;
}
#navTgl:checked + .open .humburger span {
	background-image: url('https://reliefport-femina.com/wp-content/uploads/icon_close.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
}
.navicon.fixed .humburger > span {
	background-image: url('https://reliefport-femina.com/wp-content/uploads/icon_menu_w.svg');
}

#navTgl {
	display: none;
}
label.open,
label.close {
	cursor: pointer;
}
.open {
	opacity: 1;
	z-index: 10001;
	width: 25px;
	height: 25px;
	padding: 0;
	color: #fff;
	background: none;
	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;
}
.close {
	pointer-events: none;
	z-index: 1;
	width: 100%;
	height: 100%;
	transition: var(--ease);
}
#navTgl:checked ~ .close {
	pointer-events: auto;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/* ドロワーメニュー */
	.navicon {
		display: block;
		position: fixed;
		top: 18px;
		right: 20px;
		width: 25px;
		height: 25px;
		min-width: 25px;
		z-index: 100;
	}
	.humburger {
		width: 25px;
		height: 25px;
		padding: 0;
		margin: 0;
		background: none;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.navicon .humburger > span {
		width: 25px;
		height: 25px;
		display: block;
		transition: var(--ease);
		position: relative;
		background-image: url('https://reliefport-femina.com/wp-content/uploads/icon_blue.svg');
		background-position: center;
		background-repeat: no-repeat;
		background-size: 100%;
		margin: auto;
	}
	#navTgl:checked + .open .humburger span {
		background-image: url('https://reliefport-femina.com/wp-content/uploads/icon_close_w.svg');
		background-position: center;
		background-repeat: no-repeat;
		background-size: 100%;
	}
	.navicon.fixed .humburger > span {
		background-image: url('https://reliefport-femina.com/wp-content/uploads/icon_menu_w.svg');
	}

	#navTgl {
		display: none;
	}
	label.open,
	label.close {
		cursor: pointer;
	}
	.open {
		opacity: 1;
		z-index: 10001;
		width: 25px;
		height: 25px;
		padding: 0;
		color: #fff;
		background: none;
		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;
	}
	.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;
	opacity: 0;
	visibility: hidden;
}
#menu.menuNav::-webkit-scrollbar {  /* Chrome, Safari 対応 */
	display:none;
}
#navTgl:checked ~ #menu.menuNav {
	width: 500px;
	transition: var(--ease);
	opacity: 1;
	visibility: visible;
}

/*メニュー*/
#menuNavBox {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	background: none;
	overflow-y: hidden;
	-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;
	justify-content: space-between;
	z-index: 0;
}
#menuNavBox::-webkit-scrollbar {  /* Chrome, Safari 対応 */
	display:none;
}
#navTgl:checked ~ #menu.menuNav #menuNavBox {
	width: 100%;
	transition: var(--ease);
	visibility: visible;
	opacity: 1;
}
#menuNavBox::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(225, 106, 84, 0.7);
	backdrop-filter: blur(24px);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

/*左側*/
.menuNavBox_menu {
	width: calc(100% - 680px);
	padding: 120px;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
}
/*メニュー*/
#all_wrap #menu-panel-menu {
	width: 100%;
	padding: 0;
	margin: 0 auto 80px;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 30px;
}
#all_wrap #menu-panel-menu > li {
	width: calc((100% - 30px) / 2);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap #menu-panel-menu > li a {
	font-size: 17px;
	line-height: 1.2em;
	color: #fff;
	text-decoration: none;
	transition: var(--ease);
	position: relative;
}
#all_wrap #menu-panel-menu > li a::after {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background: #fff;
	position: absolute;
	bottom: -5px;
	left: 0;
	opacity: 0;
	visibility: hidden;
	transition: var(--ease);
}
#all_wrap #menu-panel-menu > li a:hover::after {
	opacity: 1;
	visibility: visible;
	transition: var(--ease);
}

/*SNS*/
#all_wrap #menuNavBox #menu-sns-menu {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 20px;
	grid-row-gap: 20px;
}
#all_wrap #menuNavBox #menu-sns-menu > li {
	width: auto;
	height: 24px;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap #menuNavBox #menu-sns-menu > li img {
	width: auto;
	height: 100%;
	transition: var(--ease);
}
#all_wrap #menuNavBox #menu-sns-menu > li img:hover {
	opacity: 0.8;
	transition: var(--ease);
}

/*サブメニュー*/
#all_wrap #menu-sub-menu {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 20px;
	grid-row-gap: 15px;
}
#all_wrap #menu-sub-menu > li {
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap #menu-sub-menu > li a {
	font-size: 14px;
	line-height: 1;
	color: #fff;
	transition: var(--ease);
}
#all_wrap #menu-sub-menu > li a:hover {
	opacity: 0.8;
	transition: var(--ease);
}

/*右側*/
.menuNavBox_img {
	width: 680px;
	padding: 0;
	margin: 0;
	position: relative;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/menu-img.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	grid-row-gap: 100px;
}
#all_wrap .menuNavBox_img > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	grid-row-gap: 15px;
}
#all_wrap .menuNavBox_img > h2 p {
	padding: 0;
	margin: 0 auto;
	font-size: 13px;
	color: var(--act);
	text-align: center;
	line-height: 1;
}
#all_wrap .menuNavBox_img > h2 img {
	width: auto;
	height: 80px;
}

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

	/*メニュー*/
	#menuNavBox {
		width: 100%;
		height: 100%;
		padding: 0;
		margin: 0;
		background: none;
		overflow-y: hidden;
		-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;
		justify-content: space-between;
		flex-wrap: wrap;
		z-index: 0;
		overflow-y: scroll;
	}
	#menuNavBox::-webkit-scrollbar {  /* Chrome, Safari 対応 */
		display:none;
	}
	#navTgl:checked ~ #menu.menuNav #menuNavBox {
		width: 100%;
		transition: var(--ease);
		visibility: visible;
		opacity: 1;
	}
	#menuNavBox::before {
		content: '';
		display: block;
		width: 100%;
		height: 100%;
		background: rgba(225, 106, 84, 0.7);
		backdrop-filter: blur(24px);
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
	}

	/*左側*/
	.menuNavBox_menu {
		width: calc(100%);
		padding: 90px 40px 60px;
	}
	/*メニュー*/
	#all_wrap #menu-panel-menu {
		margin: 0 auto 60px;
		column-gap: 20px;
		grid-row-gap: 25px;
	}
	#all_wrap #menu-panel-menu > li {
		width: calc((100% - 20px) / 2);
	}
	#all_wrap #menu-panel-menu > li a {
		font-size: 14px;
	}

	/*SNS*/
	#all_wrap #menuNavBox #menu-sns-menu {
		margin: 0 auto 25px;
		column-gap: 10px;
		grid-row-gap: 10px;
	}
	#all_wrap #menuNavBox #menu-sns-menu > li {
		width: auto;
		height: 18px;
	}

	/*サブメニュー*/
	#all_wrap #menu-sub-menu {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		list-style: none;
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		column-gap: 20px;
		grid-row-gap: 15px;
	}
	#all_wrap #menu-sub-menu > li a {
		font-size: 14px;
	}
	
	/*右側*/
	.menuNavBox_img {
		width: 100%;
		padding: 100px 50px;
		background-image: url('https://reliefport-femina.com/wp-content/uploads/menu-img.webp');
		grid-row-gap: 45px;
	}
	#all_wrap .menuNavBox_img > h2 {
		width: 100%;
		grid-row-gap: 10px;
	}
	#all_wrap .menuNavBox_img > h2 p {
		font-size: 10px;
	}
	#all_wrap .menuNavBox_img > h2 img {
		width: auto;
		height: 65px;
	}
}

/************************************************************/
/*　メインビジュアル
/************************************************************/
#mainVisual {
	position: relative;
	width: 100%;
	height: 100vh; /* ビューポートの高さに合わせる */
	overflow: hidden;
	z-index: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
#mainVisual::before {
	content: '';
	display: block;
	width: 400px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background: var(--main);
}
#all_wrap #mainVisual > h1 {
	width: 280px;
	height: auto;
	position: absolute;
	top: 50px;
	left: 50%;
	transform: translate(-50%,0);
	z-index: 10;
	border: none;
	background: none;
}
#all_wrap #mainVisual > h1 img {
	width: 100%;
	height: auto;
}
.mv_wrap {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.mv_info {
	width: 50%;
	height: 100%;
	padding: 0 0 0 150px;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
	z-index: 10;
}
#all_wrap .mv_info > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	border: none;
	background: none;
	font-size: 26px;
	line-height: 1.5em;
	color: var(--main);
	text-align: left;
	letter-spacing: 0.2em;
}
#all_wrap .mv_info > p {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 16px;
}

/*Swiper*/
#all_wrap #mainVisual .swiper {
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap #mainVisual .swiper::before {
	content: '';
	display: block;
	width: 100px;
	height: 120px;
	aspect-ratio: 10 / 12;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/flower-illust-blue.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	position: absolute;
	top: 100px;
	left: -40px;
	z-index: 5;
}
#all_wrap .mainVisualSwiper {
	width: 500px;
	min-width: 500px;
	padding: 0;
	margin: 0;
	height: auto;
	aspect-ratio: 500 / 640;
	z-index: 0;
	overflow: visible;
}
.mainVisualSwiper .swiper-slide {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
}
/* ページネーションを左側に縦配置 */
#all_wrap #mainVisual .swiper-pagination {
	width: 8px;
	position: absolute;
	left: -20px;
	bottom: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	gap: 10px;
	z-index: 10;
}
/* デフォルトの丸を四角に変更 */
#all_wrap #mainVisual .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: none;
	border: 1px solid #fff;
	border-radius: 50%;
	opacity: 1;
	transition: var(--ease);
}
/* アクティブ時 */
#all_wrap #mainVisual .swiper-pagination-bullet-active {
	background: #fff;
	transition: var(--ease);
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#mainVisual {
		position: relative;
		width: 100%;
		height: auto; /* ビューポートの高さに合わせる */
		overflow: hidden;
		z-index: 0;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	#mainVisual::before {
		width: 45%;
		height: 360px;
	}
	#all_wrap #mainVisual > h1 {
		display: none;
	}
	.mv_wrap {
		width: 100%;
		padding: 120px 100px 30px;
		margin: 0;
		position: relative;
		display: flex;
		justify-content: flex-end;
		align-items: center;
		flex-wrap: wrap;
		grid-row-gap: 50px;
	}
	.mv_info {
		width: 100%;
		padding: 0;
	}
	#all_wrap .mv_info > h2 {
		margin: 0 auto 40px;
		font-size: 24px;
		text-align: center;
	}
	#all_wrap .mv_info > p {
		margin: 0 auto 60px;
		font-size: 14px;
		text-align: center;
	}

	/*Swiper*/
	#all_wrap #mainVisual .swiper {
		padding: 0;
		margin: 0;
		position: relative;
	}
	#all_wrap #mainVisual .swiper::before {
		content: '';
		display: block;
		width: 70px;
		height: auto;
		aspect-ratio: 10 / 12;
		position: absolute;
		top: 80px;
		left: -35px;
		z-index: 5;
	}
	#all_wrap .mainVisualSwiper {
		width: 400px;
		min-width: 400px;
		padding: 0;
		margin: 0;
		height: auto;
		aspect-ratio: 28 / 36;
		z-index: 0;
		overflow: visible;
	}
	.mainVisualSwiper .swiper-slide {
		width: 100%;
		height: 100%;
		background-size: cover;
		background-position: center;
		aspect-ratio: 28 / 36;
	}
	/* ページネーションを左側に縦配置 */
	#all_wrap #mainVisual .swiper-pagination {
		width: 5px;
		position: absolute;
		left: -15px;
		gap: 7px;
		z-index: 10;
	}
	/* デフォルトの丸を四角に変更 */
	#all_wrap #mainVisual .swiper-pagination-bullet {
		border: 1px solid var(--main);
		transition: var(--ease);
	}
	/* アクティブ時 */
	#all_wrap #mainVisual .swiper-pagination-bullet-active {
		background: var(--main);
		transition: var(--ease);
	}

	#all_wrap #mainVisual .btnList.left {
		justify-content: center;
	}
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 480px){
	#mainVisual {
		position: relative;
		width: 100%;
		height: auto; /* ビューポートの高さに合わせる */
		overflow: hidden;
		z-index: 0;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	#mainVisual::before {
		width: 45%;
		height: 360px;
	}
	#all_wrap #mainVisual > h1 {
		display: none;
	}
	.mv_wrap {
		width: 100%;
		padding: 120px 30px 30px;
		margin: 0;
		position: relative;
		display: flex;
		justify-content: flex-end;
		align-items: center;
		flex-wrap: wrap;
		grid-row-gap: 50px;
	}
	.mv_info {
		width: 100%;
		padding: 0;
	}
	#all_wrap .mv_info > h2 {
		margin: 0 auto 30px;
		font-size: 20px;
	}
	#all_wrap .mv_info > p {
		margin: 0 auto 40px;
		font-size: 13px;
	}

	/*Swiper*/
	#all_wrap #mainVisual .swiper {
		padding: 0;
		margin: 0;
		position: relative;
	}
	#all_wrap #mainVisual .swiper::before {
		content: '';
		display: block;
		width: 70px;
		height: auto;
		aspect-ratio: 10 / 12;
		position: absolute;
		top: 80px;
		left: -35px;
		z-index: 5;
	}
	#all_wrap .mainVisualSwiper {
		width: calc(100% - 50px);
		min-width: calc(100% - 50px);
		padding: 0;
		margin: 0;
		height: auto;
		aspect-ratio: 28 / 36;
		z-index: 0;
		overflow: visible;
	}
	.mainVisualSwiper .swiper-slide {
		width: 100%;
		height: 100%;
		background-size: cover;
		background-position: center;
		aspect-ratio: 28 / 36;
	}
	/* ページネーションを左側に縦配置 */
	#all_wrap #mainVisual .swiper-pagination {
		width: 5px;
		position: absolute;
		left: -15px;
		gap: 7px;
		z-index: 10;
	}
	/* デフォルトの丸を四角に変更 */
	#all_wrap #mainVisual .swiper-pagination-bullet {
		border: 1px solid var(--main);
		transition: var(--ease);
	}
	/* アクティブ時 */
	#all_wrap #mainVisual .swiper-pagination-bullet-active {
		background: var(--main);
		transition: var(--ease);
	}
	
	#all_wrap #mainVisual .btnList.left {
		justify-content: center;
	}
}

/************************************************************/
/*　サイドバー
/************************************************************/
.l-sidebar {
	width: 360px;
	min-width: 360px;
	padding: 0;
	margin: 0;
	position: relative;
}

.l-sidebar .aside {
	margin-bottom: 40px;
}
.l-sidebar .aside > header {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 5px;
	padding: 12px;
	margin: 0 auto 10px;
	background: var(--main);
	position: relative;
	z-index: 0;
}
.l-sidebar .aside > header.mb0 {
	margin-bottom: 0;
}
.l-sidebar .aside > 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 .l-sidebar .aside > header > h2 {
	font-size: 10px;
	line-height: 1;
	font-weight: 400;
	color: #fff;
}
.sideTags {
	display: flex;
	justify-content: flex-start;
	align-content: flex-start;
	flex-wrap: wrap;
	column-gap: 5px;
	grid-row-gap: 5px;
}
.sideTags .tag {
	display: inline-block;
	padding: 0;
	margin: 0;
	line-height: 1;
}
.sideTags .tag a {
	display: inline-block;
	padding: 5px 8px;
	margin: 0;
	background: var(--sub);
	font-size: 10px;
	line-height: 1;
	color: #fff;
	font-weight: lighter;
	border-radius: 16px;
	text-decoration: none;
	transition: var(--ease);
}
.sideTags .tag a:hover {
	filter: brightness(1.1);
	transition: var(--ease);
}

/* - 記事一覧*/
#all_wrap .sid_blogList {
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
}
#all_wrap .sid_blogList > li {
	padding: 15px 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: 10px;
	position: relative;
}
#all_wrap .sid_blogList > li > a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
#all_wrap .sid_blogList > li figure {
	width: 70px;
	padding: 0;
	margin: 0;
	position: relative;
	text-align: center;
	overflow: hidden;
	border-radius: 50%;
}
#all_wrap .sid_blogList > li figure::before {
	content: '';
	display: block;
	padding: 50%;
}
#all_wrap .sid_blogList > li 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 .sid_blogList_info {
	width: calc(100% - 70px - 10px);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 5px;
}
#all_wrap .sid_blogList_info > h3 {
	padding: 0;
	margin: 0;
	position: relative;
	font-size: 12px;
	line-height: 1.4em;
	font-weight: 500;
	color: #19244c;
	transition: all 0.3s ease;
}
#all_wrap .sid_blogList_info > .date {
	font-size: 10px;
	line-height: 1;
	color: #999;
}
#all_wrap .sid_blogList > li:hover .sid_blogList_info > h3 {
	text-decoration: underline;
	transition: all 0.3s ease;
	color: #2585b5;
}


/*メニュー*/
#all_wrap #menu-sidebar-menu {
	width: 100%;
	padding: 0;
	margin: 0;
	background: var(--main);;
	border: 10px solid var(--main);
	border-top: none;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 1px;
}
#all_wrap #menu-sidebar-menu > li {
	width: 100%;
	padding: 0;
	margin: 0;
	background: #fff;
	position: relative;
}
#all_wrap #menu-sidebar-menu > li > a {
	display: block;
	width: 100%;
	padding: 10px 10px 10px 30px;
	margin: 0;
	position: relative;
	font-size: 13px;
	line-height: 1.2em;
	color: var(--text);
	text-decoration: none;
	transition: var(--ease);
}
#all_wrap #menu-sidebar-menu > li > a::before {
	content: '';
	display: block;
	width: 6px;
	height: auto;
	aspect-ratio: 23 / 31;
	background-image: url('https://toso-no1.com/wp-content/uploads/arrow.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	position: absolute;
	top: 14px;
	left: 12px;
}
#all_wrap #menu-sidebar-menu > li > a:hover {
	color: var(--sub);
	transition: var(--ease);
}

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

/************************************************************/
/*　フッター
/************************************************************/
.l-footer {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
.footer_wrap {
	width: 100%;
	max-width: 1200px;
	padding: 120px 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	column-gap: 50px;
	align-items: flex-start;
}
.footer_left {
	width: calc(100% - 50px - 500px);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 70px;
}
.footer_right {
	width: 500px;
	min-width: 500px;
	padding: 110px 0 0;
	margin: 0;
	position: relative;
}
/*情報*/
.panel_info {
	padding: 0;
	margin: 0;
	position: relative;
}
.panel_info .logo {
	width: auto;
	height: 40px;
}
.panel_info .logo img {
	width: auto;
	height: 100%;
}
/*メニュー*/
#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::before {
	content: '';
	display: block;
	width: 360px;
	height: 360px;
	aspect-ratio: 1/1;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/symbolmark-blue.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	position: absolute;
	top: 0;
	left: -30px;
	z-index: -1;
}
#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: 15px;
	line-height: 1.2em;
	color: var(--act);
	text-decoration: none;
	transition: var(--ease);
	position: relative;
}
#all_wrap #menu-footer-menu > li a::after {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background: var(--act);
	position: absolute;
	bottom: -5px;
	left: 0;
	opacity: 0;
	visibility: hidden;
	transition: var(--ease);
}
#all_wrap #menu-footer-menu > li a:hover::after {
	opacity: 1;
	visibility: visible;
	transition: var(--ease);
}

/*SNS*/
#all_wrap #menu-sns-menu {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 20px;
	grid-row-gap: 20px;
}
#all_wrap #menu-sns-menu > li {
	width: auto;
	height: 24px;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap #menu-sns-menu > li img {
	width: auto;
	height: 100%;
	transition: var(--ease);
}
#all_wrap #menu-sns-menu > li img:hover {
	opacity: 0.8;
	transition: var(--ease);
}

/*リンク*/
#all_wrap .footer-link {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 50px;
}
#all_wrap .footer-link > li {
	width: 100%;
	padding: 20px 40px;
	margin: 0;
	position: relative;
	background: var(--main);
	border-radius: 50px 0 50px 0;
	transition: var(--ease);
}
#all_wrap .footer-link > li:hover {
	background: var(--act);
	transition: var(--ease);
}
#all_wrap .footer-link > li a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
}
#all_wrap .footer-link > li > h3 {
	width: 100%;
	padding: 10px 20px;
	margin: 0 auto;
	position: relative;
	border-bottom: 1px solid #fff;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 10px;
	font-size: 17px;
	line-height: 1;
	color: #fff;
}
#all_wrap .footer-link > li > h3::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	aspect-ratio: 1/1;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/shine-icon-white.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}
#all_wrap .footer-link > li > h3::after {
	content: '';
	display: block;
	width: 12px;
	height: 12px;
	margin: 0 0 0 auto;
	aspect-ratio: 1/1;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/arrow-icon-w.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}
#all_wrap .footer-link > li > p {
	width: 100%;
	padding: 15px 20px;
	margin: 0;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	color: #fff;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.l-footer {
		width: 100%;
		background: #fff;
	}
	.footer_wrap {
		width: 100%;
		max-width: 100%;
		padding: 150px 30px 50px;
		flex-wrap: wrap;
		column-gap: 50px;
		align-items: flex-start;
		position: relative;
	}
	.footer_wrap::before {
		content: '';
		display: block;
		width: 100%;
		height: 35px;
		background-image: url('https://reliefport-femina.com/wp-content/uploads/femina-logo.svg');
		background-repeat: no-repeat;
		background-position: left center;
		background-size: auto 100%;
		margin: 0 auto 40px;
	}
	.footer_left {
		width: 100%;
		grid-row-gap: 60px;
		order: 1;
	}
	.footer_right {
		width: 100%;
		min-width: 100%;
		padding: 0;
	}
	/*情報*/
	.panel_info {
		padding: 0;
		margin: 0;
		position: relative;
	}
	.panel_info .logo {
		display: none;
	}
	/*メニュー*/
	#all_wrap #menu-footer-menu {
		width: 100%;
		column-gap: 20px;
		grid-row-gap: 25px;
	}
	#all_wrap #menu-footer-menu::before {
		content: '';
		display: block;
		width: 260px;
		height: 260px;
		top: 0;
		left: -10px;
		z-index: 0;
	}
	#all_wrap #menu-footer-menu > li {
		width: calc((100% - 20px) / 2);
	}
	#all_wrap #menu-footer-menu > li a {
		font-size: 14px;
	}

	/*SNS*/
	#all_wrap #menu-sns-menu {
		width: 100%;
		column-gap: 10px;
		grid-row-gap: 10px;
	}
	#all_wrap #menu-sns-menu > li {
		width: auto;
		height: 22px;
	}

	/*リンク*/
	#all_wrap .footer-link {
		width: 100%;
		grid-row-gap: 30px;
	}
	#all_wrap .footer-link > li {
		width: 100%;
		padding: 20px 30px;
		border-radius: 40px 0 40px 0;
	}
	#all_wrap .footer-link > li > h3 {
		width: 100%;
		padding: 0 10px 10px;
		column-gap: 8px;
		font-size: 15px;
	}
	#all_wrap .footer-link > li > h3::before {
		width: 18px;
		height: 18px;
	}
	#all_wrap .footer-link > li > h3::after {
		width: 12px;
		height: 12px;
	}
	#all_wrap .footer-link > li > p {
		width: 100%;
		padding: 15px 10px 0;
	}
}

/*コピーライト*/
.copyright {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 30px 0;
	margin: 0 auto;
	position: relative;
	text-align: center;
	font-size: 10px;
	line-height: 1;
	color: var(--act);
	font-style: normal;
	background: var(--base3);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*コピーライト*/
	.copyright {
		width: 100%;
		padding: 15px 0;
		font-size: 12px;
	}
}

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

/************************************************************/
/*　リスト
/************************************************************/
.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: auto;
	border: none;
	background: none;
	padding: 0;
	width: 100%;
	max-width: 100%;
	margin: 0 auto 1em;
	border-radius: 0;
	background: #fff;
	border: none;
	border-top: 1px solid #ccc;
}
#all_wrap table th {
	display: table-cell;
	font-style: normal;
	font-feature-settings: "palt";
	border: none;
	border-bottom: 1px solid #ccc;
	text-align: center;
	vertical-align: middle;
	font-family: var(--font-jp);
	font-size: 14px;
	font-weight: 900;
	background: none;
	color: var(--text);
	width: auto;
	padding: 30px 15px;
	margin: 0;
}
#all_wrap table td {
	display: table-cell;
	border: none;
	background: none;
	vertical-align: inherit;
	padding: 30px 15px;
	margin: 0;
	font-size: 14px;
	font-weight: 400;
	border: none;
	border-bottom: 1px solid #ccc;
}
#all_wrap table td.ttl {
	display: table-cell;
	border: none;
	background: none;
	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: var(--main);
		color: #fff;
		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: #fafafa;
		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 .js-scrollable {
	width: calc(100%);
	overflow-y: hidden !important;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
#all_wrap .js-scrollable::-webkit-scrollbar{
	display:none;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*表*/
	#all_wrap .js-scrollable table {
		overflow: hidden;
		table-layout: auto;
		border: none;
		background: #fff;
		padding: 0;
		width: auto;
		max-width: unset;
		margin: 0 auto 20px;
		border: none;
	}
	#all_wrap .js-scrollable table th {
		font-style: normal;
		font-feature-settings: "palt";
		vertical-align: inherit;
		padding: 10px 15px;
		margin: 0;
		width: auto;
		min-width: auto;
		font-size: 14px;
		display: table-cell;
		text-align: center;
		border-bottom: 1px solid #fff;
		border-right: 1px solid #fff;
		background: var(--orange);
		color: #fff;
		white-space: nowrap;
	}
	#all_wrap .js-scrollable table td {
		vertical-align: inherit;
		border-bottom: none;
		padding: 10px 15px;
		margin: 0;
		font-size: 14px;
		width: auto;
		min-width: auto;
		display: table-cell;
		border-bottom: 1px solid #e3e3e3;
		border-right: 1px solid #e3e3e3;
		white-space: nowrap;
	}
}

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

#topContact {
	width: 100%;
	padding: 100px 0;
	margin: 0;
	background: #fff;
	position: relative;
	z-index: 0;
}
#topContact::before {
	content: '';
	display: block;
	width: 100%;
	height: 50px;
	background: var(--base);
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topContact {
		width: 100%;
		padding: 100px 20px 30px;
	}
	#topContact::before {
		width: 100%;
		height: 50px;
	}
}

/*新フォーム*/
#all_wrap .contactform {
	width: 100%;
	max-width: 950px;
	padding: 50px 0 0;
	margin: 0 auto 50px;
	background: #fff;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 20px;
	border-top: 2px solid rgb(234, 232, 228);
}
#all_wrap .contactform > li {
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	display: flex;
	display: -webkit-flex;
	align-items: flex-start;
	column-gap: 30px;
}
#all_wrap .contactform > li::before,
#all_wrap .contactform > li::after {
	display: none;
}
#all_wrap .contactform > li p {
	width: calc(100% - 30px - 250px);
	padding: 0;
	margin: 0;
}
#all_wrap .contactform > li h3 {
	font-size: 16px;
	line-height: 1;
	font-weight: 600;
	color: var(--text);
	width: 250px;
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	column-gap: 10px;
	top: 14px;
}
#all_wrap .contactform > li h3 .att {
	display: inline;
	padding: 5px 10px 7px;
	margin: 0;
	font-size: 11px;
	line-height: 1;
	color: #fff;
	background: var(--orange);
	border-radius: 20px;
}
#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: none;
	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: rgb(245, 245, 245);
	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: 15px;
	position: relative;
}
#all_wrap .wpcf7-checkbox span {
	cursor: pointer;
}
#all_wrap .wpcf7-checkbox label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	font-size: 16px;
	line-height: 1.3;
	color: var(--text);
	user-select: none;
}
#all_wrap .wpcf7-checkbox label input[type="checkbox"] {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 15px;
	height: 15px;
	padding: 0;
	margin: 0;
	border: 1px solid #ccc;
	border-radius: 0;
	background: #f9f9f9;
	cursor: pointer;
	position: relative;
	transition: var(--ease);
}
#all_wrap .wpcf7-checkbox label input[type="checkbox"]:hover {
	border-color: #999;
}
#all_wrap .wpcf7-checkbox label input[type="checkbox"]:checked {
	background-color: var(--sub);
	border-color: var(--sub);
}
#all_wrap .wpcf7-checkbox label input[type="checkbox"]:checked::after {
	content: "";
	position: absolute;
	left: 4px;
	top: 0px;
	width: 5px;
	height: 10px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(45deg);
}
#all_wrap .wpcf7-checkbox label span {
	font-weight: 700;
}

/*テキストエリア*/
#all_wrap .contactform > li textarea {
	width: 100%;
	padding: 15px;
	margin: 0;
	border-radius: 5px;
	border: none;
	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: rgb(245, 245, 245);
	outline: none;
}

/*ボタン*/
#all_wrap .txt_cent {
	text-align: center;
}
#all_wrap .txt_cent > span {
	display: inline-block;
	background-image: var(--gradient);
	font-size: 20px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	box-shadow: 0 3px 0 #2e4492;
	border-radius: 60px;
	filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	transition: var(--ease);
	position: relative;
}
#all_wrap .txt_cent > span::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	padding: 0;
	margin: 0;
	min-width: 20px;
	aspect-ratio: 1 / 1;
	background: #fff;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translate(0,-50%);
}
#all_wrap .txt_cent > span::after {
	content: '';
	display: block;
	width: 8px;
	height: 10px;
	background: #ff0000;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	position: relative;
	position: absolute;
	top: 50%;
	right: 35px;
	transform: translate(0,-50%);
}
#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: 20px 100px;
	margin: 0;
	background: none;
	font-family: var(--font-jp);
	font-size: 20px;
	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 > span:hover {
	box-shadow: 0 0 0 #2e4492;
	filter: brightness(1.1) drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
	transform: translateY(3px);
	transition: var(--ease);
}

#all_wrap .wpcf7 .ajax-loader {
	display: none;
}
.wpcf7-spinner {
	display: none;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*新フォーム*/
	#all_wrap .contactform {
		width: 100%;
		max-width: 100%;
		padding: 20px 0 0;
		margin: 0 auto 20px;
		background: #fff;
		position: relative;
		list-style: none;
		display: flex;
		flex-direction: column;
		grid-row-gap: 20px;
		border-top: 2px solid rgb(234, 232, 228);
	}
	#all_wrap .contactform > li {
		padding: 0;
		margin: 0;
		position: relative;
		list-style: none;
		display: flex;
		display: -webkit-flex;
		align-items: flex-start;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 10px;
	}
	#all_wrap .contactform > li::before,
	#all_wrap .contactform > li::after {
		display: none;
	}
	#all_wrap .contactform > li p {
		width: calc(100%);
		padding: 0;
		margin: 0;
	}
	#all_wrap .contactform > li h3 {
		font-size: 15px;
		line-height: 1;
		font-weight: 600;
		color: var(--text);
		width: 100%;
		padding: 0;
		margin: 0;
		border: none;
		background: none;
		position: relative;
		display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		column-gap: 10px;
		top: 0;
	}
	#all_wrap .contactform > li h3 .att {
		display: inline;
		padding: 3px 7px 5px;
		font-size: 0.8rem;
		border-radius: 20px;
	}
	#all_wrap .contactform > li input {
		border-radius: 0;
		border: 1px solid #ccc;
		box-shadow: none;
		font-size: 14px;
		padding: 10px;
	}
	#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: 14px;
		padding: 0;
	}
	#all_wrap .contactform > li input.wpcf7-text {
		width: 100%;
		padding: 10px;
		margin: 0;
		border-radius: 5px;
		border: none;
		box-shadow: none;
		font-family: var(--font-jp);
		font-weight: 500;
		font-style: normal;
		font-feature-settings: "palt";
		font-size: 14px;
		line-height: 1;
		background: rgb(245, 245, 245);
		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 {
		width: calc(50% - 10px);
		display: 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: 20px;
		grid-row-gap: 10px;
		position: relative;
	}
	#all_wrap .wpcf7-checkbox > span {
		cursor: pointer;
	}
	#all_wrap .wpcf7-checkbox label {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		cursor: pointer;
		font-size: 15px;
		line-height: 1.3;
		color: var(--text);
		user-select: none;
	}
	#all_wrap .wpcf7-checkbox label input[type="checkbox"] {
		appearance: none;
		-webkit-appearance: none;
		-moz-appearance: none;
		width: 15px;
		height: 15px;
		min-width: 15px;
		aspetc-ratio: 1/1;
		padding: 0;
		margin: 0;
		border: 1px solid #ccc;
		border-radius: 0;
		background: #f9f9f9;
		cursor: pointer;
		position: relative;
		transition: var(--ease);
	}
	#all_wrap .wpcf7-checkbox label input[type="checkbox"]:hover {
		border-color: #999;
	}
	#all_wrap .wpcf7-checkbox label input[type="checkbox"]:checked {
		background-color: var(--sub);
		border-color: var(--sub);
	}
	#all_wrap .wpcf7-checkbox label input[type="checkbox"]:checked::after {
		content: "";
		position: absolute;
		left: 4px;
		top: 0px;
		width: 5px;
		height: 10px;
		border-right: 2px solid #fff;
		border-bottom: 2px solid #fff;
		transform: rotate(45deg);
	}
	#all_wrap .wpcf7-checkbox label span {
		font-weight: 700;
	}

	/*テキストエリア*/
	#all_wrap .contactform > li textarea {
		width: 100%;
		padding: 10px;
		margin: 0;
		border-radius: 5px;
		border: none;
		box-shadow: none;
		font-family: var(--font-jp);
		font-weight: 500;
		font-style: normal;
		font-feature-settings: "palt";
		font-size: 14px;
		line-height: 1.7em;
		background: rgb(245, 245, 245);
		outline: none;
	}

	/*ボタン*/
	#all_wrap .txt_cent {
		text-align: center;
	}
	#all_wrap .txt_cent > span {
		display: inline-block;
		background-image: var(--gradient);
		font-size: 18px;
		line-height: 1;
		font-weight: 700;
		color: #fff;
		box-shadow: 0 3px 0 #2e4492;
		border-radius: 60px;
		filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
		text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
		transition: var(--ease);
		position: relative;
	}
	#all_wrap .txt_cent > span::before {
		content: '';
		display: block;
		width: 18px;
		height: 18px;
		min-width: 18px;
		aspect-ratio: 1 / 1;
		top: 50%;
		right: 15px;
	}
	#all_wrap .txt_cent > span::after {
		content: '';
		display: block;
		width: 6px;
		height: 8px;
		top: 50%;
		right: 20px;
	}
	#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: 10px 40px;
		margin: 0;
		background: none;
		font-family: var(--font-jp);
		font-size: 18px;
		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 > span:hover {
		box-shadow: 0 0 0 #2e4492;
		filter: brightness(1.1) drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
		transform: translateY(3px);
		transition: var(--ease);
	}

	#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; }
.tb { display:none !important; }
.sp { display:none !important; }
@media screen and (max-width: 768px){   
	.pc { display:none !important; }
	.tb { display:block !important; }
	.sp { display:none !important; }
}
@media screen and (max-width: 480px){   
	.pc { display:none !important; }
	.tb { display:none !important; }
	.sp { display:block !important; }
}

.pc_none { display:none !important; }
.tb_none { display:block!important; }
.sp_none { display:block !important; }
@media screen and (max-width: 768px){   
	.pc_none { display:block !important; }
	.tb_none { display:none !important; }
	.sp_none { display:block !important; }
}
@media screen and (max-width: 480px){   
	.pc_none { display:block !important; }
	.tb_none { display:block !important; }
	.sp_none { display:none !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;
	}
}

/************************************************************/
/*　記事詳細
/************************************************************/

/*==============================*/
/*目次*/
/*==============================*/
#all_wrap .content .toc {
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
}
#all_wrap .content .toc-title {
	display: inline-block;
	padding: 5px 10px;
	margin: 0;
	background: var(--act);
	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: var(--base);
}
#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: block;
	padding: 0 0 0 1.3em;
	position: relative;
	text-decoration: none;
	font-weight: bold;
	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: block;
	padding: 0 0 0 1.8em;
	position: relative;
	text-decoration: none;
	font-size: 13px;
	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;
	color: var(--link);
}
#all_wrap .content .contentstable-number {
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	font-family: "Ubuntu", sans-serif;
}
#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;
}


/*タグ*/
.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(--main);
	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 !important;
}

/* 記事一覧*/
#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: var(--text);
	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(--link);
	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 .btnList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 20px;
	grid-row-gap: 15px;
}
#all_wrap .btnList.left {
	justify-content: flex-start;
}
#all_wrap .btnList.right {
	justify-content: flex-end;
}
#all_wrap .btnList > a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 340px;
	padding: 20px 30px;
	margin: 0;
	background: var(--act);
	border-radius: 50px;
	font-size: 16px;
	line-height: 1;
	letter-spacing: 0.2em;
	color: #fff;
	transition: var(--ease);
}
#all_wrap .btnList > a:hover {
	opacity: 0.9;
	transition: var(--ease);
}
/* - ベースカラー*/
#all_wrap .btnList > a.basecolor {
	background: var(--base);
	color: var(--act);
	transition: var(--ease);
}
#all_wrap .btnList > a.basecolor:hover {
	background: var(--act);
	color: #fff;
	transition: var(--ease);
}
/* - 白カラー*/
#all_wrap .btnList > a.white {
	background: #fff;
	color: var(--act);
	transition: var(--ease);
}
#all_wrap .btnList > a.white:hover {
	background: #fff;
	color: var(--act);
	opacity: 0.8;
	transition: var(--ease);
}
/* - ボーダー*/
#all_wrap .btnList > a.border {
	background: none;
	border: 1px solid var(--act);
	color: var(--act);
	transition: var(--ease);
}
#all_wrap .btnList > a.border:hover {
	background: var(--act);;
	color: #fff;
	opacity: 0.8;
	transition: var(--ease);
}
/* - メール*/
#all_wrap .btnList > a.mail {
	column-gap: 15px;
	border-radius: 20px;
	background: var(--base);
	color: var(--act);
	transition: var(--ease);
}
#all_wrap .btnList > a.mail::before {
	content: '';
	display: block;
	width: 25px;
	height: 20px;
	aspect-ratio: 25 / 20;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/mail-icon.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}
#all_wrap .btnList > a.mail:hover {
	background: #FCE9DF;
	color: var(--act);
	transition: var(--ease);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .btnList > a {
		width: 300px;
		font-size: 15px;
		letter-spacing: 0.15em;
	}
	/* - メール*/
	#all_wrap .btnList > a.mail {
		width: auto;
	}
	#all_wrap .btnList > a.mail::before {
		content: '';
		display: block;
		width: auto;
		height: 18px;
	}
}

/*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: 30px !important; }
	.mt100 { margin-top: 40px !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: 180px 0 140px;
	margin: 0 auto;
	position: relative;
}
/*ヘッダー*/
#all_wrap #topMedia > header {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto 40px;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 15px;
}
#all_wrap #topMedia > header::before {
	content: '';
	display: block;
	width: 25px;
	height: 25px;
	min-width: 25px;
	aspect-ratio: 1/1;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/favicon.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}
#all_wrap #topMedia > header > em {
	display: block;
	padding: 0;
	margin: 0;
	font-family: var(--font-en);
	font-size: 28px;
	line-height: 1;
	color: var(--main);
	font-style: normal;
}
#all_wrap #topMedia > header > h2 {
	padding: 0;
	margin: 0;
	margin-left: 15px;
	position: relative;
	border: none;
	background: none;
	font-size: 13px;
	line-height: 1;
	color: var(--text);
	text-align: left;
}

.topMedia_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: 50px;
}
.topMedia_left {
	width: 50%;
	padding: 0;
	margin: 0;
	position: relative;
}
.topMedia_right {
	width: calc(50% - 50px);
	padding: 0;
	margin: 0;
	position: relative;
}

/*リスト1*/
#all_wrap .mediaList_top {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	list-style: none;
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 30px;
}
#all_wrap .mediaList_top > li {
	width: 100%;
	padding: 50px 40px;
	margin: 0;
	background: var(--base);
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 40px;
	transition: var(--ease);
}
#all_wrap .mediaList_top > li:hover {
	background: rgba(225, 93, 84, 0.1);
	transition: var(--ease);
}
#all_wrap .mediaList_top > li > figure {
	width: 200px;
	min-width: 200px;
	height: auto;
	aspect-ratio: 1/1;
	border-radius: 50%;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}
#all_wrap .mediaList_top > li > figure::before {
	content: '';
	display: block;
	padding: 50%;
	background: rgba(225, 93, 84, 0);
	transition: var(--ease);
	position: relative;
	z-index: 5;
}
#all_wrap .mediaList_top > li:hover > figure::before {
	background: rgba(225, 93, 84, 0.2);
	transition: var(--ease);
}
#all_wrap .mediaList_top > 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_top > li:hover > figure img {
	transform: translate(-50%,-50%) scale(1.05);
	transform-origin: center;
	transition: var(--ease);
}
.mediaList_top_info {
	width: calc(100% - 30px - 200px);
	padding: 0;
	margin: 0;
	position: relative;
}
.mediaList_top_info .date {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 10px;
	font-family: var(--font-num);
	font-size: 14px;
	line-height: 1;
	color: var(--sub);
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
}
.mediaList_top_info .date::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	aspect-ratio: 1/1;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/shine-illust-blue.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}
.mediaList_top_info .cats {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 10px;
	font-size: 12px;
	line-height: 1;
	color: var(--main);
	width: 100%;
	padding: 0;
	margin: 0 auto 30px;
}
#all_wrap .mediaList_top > li .mediaList_top_info > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	border: none;
	background: none;
	font-size: 17px;
	line-height: 1.4em;
	color: var(--text);
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .mediaList_top > li .mediaList_top_info > h3 a {
	font-size: 17px;
	line-height: 1.4em;
	color: var(--text);
	transition: var(--ease);
}
#all_wrap .mediaList_top > li:hover .mediaList_top_info > h3 a {
	opacity: 0.8;
	transition: var(--ease);
}
#all_wrap .tags  {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 20px;
	grid-row-gap: 15px;
	width: 100%;
	padding: 0;
	margin: 0;
}
#all_wrap .tags > span {
	padding: 0;
	margin: 0;
	font-size: 12px;
	line-height: 1;
	color: var(--main);
}
#all_wrap .tags > span a {
	font-size: 12px;
	line-height: 1;
	color: var(--main);
	transition: var(--ease);
}


/*リスト1*/
#all_wrap .mediaList_top.sub {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	list-style: none;
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 20px;
	grid-row-gap: 0;
	border-top: 1px solid var(--base);
}
#all_wrap .mediaList_top.sub > li {
	width: 100%;
	padding: 20px 10px;
	column-gap: 20px;
	background: none;
	border-bottom: 1px solid var(--base);
}
#all_wrap .mediaList_top.sub > li > figure {
	width: 110px;
	min-width: 110px;
}
.mediaList_top.sub .mediaList_top_info {
	width: calc(100% - 20px - 110px);
}
.mediaList_top.sub .mediaList_top_info .date {
	column-gap: 5px;
	font-size: 12px;
	margin: 0 auto 5px;
}
.mediaList_top.sub .mediaList_top_info .date::before {
	width: 17px;
	height: 17px;
}
.mediaList_top.sub .mediaList_top_info .cats {
	column-gap: 5px;
	font-size: 11px;
	margin: 0 auto 10px;
}
#all_wrap .mediaList_top.sub .mediaList_top_info > h3 {
	margin: 0 auto;
	font-size: 15px;
	line-height: 1.4em;
}
#all_wrap .mediaList_top.sub > li .mediaList_top_info > h3 a {
	font-size: 15px;
	line-height: 1.4em;
	color: var(--text);
	transition: var(--ease);
}
#all_wrap .mediaList_top.sub > li:hover .mediaList_top_info > h3 a {
	opacity: 0.8;
	transition: var(--ease);
}
#all_wrap .mediaList_top.sub .tags  {
	display: none;
}

/*More*/
#all_wrap .moreBtn {
	width: 100%;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 20px;
	grid-row-gap: 15px;
}
#all_wrap .moreBtn.mt30 {
	margin-top: 30px;
}
#all_wrap .moreBtn > a {
	display: inline-flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 10px;
	min-width: 170px;
	padding: 10px 30px;
	font-size: 14px;
	line-height: 1;
	color: var(--sub);
	background: none;
	border-radius: 50px;
	border: 1px solid var(--sub);
	text-decoration: none;
	transition: var(--ease);
}
#all_wrap .moreBtn > a::after {
	content: '';
	display: block;
	width: 12px;
	height: 12px;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/arrow-icon.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	transition: var(--ease);
}
#all_wrap .moreBtn > a:hover {
	color: #fff;
	background: var(--sub);
	text-decoration: none;
	transition: var(--ease);
}
#all_wrap .moreBtn > a:hover::after {
	background-image: url('https://reliefport-femina.com/wp-content/uploads/arrow-icon-w.svg');
	transition: var(--ease);
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topMedia {
		width: 100%;
		padding: 150px 0 140px;
	}
	/*ヘッダー*/
	#all_wrap #topMedia > header {
		width: calc(100% - 60px);
		max-width: 100%;
		margin: 0 auto 30px;
		column-gap: 15px;
	}
	#all_wrap #topMedia > header::before {
		width: 22px;
		height: 22px;
		min-width: 22px;
	}
	#all_wrap #topMedia > header > em {
		font-size: 26px;
	}
	#all_wrap #topMedia > header > h2 {
		margin-left: 10px;
		font-size: 12px;
	}

	.topMedia_wrap {
		width: calc(100% - 60px);
		max-width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 50px;
	}
	.topMedia_left {
		width: 100%;
	}
	.topMedia_right {
		width: 100%;
	}

	/*リスト1*/
	#all_wrap .mediaList_top {
		column-gap: 30px;
		grid-row-gap: 30px;
	}
	#all_wrap .mediaList_top > li {
		width: 100%;
		padding: 55px 60px;
		column-gap: 45px;
	}
	#all_wrap .mediaList_top > li > figure {
		width: 220px;
		min-width: 220px;
	}
	.mediaList_top_info {
		width: calc(100% - 45px - 220px);
	}
	.mediaList_top_info .date {
		font-size: 13px;
	}
	.mediaList_top_info .date::before {
		width: 18px;
		height: 18px;
	}
	.mediaList_top_info .cats {
		font-size: 12px;
	}
	#all_wrap .mediaList_top > li .mediaList_top_info > h3 {
		margin: 0 auto 30px;
		font-size: 16px;
	}
	#all_wrap .mediaList_top > li .mediaList_top_info > h3 a {
		font-size: 16px;
	}
	#all_wrap .tags  {
		display: flex;
		justify-content: flex-start;
		align-items: center;
		flex-wrap: wrap;
		column-gap: 20px;
		grid-row-gap: 15px;
		width: 100%;
		padding: 0;
		margin: 0;
	}


	/*リスト1*/
	#all_wrap .mediaList_top.sub {
		width: 100%;
		grid-row-gap: 0;
		border-top: 1px solid var(--base);
	}
	#all_wrap .mediaList_top.sub > li {
		width: 100%;
		padding: 20px 40px;
		column-gap: 30px;
	}
	#all_wrap .mediaList_top.sub > li > figure {
		width: 110px;
		min-width: 110px;
	}
	.mediaList_top.sub .mediaList_top_info {
		width: calc(100% - 30px - 110px);
	}

	/*More*/
	#all_wrap .moreBtn.mt30 {
		margin-top: 30px !important;
	}
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 480px){
	#topMedia {
		width: 100%;
		padding: 90px 0 110px;
	}
	/*ヘッダー*/
	#all_wrap #topMedia > header {
		width: calc(100% - 40px);
		max-width: 100%;
		margin: 0 auto 40px;
		flex-wrap: wrap;
		column-gap: 10px;
		grid-row-gap: 10px;
	}
	#all_wrap #topMedia > header::before {
		width: 20px;
		height: 20px;
		min-width: 20px;
	}
	#all_wrap #topMedia > header > em {
		font-size: 22px;
	}
	#all_wrap #topMedia > header > h2 {
		margin-left: 0;
		font-size: 12px;
	}

	.topMedia_wrap {
		width: calc(100% - 40px);
		max-width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 30px;
	}
	.topMedia_left {
		width: 100%;
	}
	.topMedia_right {
		width: 100%;
	}

	/*リスト1*/
	#all_wrap .mediaList_top {
		width: 100%;
		grid-row-gap: 30px;
	}
	#all_wrap .mediaList_top > li {
		width: 100%;
		padding: 0 30px 30px;
		margin: 0;
		background: none;
		position: relative;
		display: flex;
		flex-direction: column;
		column-gap: 0;
		grid-row-gap: 15px;
		transition: var(--ease);
	}
	#all_wrap .mediaList_top > li::before {
		content: '';
		display: block;
		width: 100%;
		height: calc(100% - 90px);
		background: var(--base);
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: -1;
	}
	#all_wrap .mediaList_top > li:hover {
		background: none;
		transition: var(--ease);
	}
	#all_wrap .mediaList_top > li > figure {
		width: 180px;
		min-width: 180px;
		margin: 0 auto 10px;
	}
	.mediaList_top_info {
		width: calc(100%);
	}
	.mediaList_top_info .cats {
		margin: 0 auto 15px;
	}
	#all_wrap .mediaList_top > li .mediaList_top_info > h3 {
		width: 100%;
		margin: 0 auto 15px;
		font-size: 15px;
		line-height: 1.7em;
	}
	#all_wrap .mediaList_top > li .mediaList_top_info > h3 a {
		font-size: 15px;
		line-height: 1.7em;
		color: var(--text);
		transition: var(--ease);
	}
	/*リスト1*/
	#all_wrap .mediaList_top.sub {
		width: 100%;
		column-gap: 0;
		grid-row-gap: 0;
		border-top: 1px solid var(--base);
	}
	#all_wrap .mediaList_top.sub > li {
		width: 100%;
		padding: 20px 5px;
		column-gap: 20px;
		background: none;
		border-bottom: 1px solid var(--base);
		flex-direction: unset;
	}
	#all_wrap .mediaList_top.sub > li::before {
		display: none;
	}
	#all_wrap .mediaList_top.sub > li > figure {
		width: 90px;
		min-width: 90px;
	}
	.mediaList_top.sub .mediaList_top_info {
		width: calc(100% - 20px - 90px);
	}
	#all_wrap .mediaList_top.sub .mediaList_top_info > h3 {
		margin: 0 auto;
		font-size: 13px;
		line-height: 1.4em;
	}
	#all_wrap .mediaList_top.sub > li .mediaList_top_info > h3 a {
		font-size: 13px;
		line-height: 1.4em;
		color: var(--text);
		transition: var(--ease);
	}

	/*More*/
	#all_wrap .moreBtn {
		width: 100%;
		column-gap: 20px;
		grid-row-gap: 15px;
	}
	#all_wrap .moreBtn.mt30 {
		margin-top: 20px !important;
	}
	#all_wrap .moreBtn > a {
		column-gap: 10px;
		min-width: 170px;
		padding: 10px 25px;
		font-size: 14px;
	}
}

/************************************************************/
/*　トップページ　当院について
/************************************************************/
#topAbout {
	width: 100%;
	padding: 120px 0;
	margin: 0 auto;
	background: var(--base2);
	position: relative;
}
/*ヘッダー*/
#all_wrap #topAbout > header {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto 70px;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
#all_wrap #topAbout > header > h2 {
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	font-size: 13px;
	line-height: 1;
	color: var(--sub);
	text-align: center;
}
#all_wrap #topAbout > header > em {
	display: block;
	padding: 0;
	margin: 0 auto 20px;
	font-family: var(--font-en);
	font-size: 42px;
	line-height: 1;
	color: var(--sub);
	font-style: normal;
	text-align: center;
	letter-spacing: 0.1em;
}
#all_wrap #topAbout > header > i {
	display: block;
	width: 170px;
	height: auto;
	padding: 0;
	margin: 0 auto;
}
#all_wrap #topAbout > header > i img {
	width: 100%;
	height: auto;
}
/*情報*/
#all_wrap .topAbout_info {
	width: 100%;
	padding: 0;
	margin: 0 auto 100px;
	position: relative;
}
#all_wrap .topAbout_info > h2 {
	padding: 0;
	margin: 0 auto 50px;
	text-align: center;
	font-size: 20px;
	line-height: 2;
	color: var(--act);
	border: none;
	background: none;
	position: relative;
}
#all_wrap .topAbout_info > p {
	padding: 0;
	margin: 0 auto 20px;
	text-align: center;
	color: var(--text);
}
/*リスト*/
#all_wrap .aboutList {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto 80px;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	column-gap: 40px;
	grid-row-gap: 40px;
}
#all_wrap .aboutList > li {
	width: calc((100% - 80px) / 3);
	padding: 55px 40px;
	margin: 0;
	background: #fff;
	border-radius: 60px 0 60px 0;
	display: flex;
	flex-direction: column;
	grid-row-gap: 25px;
}
#all_wrap .aboutList > li > header {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: baseline;
	column-gap: 8px;
}
#all_wrap .aboutList > li > header em {
	display: inline-block;
	padding: 0;
	margin: 0;
	font-family: var(--font-num);
	font-size: 17px;
	line-height: 1.4em;
	color: var(--main);
	font-style: normal;
}
#all_wrap .aboutList > li > header h3 {
	font-size: 17px;
	line-height: 1.4em;
	color: var(--main);
	letter-spacing: 0.15em;
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	position: relative;
}
#all_wrap .aboutList > li > figure {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	text-align: center;
}
#all_wrap .aboutList > li > figure::before {
	content: '';
	display: block;
	padding-top: 65%;
}
#all_wrap .aboutList > li > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .aboutList > li > p {
	padding: 0;
	margin: 0;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 15px;
	line-height: 1.8em;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topAbout {
		width: 100%;
		padding: 60px 0;
	}
	/*ヘッダー*/
	#all_wrap #topAbout > header {
		width: 100%;
		max-width: 100%;
		margin: 0 auto 35px;
	}
	#all_wrap #topAbout > header > h2 {
		font-size: 12px;
	}
	#all_wrap #topAbout > header > em {
		margin: 0 auto 20px;
		font-size: 30px;
	}
	#all_wrap #topAbout > header > i {
		display: block;
		width: 120px;
	}
	/*情報*/
	#all_wrap .topAbout_info {
		width: 100%;
		padding: 0 40px;
		margin: 0 auto 60px;
		position: relative;
	}
	#all_wrap .topAbout_info > h2 {
		margin: 0 auto 30px;
		font-size: 15px;
	}
	#all_wrap .topAbout_info > p {
		padding: 0;
		margin: 0 auto 20px;
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
		color: var(--text);
	}
	/*リスト*/
	#all_wrap .aboutList {
		width: calc(100% - 40px);
		max-width: 100%;
		padding: 0;
		margin: 0 auto 50px;
		column-gap: 0;
		grid-row-gap: 50px;
	}
	#all_wrap .aboutList > li {
		width: 100%;
		padding: 40px 30px;
		margin: 0;
		background: #fff;
		border-radius: 60px 0 60px 0;
		grid-row-gap: 20px;
	}
	#all_wrap .aboutList > li > header {
		width: 100%;
		column-gap: 8px;
	}
	#all_wrap .aboutList > li > header em {
		font-size: 17px;
	}
	#all_wrap .aboutList > li > header h3 {
		font-size: 15px;
	}
	#all_wrap .aboutList > li > p {
		font-size: 13px;
		line-height: 1.8em;
	}
}


/************************************************************/
/*　トップページ　メニュー
/************************************************************/
#topMenu {
	width: 100%;
	padding: 200px 0;
	margin: 0 auto;
	background: #fff;
	position: relative;
}
.tabs {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	background: #fff;
	overflow: hidden;
}
/* タブヘッダー */
.tab-head {
	display: flex;
	justify-content: flex-start;
	gap: 13px;
	padding: 0;
	margin: 0;
	background: none;
}
/* ラジオボタンは非表示にする（でもフォーカス可能） */
.tabs input[type="radio"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}
/* タブラベル */
.tab-label {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	width: calc((100% - 26px) / 3);
	padding: 15px;
	border-radius: 20px 20px 0 0;
	cursor: pointer;
	user-select: none;
	font-size: 17px;
	font-weight: 600;
	color: var(--act);
	text-align: center;
	transition: all 180ms ease;
	background: transparent;
	border: 1px solid var(--act);
	border-bottom: none;
}
/* ホバー / フォーカス */
.tab-label:hover,
.tab-label:focus {
	color: #fff;
	background: var(--act);
}
/* ラジオチェック状態のラベル（アクティブ） */
.tabs input[id="tab1"]:checked ~ .tab-head label[for="tab1"],
.tabs input[id="tab2"]:checked ~ .tab-head label[for="tab2"],
.tabs input[id="tab3"]:checked ~ .tab-head label[for="tab3"]{
	background: var(--act);
	color: #fff;
}
/* コンテンツパネル */
.tab-panels {
	padding: 100px 80px;
	background: #fff;
	border: 1px solid var(--act);
}
.tab-panel {
	display: none;
	animation: fade .18s ease;
}
@keyframes fade {
	from {opacity: 0; transform: translateY(6px);}
	to   {opacity: 1; transform: translateY(0);}
}
/* チェックされたパネルを表示 */
.tabs input[id="tab1"]:checked ~ .tab-panels #panel1,
.tabs input[id="tab2"]:checked ~ .tab-panels #panel2,
.tabs input[id="tab3"]:checked ~ .tab-panels #panel3 {
	display: block;
}

/*情報*/
#all_wrap .tab-panel > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	border: none;
	background: none;
	font-size: 24px;
	line-height: 1.4em;
	text-align: center;
	color: var(--act);
}
#all_wrap .tab-panel > p {
	padding: 0;
	margin: 0 auto 70px;
	text-align: center;
}
/*リスト*/
#all_wrap .menuList {
	width: 100%;
	padding: 0;
	margin: 0 auto 80px;
	position: relative;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 80px;
	grid-row-gap: 80px;
}
#all_wrap .menuList dl {
	width: calc((100% - 160px) / 3);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 20px;
}
#all_wrap .menuList dl dt {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 5px;
}
#all_wrap .menuList dl dt::before {
	content: '';
	display: block;
	width: 30px;
	height: 30px;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/shine-illust-blue.svg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
#all_wrap .menuList dl dt em {
	display: inline-block;
	padding: 0;
	margin: 0;
	font-family: var(--font-num);
	font-size: 16px;
	line-height: 1;
	font-style: normal;
	color: var(--sub);
	position: relative;
	top: -0.5em;
}
#all_wrap .menuList dl dt span {
	font-size: 17px;
	line-height: 1.4em;
	color: var(--act);
}
#all_wrap .menuList dl dd {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .menuList dl dd > p {
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .menuList dl dd > ul {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 12px;
}
#all_wrap .menuList dl dd > ul li {
	width: 100%;
	padding: 0 0 0 1em;
	margin: 0;
	position: relative;
}
#all_wrap .menuList dl dd > ul li::before {
	content: '・';
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topMenu {
		width: 100%;
		padding: 120px 0;
	}
	.tabs {
		width: calc(100% - 40px);
		max-width: 100%;
	}
	/* タブヘッダー */
	.tab-head {
		display: flex;
		justify-content: flex-start;
		gap: 5px;
		padding: 0;
		margin: 0;
		background: none;
	}
	/* ラジオボタンは非表示にする（でもフォーカス可能） */
	.tabs input[type="radio"] {
		position: absolute;
		opacity: 0;
		pointer-events: none;
	}
	/* タブラベル */
	.tab-label {
		gap: 8px;
		width: calc((100% - 5px) / 2);
		padding: 15px;
		border-radius: 14px 14px 0 0;
		font-size: 13px;
	}
	/* コンテンツパネル */
	.tab-panels {
		padding: 40px 25px;
	}

	/*情報*/
	#all_wrap .tab-panel > h3 {
		margin: 0 auto 20px;
		font-size: 20px;
	}
	#all_wrap .tab-panel > p {
		padding: 0;
		margin: 0 auto 40px;
		text-align: center;
	}
	/*リスト*/
	#all_wrap .menuList {
		width: calc(100% - 20px);
		margin: 0 auto 50px;
		column-gap: 0;
		grid-row-gap: 40px;
	}
	#all_wrap .menuList dl {
		width: 100%;
		grid-row-gap: 14px;
	}
	#all_wrap .menuList dl dt {
		width: 100%;
		column-gap: 5px;
	}
	#all_wrap .menuList dl dt::before {
		width: 25px;
		height: 25px;
	}
	#all_wrap .menuList dl dt em {
		font-size: 13px;
		top: -0.5em;
	}
	#all_wrap .menuList dl dt span {
		font-size: 15px;
	}
	#all_wrap .menuList dl dd > ul li {
		font-size: 13px;
	}
}

/************************************************************/
/*　トップページ　メニュー
/************************************************************/
#topCoop {
	width: 100%;
	padding: 0 50px;
	margin: 0 auto;
	background: #fff;
	position: relative;
}
.topCoop_wrap {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	background: var(--act);
	position: relative;
	display: flex;
	justify-content: space-between;	
}
.topCoop_wrap > figure {
	width: 400px;
	min-width: 400px;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.topCoop_wrap > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.topCoop_info {
	width: calc(100% - 400px);
	padding: 100px 0 50px 80px;
	margin: 0;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	column-gap: 120px;
	grid-row-gap: 40px;
}
.topCoop_info::before {
	content: '';
	display: block;
	width: 160px;
	height: auto;
	aspect-ratio: 160 / 100;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/flower-illust.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	position: absolute;
	right: 80px;
	top: -30px;
	z-index: 2;
}
#all_wrap .topCoop_info > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	font-size: 22px;
	line-height: 2;
	color: #fff;
	letter-spacing: 0.15em;
	text-align: left;
}
#all_wrap .topCoop_info > .topCoop_txt {
	width: calc(100% - 120px - 200px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .topCoop_info > .topCoop_txt > p {
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	color: #fff;
}
#all_wrap .topCoop_info > figure {
	width: 200px;
	min-width: 200px;
	height: auto;
	aspect-ratio: 400 / 560;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}
#all_wrap .topCoop_info > 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){
	#topCoop {
		width: 100%;
		padding: 0;
	}
	.topCoop_wrap {
		width: 100%;
		max-width: 100%;
		flex-wrap: wrap;
	}
	.topCoop_wrap > figure {
		width: 100%;
		min-width: 100%;
		height: 200px;
	}
	.topCoop_info {
		width: calc(100%);
		padding: 60px 30px 30px;
		column-gap: 0;
		grid-row-gap: 40px;
	}
	.topCoop_info::before {
		width: 120px;
		right: 30px;
		top: 180px;
		z-index: 2;
	}
	#all_wrap .topCoop_info > h2 {
		width: 100%;
		font-size: 16px;
		line-height: 1.8;
	}
	#all_wrap .topCoop_info > .topCoop_txt {
		width: calc(100%);
	}
	#all_wrap .topCoop_info > figure {
		width: 170px;
		min-width: 170px;
		padding: 0;
		margin: 0 0 0 auto;
		position: relative;
		right: -30px;
	}
}

/************************************************************/
/*　トップページ　レター
/************************************************************/
#topLetter {
	width: 100%;
	padding: 200px 120px 240px;
	margin: 0 auto;
	position: relative;
}
.topLetter_wrap {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 80px;
}
.topLetter_left {
	width: 450px;
	min-width: 450px;
	padding: 0;
	margin: 0;
	position: relative;
}
.topLetter_right {
	width: calc(100% - 80px - 450px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .topLetter_left > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto 100px;
	position: relative;
	border: none;
	background: none;
	font-size: 22px;
	line-height: 2;
	color: var(--act);
	letter-spacing: 0.15em;
}
#all_wrap .topLetter_left > figure {
	width: 385px;
	min-width: 385px;
	padding: 0;
	margin: 0 0 0 auto;
	position: relative;
}
#all_wrap .topLetter_left > figure img {
	width: 100%;
	height: auto;
}
#all_wrap .topLetter_right > h3 {
	width: 490px;
	min-width: 490px;
	padding: 0;
	margin: 0 0 100px auto;
}
#all_wrap .topLetter_right .topLetter_txt {
	padding: 0;
	margin: 0 auto 120px;
}
#all_wrap .topLetter_right p {
	padding: 0;
	margin: 0 auto 20px;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .topLetter_right p:last-of-type {
	margin-bottom: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topLetter {
		width: 100%;
		padding: 120px 30px 120px;
	}
	.topLetter_wrap {
		width: 100%;
		max-width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 40px;
	}
	.topLetter_left {
		width: 100%;
		min-width: 100%;
	}
	.topLetter_left::before {
		content: '';
		display: block;
		width: 100%;
		height: 50px;
		background-image: url('https://reliefport-femina.com/wp-content/uploads/femina-letter-logo.svg');
		background-repeat: no-repeat;
		background-position: left center;
		background-size: auto 100%;
		position: relative;
		margin: 0 auto 10px;
	}
	.topLetter_right {
		width: 100%;
	}
	#all_wrap .topLetter_left > h2 {
		margin: 0 auto 40px;
		font-size: 16px;
	}
	#all_wrap .topLetter_left > figure {
		width: 235px;
		min-width: 235px;
		padding: 0;
		margin: 0 0 0 auto;
		position: relative;
	}
	#all_wrap .topLetter_right > h3 {
		display: none;
	}
	#all_wrap .topLetter_right .topLetter_txt {
		padding: 0;
		margin: 0 auto 40px;
	}
	#all_wrap .topLetter_right p {
		padding: 0;
		margin: 0 auto 20px;
	}
}

/************************************************************/
/*　トップページ　プライス
/************************************************************/
#topPrice {
	width: 100%;
	padding: 0 50px 200px;
	margin: 0 auto;
	position: relative;
}
.topLetter_box {
	width: 100%;
	max-width: 1200px;
	padding: 70px;
	margin: 0 auto;
	background: var(--main);
	border-radius: 140px 0 140px 0;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	grid-row-gap: 60px;
}
.topLetter_box::before {
	content: '';
	display: block;
	width: 80px;
	height: auto;
	aspect-ratio: 80 / 78;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/shine-illust.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	position: absolute;
	bottom: 110px;
	left: 150px;
}
.topLetter_box::after {
	content: '';
	display: block;
	width: 106px;
	height: auto;
	aspect-ratio: 106 / 98;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/leaf-illust-blue.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	position: absolute;
	top: 70px;
	right: 170px;
}
#all_wrap .topLetter_box > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	font-family: var(--font-en);
	font-size: 48px;
	line-height: 1;
	color: #fff;
	letter-spacing: 0.1em;
}
#all_wrap .topLetter_box > p {
	padding: 0;
	margin: 0 auto;
	text-align: center;
	color: #fff;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topPrice {
		width: 100%;
		padding: 0 20px;
		margin: 0 auto 120px;
	}
	.topLetter_box {
		width: 100%;
		max-width: 100%;
		padding: 50px 20px;
		border-radius: 70px 0 70px 0;
		grid-row-gap: 30px;
	}
	.topLetter_box::before {
		width: 40px;
		bottom: 130px;
		left: 30px;
	}
	.topLetter_box::after {
		width: 50px;
		top: 30px;
		right: 30px;
	}
	#all_wrap .topLetter_box > h2 {
		font-family: var(--font-en);
		font-size: 30px;
	}
	#all_wrap .topLetter_box > p {
		color: #fff;
	}
	#all_wrap .topLetter_box > p:last-of-type {
		margin-bottom: 30px;
	}
}


/************************************************************/
/*　トップページ　施術の流れ
/************************************************************/
#topFlow {
	width: 100%;
	padding: 80px 0;
	margin: 0 auto;
	position: relative;
	background: var(--base);
}
#all_wrap #topFlow > header {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 20px;
}
#all_wrap #topFlow > header > em {
	display: inline-block;
	font-family: var(--font-en);
	font-size: 42px;
	line-height: 1;
	color: var(--main);
	letter-spacing: 0.1em;
	font-style: normal;
}
#all_wrap #topFlow > header > h2 {
	display: inline-block;
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	position: relative;
	font-size: 17px;
	line-height: 1.4em;
	color: var(--main);
}
/*swiper*/
#all_wrap .flowSwiper {
	width: 100%;
	height: auto;
	padding: 0 0 !important;
	margin: 0 auto;
	background: none;
	overflow: visible;
}
.flowSwiper .swiper-slide {
	width: 560px; /* 中央固定幅 */
	transition: transform 0.3s ease;
	margin: 0 30px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 40px;
	grid-row-gap: 40px;
}
.flowSwiper .swiper-slide figure {
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.flowSwiper .swiper-slide figure::before {
	content: '';
	display: block;
	padding-top: 65%;
}
.flowSwiper .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.flowSwiper .swiper-slide > header {
	width: 180px;
	min-width: 180px;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
	transition: var(--ease);
	opacity: 1;
	visibility: visible;
}
.flowSwiper .swiper-slide > header > em {
	display: block;
	font-family: var(--font-num);
	font-size: 40px;
	line-height: 1;
	color: var(--base3);
	font-style: normal;
}
#all_wrap .flowSwiper .swiper-slide > header > h3 {
	width: 100%;
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	position: relative;
	font-size: 20px;
	line-height: 1.4em;
	color: var(--act);
	text-align: left;
}
#all_wrap .flowSwiper .swiper-slide > p {
	width: calc(100% - 40px - 180px);
	padding: 0;
	margin: 0;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	display: block;
	transition: var(--ease);
	opacity: 1;
	visibility: visible;
}

/*ナビゲーション*/
.flowSwiper .swiper-button-prev {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 35px;
	height: 35px;
	min-width: 35px;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/arrow_blue.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	position: absolute;
	top: 200px;
	left: calc(50% - 355px);
	bottom: unset;
	right: unset;
	transform-origin: center;
	z-index: 10;
	transition: var(--ease);
}
.flowSwiper .swiper-button-next {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 35px;
	height: 35px;
	min-width: 35px;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/arrow_blue.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	position: absolute;
	top: 200px;
	right: calc(50% - 355px);
	left: unset;
	bottom: unset;
	transform: scale(-1,1);
	transform-origin: center;
	z-index: 10;
	transition: var(--ease);
}
.flowSwiper .swiper-button-next::before,
.flowSwiper .swiper-button-prev::before,
.flowSwiper .swiper-button-next::after,
.flowSwiper .swiper-button-prev::after {
	display: none;
}

.flowSwiper .swiper-slide:not(.swiper-slide-active) {
	transform: scale(0.8);
	transform-origin: center;
}
.flowSwiper .swiper-slide:not(.swiper-slide-active) > header {
	opacity: 0;
	visibility: hidden;
	transition: var(--ease);
}
#all_wrap .flowSwiper .swiper-slide:not(.swiper-slide-active) > p {
	opacity: 0;
	visibility: hidden;
	transition: var(--ease);
}

/* ドットの色 */
.flowSwiper .swiper-pagination {
	bottom: -40px !important;
}
.flowSwiper .swiper-pagination-bullet {
	background: #fff;
	opacity: 1;
}
.flowSwiper .swiper-pagination-bullet-active {
	background: var(--sub);
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topFlow {
		width: 100%;
		padding: 50px 30px 70px;
	}
	#all_wrap #topFlow > header {
		margin: 0 auto 30px;
		column-gap: 15px;
	}
	#all_wrap #topFlow > header > em {
		font-size: 30px;
	}
	#all_wrap #topFlow > header > h2 {
		font-size: 13px;
	}
	/*swiper*/
	#all_wrap .flowSwiper {
		width: 100%;
		height: auto;
		padding: 0 0 !important;
		margin: 0 auto;
		background: none;
		overflow: visible;
	}
	.flowSwiper .swiper-slide {
		width: calc(100% - 80px) !important; /* 中央固定幅 */
		transition: transform 0.3s ease;
		margin: 0;
		padding: 0 60px;
		column-gap: 0;
		grid-row-gap: 15px;
	}
	.flowSwiper .swiper-slide figure {
		margin: 0 auto 10px;
	}
	.flowSwiper .swiper-slide > header {
		width: 100%;
		min-width: 100%;
		grid-row-gap: 10px;
		flex-direction: unset;
		column-gap: 15px;
	}
	.flowSwiper .swiper-slide > header > em {
		font-size: 24px;
		display: inline-block;
	}
	#all_wrap .flowSwiper .swiper-slide > header > h3 {
		width: 100%;
		font-size: 17px;
	}
	#all_wrap .flowSwiper .swiper-slide > p {
		width: calc(100%);
	}

	/*ナビゲーション*/
	.flowSwiper .swiper-button-prev {
		width: 24px;
		height: 24px;
		min-width: 24px;
		top: 105px;
		left: -7px;
	}
	.flowSwiper .swiper-button-next {
		width: 24px;
		height: 24px;
		min-width: 24px;
		top: 105px;
		right: -7px;
	}
	.flowSwiper .swiper-button-next::before,
	.flowSwiper .swiper-button-prev::before,
	.flowSwiper .swiper-button-next::after,
	.flowSwiper .swiper-button-prev::after {
		display: none;
	}

	.flowSwiper .swiper-slide:not(.swiper-slide-active) {
		transform: scale(1);
		transform-origin: center;
	}
	.flowSwiper .swiper-slide:not(.swiper-slide-active) > header {
		opacity: 0;
		visibility: hidden;
		transition: var(--ease);
	}
	#all_wrap .flowSwiper .swiper-slide:not(.swiper-slide-active) > p {
		opacity: 0;
		visibility: hidden;
		transition: var(--ease);
	}

	/* ドットの色 */
	.flowSwiper .swiper-pagination {
		bottom: -50px !important;
	}
	.flowSwiper .swiper-pagination-bullet {
		background: #fff;
		opacity: 1;
	}
	.flowSwiper .swiper-pagination-bullet-active {
		background: var(--sub);
	}
}

/************************************************************/
/*　トップページ　空間
/************************************************************/
#topSpace {
	width: 100%;
	padding: 200px 0;
	margin: 0 auto;
	position: relative;
	background: #fff;
}
#topSpace > header {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto 40px;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
#topSpace > header > em {
	display: block;
	font-family: var(--font-en);
	font-size: 42px;
	line-height: 1;
	color: var(--act);
	letter-spacing: 0.1em;
	font-style: normal;
}
#all_wrap #topSpace > header > h2 {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 10px;
	width: 100%;
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	position: relative;
	font-size: 17px;
	line-height: 1.4em;
	color: var(--sub);
	text-align: left;
}
#all_wrap #topSpace > header > h2::before {
	content: '';
	display: block;
	width: 24px;
	height: 24px;
	aspect-ratio: 1/1;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/shine-illust-blue.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}
.topSpace_wrap {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 80px;
}
.topSpace_left {
	width: 600px;
	min-width: 600px;
	padding: 0;
	margin: 0;
	position: relative;
}
.topSpace_right {
	width: calc(100% - 80px - 600px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .spaceSwiper {
	overflow: visible;
}
#all_wrap #topSpace .swiper-slide figure {
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}
#all_wrap #topSpace .swiper-slide figure::before {
	content: '';
	display: block;
	padding-top: 75%;
}
#all_wrap #topSpace .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
/* ページネーションを左側に縦配置 */
#all_wrap #topSpace .swiper-pagination {
	width: 100%;
	position: absolute;
	left: 0;
	bottom: -20px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
	z-index: 10;
}
/* デフォルトの丸を四角に変更 */
#all_wrap #topSpace .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: var(--sub);
	border-radius: 50%;
	opacity: 0.5;
	transition: var(--ease);
	padding: 0;
	margin: 0;
}
/* アクティブ時 */
#all_wrap #topSpace .swiper-pagination-bullet-active {
	opacity: 1;
	background: var(--sub);
	transition: var(--ease);
}

/*リスト*/
#all_wrap .spaceList {
	width: 100%;
	padding: 0;
	margin: 0 auto 25px;
	position: relative;
	display: flex;
	flex-direction: column;
	list-style: none;
}
#all_wrap .spaceList > li {
	width: 100%;
	padding: 25px 10px;
	margin: 0 auto;
	border-bottom: 1px solid var(--main);
	position: relative;
}
#all_wrap .spaceList > li:last-child {
	border-bottom: 0;
}
#all_wrap .spaceList > li > h3 {
	width: 100%;
	padding: 0 0 0 1em;
	margin: 0 auto 10px;
	position: relative;
	border: none;
	background: none;
	font-size: 17px;
	line-height: 1.4em;
	color: var(--act);
	letter-spacing: 0.15em;
}
#all_wrap .spaceList > li > h3::before {
	content: '・';
	display: inline-block;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
}
#all_wrap .spaceList > li > p {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	line-height: 1.4em;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topSpace {
		width: 100%;
		padding: 120px 0;
	}
	#topSpace > header {
		width: calc(100% - 60px);
		max-width: 100%;
		margin: 0 auto 30px;
		grid-row-gap: 10px;
	}
	#topSpace > header > em {
		font-size: 30px;
	}
	#all_wrap #topSpace > header > h2 {
		column-gap: 10px;
		width: 100%;
		font-size: 13px;
	}
	#all_wrap #topSpace > header > h2::before {
		width: 16px;
		height: 16px;
	}
	.topSpace_wrap {
		width: calc(100% - 60px);
		max-width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 50px;
	}
	.topSpace_left {
		width: 100%;
		min-width: 100%;
	}
	.topSpace_right {
		width: 100%;
	}
	#all_wrap .spaceSwiper {
		overflow: visible;
	}

	/*リスト*/
	#all_wrap .spaceList {
		width: 100%;
		margin: 0 auto 40px;
	}
	#all_wrap .spaceList > li {
		width: 100%;
		padding: 20px 10px;
	}
	#all_wrap .spaceList > li:last-child {
		border-bottom: 1px solid var(--main);
	}
	#all_wrap .spaceList > li:first-child {
		padding-top: 0;
	}
	#all_wrap .spaceList > li > h3 {
		margin: 0 auto 10px;
		font-size: 15px;
	}
	#all_wrap .spaceList > li > p {
		line-height: 1.7em;
	}
}

/************************************************************/
/*　トップページ　患者さまの声
/************************************************************/
#topVoice {
	width: 100%;
	padding: 70px 0 90px;
	margin: 0 auto;
	position: relative;
	background: var(--base2);
}
#all_wrap #topVoice > header {
	width: 100%;
	padding: 0;
	margin: 0 auto 70px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 20px;
	grid-row-gap: 24px;
}
#all_wrap #topVoice > header > i {
	display: block;
	width: 100%;
	height: 50px;
	text-align: center;
}
#all_wrap #topVoice > header > i img {
	width: auto;
	height: 100%;
}
#all_wrap #topVoice > header > em {
	display: inline-block;
	font-family: var(--font-en);
	font-size: 42px;
	line-height: 1;
	color: var(--main);
	font-style: normal;
	letter-spacing: 0.1em;
}
#all_wrap #topVoice > header > h2 {
	display: inline-block;
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	position: relative;
	font-size: 17px;
	line-height: 1.4em;
	color: var(--main);
}
/*リスト*/
#all_wrap .voiceList {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto 70px;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 0;
	grid-row-gap: 40px;
}
#all_wrap .voiceList > li {
	width: calc(100% / 3);
	padding: 0 40px;
	margin: 0;
	background: none;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 25px;
	border-left: 1px solid #fff;
}
#all_wrap .voiceList > li > a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
#all_wrap .voiceList > li:nth-child(3n) {
	border-right: 1px solid #fff;
}
#all_wrap .voiceList > li .voiceList_data {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 15px;
}
#all_wrap .voiceList > li .voiceList_data .tags {
	display: flex;
	justify-content: flex-start;
	align-items: baseline;
	column-gap: 0;
	grid-gap: 5px;
	width: 100%;
	padding: 0 0 0 4.5em;
	margin: 0 auto;
	position: relative;
}
#all_wrap .voiceList > li .voiceList_data .tags span {
	display: inline-block;
	font-size: 15px;
	line-height: 1;
	color: var(--sub);
}
#all_wrap .voiceList > li .voiceList_data .tags span:first-of-type {
	position: absolute;
	top: 0;
	left: 0;
}
#all_wrap .voiceList > li .voiceList_data h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	font-size: 13px;
	line-height: 1;
	color: var(--sub);
	text-align: right;
}
#all_wrap .voiceList > li figure {
	width: 120px;
	height: 120px;
	min-width: 120px;
	aspect-ratio: 1/1;
	padding: 0;
	margin: auto auto 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 50%;
	border: 1.5px solid #fff;
}
#all_wrap .voiceList > li figure::before {
	content: '';
	display: block;
	padding: 50%;
}
#all_wrap .voiceList > li figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .voiceList > li .voiceList_info {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .voiceList > li .voiceList_info p {
	padding: 0;
	margin: 0 auto;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	line-height: 2em;
}
/*サブページ*/
#all_wrap .voiceList.sub {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 60px;
	grid-row-gap: 100px;
}
#all_wrap .voiceList.sub > li {
	width: calc((100% - 120px) / 3);
	padding: 50px 40px;
	margin: 0;
	background: var(--base);
	border-radius: 50px 0 50px 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 15px;
	border-left: none;
	transition: var(--ease);
}
#all_wrap .voiceList.sub > li:hover {
	background: #FCE9DF;
	transition: var(--ease);
}
#all_wrap .voiceList.sub > li:nth-child(3n) {
	border-right: none;
}
#all_wrap .voiceList.sub > li .voiceList_data .tags span {
	display: inline-block;
	font-size: 12px;
	line-height: 1;
	color: var(--sub);
}
#all_wrap .voiceList.sub > li .voiceList_info p {
	padding: 0;
	margin: 0 auto;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 13px;
	line-height: 1.7em;
}
#all_wrap .voiceList.sub > li.none {
	padding: 0;
	margin: 0 auto;
	background: none;
	position: relative;
	text-align: center;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topVoice {
		width: 100%;
		padding: 60px 0;
	}
	#all_wrap #topVoice > header {
		width: 100%;
		margin: 0 auto 25px;
		column-gap: 15px;
		grid-row-gap: 12px;
	}
	#all_wrap #topVoice > header > i {
		height: 40px;
	}
	#all_wrap #topVoice > header > em {
		font-size: 30px;
	}
	#all_wrap #topVoice > header > h2 {
		font-size: 12px;
	}
	/*リスト*/
	#all_wrap .voiceList {
		width: calc(100% - 80px);
		max-width: 100%;
		margin: 0 auto 40px;
		column-gap: 0;
		grid-row-gap: 0;
		border-top: 1px solid #fff;
	}
	#all_wrap .voiceList > li {
		width: 100%;
		padding: 35px 10px;
		grid-row-gap: 25px;
		border: none;
		border-bottom: 1px solid #fff;
	}
	#all_wrap .voiceList > li:nth-child(3n) {
		border-right: none;
	}
	#all_wrap .voiceList > li .voiceList_data {
		width: 100%;
		grid-row-gap: 12px;
	}
	#all_wrap .voiceList > li .voiceList_data .tags {
		grid-gap: 5px;
		padding: 0 0 0 4.5em;
	}
	#all_wrap .voiceList > li .voiceList_data .tags span {
		font-size: 13px;
	}
	#all_wrap .voiceList > li .voiceList_data h3 {
		width: 100%;
		font-size: 11px;
	}
	#all_wrap .voiceList > li .voiceList_info {
		width: 100%;
	}
	#all_wrap .voiceList > li .voiceList_info p {
		line-height: 2em;
	}
	/*サブページ*/
	#all_wrap .voiceList.sub {
		width: calc(100% - 80px);
		max-width: 100%;
		margin: 0 auto 40px;
		column-gap: 0;
		grid-row-gap: 50px;
	}
	#all_wrap .voiceList.sub > li {
		width: 100%;
		padding: 40px 25px;
		border-radius: 50px 0 50px 0;
		grid-row-gap: 25px;
	}
	#all_wrap .voiceList.sub > li:hover {
		background: #FCE9DF;
		transition: var(--ease);
	}
	#all_wrap .voiceList.sub > li:nth-child(3n) {
		border-right: none;
	}
	#all_wrap .voiceList.sub > li .voiceList_data .tags {
		grid-gap: 5px;
		padding: 0 0 0 5em;
	}
	#all_wrap .voiceList.sub > li .voiceList_data .tags span {
		display: inline-block;
		font-size: 15px;
		line-height: 1;
		color: var(--sub);
	}
	#all_wrap .voiceList.sub > li .voiceList_data h3 {
		font-size: 13px;
	}
	#all_wrap .voiceList.sub > li .voiceList_info p {
		padding: 0;
		margin: 0 auto;
		position: relative;
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
		font-size: 13px;
		line-height: 1.7em;
	}
	#all_wrap .voiceList.sub > li.none {
		padding: 0;
		margin: 0 auto;
		background: none;
		position: relative;
		text-align: center;
	}
}

/************************************************************/
/*　カテゴリ　患者さまの声
/************************************************************/
#voice {
	padding: 0;
	margin: 0;
}
#all_wrap #voice > header {
	width: 100%;
	padding: 0;
	margin: 0 auto 80px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 20px;
	grid-row-gap: 30px;
	flex-wrap: wrap;
}
#all_wrap #voice > header i {
	display: block;
	width: 100%;
	height: 55px;
	padding: 0;
	margin: 0 auto;
	text-align: center;
}
#all_wrap #voice > header i img {
	width: auto;
	height: 100%;
}
#all_wrap #voice > header em {
	display: inline-block;
	padding: 0;
	margin: 0;
	font-family: var(--font-en);
	font-size: 42px;
	line-height: 1;
	color: var(--main);
	font-style: normal;
	text-align: right;
}
#all_wrap #voice > header h1 {
	display: inline-block;
	padding: 0;
	margin: 0;
	font-size: 17px;
	line-height: 1;
	color: var(--main);
	text-align: left;
	border: none;
	background: none;
	position: relative;
}
#all_wrap #voice > header p {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align: center;
}

/*フィルター*/
#voice-filter {
	width: 100%;
	padding: 0;
	margin: 0 auto 100px;
	position: relative;
	display: flex;
	justify-content: center;
	column-gap: 60px;
	align-items: center;
}
/* 左：セレクトボックス */
.voice-filter-left select {
	width: 280px;
	background-color: #E9F2FD;
	border: 1px solid #CFDCEF;
	border-radius: 4px;
	padding: 8px 36px 8px 10px; /* 右に矢印分のスペース */
	font-size: 14px;
	color: #333;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	position: relative;
	background: #E9F2FD;
}
.voice-select-wrapper {
	position: relative;
	display: inline-block;
	width: 280px;
}
.voice-select-wrapper::after {
	content: "";
	position: absolute;
	right: 20px;
	top: 45%;
	width: 10px;   /* 縦の棒 */
	height: 10px; /* 長さ */
	border-right: 1.5px solid #707070;
	border-bottom: 1.5px solid #707070;
	pointer-events: none;
	transform: translateY(-50%) rotate(45deg);
}
/* ホバー時やフォーカス時 */
.voice-filter-left select:hover,
.voice-filter-left select:focus {
	border-color: #8AB8EB;
	outline: none;
}
/* 右：検索ボックス */
.voice-filter-right {
	position: relative;
}
.voice-filter-right input[type="search"] {
	width: 380px;
	background-color: #fff;
	border: 1px solid #CFDCEF;
	border-radius: 4px;
	padding: 8px 36px 8px 10px; /* 右にアイコン分の余白 */
	font-size: 14px;
	color: #333;
}
/* 虫眼鏡アイコン（CSSのみで描画） */
.voice-filter-right::after {
	content: "";
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	border: none;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/Icon-search.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#voice {
		padding: 0;
		margin: 0;
	}
	#all_wrap #voice > header {
		width: calc(100% - 80px);
		margin: 0 auto 40px;
		grid-row-gap: 20px;
	}
	#all_wrap #voice > header i {
		height: 45px;
	}
	#all_wrap #voice > header em {
		font-size: 36px;
	}
	#all_wrap #voice > header h1 {
		font-size: 15px;
	}

	/*フィルター*/
	#voice-filter {
		margin: 0 auto 80px;
		position: relative;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 25px;
		align-items: center;
	}
	.voice-filter-left {
		order: 1;
	}
	.voice-filter-right input[type="search"] {
		width: 280px;
	}
	/* 虫眼鏡アイコン（CSSのみで描画） */
	.voice-filter-right::after {
		content: "";
		position: absolute;
		right: 12px;
		top: 50%;
		transform: translateY(-50%);
		width: 16px;
		height: 16px;
		border: none;
		background-image: url('https://reliefport-femina.com/wp-content/uploads/Icon-search.svg');
		background-position: center;
		background-repeat: no-repeat;
		background-size: 100%;
	}
}

/************************************************************/
/*　患者さまの声　詳細 サイドバー
/************************************************************/
#all_wrap .sidebar-voice {
	width: 340px;
	min-width: 340px;
	padding: 0;
	margin: 0;
	position: relative;
}
/*サイドバー用*/
#all_wrap .voiceList.sid {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	grid-row-gap: 40px;
}
#all_wrap .voiceList.sid > li {
	width: 100%;
	padding: 50px 40px;
	margin: 0;
	background: var(--base);
	border-radius: 50px 0 50px 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 15px;
	border-left: none;
	transition: var(--ease);
}
#all_wrap .voiceList.sid > li:hover {
	background: #FCE9DF;
	transition: var(--ease);
}
#all_wrap .voiceList.sid > li .voiceList_data .tags span {
	display: inline-block;
	font-size: 12px;
	line-height: 1;
	color: var(--sub);
}
#all_wrap .voiceList.sid > li .voiceList_info p {
	padding: 0;
	margin: 0 auto;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 13px;
	line-height: 1.7em;
}
#all_wrap .voiceList.sid > li.none {
	padding: 0;
	margin: 0 auto;
	background: none;
	position: relative;
	text-align: center;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .sidebar-voice {
		width: calc(100% - 40px);
		min-width: calc(100% - 40px);
		padding: 0;
		margin: 0 auto;
		order: 1;
	}
	/*サイドバー用*/
	#all_wrap .voiceList.sid {
		width: 100%;
		max-width: 100%;
		flex-wrap: wrap;
		grid-row-gap: 40px;
	}
	#all_wrap .voiceList.sid > li {
		width: 100%;
		padding: 40px 25px;
		grid-row-gap: 15px;
	}
	#all_wrap .voiceList.sid > li .voiceList_data .tags span {
		display: inline-block;
		font-size: 15px;
		line-height: 1;
		color: var(--sub);
	}
	#all_wrap .voiceList.sid > li .voiceList_data h3 {
		font-size: 13px;
	}
	#all_wrap .voiceList.sid > li .voiceList_info p {
		font-size: 13px;
		line-height: 1.7em;
	}
}


/************************************************************/
/*　詳細　患者さまの声
/************************************************************/
.voiceHeader {
	width: 100%;
	padding: 10px 20px;
	margin: 0 auto 50px;
	background: var(--main);
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 30px;
}
.voiceHeader_tags {
	width: calc(70% - 30px);
	padding: 0 0 0 90px;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	grid-row-gap: 5px;
}
.voiceHeader_tags span.ttl {
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 10px;
	font-size: 14px;
	line-height: 1.2em;
	color: #fff;
	width: calc(30px + 4em);
	position: absolute;
	top: 0;
	left: 0;
}
.voiceHeader_tags span.ttl::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	min-width: 20px;
	aspect-ratio: 1/1;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/shine-icon-white.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}
.voiceHeader_tags span {
	padding: 0;
	margin: 0;
	display: inline-block;
	color: #fff;
	font-size: 14px;
	line-height: 1.2em;
}
.voiceHeader_tags span a {
	font-size: 14px;
	line-height: 1.2em;
	color: #fff;
	text-decoration: none;
	transition: var(--ease);
}
.voiceHeader_tags span a:hover {
	font-size: 14px;
	line-height: 1.2em;
	color: #fff;
	text-decoration: underline;
	opacity: 0.8;
	transition: var(--ease);
}
#all_wrap .voiceHeader > h1 {
	width: 30%;
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	position: relative;
	font-size: 14px;
	line-height: 1.2em;
	color: #fff;
	text-align: right;
}
.voiceHeader_image {
	width: calc(100% - 160px);
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
}
.voiceHeader_image img {
	width: 100%;
	height: auto;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.voiceHeader {
		width: 100%;
		padding: 12px 20px;
		margin: 0 auto 30px;
		justify-content: flex-start;
		flex-wrap: wrap;
		grid-row-gap: 8px;
	}
	.voiceHeader_tags {
		width: 100%;
		padding: 0 0 0 90px;
		margin: 0;
		position: relative;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		flex-wrap: wrap;
		grid-row-gap: 5px;
	}
	.voiceHeader_tags span.ttl {
		display: inline-flex;
		justify-content: flex-start;
		align-items: center;
		column-gap: 10px;
		font-size: 14px;
		line-height: 1.2em;
		color: #fff;
		width: calc(30px + 4em);
		position: absolute;
		top: 0;
		left: 0;
	}
	.voiceHeader_tags span.ttl::before {
		content: '';
		display: block;
		width: 20px;
		height: 20px;
		min-width: 20px;
		aspect-ratio: 1/1;
		background-image: url('https://reliefport-femina.com/wp-content/uploads/shine-icon-white.svg');
		background-repeat: no-repeat;
		background-size: 100%;
		background-position: center;
	}
	.voiceHeader_tags span {
		padding: 0;
		margin: 0;
		display: inline-block;
		color: #fff;
		font-size: 14px;
		line-height: 1.2em;
	}
	.voiceHeader_tags span a {
		font-size: 14px;
		line-height: 1.2em;
		color: #fff;
		text-decoration: none;
		transition: var(--ease);
	}
	.voiceHeader_tags span a:hover {
		font-size: 14px;
		line-height: 1.2em;
		color: #fff;
		text-decoration: underline;
		opacity: 0.8;
		transition: var(--ease);
	}
	#all_wrap .voiceHeader > h1 {
		width: 100%;
		text-align: right;
	}
	.voiceHeader_image {
		width: calc(100% - 20px);
		padding: 0;
		margin: 0 auto 30px;
		position: relative;
	}
}

/************************************************************/
/*　トップページ　よくある質問
/************************************************************/
#topFaq {
	width: 100%;
	padding: 200px 0;
	margin: 0 auto;
	background: #fff;
	position: relative;
}
#all_wrap #topFaq > header {
	width: 100%;
	padding: 0;
	margin: 0 auto 40px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 20px;
	grid-row-gap: 25px;
}
#all_wrap #topFaq > header > i {
	display: block;
	width: 100%;
	height: 100px;
	text-align: center;
}
#all_wrap #topFaq > header > i img {
	width: auto;
	height: 100%;
}
#all_wrap #topFaq > header > em {
	display: inline-block;
	font-family: var(--font-en);
	font-size: 42px;
	line-height: 1;
	color: var(--main);
	font-style: normal;
}
#all_wrap #topFaq > header > h2 {
	display: inline-block;
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	position: relative;
	font-size: 17px;
	line-height: 1.4em;
	color: var(--main);
}
/*リスト*/
#all_wrap .faqList {
	width: 100%;
	max-width: 870px;
	padding: 0;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	grid-row-gap: 30px;
	scroll-margin-top: 100px;
}
#all_wrap .faqList > dl {
	width: 100%;
	padding: 0 40px;
	margin: 0 auto;
	position: relative;
	background: var(--act);
	border-radius: 35px 0 35px 0;
}
#all_wrap .faqList > dl:nth-of-type(even) {
	background: var(--main);
}
#all_wrap .faqList > dl > dt {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 20px;
	flex-wrap: nowrap;
	width: 100%;
	padding: 25px 60px 25px 35px;
	margin: 0 auto;
	background: none;
	font-size: 17px;
	line-height: 1.4em;
	color: #fff;
	position: relative;
	cursor: pointer;
	transition: var(--ease);
}
#all_wrap .faqList > dl > dt::before {
	content: 'Q.';
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 22px;
	min-width: 22px;
	height: 22px;
	padding: 0;
	aspect-ratio: 1/1;
	font-family: var(--font-en);
	font-size: 20px;
	line-height: 1;
	color: #fff;
	white-space: nowrap;
	transition: var(--ease);
	position: absolute;
	top: 25px;
	left: 0;
}
#all_wrap .faqList > dl > dt span {
	display: block;
	width: 14px;
	height: 14px;
	padding: 0;
	margin: 0;
	background: none;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
}
#all_wrap .faqList > dl > dt span::before {
	content: '';
	display: block;
	width: 14px;
	height: 1px;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform-origin: center;
	transition: var(--ease);
}
#all_wrap .faqList > dl > dt span::after {
	content: '';
	display: block;
	width: 14px;
	height: 1px;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) rotate(90deg);
	-webkit-transform: translate(-50%,-50%) rotate(90deg);
	transform-origin: center;
	transition: var(--ease);
}
#all_wrap .faqList > dl > dt.active span::after {
	transform: translate(-50%,-50%) rotate(0deg);
	-webkit-transform: translate(-50%,-50%) rotate(0deg);
	transform-origin: center;
	transition: var(--ease);
}
#all_wrap .faqList > dl > dd {
	border-top: 1px solid #fff;
	margin: 0 auto;
	padding: 20px 0px 25px 35px;
	background: none;
	font-size: 17px;
	position: relative;
	font-size: 15px;
	line-height: 1.8em;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	color: #fff;
}
#all_wrap .faqList > dl > dd::before {
	content: 'A.';
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 22px;
	min-width: 22px;
	height: 22px;
	padding: 0;
	aspect-ratio: 1/1;
	font-family: var(--font-en);
	font-size: 20px;
	line-height: 1;
	color: #fff;
	white-space: nowrap;
	transition: var(--ease);
	position: absolute;
	top: 25px;
	left: 0;
}
#all_wrap .faqList > dl > dd #toc_content {
	padding: 0;
}
#all_wrap .faqList > dl > dd p {
	padding: 0;
	margin: 0 auto 10px;
	font-size: 15px;
	line-height: 1.8em;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	color: #fff;
}
#all_wrap .faqList > dl > dd p a {
	text-decoration: underline;
}
#all_wrap .faqList > dl > dd p a:hover {
	text-decoration: none;
}
.faqMore {
	width: 100%;
	max-width: 870px;
	padding: 0;
	margin: 60px auto 0;
	text-align: right;
}
.faqMore > a {
	display: inline-flex;
	justify-content: flex-end;
	align-items: center;
	column-gap: 10px;
	font-size: 18px;
	line-height: 1;
	color: var(--act);
}
.faqMore > a::after {
	content: '';
	display: block;
	width: 16px;
	height: 16px;
	aspect-ratio: 1/1;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/arrow_red.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	transition: var(--ease);
}
.faqMore > a:hover::after {
	transform: translateX(3px);
	transition: var(--ease);
}

/*サブページ*/
#all_wrap .faqList.sub {
	margin-bottom: 100px;
}
#all_wrap .faq-category-title {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 12px;
	font-size: 18px;
	line-height: 1;
	color: var(--act);
}
#all_wrap .faq-category-title::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	aspect-ratio: 1/1;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/shine-icon-red.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topFaq {
		width: 100%;
		padding: 120px 0;
	}
	#all_wrap #topFaq > header {
		width: 100%;
		margin: 0 auto 30px;
		column-gap: 18px;
		grid-row-gap: 24px;
	}
	#all_wrap #topFaq > header > i {
		height: 85px;
	}
	#all_wrap #topFaq > header > em {
		font-size: 30px;
	}
	#all_wrap #topFaq > header > h2 {
		font-size: 13px;
	}
	/*リスト*/
	#all_wrap .faqList {
		width: calc(100% - 40px);
		max-width: 100%;
		grid-row-gap: 15px;
		scroll-margin-top: 50px;
	}
	#all_wrap .faqList > dl {
		width: 100%;
		padding: 0 10px;
		border-radius: 25px 0 25px 0;
	}
	#all_wrap .faqList > dl > dt {
		column-gap: 10px;
		width: 100%;
		padding: 15px 60px 15px 35px;
		font-size: 13px;
	}
	#all_wrap .faqList > dl > dt::before {
		width: 15px;
		min-width: 15px;
		height: 15px;
		font-size: 15px;
		top: 16px;
		left: 10px;
	}
	#all_wrap .faqList > dl > dt span {
		width: 12px;
		height: 12px;
		right: 10px;
	}
	#all_wrap .faqList > dl > dt span::before {
		width: 12px;
	}
	#all_wrap .faqList > dl > dt span::after {
		width: 12px;
		height: 1px;
	}
	#all_wrap .faqList > dl > dd {
		border-top: 1px solid #fff;
		margin: 0 auto;
		padding: 15px 10px 15px 35px;
		font-size: 13px;
		line-height: 1.8em;
	}
	#all_wrap .faqList > dl > dd::before {
		width: 15px;
		min-width: 15px;
		height: 15px;
		font-size: 15px;
		top: 20px;
		left: 10px;
	}
	#all_wrap .faqList > dl > dd p {
		margin: 0 auto 10px;
		font-size: 13px;
	}
	.faqMore {
		width: calc(100% - 40px);
		max-width: 100%;
		margin: 30px auto 0;
	}
	.faqMore > a {
		column-gap: 10px;
		font-size: 14px;
	}
	.faqMore > a::after {
		width: 14px;
		height: 14px;
	}

	/*サブページ*/
	#all_wrap .faqList.sub {
		margin-bottom: 100px;
	}
	#all_wrap .faq-category-title {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		border: none;
		background: none;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		column-gap: 12px;
		font-size: 16px;
		line-height: 1;
		color: var(--act);
	}
	#all_wrap .faq-category-title::before {
		content: '';
		display: block;
		width: 20px;
		height: 20px;
		aspect-ratio: 1/1;
		background-image: url('https://reliefport-femina.com/wp-content/uploads/shine-icon-red.svg');
		background-repeat: no-repeat;
		background-position: center;
		background-size: 100%;
	}
}

/************************************************************/
/*　トップページ　アクセス
/************************************************************/
#topAccess {
	width: 100%;
	padding: 90px 0 120px;
	margin: 0 auto;
	background: #fff;
	position: relative;
}
#all_wrap #topAccess > header {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 20px;
}
#all_wrap #topAccess > header > em {
	display: inline-block;
	font-family: var(--font-en);
	font-size: 42px;
	line-height: 1;
	color: var(--main);
	letter-spacing: 0.1em;
	font-style: normal;
}
#all_wrap #topAccess > header > h2 {
	display: inline-block;
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	position: relative;
	font-size: 17px;
	line-height: 1.4em;
	color: var(--main);
}
/*wrap*/
.topAccess_wrap {
	width: 100%;
	max-width: 1200px;
	min-width: 1200px;
	padding: 50px 35px;
	margin: 0 auto;
	background: var(--base);
	display: flex;
	justify-content: space-between;
	column-gap: 60px;
}
.accessBox {
	width: calc(100% / 3);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 20px;
}
.accessBox:nth-of-type(1) {
	width: 400px;
	min-width: 400px;
}
.accessBox:nth-of-type(2) {
	width: calc((100% - 400px - 120px) / 2);
}
.accessBox:nth-of-type(3) {
	width: calc((100% - 400px - 120px) / 2);
}
#all_wrap .accessBox > h2 {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 10px;
	font-size: 18px;
	line-height: 1;
	color: var(--act);
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
	border: none;
	background: none;
	position: relative;
}
#all_wrap .accessBox > h2::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	aspect-ratio: 1/1;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/shine-icon-red.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}
#all_wrap .accessBox > figure {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .accessBox > figure img {
	width: 100%;
	height: auto;
}
#all_wrap .accessBox h3 {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 6px;
	font-size: 15px;
	line-height: 1;
	width: 100%;
	padding: 0;
	margin: 0 auto 5px;
	border: none;
	background: none;
	position: relative;
}
#all_wrap .accessBox h3::before {
	content: '';
	display: block;
	width: 18px;
	height: 18px;
	aspect-ratio: 1/1;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/shine-illust-blue.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}
#all_wrap .accessBox p {
	width: 100%;
	padding: 0;
	margin: 0;
	font-size: 14px;
	line-height: 1.7em;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .accessBox p small {
	display: block;
	padding: 0;
	margin: 5px auto 0;
	font-size: 11px;
	line-height: 1.4em;
}
/*ボタン*/
#all_wrap .contactBtn {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 20px;
	grid-row-gap: 20px;
}
#all_wrap .contactBtn > li {
	width: calc(50% - 10px);
	height: auto;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .contactBtn > li a {
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	grid-row-gap: 10px;
	width: 100%;
	height: auto;
	aspect-ratio: 1/1;
	border-radius: 50%;
	cursor: pointer;
	border: 1px solid var(--act);
	transition: var(--ease);
}
#all_wrap .contactBtn > li a::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	padding: 0;
	margin: 0 auto;
	background-position: center;
	background-repeat: no-repeat;
	background-size: auto 100%;
	transition: var(--ease);
}
#all_wrap .contactBtn > li.tel a::before {
	background-image: url('https://reliefport-femina.com/wp-content/uploads/tel-icon-red.svg');
}
#all_wrap .contactBtn > li.line a::before {
	background-image: url('https://reliefport-femina.com/wp-content/uploads/line-icon-red.svg');
}
#all_wrap .contactBtn > li a span {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	font-family: var(--font-num);
	font-size: 15px;
	line-height: 1;
	color: var(--act);
	transition: var(--ease);
}
#all_wrap .contactBtn > li a:hover {
	background: var(--act);
	border: 1px solid var(--act);
	transition: var(--ease);
}
#all_wrap .contactBtn > li.tel a:hover::before {
	background-image: url('https://reliefport-femina.com/wp-content/uploads/tel-icon-w.svg');
}
#all_wrap .contactBtn > li.line a:hover::before {
	background-image: url('https://reliefport-femina.com/wp-content/uploads/line-icon-w.svg');
}
#all_wrap .contactBtn > li a:hover span {
	color: #fff;
	transition: var(--ease);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topAccess {
		width: 100%;
		padding: 0;
	}
	#all_wrap #topAccess > header {
		margin: 0 auto 30px;
		column-gap: 15px;
	}
	#all_wrap #topAccess > header > em {
		font-size: 30px;
	}
	#all_wrap #topAccess > header > h2 {
		font-size: 13px;
	}
	/*wrap*/
	.topAccess_wrap {
		width: calc(100% - 60px);
		max-width: 100%;
		min-width: calc(100% - 60px);
		padding: 60px 30px;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 20px;
	}
	.accessBox {
		width: 100%;
		grid-row-gap: 20px;
	}
	.accessBox:nth-of-type(1) {
		width: 100%;
		min-width: 100%;
	}
	.accessBox:nth-of-type(2) {
		width: 100%;
	}
	.accessBox:nth-of-type(3) {
		width: 100%;
	}
	#all_wrap .accessBox > h2 {
		column-gap: 7px;
		font-size: 15px;
		margin: 0 auto;
	}
	#all_wrap .accessBox > h2::before {
		width: 18px;
		height: 18px;
	}
	#all_wrap .accessBox h3 {
		column-gap: 6px;
		font-size: 13px;
		margin: 0 auto 5px;
	}
	#all_wrap .accessBox h3::before {
		width: 15px;
		height: 15px;
	}
	#all_wrap .accessBox p {
		font-size: 13px;
		line-height: 1.7em;
	}
	#all_wrap .accessBox p small {
		margin: 5px auto 0;
		font-size: 10px;
	}
	/*ボタン*/
	#all_wrap .contactBtn {
		width: 100%;
		column-gap: 24px;
		grid-row-gap: 24px;
		justify-content: center;
		margin: 0 auto 30px;
	}
	#all_wrap .contactBtn > li {
		width: 120px;
	}
	#all_wrap .contactBtn > li a::before {
		width: 18px;
		height: 18px;
	}
	#all_wrap .contactBtn > li a span {
		display: block;
		font-size: 13px;
	}
}

/************************************************************/
/*　トップページ　採用情報
/************************************************************/
#topRecruit {
	width: 100%;
	padding: 120px 0 120px;
	margin: 0 auto;
	background: #fff;
	position: relative;
}
#all_wrap #topRecruit > header {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 20px;
}
#all_wrap #topRecruit > header > em {
	display: inline-block;
	font-family: var(--font-en);
	font-size: 42px;
	line-height: 1;
	color: var(--main);
	letter-spacing: 0.1em;
	font-style: normal;
}
#all_wrap #topRecruit > header > h2 {
	display: inline-block;
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	position: relative;
	font-size: 17px;
	line-height: 1.4em;
	color: var(--main);
}
.topRecruit_wrap {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	column-gap: 80px;
}
.topRecruit_wrap > figure {
	width: 280px;
	padding: 0;
	margin: 0;
	position: relative;
}
.topRecruit_wrap > figure img {
	width: 100%;
	height: auto;
}
.topRecruit_txt {
	width: calc(100% - 280px - 280px - 80px - 80px);
	padding: 0;
	margin: 0 auto;
	text-align: center;
	position: relative;
}
#all_wrap .topRecruit_txt > p {
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	text-align: center;
}
#all_wrap .topRecruit_txt .btnList {
	margin-top: 70px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topRecruit {
		width: 100%;
		padding: 120px 0;
	}
	#all_wrap #topRecruit > header {
		width: 100%;
		margin: 0 auto 20px;
		column-gap: 15px;
	}
	#all_wrap #topRecruit > header > em {
		font-size: 30px;
	}
	#all_wrap #topRecruit > header > h2 {
		font-size: 12px;
	}
	.topRecruit_wrap {
		width: calc(100% - 60px);
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 30px;
		padding: 40px 0 0;
		position: relative;
	}
	.topRecruit_wrap > figure {
		width: calc(50% + 30px);
		margin: 0 0 0 auto;
	}
	.topRecruit_wrap > figure:first-of-type {
		position: absolute;
		top: 0;
		left: 0;
		z-index: 2;
	}
	.topRecruit_txt {
		width: 100%;
		order: 1;
	}
	#all_wrap .topRecruit_txt > p {
		margin: 0 auto 20px;
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
	}
	#all_wrap .topRecruit_txt .btnList {
		margin-top: 40px;
	}
}

/************************************************************/
/*　トップページ　コンセプト
/************************************************************/
#topConcept {
	width: 100%;
	padding: 0;
	margin: 0 auto 120px;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/concept-bg.webp');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center left;
	position: relative;
}
#topConcept .topConcept_wrap {
	width: 100%;
	padding: 140px 80px;
	margin: 0;
	position: relative;
}
#all_wrap .topConcept_wrap > p {
	padding: 0;
	margin: 0 auto 20px;
	color: #fff;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .topConcept_wrap > p:last-of-type {
	margin-bottom: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topConcept {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		background-image: url('https://reliefport-femina.com/wp-content/uploads/concept-bg-sp.webp');
	}
	#topConcept .topConcept_wrap {
		width: 100%;
		padding: 230px 50px 50px 20px;
	}
	#all_wrap .topConcept_wrap > p {
		padding: 0;
		margin: 0 auto 20px;
	}
	#all_wrap .topConcept_wrap > p:last-of-type {
		margin-bottom: 0;
	}
}


/************************************************************/
/*　メディア スライダー
/************************************************************/

/*スライダー*/
#all_wrap #mediaSlide {
	width: 100%;
	padding: 0;
	margin: 0 auto 150px;
	position: relative;
}
#all_wrap #mediaSlide > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	column-gap: 20px;
	font-family: var(--font-en);
	font-size: 24px;
	line-height: 1;
	color: var(--sub);
}
#all_wrap #mediaSlide > h2::before,
#all_wrap #mediaSlide > h2::after {
	content: '';
	display: block;
	width: 1px;
	height: 22px;
	background: var(--sub);
	transform: rotate(-30deg);
}
#all_wrap #mediaSlide > h2::after {
	transform: rotate(30deg);
}

/*リスト*/
#all_wrap .media_slider {
	position: relative;
	max-width: 1200px !important;
	padding: 0 0 30px !important;
}
#all_wrap #mediaSlide .swiper-wrapper {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap #mediaSlide .media_slide_item {
	width: 1000px;
	padding: 50px 70px;
	margin: 0 auto;
	position: relative;
	background: var(--main);
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 70px;
	box-sizing: border-box;
	transition: var(--ease);
}
#all_wrap #mediaSlide .media_slide_item:hover {
	background: var(--act);
	transition: var(--ease);
}
#all_wrap #mediaSlide .media_slide_item > figure {
	width: 360px;
	min-width: 360px;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 50%;
}
#all_wrap #mediaSlide .media_slide_item > figure::before {
	content: '';
	display: block;
	padding: 50%;
}
#all_wrap #mediaSlide .media_slide_item > 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 #mediaSlide .media_slide_item:hover > figure img {
	transform: translate(-50%,-50%) scale(1.05);
	transform-origin: center;
	transition: var(--ease);
}
#all_wrap #mediaSlide .media_slider_info {
	width: calc(100% - 360px - 70px);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 40px;
}
#all_wrap #mediaSlide .media_slider_info > header {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 10px;
}
#all_wrap #mediaSlide .media_slider_info > header::before {
	content: '';
	display: block;
	width: 24px;
	height: 24px;
	aspect-ratio: 1/1;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/shine-icon-white.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}
#all_wrap #mediaSlide .media_slider_info > header .date {
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 10px;
	font-size: 15px;
	line-height: 1;
	color: #fff;
	font-family: var(--font-num);
}
#all_wrap #mediaSlide .media_slider_info > header .date::after {
	content: '';
	display: block;
	width: 60px;
	height: 1px;
	background: #fff;
}
#all_wrap #mediaSlide .media_slider_info > header em {
	display: inline-block;
	font-size: 15px;
	line-height: 1;
	color: #fff;
	font-style: normal;
}
#all_wrap #mediaSlide .media_slider_info > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	color: #fff;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 20px;
	line-height: 1.4em;
	color: #fff;
}
#all_wrap #mediaSlide .media_slider_info > h3 a {
	font-size: 20px;
	line-height: 1.4em;
	color: #fff;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	transition: var(--ease);
}
#all_wrap #mediaSlide .media_slider_info > h3 a:hover {
	opacity: 0.8;
	transition: var(--ease);
}
#all_wrap .media_slider_tags {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}
#all_wrap .media_slider_tags span {
	display: inline-block;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .media_slider_tags span a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 6px 15px;
	margin: 0;
	background: #fff;
	border-radius: 15px 0 15px 0;
	text-decoration: none;
	font-size: 12px;
	line-height: 1;
	color: var(--act);
	transition: var(--ease);
}
#all_wrap .media_slider_tags span a:hover {
	opacity: 0.8;
	transition: var(--ease);
}

/*ナビゲーション*/
#all_wrap #mediaSlide .swiper-button-prev {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 35px;
	height: 35px;
	min-width: 35px;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/arrow_blue.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	position: absolute;
	top: 50%;
	left: 0;
	bottom: unset;
	right: unset;
	transform-origin: center;
	transform: translate(0,-50%);
	z-index: 10;
	transition: var(--ease);
}
#all_wrap #mediaSlide .swiper-button-next {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 35px;
	height: 35px;
	min-width: 35px;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/arrow_blue.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	position: absolute;
	top: 50%;
	right: 0;
	left: unset;
	bottom: unset;
	transform: translate(0,-50%) scale(-1,1);
	transform-origin: center;
	z-index: 10;
	transition: var(--ease);
}
#all_wrap #mediaSlide .swiper-button-next::before,
#all_wrap #mediaSlide .swiper-button-prev::before,
#all_wrap #mediaSlide .swiper-button-next::after,
#all_wrap #mediaSlide .swiper-button-prev::after {
	display: none;
}
/* ページネーションを配置 */
#all_wrap #mediaSlide .swiper-pagination {
	width: 100%;
	max-width: 1000px;
	position: absolute;
	left: 50%;
	bottom: 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 0;
	z-index: 10;
	transform: translate(-50%,0);
}
/* デフォルトの丸を四角に変更 */
#all_wrap #mediaSlide .swiper-pagination-bullet {
	width: calc(100% / 5);
	height: 5px;
	background: #FCE9DF;
	border: none;
	border-radius: 0;
	opacity: 1;
	transition: var(--ease);
	margin: 0;
	padding: 0;
}
/* アクティブ時 */
#all_wrap #mediaSlide .swiper-pagination-bullet-active {
	background: var(--main);
	transition: var(--ease);
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*スライダー*/
	#all_wrap #mediaSlide {
		width: calc(100% - 40px);
		margin: 0 auto 80px;
	}
	#all_wrap #mediaSlide > h2 {
		margin: 0 auto 30px;
		column-gap: 20px;
		font-size: 20px;
	}
	#all_wrap #mediaSlide > h2::before,
	#all_wrap #mediaSlide > h2::after {
		width: 1px;
		height: 18px;
	}
	/*リスト*/
	#all_wrap .media_slider {
		position: relative;
		max-width: 100% !important;
		padding: 0 0 30px !important;
	}
	#all_wrap #mediaSlide .swiper-wrapper {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
	}
	#all_wrap #mediaSlide .media_slide_item {
		width: 100%;
		padding: 0 30px 40px;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 25px;
		background: none;
	}
	#all_wrap #mediaSlide .media_slide_item:hover {
		background: none;
		transition: var(--ease);
	}
	#all_wrap #mediaSlide .media_slide_item::before {
		content: '';
		display: block;
		width: 100%;
		height: calc(100% - 90px);
		background: var(--main);
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: -1;
	}
	#all_wrap #mediaSlide .media_slide_item > figure {
		width: 180px;
		min-width: 180px;
		padding: 0;
		margin: 0 auto;
		position: relative;
		overflow: hidden;
		text-align: center;
		border-radius: 50%;
	}
	#all_wrap #mediaSlide .media_slider_info {
		width: calc(100%);
		grid-row-gap: 20px;
	}
	#all_wrap #mediaSlide .media_slider_info > header {
		width: 100%;
		flex-wrap: wrap;
		column-gap: 10px;
		grid-row-gap: 7px;
	}
	#all_wrap #mediaSlide .media_slider_info > header::before {
		width: 20px;
		height: 20px;
	}
	#all_wrap #mediaSlide .media_slider_info > header .date {
		font-size: 14px;
	}
	#all_wrap #mediaSlide .media_slider_info > header .date::after {
		display: none;
	}
	#all_wrap #mediaSlide .media_slider_info > header em {
		display: inline-block;
		width: 100%;
		font-size: 12px;
	}
	#all_wrap #mediaSlide .media_slider_info > h3 {
		width: 100%;
		font-size: 15px;
		line-height: 1.8em;
	}
	#all_wrap #mediaSlide .media_slider_info > h3 a {
		font-size: 15px;
		line-height: 1.8em;
	}
	#all_wrap .media_slider_tags {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		flex-wrap: wrap;
		gap: 15px;
	}
	#all_wrap .media_slider_tags span {
		display: inline-block;
		padding: 0;
		margin: 0;
		position: relative;
	}
	#all_wrap .media_slider_tags span a {
		display: inline-flex;
		justify-content: center;
		align-items: center;
		padding: 6px 15px;
		margin: 0;
		background: #fff;
		border-radius: 15px 0 15px 0;
		text-decoration: none;
		font-size: 12px;
		line-height: 1;
		color: var(--act);
		transition: var(--ease);
	}
	#all_wrap .media_slider_tags span a:hover {
		opacity: 0.8;
		transition: var(--ease);
	}

	/*ナビゲーション*/
	#all_wrap #mediaSlide .swiper-button-prev {
		display: none !important;
	}
	#all_wrap #mediaSlide .swiper-button-next {
		display: none !important;
	}
	#all_wrap #mediaSlide .swiper-button-next::before,
	#all_wrap #mediaSlide .swiper-button-prev::before,
	#all_wrap #mediaSlide .swiper-button-next::after,
	#all_wrap #mediaSlide .swiper-button-prev::after {
		display: none;
	}
	/* ページネーションを配置 */
	#all_wrap #mediaSlide .swiper-pagination {
		width: 100%;
		max-width: 100%;
		justify-content: center;
	}
	/* デフォルトの丸を四角に変更 */
	#all_wrap #mediaSlide .swiper-pagination-bullet {
		width: calc(100% / 5);
		height: 5px;
	}
}

/************************************************************/
/*　メディア サイドバー
/************************************************************/
#all_wrap .sidebar-media {
	width: 360px;
	min-width: 360px;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .asideBox {
	width: 100%;
	padding: 0;
	margin: 0 auto 70px;
	position: relative;
}
#all_wrap .asideBox > header {
	width: 100%;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 10px;
}
#all_wrap .asideBox > header.pc {
	display: flex !important;
}
#all_wrap .asideBox > header::before {
	content: '';
	display: block;
	width: 18px;
	height: 25px;
	aspect-ratio: 18 / 25;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/leaf-icon-pink.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}
#all_wrap .asideBox > header h2 {
	display: inline-block;
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	position: relative;
	font-size: 24px;
	line-height: 1;
	font-family: var(--font-en);
	color: var(--sub);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .sidebar-media {
		width: calc(100% - 60px);
		min-width: calc(100% - 60px);
		margin: 0 auto;
		order: 1;
	}
	#all_wrap .l-wrapper.single .sidebar-media {
		width: calc(100%);
		min-width: calc(100%);
		margin: 0 auto;
		order: 1;
	}
	#all_wrap .asideBox {
		margin: 0 auto 100px;
	}
	#all_wrap .asideBox:last-of-type {
		margin-bottom: 0;
	}
	#all_wrap .asideBox > header {
		margin: 0 auto 30px;
		justify-content: center;
		column-gap: 10px;
	}
	#all_wrap .asideBox > header::before {
		height: 18px;
	}
	#all_wrap .asideBox > header h2 {
		font-size: 20px;
	}
}

/*カテゴリー*/
#all_wrap .media-child-categories {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	column-gap: 0;
}
#all_wrap .media-child-categories > li {
	padding: 0;
	margin: 0;
	width: 100%;
}
#all_wrap .media-child-categories > li a {
	width: 100%;
	padding: 20px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 15px;
	border-bottom: 1px solid var(--base3);
	font-size: 15px;
	line-height: 1.2em;
	color: var(--main);
	transition: var(--ease);
	position: relative;
}
#all_wrap .media-child-categories > li a::after {
	content: '';
	display: block;
	width: 12px;
	min-width: 12px;
	height: 12px;
	aspect-ratio: 1/1;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/arrow_red.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	transition: var(--ease);
	position: relative;
}
#all_wrap .media-child-categories > li a:hover {
	opacity: 0.8;
	transition: var(--ease);
}
#all_wrap .media-child-categories > li a:hover::after {
	transform: translateX(3px);
	position: relative;
	transition: var(--ease);
}

/*タグ*/
#all_wrap .tag-list {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}
#all_wrap .tag-list li {
	display: inline-block;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .tag-list li a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 6px 15px;
	margin: 0;
	background: #fff;
	border-radius: 15px 0 15px 0;
	text-decoration: none;
	font-size: 12px;
	line-height: 1;
	color: var(--act);
	border: 1px solid var(--act);
	transition: var(--ease);
}
#all_wrap .tag-list li a:hover {
	background: var(--act);
	color: #fff;
	transition: var(--ease);
}

/*人気記事*/
#all_wrap .mediaList_sid {
	width: 100%;
	padding: 0 20px;
	margin: 0 auto;
	position: relative;
	list-style: none;
	border: 1px solid var(--main);
	display: flex;
	flex-direction: column;
}
#all_wrap .mediaList_sid > li {
	width: 100%;
	padding: 50px 25px;
	margin: 0 auto;
	border-bottom: 1px solid #CFDCEF;
	display: flex;
	flex-direction: column;
	grid-row-gap: 20px;
}
#all_wrap .mediaList_sid > li:last-child {
	border-bottom: none;
}
#all_wrap .mediaList_sid > li > figure {
	width: 170px;
	min-width: 170px;
	height: auto;
	aspect-ratio: 1/1;
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 50%;
}
#all_wrap .mediaList_sid > li > figure::before {
	content: '';
	display: block;
	padding: 50%;
	background: rgba(225, 93, 84, 0);
	transition: var(--ease);
	position: relative;
	z-index: 5;
}
#all_wrap .mediaList_sid > li:hover > figure::before {
	background: rgba(225, 93, 84, 0.2);
	transition: var(--ease);
	z-index: 5;
}
#all_wrap .mediaList_sid > 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_sid > li:hover > figure img {
	transform: translate(-50%,-50%) scale(1.05);
	transform-origin: center;
	transition: var(--ease);
}
#all_wrap .mediaList_sid > li > header {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 5px;
}
#all_wrap .mediaList_sid > li > header .date {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 10px;
	font-family: var(--font-num);
	font-size: 12px;
	line-height: 1;
	color: var(--sub);
}
#all_wrap .mediaList_sid > li > header .date::before {
	content: '';
	display: block;
	width: 15px;
	height: 15px;
	aspect-ratio: 1/1;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/shine-illust-blue.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}
#all_wrap .mediaList_sid > li > header .cat {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	font-size: 11px;
	line-height: 1;
	color: var(--main);
}
#all_wrap .mediaList_sid > li > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	font-size: 16px;
	line-height: 1.4em;
	color: var(--text);
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .mediaList_sid > li > h3 a {
	font-size: 16px;
	line-height: 1.4em;
	color: var(--text);
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	transition: var(--ease);
}
#all_wrap .mediaList_sid > li:hover > h3 a {
	opacity: 0.6;
	transition: var(--ease);
}
#all_wrap .mediaList_sid > li .tags {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 10px;
	grid-row-gap: 10px;
	width: 100%;
	padding: 0;
	margin: 0;
}
#all_wrap .mediaList_sid > li .tags > span a {
	font-size: 11px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	
	/*タグ*/
	#all_wrap .tag-list {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		list-style: none;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-wrap: wrap;
		gap: 15px;
	}
	
	/*人気記事*/
	#all_wrap .mediaList_sid {
		width: calc(100% - 20px);
		padding: 0 20px;
		border: 1px solid var(--main);
	}
	#all_wrap .mediaList_sid > li {
		width: 100%;
		padding: 50px 0;
		border-bottom: 1px solid #CFDCEF;
		grid-row-gap: 15px;
	}
	#all_wrap .mediaList_sid > li > figure {
		width: 180px;
		min-width: 180px;
	}
	#all_wrap .mediaList_sid > li > header {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		display: flex;
		flex-direction: unset;
		flex-wrap: wrap;
		grid-row-gap: 5px;
	}
	#all_wrap .mediaList_sid > li > header .date {
		width: 100%;
		font-size: 14px;
	}
	#all_wrap .mediaList_sid > li > header .date::before {
		width: 20px;
		height: 20px;
	}
	#all_wrap .mediaList_sid > li > header .cat {
		font-size: 12px;
	}
	#all_wrap .mediaList_sid > li > h3 {
		font-size: 15px;
		line-height: 1.8em;
	}
	#all_wrap .mediaList_sid > li > h3 a {
		font-size: 15px;
		line-height: 1.8em;
	}
}

/************************************************************/
/*　メディア 一覧
/************************************************************/
#all_wrap .mediaList {
	width: 100%;
	min-width: 740px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 70px;
	grid-row-gap: 100px;
}
#all_wrap .mediaList > li {
	width: calc((100% - 70px) / 2);
	padding: 0 40px 40px;
	margin: 0;
	display: flex;
	flex-direction: column;
	grid-row-gap: 20px;
	z-index: 0;
	position: relative;
}
#all_wrap .mediaList > li.no-posts {
	width: 100%;
	padding: 0;
	margin: 0;
	display: block;
	z-index: 0;
	text-align: center;
	position: relative;
}
#all_wrap .mediaList > li::after {
	content: '';
	display: block;
	width: 100%;
	height: calc(100% - 100px);
	background: var(--base);
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
	transition: var(--ease);
}
#all_wrap .mediaList > li:hover::after {
	background: rgba(225, 93, 84, 0.1);
	transition: var(--ease);
}
#all_wrap .mediaList > li > figure {
	width: 200px;
	min-width: 200px;
	height: auto;
	aspect-ratio: 1/1;
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 50%;
}
#all_wrap .mediaList > li > figure::before {
	content: '';
	display: block;
	padding: 50%;
}
#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:hover > figure img {
	transform: translate(-50%,-50%) scale(1.05);
	transform-origin: center;
	transition: var(--ease);
}
#all_wrap .mediaList > li > header {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 5px;
}
#all_wrap .mediaList > li > header .date {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 10px;
	font-family: var(--font-num);
	font-size: 12px;
	line-height: 1;
	color: var(--sub);
}
#all_wrap .mediaList > li > header .date::before {
	content: '';
	display: block;
	width: 15px;
	height: 15px;
	aspect-ratio: 1/1;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/shine-illust-blue.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}
#all_wrap .mediaList > li > header .cat {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	font-size: 11px;
	line-height: 1;
	color: var(--main);
}
#all_wrap .mediaList > li > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	font-size: 18px;
	line-height: 1.4em;
	color: var(--text);
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .mediaList > li > h3 a {
	font-size: 18px;
	line-height: 1.4em;
	color: var(--text);
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	transition: var(--ease);
}
#all_wrap .mediaList > li > h3 a:hover {
	opacity: 0.8;
	transition: var(--ease);
}
#all_wrap .mediaList > li .tags {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 10px;
	grid-row-gap: 10px;
	width: 100%;
	padding: 0;
	margin: 0;
}
#all_wrap .mediaList > li .tags > span a {
	font-size: 12px;
}

/*ページネーション*/
#all_wrap .pagination {
	width: 100%;
	max-width: 500px;
	padding: 80px 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 20px;
	font-family: var(--font-en);
}
#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: 20px;
	line-height: 1;
	font-weight: 500;
	color: var(--main);
}
#all_wrap .pagination > .page-numbers.current::after {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background: var(--main);
	position: absolute;
	bottom: -5px;
	left: 0;
}
#all_wrap .pagination > .page-numbers.next {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	column-gap: 10px;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%);
	transition: var(--ease);
}
#all_wrap .pagination > .page-numbers.prev {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	column-gap: 10px;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0,-50%);
	transition: var(--ease);
}
#all_wrap .pagination > .page-numbers.next:hover,
#all_wrap .pagination > .page-numbers.prev:hover {
	opacity: 0.8;
	transition: var(--ease);
}
#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;
}
#all_wrap .pagination > .page-numbers.next::after {
	content: '';
	display: block;
	width: 12px;
	height: 12px;
	min-width: 12px;
	aspect-ratio: 1/1;
	padding: 0;
	margin: 0;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/arrow-icon.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	border: none;
	position: relative;
	left: unset;
	top: unset;
	bottom: unset;
	right: unset;
	transition: var(--ease);
}
#all_wrap .pagination > .page-numbers.prev::before {
	content: '';
	display: block;
	width: 12px;
	height: 12px;
	min-width: 12px;
	aspect-ratio: 1/1;
	padding: 0;
	margin: 0;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/arrow-icon.svg');
	background-repeat: no-repeat;
	background-position: center;
	border: none;
	background-size: 100%;
	transform: scale(-1,1);
	position: relative;
	left: unset;
	top: unset;
	bottom: unset;
	right: unset;
	transition: var(--ease);
}
#all_wrap .pagination > .page-numbers.next:hover::after {
	transform: translateX(3px);
	transition: var(--ease);
}
#all_wrap .pagination > .page-numbers.prev:hover::before {
	transform: scale(-1,1) translateX(3px);
	transition: var(--ease);
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .mediaList {
		width: 100%;
		min-width: 100%;
		column-gap: 0;
		grid-row-gap: 100px;
	}
	#all_wrap .mediaList > li {
		width: calc(100% - 40px);
		padding: 0 30px 40px;
		margin: 0 auto;
		grid-row-gap: 15px;
	}
	#all_wrap .mediaList > li.no-posts {
		width: 100%;
		padding: 0;
		margin: 0;
		display: block;
		z-index: 0;
		text-align: center;
		position: relative;
	}
	#all_wrap .mediaList > li::after {
		height: calc(100% - 90px);
	}
	#all_wrap .mediaList > li > figure {
		width: 180px;
		min-width: 180px;
		margin: 0 auto 10px;
	}
	#all_wrap .mediaList > li > header {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		display: flex;
		flex-direction: column;
		grid-row-gap: 5px;
	}
	#all_wrap .mediaList > li > header .date {
		width: 100%;
		font-size: 14px;
	}
	#all_wrap .mediaList > li > header .date::before {
		width: 20px;
		height: 20px;
	}
	#all_wrap .mediaList > li > header .cat {
		font-size: 12px;
	}
	#all_wrap .mediaList > li > h3 {
		font-size: 15px;
		line-height: 1.8em;
	}
	#all_wrap .mediaList > li > h3 a {
		font-size: 15px;
		line-height: 1.8em;
	}
	#all_wrap .mediaList > li .tags {
		display: flex;
		justify-content: flex-start;
		align-items: center;
		flex-wrap: wrap;
		column-gap: 20px;
		grid-row-gap: 15px;
		width: 100%;
		padding: 0;
		margin: 0;
	}
	#all_wrap .mediaList > li .tags > span a {
		font-size: 12px;
	}

	/*ページネーション*/
	#all_wrap .pagination {
		width: calc(100% - 100px);
		max-width: 100%;
		padding: 0;
		margin: 80px auto 0;
		column-gap: 20px;
		font-family: var(--font-en);
	}
	#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: 13px;
		line-height: 1;
		font-weight: 500;
		color: var(--main);
	}
	#all_wrap .pagination > .page-numbers.current::after {
		content: '';
		display: block;
		width: 100%;
		height: 1px;
		background: var(--main);
		position: absolute;
		bottom: -5px;
		left: 0;
	}
	#all_wrap .pagination > .page-numbers.next {
		display: inline-flex;
		justify-content: center;
		align-items: center;
		column-gap: 10px;
		padding: 0;
		margin: 0;
		position: absolute;
		top: 50%;
		right: 0;
		transform: translate(0,-50%);
		transition: var(--ease);
	}
	#all_wrap .pagination > .page-numbers.prev {
		display: inline-flex;
		justify-content: center;
		align-items: center;
		column-gap: 10px;
		padding: 0;
		margin: 0;
		position: absolute;
		top: 50%;
		left: 0;
		transform: translate(0,-50%);
		transition: var(--ease);
	}
	#all_wrap .pagination > .page-numbers.next:hover,
	#all_wrap .pagination > .page-numbers.prev:hover {
		opacity: 0.8;
		transition: var(--ease);
	}
	#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;
	}
	#all_wrap .pagination > .page-numbers.next::after {
		content: '';
		display: block;
		width: 12px;
		height: 12px;
		min-width: 12px;
		aspect-ratio: 1/1;
		padding: 0;
		margin: 0;
		background-image: url('https://reliefport-femina.com/wp-content/uploads/arrow-icon.svg');
		background-repeat: no-repeat;
		background-position: center;
		background-size: 100%;
		border: none;
		position: relative;
		left: unset;
		top: unset;
		bottom: unset;
		right: unset;
		transition: var(--ease);
	}
	#all_wrap .pagination > .page-numbers.prev::before {
		content: '';
		display: block;
		width: 12px;
		height: 12px;
		min-width: 12px;
		aspect-ratio: 1/1;
		padding: 0;
		margin: 0;
		background-image: url('https://reliefport-femina.com/wp-content/uploads/arrow-icon.svg');
		background-repeat: no-repeat;
		background-position: center;
		border: none;
		background-size: 100%;
		transform: scale(-1,1);
		position: relative;
		left: unset;
		top: unset;
		bottom: unset;
		right: unset;
		transition: var(--ease);
	}
	#all_wrap .pagination > .page-numbers.next:hover::after {
		transform: translateX(3px);
		transition: var(--ease);
	}
	#all_wrap .pagination > .page-numbers.prev:hover::before {
		transform: scale(-1,1) translateX(3px);
		transition: var(--ease);
	}
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*検索*/
	#media-link {
		width: calc(100% - 120px);
		padding: 0;
		margin: 0 auto 100px;
		position: relative;
	}
	.sidebar-media #media-link {
		width: calc(100% - 60px);
		padding: 0;
		margin: 0 auto 100px;
		position: relative;
	}
	#all_wrap #media-link > h2 {
		width: 100%;
		padding: 0;
		margin: 0 auto 10px;
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		column-gap: 10px;
		font-size: 20px;
		line-height: 1;
		font-family: var(--font-en);
		color: var(--sub);
	}
	#all_wrap #media-link > h2::before {
		content: '';
		display: block;
		width: 18px;
		height: 25px;
		aspect-ratio: 18 / 25;
		background-image: url('https://reliefport-femina.com/wp-content/uploads/leaf-icon-pink.svg');
		background-repeat: no-repeat;
		background-position: center;
		background-size: 100%;
	}
	#media-category-dropdown {
		appearance: none;
		-webkit-appearance: none;
		-moz-appearance: none;
		width: 100%;
		padding: 10px 15px;
		border: none;
		border-radius: 3px;
		background-color: #E9F2FD;
		font-size: 14px;
		color: #333;
		cursor: pointer;
		outline: none;
		position: relative;
		transition: 0.3s;
	}
	#media-category-dropdown:hover,
	#media-category-dropdown:focus {
		border-color: #9bbbe7;
		box-shadow: 0 0 5px rgba(153, 187, 231, 0.5);
	}
	#media-category-select {
		position: relative;
		display: inline-block;
		width: 100%;
	}
	#media-category-select::after {
		content: "";
		display: block;
		width: 8px;
		height: 8px;
		border-right: 1.5px solid #707070;
		border-bottom: 1.5px solid #707070;
		background: none;
		position: absolute;
		right: 1.5em;
		top: 50%;
		transform-origin: center;
		transform: translateY(-50%) rotate(45deg);
		pointer-events: none;
	}
}

/************************************************************/
/*　メディア 記事詳細
/************************************************************/
#all_wrap .singleHeader {
	width: 100%;
	padding: 0;
	margin: 0 auto 70px;
	position: relative;
}
#all_wrap .singleHeader_data {
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 20px;
}
#all_wrap .singleHeader_data .date {
	display: inline-block;
	padding: 0;
	margin: 0;
	font-family: var(--font-num);
	font-size: 15px;
	line-height: 1;
	color: var(--sub);
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 10px;
}
#all_wrap .singleHeader_data .date::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	aspect-ratio: 1/1;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/shine-illust-blue.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}
#all_wrap .singleHeader_data .cat {
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 10px;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .singleHeader_data .cat a {
	font-size: 14px;
	line-height: 1;
	color: var(--main);
	text-decoration: none;
}
#all_wrap .singleHeader_data .cat a:hover {
	text-decoration: underline;
}
#all_wrap .singleHeader > h1 {
	width: 100%;
	padding: 0;
	margin: 0 auto 80px;
	background: none;
	border: none;
	position: relative;
	font-size: 20px;
	line-height: 1.4em;
	color: var(--text);
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .singleHeader > figure {
	width: 100%;
	padding: 0;
	margin: 0 auto 40px;
	position: relative;
	z-index: 0;
	text-align: right;
}
#all_wrap .singleHeader > figure::before {
	content: '';
	display: block;
	width: 460px;
	height: auto;
	aspect-ratio: 46 / 33;
	background: var(--base3);
	position: absolute;
	top: -30px;
	left: 0;
	z-index: -1;
}
#all_wrap .singleHeader > figure > span {
	display: block;
	width: 580px;
	aspect-ratio: 580 / 400;
	padding: 0;
	margin: 0 0 0 auto;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 100px 0 100px 0;
}
#all_wrap .singleHeader > figure > span::before {
	content: '';
	display: block;
	padding-top: 65%;
}
#all_wrap .singleHeader > figure > span 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 .singleHeader .single_tags {
	width: 100%;
	padding: 10px 20px;
	margin: 0 auto;
	border: 1px solid var(--main);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 20px;
	grid-row-gap: 10px;
}
#all_wrap .singleHeader .single_tags > span {
	display: inline-block;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .singleHeader .single_tags > span a {
	font-size: 12px;
	line-height: 1;
	color: var(--main);
	text-decoration: none;
	transition: var(--ease);
}
#all_wrap .singleHeader .single_tags > span a:hover {
	opacity: 0.8;
	transition: var(--ease);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .singleHeader {
		width: 100%;
		padding: 0;
		margin: 0 auto 50px;
		position: relative;
	}
	#all_wrap .singleHeader_data {
		margin: 0 auto 20px;
		flex-wrap: wrap;
		grid-row-gap: 10px;
		column-gap: 20px;
	}
	#all_wrap .singleHeader_data .date {
		font-size: 14px;
	}
	#all_wrap .singleHeader_data .cat {
		width: 100%;
	}
	#all_wrap .singleHeader_data .cat a {
		font-size: 12px;
	}
	#all_wrap .singleHeader > h1 {
		margin: 0 auto 40px;
		font-size: 15px;
		line-height: 1.8em;
	}
	#all_wrap .singleHeader > figure {
		width: 100%;
		padding: 0;
		margin: 0 auto 40px;
	}
	#all_wrap .singleHeader > figure::before {
		width: calc(100% - 120px);
		top: -20px;
		left: 0;
	}
	#all_wrap .singleHeader > figure > span {
		display: block;
		width: calc(100% - 50px);
		border-radius: 60px 0 60px 0;
	}
	/*タグ*/
	#all_wrap .singleHeader .single_tags {
		width: 100%;
		padding: 10px 20px;
		column-gap: 20px;
		grid-row-gap: 7px;
	}
	#all_wrap .singleHeader .single_tags > span {
		line-height: 1;
	}
	#all_wrap .singleHeader .single_tags > span a {
		font-size: 12px;
	}
}


/*前後の記事*/
#all_wrap .post-navigation {
	width: 100%;
	padding: 0;
	margin: 100px auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	column-gap: 0;
	border-top: 1px solid var(--main);
	border-bottom: 1px solid var(--main);
}
#all_wrap .post-navigation::after {
	content: '';
	display: block;
	width: 1px;
	height: calc(100% - 30px);
	background: var(--main);
	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: 30px;
	margin: 0;
	position: relative;
}
#all_wrap .post-navigation > .prev-post::before {
	content: '';
	display: block;
	width: 85px;
	height: auto;
	aspect-ratio: 71 / 13;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/next_left.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: auto;
	aspect-ratio: 73 / 13;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/next_right.svg');
	background-repeat: no-repeat;
	background-size: auto 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;
	color: var(--text);
	text-decoration: none;
	transition: var(--ease);
}
#all_wrap .post-navigation a:hover {
	color: var(--main);
	text-decoration: underline;
	transition: var(--ease);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 480px){
	/*前後の記事*/
	#all_wrap .post-navigation {
		width: 100%;
		padding: 0;
		margin: 60px auto;
		column-gap: 40px;
	}
	#all_wrap .post-navigation::after {
		content: '';
		display: block;
		width: 1px;
		height: calc(100% - 20px);
	}
	#all_wrap .post-navigation > .prev-post,
	#all_wrap .post-navigation > .next-post {
		width: 50%;
		text-align: center;
		padding: 20px;
		margin: 0;
		position: relative;
	}
	#all_wrap .post-navigation > .prev-post::before {
		content: '';
		display: block;
		width: 60px;
		height: auto;
		aspect-ratio: 71 / 13;
		background-image: url('https://reliefport-femina.com/wp-content/uploads/next_left.svg');
		background-repeat: no-repeat;
		background-size: 100%;
		background-position: center;
		padding: 0;
		margin: 0 auto 10px;
	}
	#all_wrap .post-navigation > .next-post::before {
		content: '';
		display: block;
		width: 60px;
		height: auto;
		aspect-ratio: 73 / 13;
		background-image: url('https://reliefport-femina.com/wp-content/uploads/next_right.svg');
		background-repeat: no-repeat;
		background-size: auto 100%;
		background-position: center;
		padding: 0;
		margin: 0 auto 10px;
	}
	#all_wrap .post-navigation a {
		display: block;
		width: 100%;
		font-size: 12px;
		line-height: 1.5em;
	}
	#all_wrap .post-navigation a:hover {
		color: var(--main);
		text-decoration: underline;
		transition: var(--ease);
	}
}

/*本文*/
.singleContent #toc_content {
	padding: 0 40px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*本文*/
	.singleContent #toc_content {
		padding: 0 10px;
	}
}

/*編集者*/
#all_wrap .editor {
	width: calc(100% - 80px);
	padding: 30px 50px;
	margin: 0 auto;
	margin-top: 100px;
	position: relative;
	background: var(--base2);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 45px;
	grid-row-gap: 15px;
}
#all_wrap .editor > header {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 5px;
}
#all_wrap .editor > header > em {
	display: inline-block;
	padding: 0;
	margin: 0;
	font-family: var(--font-en);
	font-size: 12px;
	line-height: 1;
	font-style: normal;
	color: #8C8C8C;
}
#all_wrap .editor > header > span {
	display: inline-block;
	padding: 0;
	margin: 0;
	font-family: var(--font-all);
	font-size: 18px;
	line-height: 1;
	font-style: normal;
	color: var(--main);
}
#all_wrap .editor > figure {
	width: 130px;
	min-width: 130px;
	padding: 0;
	margin: 0;
	text-align: center;
	position: relative;
}
#all_wrap .editor > figure > span {
	display: block;
	width: 80px;
	height: 80px;
	min-width: 80px;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 50%;
	padding: 0;
	margin: 0 auto;
}
#all_wrap .editor > figure::before {
	content: '';
	display: block;
	width: 16px;
	height: 12px;
	aspect-ratio: 16 / 12;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/letter-icon-blue.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	position: absolute;
	top: 5px;
	left: 23px;
	z-index: 1;
}
#all_wrap .editor > figure > span 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 .editor > .editorBox_info {
	width: calc(100% - 45px - 130px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .editor > .editorBox_info > p {
	padding: 0;
	margin: 0;
	position: relative;
	font-size: 13px;
	line-height: 1.7em;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*編集者*/
	#all_wrap .editor {
		width: calc(100% - 20px);
		padding: 30px 20px;
		margin-top: 50px;
		column-gap: 0;
		grid-row-gap: 15px;
	}
	#all_wrap .editor > header {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		column-gap: 5px;
	}
	#all_wrap .editor > figure {
		width: 80px;
		min-width: 80px;
		margin: 0 auto;
	}
	#all_wrap .editor > figure > span {
		display: block;
		width: 80px;
		height: 80px;
		min-width: 80px;
		position: relative;
		overflow: hidden;
		text-align: center;
		border-radius: 50%;
		padding: 0;
		margin: 0 auto;
	}
	#all_wrap .editor > figure::before {
		content: '';
		display: block;
		width: 20px;
		height: auto;
		top: 8px;
		left: -5px;
		z-index: 1;
	}
	#all_wrap .editor > .editorBox_info {
		width: calc(100%);
	}
	#all_wrap .editor > .editorBox_info > p {
		font-size: 12px;
		line-height: 1.7em;
	}
}

/************************************************************/
/*　カテゴリ　よくある質問
/************************************************************/
#faq {
	position: relative;
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	column-gap: 100px;
}
#all_wrap #faq > header {
	width: 100%;
	padding: 0;
	margin: 0 auto 120px;
	position: relative;
}
#all_wrap #faq > header > i {
	display: block;
	width: 100%;
	height: 140px;
	padding: 0;
	margin: 0 auto 50px;
	text-align: center;
}
#all_wrap #faq > header > i img {
	width: auto;
	height: 100%;
}
#all_wrap #faq > header > em {
	display: block;
	padding: 0;
	margin: 0 auto 15px;
	font-family: var(--font-en);
	font-size: 58px;
	line-height: 1;
	color: var(--main);
	font-style: normal;
	text-align: center;
}
#all_wrap #faq > header > h1 {
	display: block;
	padding: 0;
	margin: 0;
	font-size: 20px;
	line-height: 1;
	color: var(--sub);
	text-align: center;
	border: none;
	background: none;
	position: relative;
}
#all_wrap #faq > .sidebar-faq {
	width: 300px;
	min-width: 300px;
	padding: 0;
	margin: 0;
	position: sticky;
	top: 140px;
	left: 0;
}
#all_wrap #faq > #faq-list-wrapper {
	width: calc(100% - 100px - 300px);
	padding: 0;
	margin: 0;
	position: relative;
}

/*検索*/
.aside_search {
	position: relative;
	margin: 0 auto 20px;
}
.aside_search input[type="text"] {
	width: 100%;
	background-color: #fff;
	border: 1.5px solid rgb(233, 242, 253);
	border-radius: 4px;
	padding: 8px 36px 8px 10px; /* 右にアイコン分の余白 */
	font-size: 14px;
	color: #333;
}
.aside_search::after {
	content: "";
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	border: none;
	background-image: url(https://reliefport-femina.com/wp-content/uploads/Icon-search.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
}

/* セレクトボックス */
.aside_category {
	width: 100%;
	max-width: 300px;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
.aside_category select {
	width: 100%;
	font-size: 14px;
	color: rgb(51, 51, 51);
	appearance: none;
	position: relative;
	border-width: 1px;
	border-style: solid;
	border-color: rgb(207, 220, 239);
	border-image: initial;
	border-radius: 4px;
	padding: 8px 36px 8px 10px;
	background: rgb(233, 242, 253);
}
.aside_category::after {
	content: "";
	position: absolute;
	right: 20px;
	top: 45%;
	width: 10px;
	height: 10px;
	pointer-events: none;
	transform: translateY(-50%) rotate(45deg);
	border-right: 1.5px solid rgb(112, 112, 112);
	border-bottom: 1.5px solid rgb(112, 112, 112);
}

/*リスト*/
#all_wrap .faq-child-categories {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 20px;
}
#all_wrap .faq-child-categories > li {
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .faq-child-categories > li a {
	font-size: 15px;
	line-height: 1.4em;
	color: #8C8C8C;
	text-decoration: none;
	transition: var(--ease);
	position: relative;
}
#all_wrap .faq-child-categories > li a:hover {
	color: var(--main);
	text-decoration: none;
	transition: var(--ease);
}
#all_wrap .faq-child-categories > li a::after {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background: var(--main);
	position: absolute;
	bottom: -5px;
	left: 0;
	opacity: 0;
	visibility: hidden;
	transition: var(--ease);
}
#all_wrap .faq-child-categories > li a:hover::after {
	opacity: 1;
	visibility: visible;
	transition: var(--ease);
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#faq {
		position: relative;
		width: 100%;
		max-width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 40px;
	}
	#all_wrap #faq > header {
		margin: 0 auto;
	}
	#all_wrap #faq > header > i {
		height: 120px;
		margin: 0 auto 20px;
	}
	#all_wrap #faq > header > em {
		margin: 0 auto 10px;
		font-size: 36px;
	}
	#all_wrap #faq > header > h1 {
		font-size: 15px;
	}
	#all_wrap #faq > .sidebar-faq {
		width: 100%;
		min-width: 100%;
		position: relative;
		top: unset;
		left: unset;
		margin: 0 auto 40px;
	}
	#all_wrap #faq > #faq-list-wrapper {
		width: 100%;
	}

	/*検索*/
	.aside_search {
		width: 100%;
		max-width: 300px;
		position: relative;
	}
	.aside_search input[type="text"] {
		width: 100%;
		max-width: 300px;
		background-color: #fff;
		border: 1.5px solid rgb(233, 242, 253);
		border-radius: 4px;
		padding: 8px 36px 8px 10px; /* 右にアイコン分の余白 */
		font-size: 14px;
		color: #333;
	}
	.aside_search::after {
		content: "";
		position: absolute;
		right: 12px;
		top: 50%;
		transform: translateY(-50%);
		width: 16px;
		height: 16px;
		border: none;
	}

	/*リスト*/
	#all_wrap .faq-child-categories {
		display: none;
	}
	#all_wrap .faq-child-categories > li {
		padding: 0;
		margin: 0;
		position: relative;
	}
	#all_wrap .faq-child-categories > li a {
		font-size: 15px;
		line-height: 1.4em;
		color: #8C8C8C;
		text-decoration: none;
		transition: var(--ease);
		position: relative;
	}
	#all_wrap .faq-child-categories > li a:hover {
		color: var(--main);
		text-decoration: none;
		transition: var(--ease);
	}
	#all_wrap .faq-child-categories > li a::after {
		content: '';
		display: block;
		width: 100%;
		height: 1px;
		background: var(--main);
		position: absolute;
		bottom: -5px;
		left: 0;
		opacity: 0;
		visibility: hidden;
		transition: var(--ease);
	}
	#all_wrap .faq-child-categories > li a:hover::after {
		opacity: 1;
		visibility: visible;
		transition: var(--ease);
	}
}

/************************************************************/
/*　当院について
/************************************************************/
.about_visual {
	width: 100%;
	height: 100vh;
	min-height: 700px;
	padding: 0;
	margin: 0 auto 100px;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-direction: column;
	flex-wrap: wrap;
	grid-row-gap: 70px;
	position: relative;
	z-index: 0;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/about_visual_bg.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.about_visual::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: var(--main);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	opacity: 0.6;
}
.about_visual i,
.about_visual span {
	display: block;
	width: 100%;
	height: 50px;
	padding: 0;
	margin: 0 auto;
	text-align: center;
}
.about_visual i img,
.about_visual span img {
	width: auto;
	height: 100%;
}
#all_wrap .about_visual > h1 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	font-size: 26px;
	line-height: 1.7em;
	color: #fff;
	text-align: center;
	border: none;
	background: none;
	position: relative;
	letter-spacing: 0.1em;
}
/*テキストループ*/
#all_wrap .marquee-container {
	width: 100%;
	overflow: hidden;
	background: var(--act);
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 20px 0;
}
#all_wrap .marquee-container ul {
	display: flex;
	width: max-content;
	animation: marquee 60s linear infinite;
}
#all_wrap .marquee-container ul li {
	display: inline-block;
	margin-right: 20px;
	color: #fff;
	font-size: 15px;
}
#all_wrap .marquee-container ul li::after {
	content: '/';
	margin-left: 20px;
	color: #fff;
}
/* 無限ループ用に2倍の幅分流す */
@keyframes marquee {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}


/*ポイント 1*/
#all_wrap .about_point_1 {
	width: 100%;
	padding: 0;
	margin: 0 auto 180px;
	position: relative;
}
#all_wrap .about_header {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	display: flex;
	flex-direction: column;
	grid-row-gap: 30px;
	position: relative;
}
#all_wrap .about_header em {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	font-family: var(--font-num);
	font-size: 32px;
	line-height: 1;
	color: var(--main);
	font-style: normal;
}
#all_wrap .about_header i {
	display: block;
	width: auto;
	height: 40px;
	text-align: center;
}
#all_wrap .about_header i img {
	width: auto;
	height: 100%;
}
#all_wrap .about_header h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	border: none;
	background: none;
	position: relative;
	font-size: 24px;
	line-height: 1.4em;
	color: var(--main);
	text-align: center;
	letter-spacing: 0.15em;
}
#all_wrap .about_point_1 > p {
	width: 100%;
	max-width: 800px;
	padding: 0;
	margin: 0 auto 70px;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
/*リスト*/
#all_wrap .evaList {
	width: 100%;
	max-width: 1000px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 80px;
	grid-row-gap: 80px;
}
#all_wrap .evaList > li {
	width: calc(50% - 40px);
	padding: 55px 50px;
	margin: 0;
	border-radius: 60px 0 60px 0;
	background: var(--base);
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 30px;
}
#all_wrap .evaList > li > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	font-size: 20px;
	line-height: 1.4em;
	text-align: center;
	color: var(--main);
	letter-spacing: 0.15em;
}
#all_wrap .evaList > li > figure {
	width: 200px;
	min-width: 200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 50%;
}
#all_wrap .evaList > li > figure::before {
	content: '';
	display: block;
	padding: 50%;
}
#all_wrap .evaList > 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 .evaList > li > p {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}

/*ポイント 2*/
#all_wrap .about_point_2 {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto 220px;
	position: relative;
}
#all_wrap .about_point_2 > p {
	width: 100%;
	max-width: 800px;
	padding: 0;
	margin: 0 auto 70px;
	position: relative;
	text-align: center;
}
#all_wrap .about_point_2 > figure {
	width: 760px;
	min-width: 760px;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .about_point_2 > figure img {
	width: 100%;
	height: auto;
}
#all_wrap .about_point_2 .separate {
	display: block;
	width: 100%;
	height: 50px;
	padding: 0;
	margin: 70px auto;
	position: relative;
	text-align: center;
}
#all_wrap .about_point_2 .separate img {
	width: auto;
	height: 100%;
}
#all_wrap .about_point_2 .topRecruit_wrap {
	margin: 0 auto 140px;
}
#all_wrap .about_point_2 .topRecruit_txt > p {
	padding: 0;
	margin: 0 auto;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
/* - 技術*/
#all_wrap .about_technology {
	width: 100%;
	max-width: 1100px;
	padding: 50px 110px;
	margin: 0 auto 140px;
	background: var(--act);
	border-radius: 100px 0 100px 0;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 80px;
}
#all_wrap .about_technology dt {
	width: 320px;
	min-width: 320px;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .about_technology dt h2 {
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	position: relative;
	font-size: 17px;
	line-height: 1.7em;
	color: #fff;
	text-align: left;
}
#all_wrap .about_technology dt h2 strong {
	display: block;
	font-size: 22px;
}
#all_wrap .about_technology dd {
	width: calc(100% - 80px - 320px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .about_technology dd > p {
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	color: #fff;
}
#all_wrap .about_technology dd > p:last-of-type {
	margin-bottom: 0;
}
/* - 施術について*/
#all_wrap .about_details {
	width: 100%;
	max-width: 1150px;
	padding: 90px 130px;
	margin: 0 auto;
	border: 1px solid var(--act);
	border-radius: 40px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	grid-row-gap: 50px;
}
#all_wrap .about_details i {
	display: block;
	width: 100%;
	height: 100px;
	padding: 0;
	margin: 0 auto;
	text-align: center;
}
#all_wrap .about_details i img {
	width: auto;
	height: 100%;
}
#all_wrap .about_details > p {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align: center;
}
#all_wrap .about_details > figure {
	width: 100%;
	padding: 0;
	margin: 0 auto;
}
#all_wrap .about_details > figure img {
	width: 100%;
	height: auto;
}
/*ポイント 3*/
#all_wrap .about_point_3 {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto 220px;
	position: relative;
}
#all_wrap .about_point_3 > p {
	width: 100%;
	max-width: 1000px;
	padding: 0;
	margin: 0 auto 70px;
	position: relative;
	text-align: center;
}
#all_wrap .about_point_3 > figure {
	width: 760px;
	min-width: 760px;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .about_point_3 > figure img {
	width: 100%;
	height: auto;
}
/*LINE予約*/
#all_wrap .about_reserved {
	width: 100%;
	padding: 60px 0 70px;
	margin: 0 auto 200px;
	background: var(--base2);
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	grid-row-gap: 40px;
	flex-direction: column;
}
#all_wrap .about_reserved i {
	display: block;
	width: 750px;
	height: 40px;
	padding: 0;
	margin: 0 auto;
	text-align: left;
}
#all_wrap .about_reserved i img {
	width: auto;
	height: 100%;
}
#all_wrap .about_reserved > p {
	padding: 0;
	margin: 0 auto 10px;
	text-align: center;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.about_visual {
		width: 100%;
		height: auto;
		min-height: auto;
		padding: 210px 20px 170px;
		margin: 0 auto 100px;
		grid-row-gap: 30px;
		background-image: url('https://reliefport-femina.com/wp-content/uploads/about_visual_bg_sp.webp');
	}
	.about_visual::before {
		display: none;
	}
	.about_visual i {
		height: 40px;
	}
	.about_visual span {
		height: 30px;
	}
	#all_wrap .about_visual > h1 {
		font-size: 20px;
		line-height: 1.7em;
	}
	/*テキストループ*/
	#all_wrap .marquee-container {
		width: 100%;
		overflow: hidden;
		background: var(--act);
		position: absolute;
		bottom: 0;
		left: 0;
		padding: 15px 0;
	}
	#all_wrap .marquee-container ul {
		display: flex;
		width: max-content;
		animation: marquee 60s linear infinite;
	}
	#all_wrap .marquee-container ul li {
		display: inline-block;
		margin-right: 20px;
		color: #fff;
		font-size: 13px;
	}
	#all_wrap .marquee-container ul li::after {
		content: '/';
		margin-left: 20px;
		color: #fff;
	}
	/* 無限ループ用に2倍の幅分流す */
	@keyframes marquee {
		0% {
			transform: translateX(0);
		}
		100% {
			transform: translateX(-50%);
		}
	}


	/*ポイント 1*/
	#all_wrap .about_point_1 {
		margin: 0 auto 120px;
	}
	#all_wrap .about_header {
		margin: 0 auto 40px;
		grid-row-gap: 20px;
	}
	#all_wrap .about_header em {
		font-size: 22px;
	}
	#all_wrap .about_header i {
		height: 32px;
	}
	#all_wrap .about_header h2 {
		font-size: 18px;
		line-height: 1.6em;
	}
	#all_wrap #letter .about_header h2 {
		font-size: 17px;
		line-height: 1.65em;
	}
	#all_wrap .about_point_1 > p {
		width: calc(100% - 80px);
		max-width: 100%;
		margin: 0 auto 60px;
	}
	/*リスト*/
	#all_wrap .evaList {
		width: calc(100% - 40px);
		max-width: 100%;
		column-gap: 0;
		grid-row-gap: 60px;
	}
	#all_wrap .evaList > li {
		width: 100%;
		padding: 50px 30px;
		grid-row-gap: 30px;
	}
	#all_wrap .evaList > li > h2 {
		width: 100%;
		font-size: 18px;
	}
	#all_wrap .evaList > li > figure {
		width: 180px;
		min-width: 180px;
	}

	/*ポイント 2*/
	#all_wrap .about_point_2 {
		width: calc(100% - 40px);
		max-width: 100%;
		margin: 0 auto 120px;
	}
	#all_wrap .about_point_2 > p {
		width: calc(100% - 40px);
		max-width: 100%;
		padding: 0;
		margin: 0 auto 40px;
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
	}
	#all_wrap .about_point_2 > figure {
		width: 100%;
		min-width: 100%;
	}
	#all_wrap .about_point_2 .separate {
		height: 40px;
		padding: 0;
		margin: 30px auto;
	}
	#all_wrap .about_point_2 .topRecruit_wrap {
		width: 100%;
		padding: 0;
		margin: 0 auto 80px;
		flex-wrap: wrap;
		grid-row-gap: 40px;
		column-gap: 15px;
	}
	#all_wrap .about_point_2 .topRecruit_wrap > figure {
		width: calc((100% - 15px) / 2);
		padding: 0;
		margin: 0;
		position: relative;
		top: unset;
		left: unset;
		order: 2;
	}
	#all_wrap .about_point_2 .topRecruit_txt > p {
		padding: 0 20px;
		margin: 0 auto;
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
		order: 0;
	}
	/* - 技術*/
	#all_wrap .about_technology {
		width: 100%;
		max-width: 100%;
		padding: 50px 30px;
		margin: 0 auto 100px;
		background: var(--act);
		border-radius: 60px 0 60px 0;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 30px;
	}
	#all_wrap .about_technology dt {
		width: 100%;
		min-width: 100%;
	}
	#all_wrap .about_technology dt h2 {
		font-size: 15px;
		line-height: 2;
		text-align: center;
	}
	#all_wrap .about_technology dt h2 strong {
		font-size: 20px;
	}
	#all_wrap .about_technology dd {
		width: calc(100%);
	}
	#all_wrap .about_technology dd > p {
		padding: 0;
		margin: 0 auto 20px;
		position: relative;
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
		color: #fff;
	}
	/* - 施術について*/
	#all_wrap .about_details {
		width: 100%;
		max-width: 100%;
		padding: 60px 20px;
		margin: 0 auto;
		border-radius: 30px;
		grid-row-gap: 30px;
	}
	#all_wrap .about_details i {
		height: 80px;
	}
	#all_wrap .about_details > p {
		width: 100%;
		padding: 0 10px;
		margin: 0 auto 30px;
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
	}
	/*ポイント 3*/
	#all_wrap .about_point_3 {
		width: calc(100% - 40px);
		max-width: 100%;
		margin: 0 auto 120px;
	}
	#all_wrap .about_point_3 > p {
		width: 100%;
		max-width: 100%;
		padding: 0 20px;
		margin: 0 auto 40px;
		position: relative;
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
	}
	#all_wrap .about_point_3 > figure {
		width: 100%;
		min-width: 100%;
	}
	/*LINE予約*/
	#all_wrap .about_reserved {
		width: 100%;
		padding: 60px 20px 60px;
		margin: 0 auto;
		grid-row-gap: 40px;
	}
	#all_wrap .about_reserved i {
		height: 40px;
	}
	#all_wrap .about_reserved i img {
		width: auto;
		height: 100%;
	}
	#all_wrap .about_reserved > p {
		padding: 0;
		margin: 0 auto 10px;
		text-align: center;
	}
}


/************************************************************/
/*　施術メニュー
/************************************************************/
.menu_visual {
	width: 100%;
	height: 100vh;
	min-height: 700px;
	padding: 160px 0 90px;
	margin: 0 auto 180px;
	background: var(--base);
	display: flex;
	justify-content: flex-end;
	position: relative;
	z-index: 0;
}
.menu_mv_info {
	width: 760px;
	min-width: 760px;
	padding: 100px;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 50px;
}
.menu_visual > figure {
	width: auto;
	padding: 0;
	margin: 0;
	position: relative;
	text-align: right;
}
.menu_visual > figure img {
	width: auto;
	height: 100%;
	transition: var(--ease);
}
#all_wrap .menu_mv_info > header {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 20px;
}
#all_wrap .menu_mv_info > header > em {
	display: inline-flex;
	justify-content: center;
	column-gap: 15px;
	align-items: center;
	font-size: 15px;
	line-height: 1;
	color: var(--main);
	text-align: center;
	font-style: normal;
}
#all_wrap .menu_mv_info > header > em::before,
#all_wrap .menu_mv_info > header > em::after {
	content: '';
	display: block;
	width: 15px;
	height: 2px;
	border-radius: 2px;
	background: var(--main);
	transform: rotate(45deg);
	transform-origin: center;
}
#all_wrap .menu_mv_info > header > em::after {
	transform: rotate(-45deg);
}
#all_wrap .menu_mv_info > header > h1 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	font-size: 32px;
	line-height: 1,4em;
	color: var(--main);
	border: none;
	background: none;
	position: relative;
}
#all_wrap .menu_mv_info > p {
	padding: 0;
	margin: 0 auto;
	text-align: center;
}

/*施術メニュー*/
#menu_list {
	width: 100%;
	padding: 0;
	margin: 0 auto 200px;
	position: relative;
}
#all_wrap .treatment_menu {
	width: 100%;
	max-width: 1400px;
	padding: 0;
	margin: 0 auto;
	position:relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 0;
	grid-row-gap: 100px;
}
#all_wrap .treatment_menu dl {
	width: calc(100% / 3);
	padding: 25px 50px;
	margin: 0;
	background: none;
	border-right: 2px solid #CCCCCC;
	display: flex;
	flex-direction: column;
	grid-row-gap: 20px;
}
#all_wrap .treatment_menu dl:nth-of-type(3n) {
	border: none;
}
#all_wrap .treatment_menu dl dt {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 5px;
}
#all_wrap .treatment_menu dl dt::before {
	content: '';
	display: block;
	width: 30px;
	height: 30px;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/shine-illust-blue.svg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
#all_wrap .treatment_menu dl dt em {
	display: inline-block;
	padding: 0;
	margin: 0;
	font-family: var(--font-en);
	font-size: 16px;
	line-height: 1;
	font-style: normal;
	color: var(--sub);
	position: relative;
	top: -0.5em;
}
#all_wrap .treatment_menu dl dt h3 {
	font-size: 17px;
	line-height: 1.4em;
	color: var(--sub);
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	position: relative;
}
#all_wrap .treatment_menu dl dd {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 15px;
}
#all_wrap .treatment_menu dl dd > h3 {
	display: inline-block;
	width: fit-content;
	padding: 7px 15px;
	margin: 0 auto;
	background: var(--act);
	font-size: 15px;
	line-height: 1;
	text-align: center;
	color: #fff;
	border-radius: 30px;
}
#all_wrap .treatment_menu dl dd > ul {
	width: fit-content;
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	list-style: none;
	display: inline-flex;
	flex-direction: column;
	grid-row-gap: 12px;
}
#all_wrap .treatment_menu dl dd > ul li {
	width: fit-content;
	padding: 0 0 0 1em;
	margin: 0;
	font-size: 15px;
	line-height: 1.2em;
	color: var(--act);
	text-align: left;
	position: relative;
}
#all_wrap .treatment_menu dl dd > ul li::before {
	content: '・';
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}
#all_wrap .treatment_menu dl dd > p {
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .treatment_menu dl dd > figure {
	width: 100%;
	height: 110px;
	padding: 0;
	margin: auto auto 0;
	text-align: center;
}
#all_wrap .treatment_menu dl dd > figure img {
	width: auto;
	height: 100%;
}
/*フェミケア*/
#femicare-plus {
	width: 100%;
	padding: 0;
	margin: 0 auto 200px;
	position: relative;
}
#all_wrap #femicare-plus > header {
	width: 100%;
	padding: 0;
	margin: 0 auto 100px;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 50px;
}
#all_wrap #femicare-plus > header h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	border: none;
	background: none;
	position: relative;
	font-size: 32px;
	line-height: 1.4em;
	color: var(--act);
	text-align: center;
	letter-spacing: 0.1em;
}
#all_wrap #femicare-plus > header p {
	padding: 0;
	margin: 0 auto;
	text-align: center;
}
#all_wrap #femicare-plus > header figure {
	width: 680px;
	min-width: 680px;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap #femicare-plus > header figure img {
	width: 100%;
	height: auto;
}
/* - リスト*/
#all_wrap .femicareList {
	width: 100%;
	max-width: 1000px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 70px;
}
#all_wrap .femicareList > li {
	width: 100%;
	padding: 45px 100px;
	margin: 0 auto;
	position: relative;
	background: #FCE9DF;
	border-radius: 100px 0 100px 0;
	display: flex;
	justify-content: space-between;
	column-gap: 80px;
}
#all_wrap .femicareList > li:nth-child(2) {
	background: #E9F2FD;
}
#all_wrap .femicareList > li:nth-child(3) {
	background: #FCF5EA;
}
#all_wrap .femicareList > li > h3 {
	width: 300px;
	min-width: 300px;
	padding: 0;
	margin: 0;
	position: relative;
	border: none;
	background: none;
	font-size: 20px;
	line-height: 1.4em;
	text-align: left;
	color: var(--act);
}
#all_wrap .femicareList > li > p {
	width: calc(100% - 80px - 300px);
	padding: 0;
	margin: 0;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}

/*インナーサポート*/
#menu_support {
	width: 100%;
	padding: 70px;
	margin: 0 auto 200px;
	background: var(--main);
	position: relative;
}
.menu_support_wrap {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-around;
	align-items: center;
	column-gap: 100px;
}
.menu_support_info {
	width: calc(100% - 100px - 380px);
	padding: 0;
	margin: 0;
	position: relative;
	order: 1;
}
#all_wrap .menu_support_info > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto 65px;
	border: none;
	background: none;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 10px;
	font-size: 32px;
	line-height: 1.4em;
	color: #fff;
	text-align: left;
	letter-spacing: 0.1em;
}
#all_wrap .menu_support_info > h2::before {
	content: '';
	display: block;
	width: 28px;
	height: auto;
	aspect-ratio: 28 / 34;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/flower-illust-blue-1.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}
#all_wrap .menu_support_info > p {
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	color: #fff;
}
#all_wrap .menu_support_info > p:last-of-type {
	margin-bottom: 0;
}
.menu_support_wrap > figure {
	width: 380px;
	min-width: 380px;
	padding: 0;
	margin: 0;
	position: relative;
	text-align: center;
	overflow: hidden;
	border-radius: 50%;
}
.menu_support_wrap > figure::before {
	content: '';
	display: block;
	padding: 50%;
}
.menu_support_wrap > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}

/*連携*/
#menu_coop {
	width: 100%;
	padding: 0;
	margin: 0 auto 200px;
	position:relative;
}
.menu_coop_wrap {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 80px;
}
.menu_coop_left {
	width: 50%;
	padding: 70px;
	margin: 0;
	background: var(--base);
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 30px;
}
.menu_coop_left::before {
	content: '';
	display: block;
	width: 100px;
	height: 100px;
	aspect-ratio: 1/1;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/shine-illust-blue.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	position: absolute;
	top: -40px;
	right: 40px;
	z-index: 2;
}
.menu_coop_right {
	width: calc(50% - 80px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .menu_coop_left > header {
	width: 100%;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
#all_wrap .menu_coop_left > header > em {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	font-size: 14px;
	line-height: 1;
	color: var(--act);
	font-style: normal;
}
#all_wrap .menu_coop_left > header > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	border: none;
	background: none;
	position: relative;
	font-size: 20px;
	line-height: 1.2em;
	color: var(--act);
	letter-spacing: 0.1em;
}
#all_wrap .menu_coop_left > figure {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .menu_coop_left > figure img {
	width: 100%;
	height: auto;
}
#all_wrap .menu_coop_left > p {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .menu_coop_left > p small {
	font-size: 12px;
	line-height: 1.4em;
	color: var(--sub);
}

/*Price*/
#menu_price {
	width: 100%;
	padding: 0;
	margin: 0 auto 200px;
	position: relative;
}
.menu_price_wrap {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	grid-row-gap: 50px;
	position: relative;
}
#all_wrap .menu_price_wrap::before {
	content: '';
	display: block;
	width: 80px;
	height: auto;
	aspect-ratio: 19 / 20;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/shine-icon-red.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	position: absolute;
	top: 50px;
	left: 200px;
	opacity: 0.7;
}
#all_wrap .menu_price_wrap::after {
	content: '';
	display: block;
	width: 110px;
	height: auto;
	aspect-ratio: 113 / 104;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/leaf-illust-blue.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	position: absolute;
	top: -30px;
	right: 200px;
}
#all_wrap .menu_price_wrap > h2 {
	font-family: var(--font-en);
	font-size: 48px;
	line-height: 1;
	color: var(--act);
	text-align: center;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .menu_price_wrap > p {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align: center;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.menu_visual {
		width: 100%;
		height: auto;
		min-height: auto;
		padding: 170px 0 80px;
		margin: 0 auto 70px;
		flex-wrap: wrap;
		grid-row-gap: 60px;
	}
	.menu_mv_info {
		width: 100%;
		min-width: 100%;
		padding: 0 30px;
		grid-row-gap: 40px;
		order: 1;
	}
	.menu_visual > figure {
		width: 100%;
		padding: 0;
		margin: 0;
		position: relative;
		text-align: right;
	}
	.menu_visual > figure img {
		width: 75%;
		height: auto;
		transition: var(--ease);
	}
	#all_wrap .menu_mv_info > header {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		display: flex;
		flex-direction: column;
		grid-row-gap: 20px;
	}
	#all_wrap .menu_mv_info > header > em {
		font-size: 13px;
	}
	#all_wrap .menu_mv_info > header > h1 {
		font-size: 24px;
		line-height: 1,4em;
	}
	#all_wrap .menu_mv_info > p {
		padding: 0;
		margin: 0 auto;
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
	}

	/*施術メニュー*/
	#menu_list {
		width: calc(100% - 40px);
		margin: 0 auto 60px;
	}
	#all_wrap .treatment_menu {
		width: 100%;
		max-width: 100%;
		column-gap: 0;
		grid-row-gap: 0;
	}
	#all_wrap .treatment_menu dl {
		width: 100%;
		padding: 50px 20px;
		border: none;
		border-bottom: 2px solid #CCCCCC;
		grid-row-gap: 30px;
	}
	#all_wrap .treatment_menu dl:nth-of-type(3n) {
		border: none;
		border-bottom: 2px solid #CCCCCC;
	}
	#all_wrap .treatment_menu dl:last-of-type {
		border: none;
	}
	#all_wrap .treatment_menu dl dt {
		width: 100%;
	}
	#all_wrap .treatment_menu dl dt::before {
		width: 24px;
		height: 24px;
	}
	#all_wrap .treatment_menu dl dt em {
		font-size: 12px;
		top: -0.5em;
	}
	#all_wrap .treatment_menu dl dt h3 {
		font-size: 17px;
	}
	#all_wrap .treatment_menu dl dd {
		width: 100%;
		grid-row-gap: 15px;
	}
	#all_wrap .treatment_menu dl dd > h3 {
		padding: 7px 15px;
		font-size: 13px;
		border-radius: 30px;
	}
	#all_wrap .treatment_menu dl dd > ul {
		margin: 0 auto 10px;
		position: relative;
		grid-row-gap: 12px;
	}
	#all_wrap .treatment_menu dl dd > ul li {
		width: fit-content;
		padding: 0 0 0 1em;
		font-size: 14px;
	}
	#all_wrap .treatment_menu dl dd > p {
		width: 100%;
		padding: 0;
		margin: 0 auto 20px;
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
	}
	/*フェミケア*/
	#femicare-plus {
		width: calc(100% - 40px);
		margin: 0 auto 120px;
	}
	#all_wrap #femicare-plus > header {
		width: calc(100% - 40px);
		margin: 0 auto 50px;
		grid-row-gap: 30px;
	}
	#all_wrap #femicare-plus > header h2 {
		font-size: 24px;
	}
	#all_wrap #femicare-plus > header p {
		font-size: 13px;
	}
	#all_wrap #femicare-plus > header figure {
		width: 100%;
		min-width: 100%;
	}
	/* - リスト*/
	#all_wrap .femicareList {
		width: 100%;
		max-width: 100%;
		grid-row-gap: 40px;
	}
	#all_wrap .femicareList > li {
		width: 100%;
		padding: 40px;
		border-radius: 60px 0 60px 0;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 20px;
	}
	#all_wrap .femicareList > li > h3 {
		width: 100%;
		min-width: 100%;
		font-size: 17px;
	}
	#all_wrap .femicareList > li > p {
		width: calc(100%);
		font-size: 13px;
	}

	/*インナーサポート*/
	#menu_support {
		width: 100%;
		padding: 50px 35px;
		margin: 0 auto 150px;
	}
	.menu_support_wrap {
		width: 100%;
		max-width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 35px;
	}
	.menu_support_info {
		width: calc(100%);
		order: 1;
	}
	#all_wrap .menu_support_info > h2 {
		width: 100%;
		margin: 0 auto 35px;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		flex-wrap: wrap;
		grid-row-gap: 20px;
		column-gap: 0;
		font-size: 20px;
		text-align: center;
	}
	#all_wrap .menu_support_info > p {
		padding: 0;
		margin: 0 auto 20px;
	}
	.menu_support_wrap > figure {
		width: 200px;
		min-width: 200px;
		margin: 0 auto;
		position: relative;
	}

	/*連携*/
	#menu_coop {
		width: 100%;
		margin: 0 auto 120px;
	}
	.menu_coop_wrap {
		width: calc(100% - 40px);
		max-width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 30px;
	}
	.menu_coop_left {
		width: 100%;
		padding: 50px 25px;
		grid-row-gap: 25px;
	}
	.menu_coop_left::before {
		content: '';
		display: block;
		width: 70px;
		height: 70px;
		top: -30px;
		right: 10px;
		z-index: 2;
	}
	.menu_coop_right {
		width: 100%;
	}
	#all_wrap .menu_coop_left > header {
		width: 100%;
		padding: 0;
		margin: 0;
		display: flex;
		flex-direction: column;
		grid-row-gap: 10px;
	}
	#all_wrap .menu_coop_left > header > em {
		font-size: 12px;
	}
	#all_wrap .menu_coop_left > header > h2 {
		font-size: 17px;
	}
	#all_wrap .menu_coop_left > p {
		width: 100%;
	}
	#all_wrap .menu_coop_left > p small {
		font-size: 11px;
		color: var(--sub);
	}

	/*Price*/
	#menu_price {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
	}
	.menu_price_wrap {
		width: calc(100% - 40px);
		max-width: 100%;
		grid-row-gap: 30px;
	}
	#all_wrap .menu_price_wrap::before {
		content: '';
		display: block;
		width: 40px;
		position: absolute;
		top: unset;
		bottom: 80px;
		left: 20px;
		opacity: 0.7;
	}
	#all_wrap .menu_price_wrap::after {
		content: '';
		display: block;
		width: 50px;
		position: absolute;
		top: -30px;
		right: 50px;
	}
	#all_wrap .menu_price_wrap > h2 {
		font-size: 30px;
	}
	#all_wrap .menu_price_wrap > p {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		text-align: center;
	}
}

/************************************************************/
/*　フェミナレター
/************************************************************/
#letter {
	padding: 200px 0 0;
	margin: 0 auto;
	position: relative;
}
#letter_head {
	width: 100%;
	padding: 0;
	margin: 0 auto 140px;
	position: relative;
}
.letter_head_wrap {
	width: 100%;
	max-width: 1000px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	column-gap: 60px;
	align-items: flex-end;
}
.letter_head_wrap > figure {
	width: 400px;
	min-width: 400px;
	padding: 0;
	margin: 0;
	position: relative;
}
.letter_head_wrap > figure img {
	width: 100%;
	height: auto;
}
.letter_head_wrap > figure::before {
	content: '';
	display: block;
	width: 70px;
	height: 70px;
	aspect-ratio: 1/1;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/shine-illust-blue.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	position: absolute;
	top: -35px;
	left: -35px;
	z-index: 2;
}
.letter_head_info {
	width: calc(100% - 400px - 60px);
	padding: 0;
	margin: 0;
	position: relative;
	order: 1;
}
#all_wrap .letter_head_info > em {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	font-size: 17px;
	color: var(--main);
	font-style: normal;
	text-align: left;
}
#all_wrap .letter_head_info > h2 {
	width: 100%;
	height: 50px;
	padding: 0;
	margin: 0 auto 30px;
	text-align: left;
	border: none;
	background: none;
	position: relative;
}
#all_wrap .letter_head_info > h2 img {
	width: auto;
	height: 100%;
}
#all_wrap .letter_head_info > p {
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
}
#all_wrap .letter_head_info > p:last-of-type {
	margin-bottom: 0;
}

/*フェミナレターとは*/
#letter_about {
	width: 100%;
	padding: 0;
	margin: 0 auto 120px;
	position: relative;
}
.letter_about_box {
	width: 100%;
	max-width: 1000px;
	padding: 50px 100px;
	margin: 0 auto;
	position: relative;
	background: var(--base);
	border-radius: 140px 0 140px 0;
}
#all_wrap .letter_about_box > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	border: none;
	background: none;
	font-size: 22px;
	line-height: 1.4em;
	text-align: center;
	color: var(--act);
}
#all_wrap .letter_about_box > p {
	padding: 0;
	margin: 0 auto;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}

/*配信条件*/
#letter_delivery {
	width: 100%;
	padding: 0;
	margin: 0 auto 200px;
	position: relative;
}
/* - リスト */
#all_wrap .termList {
	width: 100%;
	max-width: 850px;
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start; 
	align-items: center;
	flex-wrap: wrap;
	column-gap: 80px;
	grid-row-gap: 40px;
}
#all_wrap .termList > li {
	width: calc((100% - 160px) / 3);
	padding: 25px 20px;
	margin: 0;
	background: var(--main);
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 16px;
	line-height: 1.4em;
	color: #fff;
}
#all_wrap .termList > li::after {
	content: 'or';
	display: flex;
	justify-content: center;
	align-items: center;
	width: 80px;
	height: auto;
	font-family: var(--font-en);
	font-size: 18px;
	line-height: 1;
	color: var(--text);
	text-align: center;
	position: absolute;
	top: 50%;
	right: -80px;
	transform: translate(0,-50%);
}
#all_wrap .termList > li:nth-child(3n)::after {
	display: none;
}
#all_wrap #letter_delivery > p {
	width: 100%;
	max-width: 850px;
	padding: 0;
	margin: 0 auto;
	text-align: right;
	color: #707070;
	font-size: 13px;
}

/*こんなことを発信しています*/
#letter_content {
	width: 100%;
	padding: 0;
	margin: 0 auto 150px;
	position: relative;
}
.letter_content_wrap {
	width: 100%;
	max-width: 1100px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	column-gap: 70px;
}
.letter_content_wrap > figure {
	width: 320px;
	min-width: 320px;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	transform: translate(0,-30px);
}
.letter_content_wrap > figure::before {
	content: '';
	display: block;
	padding: 50%;
}
.letter_content_wrap > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.letter_content_info {
	width: calc(100% - 70px - 320px);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: space-between;
	column-gap: 50px;
	align-items: center;
	flex-wrap: wrap;
	grid-row-gap: 70px;
}
#all_wrap .letter_content_info > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	font-size: 22px;
	line-height: 1.4em;
	text-align: left;
	color: var(--act);
}
.letter_content_info > figure {
	width: 260px;
	min-width: 260px;
	padding: 0;
	margin: 0;
	position: relative;
}
.letter_content_info > figure::before {
	content: '';
	display: block;
	width: 85px;
	height: auto;
	aspect-ratio: 90 / 63;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/letter-illust-pink-02.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	position: absolute;
	top: -40px;
	left: -30px;
	z-index: 2;
}
.letter_content_info > figure img {
	width: 100%;
	height: auto;
}
#all_wrap .letter_content_info > ul {
	width: calc(100% - 260px - 50px);
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
#all_wrap .letter_content_info > ul > li {
	padding: 0 0 0 1.5em;
	margin: 0;
	position: relative;
	line-height: 1.4em;
	color: var(--text);
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .letter_content_info > ul > li::before {
	content: '';
	display: block;
	width: 12px;
	height: 12px;
	aspect-ratio: 1/1;
	background: #CFDCEF;
	border-radius: 50%;
	position: absolute;
	top: 0.3em;
	left: 0;
}
#all_wrap .letter_content_info > ul > li.etc {
	text-align: right;
	color: var(--sub);
}
#all_wrap .letter_content_info > ul > li.etc::before {
	display: none;
}
/*メッセージ*/
#letter_message {
	width: 100%;
	padding: 0;
	margin: 0 auto 200px;
	position: relative;
}
.letter_message_box {
	width: 100%;
	max-width: 1000px;
	padding: 70px 130px;
	margin: 0 auto;
	position: relative;
	background: var(--base2);
	border-radius: 30px;
}
.letter_message_box::before {
	content: '';
	display: block;
	width: 80px;
	height: auto;
	aspect-ratio: 82 / 100;
	position: absolute;
	top: -50px;
	left: 50px;
	z-index: 2;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/decoration-blue.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}
.letter_message_box::after {
	content: '';
	display: block;
	width: 200px;
	height: auto;
	aspect-ratio: 204 / 139;
	position: absolute;
	top: -80px;
	right: 30px;
	z-index: 2;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/woman-illust-heart.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}
#all_wrap .letter_message_box > p {
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .letter_message_box > p:last-of-type {
	margin-bottom: 0;
}

/*私たちが*/
#letter_for {
	width: 100%;
	padding: 0;
	margin: 0 auto 200px;
	position: relative;
}
#all_wrap .editorList {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	list-style: none;
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#all_wrap .editorList > li {
	width: 50%;
	padding: 100px 80px 80px;
	margin: 0;
	background: var(--base);
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 30px;
	z-index: 0;
}
#all_wrap .editorList > li:nth-child(2n) {
	background: #FCE9DF;
}
#all_wrap .editorList > li:nth-child(3n) {
	background: var(--base2);
}
#all_wrap .editorList > li::before {
	content: '';
	display: block;
	width: calc(100% - 80px);
	height: calc(100% - 80px);
	background: none;
	border: 1px solid var(--base3);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: -1;
}
#all_wrap .editorList > li > figure {
	width: 180px;
	min-width: 180px;
	height: 180px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 50%;
}
#all_wrap .editorList > li > figure::before {
	content: '';
	display: block;
	padding: 50%;
}
#all_wrap .editorList > li > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .editorList > li > header {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
#all_wrap .editorList > li > header small {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	font-size: 12px;
	line-height: 1;
	color: var(--act);
}
#all_wrap .editorList > li > header h3 {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	font-family: var(--font-en);
	font-size: 42px;
	line-height: 1;
	color: var(--act);
	border: none;
	background: none;
	position: relative;
}
#all_wrap .editorList > li > p {
	width: 100%;
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}

/*サンクス*/
#letter_tahnks {
	width: 100%;
	max-width: 850px;
	padding: 70px 130px;
	margin: 0 auto;
	background: none;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 40px;
	border: 1.5px solid #CFDCEF;
	border-radius: 50%;
}
#letter_tahnks::before {
	content: '';
	display: block;
	width: 50px;
	height: auto;
	aspect-ratio: 1/1;
	position: absolute;
	bottom: 40px;
	left: 50px;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/shine-illust-pink.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}
#letter_tahnks::after {
	content: '';
	display: block;
	width: 60px;
	height: auto;
	aspect-ratio: 1/1;
	position: absolute;
	top: 30px;
	right: 50px;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/shine-illust-pink.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}
#all_wrap #letter_tahnks > h2 {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	font-size: 18px;
	line-height: 1;
	color: var(--act);
	letter-spacing: 0.15em;
	border: none;
	background: none;
	position: relative;
}
#all_wrap #letter_tahnks > p {
	text-align: center;
	padding: 0;
	margin: 0 auto;
}
#all_wrap #letter_tahnks > h3 {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	font-family: var(--font-en);
	font-size: 32px;
	line-height: 1;
	color: var(--act);
	letter-spacing: 0.15em;
	border: none;
	background: none;
	position: relative;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#letter {
		padding: 160px 0 0;
	}
	#letter_head {
		margin: 0 auto 80px;
	}
	#all_wrap #letter_head > header {
		display: block;
		width: calc(100% - 40px);
		padding: 0;
		margin: 0 auto 40px;
	}
	#all_wrap #letter_head > header > em {
		display: block;
		width: 100%;
		padding: 0;
		margin: 0 auto 20px;
		font-size: 13px;
		color: var(--main);
		font-style: normal;
		text-align: left;
	}
	#all_wrap #letter_head > header > h2 {
		width: 100%;
		height: 40px;
		padding: 0;
		margin: 0 auto;
		text-align: left;
		border: none;
		background: none;
		position: relative;
	}
	#all_wrap #letter_head > header > h2 img {
		width: auto;
		height: 100%;
	}
	.letter_head_wrap {
		width: 100%;
		max-width: 100%;
		display: flex;
		justify-content: center;
		column-gap: 0;
		align-items: center;
		flex-wrap: wrap;
		grid-row-gap: 30px;
	}
	.letter_head_wrap > figure {
		width: calc(100% - 50px);
		min-width: calc(100% - 50px);
		margin: 0 0 0 auto;
	}
	.letter_head_wrap > figure::before {
		content: '';
		display: block;
		width: 50px;
		height: 50px;
		top: -30px;
		left: -20px;
		z-index: 2;
	}
	.letter_head_info {
		width: calc(100% - 40px);
	}
	#all_wrap .letter_head_info > em {
		display:none;
	}
	#all_wrap .letter_head_info > h2 {
		display:none;
	}
	#all_wrap .letter_head_info > p {
		padding: 0;
		margin: 0 auto 20px;
		position: relative;
	}
	#all_wrap .letter_head_info > p:last-of-type {
		margin-bottom: 0;
	}

	/*フェミナレターとは*/
	#letter_about {
		width: 100%;
		margin: 0 auto 120px;
	}
	.letter_about_box {
		width: calc(100% - 40px);
		max-width: 100%;
		padding: 50px 40px;
		border-radius: 80px 0 80px 0;
	}
	#all_wrap .letter_about_box > h2 {
		margin: 0 auto 30px;
		font-size: 17px;
	}


	/*配信条件*/
	#letter_delivery {
		width: 100%;
		padding: 0;
		margin: 0 auto 200px;
		position: relative;
	}
	/* - リスト */
	#all_wrap .termList {
		width: 60%;
		max-width: 60%;
		margin: 0 auto 35px;
		column-gap: 0;
		grid-row-gap: 60px;
	}
	#all_wrap .termList > li {
		width: 100%;
		padding: 25px 20px;
		font-size: 15px;
		line-height: 1.4em;
	}
	#all_wrap .termList > li::after {
		content: 'or';
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 60px;
		font-family: var(--font-en);
		font-size: 16px;
		line-height: 1;
		color: var(--text);
		text-align: center;
		position: absolute;
		top: unset;
		bottom: -60px;
		right: 0;
		transform: unset;
	}
	#all_wrap .termList > li:nth-child(3n)::after {
		display: none;
	}
	#all_wrap #letter_delivery > p {
		width: 100%;
		max-width: 100%;
		padding: 0 30px;
		margin: 0 auto;
		text-align: left;
		font-size: 11px;
	}

	/*こんなことを発信しています*/
	#letter_content {
		width: 100%;
		margin: 0 auto 150px;
	}
	.letter_content_wrap {
		width: 100%;
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 50px;
	}
	.letter_content_wrap > figure {
		width: calc(100% - 70px);
		min-width: calc(100% - 70px);
		margin: 0 0 0 auto;
		transform: translate(0,0);
	}
	.letter_content_wrap > figure::before {
		content: '';
		display: block;
		padding: 0;
		padding-top: 65%;
	}
	.letter_content_wrap > figure img {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		object-fit: cover;
	}
	.letter_content_info {
		width: calc(100%);
		column-gap: 0;
		flex-wrap: wrap;
		grid-row-gap: 30px;
	}
	#all_wrap .letter_content_info > h2 {
		font-size: 17px;
		line-height: 1.65em;
		width: calc(100% - 40px);
		margin: 0 auto 10px;
	}
	.letter_content_info > figure {
		width: 70%;
		min-width: 70%;
		margin: 0 auto;
	}
	.letter_content_info > figure::before {
		content: '';
		display: block;
		width: 50px;
		height: auto;
		top: -20px;
		left: -20px;
		z-index: 2;
	}
	#all_wrap .letter_content_info > ul {
		width: calc(100% - 40px);
		grid-row-gap: 10px;
		margin: 0 auto;
	}
	#all_wrap .letter_content_info > ul > li {
		padding: 0 0 0 1.5em;
		font-size: 13px;
	}
	#all_wrap .letter_content_info > ul > li::before {
		top: 0.3em;
	}
	/*メッセージ*/
	#letter_message {
		width: 100%;
		padding: 0;
		margin: 0 auto 120px;
		position: relative;
	}
	.letter_message_box {
		width: calc(100% - 40px);
		max-width: 100%;
		padding: 60px 30px 50px;
	}
	.letter_message_box::before {
		content: '';
		display: block;
		width: 50px;
		height: auto;
		top: -25px;
		left: 20px;
	}
	.letter_message_box::after {
		content: '';
		display: block;
		width: auto;
		height: 100px;
		top: -60px;
		right: 0;
	}

	/*私たちが*/
	#letter_for {
		width: 100%;
		margin: 0 auto 120px;
	}
	#all_wrap .editorList {
		width: 100%;
		max-width: 100%;
	}
	#all_wrap .editorList > li {
		width: 100%;
		padding: 65px 45px;
		grid-row-gap: 30px;
	}
	#all_wrap .editorList > li::before {
		content: '';
		display: block;
		width: calc(100% - 40px);
		height: calc(100% - 40px);
	}
	#all_wrap .editorList > li > figure {
		width: 180px;
		min-width: 180px;
		height: 180px;
	}
	#all_wrap .editorList > li > header {
		width: 100%;
		grid-row-gap: 10px;
	}
	#all_wrap .editorList > li > header small {
		font-size: 12px;
	}
	#all_wrap .editorList > li > header h3 {
		font-size: 38px;
	}

	/*サンクス*/
	#letter_tahnks {
		width: calc(100% - 40px);
		max-width: 100%;
		padding: 50px;
		grid-row-gap: 25px;
	}
	#letter_tahnks::before {
		content: '';
		display: block;
		width: 38px;
		bottom: 13px;
		left: 40px;
	}
	#letter_tahnks::after {
		content: '';
		display: block;
		width: 43px;
		top: 0;
		right: 40px;
	}
	#all_wrap #letter_tahnks > h2 {
		display: block;
		font-size: 15px;
	}
	#all_wrap #letter_tahnks > h3 {
		font-size: 26px;
	}
}

/************************************************************/
/*　料金表
/************************************************************/
#price {
	padding: 200px 0 0;
	margin: 0 auto;
	position: relative;
}
#price_head {
	width: 100%;
	padding: 0;
	margin: 0 auto 150px;
	position: relative;
}
#all_wrap #price_head > p {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	text-align: center;
	color: var(--act);
}
/*メニュー*/
#all_wrap .priceMenu {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	list-style: none;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 30px;
}
#all_wrap .priceMenu > li {
	width: 170px;
	min-width: 170px;
	height: 170px;
	aspect-ratio: 1/1;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	grid-row-gap: 10px;
	background: var(--base);
	border: 1px solid var(--main);
	border-radius: 50%;
}
#all_wrap .priceMenu > li i {
	width: auto;
	height: 50px;
	padding: 0;
	margin: 0 auto;
	text-align: center;
}
#all_wrap .priceMenu > li i img {
	width: auto;
	height: 100%;
}
#all_wrap .priceMenu > li h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	font-size: 15px;
	line-height: 1.4em;
	color: var(--main);
	text-align: center;
	border: none;
	background: none;
}

/*料金メニュー*/
#price_plan {
	width: 100%;
	padding: 120px 0;
	margin: 0 auto;
	position: relative;
	background: var(--main);
}
#price_plan > dl {
	width: 100%;
	max-width: 800px;
	padding: 0;
	margin: 0 auto 120px;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 50px;
}
#price_plan > dl:last-of-type {
	margin-bottom: 0;
}
#price_plan > dl dt {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 15px;
}
#price_plan > dl dt::before {
	content: '';
	display: block;
	width: auto;
	height: 34px;
	aspect-ratio: 28 / 34;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/leaf-illust-white-1.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 100%;
}
#all_wrap #price_plan > dl dt h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	font-size: 20px;
	line-height: 1;
	color: #fff;
	text-align: center;
}
#all_wrap #price_plan > dl dd {
	padding: 0;
	margin: 0;
	position: relative;
}
/*リスト*/
#all_wrap .priceList {
	width: 100%;
	max-width: 800px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	border-top: 1px solid #FAD0B6;
}
#all_wrap .priceList > li {
	width: 100%;
	padding: 24px 30px;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 30px;
	border-bottom: 1px solid #FAD0B6;
}
#all_wrap .priceList > li > h3 {
	width: calc(25% - 30px);
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	position: relative;
	font-size: 17px;
	line-height: 1.4em;
	color: #fff;
}
#all_wrap .priceList > li > span.price {
	display: block;
	width: calc(25% - 30px);
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	position: relative;
	font-size: 17px;
	line-height: 1.4em;
	color: #fff;
}
#all_wrap .priceList > li > p {
	width: 50%;
	padding: 0;
	margin: 0;
	position: relative;
	font-size: 14px;
	line-height: 1.4em;
	color: #fff;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}

/*フェミケア*/
#price_femicare {
	width: 100%;
	padding: 150px 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap #price_femicare .about_header {
	margin-bottom: 40px;
	grid-row-gap: 20px;
}
#all_wrap #price_femicare > p {
	padding: 0;
	margin: 0 auto 70px;
	text-align: center;
}
/*リスト*/
#all_wrap .femicareMenu {
	width: 100%;
	max-width: 950px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 50px;
}
#all_wrap .femicareMenu > li {
	width: 100%;
	padding: 35px 80px;
	margin: 0 auto;
	border: 1px solid var(--main);
	border-radius: 15px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 30px;
}
#all_wrap .femicareMenu > li > h3 {
	width: calc(40% - 30px);
	padding: 0;
	margin: 0;
	position: relative;
	border: none;
	background: none;
	font-size: 17px;
	line-height: 1.4em;
	color: var(--main);
}
#all_wrap .femicareMenu > li > h3 small {
	font-size: 14px;
}
#all_wrap .femicareMenu > li > span.price {
	display: block;
	width: 20%;
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	position: relative;
	font-size: 17px;
	line-height: 1.4em;
	color: var(--main);
}
#all_wrap .femicareMenu > li > p {
	width: calc(40% - 30px);
	padding: 0;
	margin: 0;
	position: relative;
	border: none;
	background: none;
	font-size: 14px;
	line-height: 1.8em;
	color: var(--main);
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}

/*水素ケア*/
#price_hydrogen {
	width: 100%;
	padding: 150px 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap #price_hydrogen .about_header {
	margin-bottom: 40px;
	grid-row-gap: 20px;
}
/*リスト*/
#all_wrap .priceList.hydrogen {
	width: 100%;
	max-width: 800px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	border-top: 1px solid var(--sub);
}
#all_wrap .priceList.hydrogen > li {
	width: 100%;
	padding: 24px 30px;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 30px;
	border-bottom: 1px solid var(--sub);
}
#all_wrap .priceList.hydrogen > li > h3 {
	width: calc(30% - 30px);
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	position: relative;
	font-size: 17px;
	line-height: 1.4em;
	color: var(--text);
}
#all_wrap .priceList.hydrogen > li > span.price {
	display: block;
	width: calc(30% - 30px);
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	position: relative;
	font-size: 17px;
	line-height: 1.4em;
	color: var(--text);
}
#all_wrap .priceList.hydrogen > li > p {
	width: 40%;
	padding: 0;
	margin: 0;
	position: relative;
	font-size: 14px;
	line-height: 1.4em;
	color: var(--text);
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}

/*支払い方法*/
#price_payment {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	background: var(--base2);
	position: relative;
}
.price_payment_wrap {
	width: 100%;
	max-width: 1000px;
	padding: 0;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 80px;
	position: relative;
}
.price_payment_info {
	width: 50%;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .price_payment_info > h2 {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 10px;
	font-size: 18px;
	line-height: 1;
	color: var(--act);
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	border: none;
	background: none;
	position: relative;
}
#all_wrap .price_payment_info > h2::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	aspect-ratio: 1/1;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/shine-icon-deepblue.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}
#all_wrap .price_payment_info > p {
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
/*タグリスト*/
#all_wrap .payment_tags {
	width: calc(50% - 80px);
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	column-gap: 18px;
	grid-row-gap: 14px;
}
#all_wrap .payment_tags > li {
	display: inline-block;
	padding: 4px 18px 5px;
	margin: 0;
	background: #fff;
	font-size: 13px;
	line-height: 1;
	color: var(--sub);
	border-radius: 20px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#price {
		padding: 160px 0 0;
	}
	#price_head {
		width: 100%;
		padding: 0;
		margin: 0 auto 120px;
	}
	#all_wrap #price_head > p {
		margin: 0 auto 50px;
	}
	/*メニュー*/
	#all_wrap .priceMenu {
		width: calc(100% - 60px);
		max-width: 100%;
		flex-wrap: wrap;
		column-gap: 30px;
		grid-row-gap: 30px;
	}
	#all_wrap .priceMenu > li {
		width: calc((100% - 30px) / 2);
		min-width:  calc((100% - 30px) / 2);
		height: auto;
	}
	#all_wrap .priceMenu > li i {
		width: auto;
		height: 40px;
	}
	#all_wrap .priceMenu > li h3 {
		font-size: 13px;
	}

	/*料金メニュー*/
	#price_plan {
		width: 100%;
		padding: 80px 20px;
	}
	#price_plan > dl {
		width: 100%;
		max-width: 100%;
		margin: 0 auto 100px;
		grid-row-gap: 40px;
	}
	#price_plan > dl dt {
		width: 100%;
		grid-row-gap: 15px;
	}
	#price_plan > dl dt::before {
		width: auto;
		height: 28px;
	}
	#all_wrap #price_plan > dl dt h2 {
		width: 100%;
		font-size: 17px;
	}
	/*リスト*/
	#all_wrap .priceList {
		width: 100%;
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		list-style: none;
		display: flex;
		flex-direction: column;
		border-top: 1px solid #FAD0B6;
	}
	#all_wrap .priceList > li {
		width: 100%;
		padding: 20px 20px 20px 120px;
		column-gap: 10px;
		border-bottom: 1px solid #FAD0B6;
		flex-wrap: wrap;
		grid-row-gap: 10px;
	}
	#all_wrap .priceList > li > h3 {
		width: 100px;
		font-size: 15px;
		position: absolute;
		top: 50%;
		left: 20px;
		transform: translate(0,-50%);
	}
	#all_wrap .priceList > li > span.price {
		display: block;
		width: 100%;
		font-size: 15px;
	}
	#all_wrap .priceList > li > p {
		font-size: 12px;
		width: 100%;
	}

	/*フェミケア*/
	#price_femicare {
		width: 100%;
		padding: 120px 0;
	}
	#all_wrap #price_femicare .about_header {
		margin-bottom: 30px;
		grid-row-gap: 18px;
	}
	#all_wrap #price_femicare > p {
		margin: 0 auto 40px;
	}
	/*リスト*/
	#all_wrap .femicareMenu {
		width: calc(100% - 40px);
		max-width: 100%;
		grid-row-gap: 30px;
	}
	#all_wrap .femicareMenu > li {
		width: 100%;
		padding: 25px;
		flex-direction: column;
		align-items: center;
		grid-row-gap: 20px;
		column-gap: 0;
	}
	#all_wrap .femicareMenu > li > h3 {
		width: 100%;
		font-size: 15px;
		text-align: center;
	}
	#all_wrap .femicareMenu > li > h3 small {
		font-size: 13px;
	}
	#all_wrap .femicareMenu > li > span.price {
		display: block;
		width: 100%;
		font-size: 15px;
		text-align: center;
	}
	#all_wrap .femicareMenu > li > p {
		width: 100%;
		font-size: 13px;
		line-height: 1.8em;
	}
	
	/*水素ケア*/
	#price_hydrogen {
		width: 100%;
		padding: 0 0 120px;
	}
	#all_wrap #price_hydrogen .about_header {
		margin-bottom: 30px;
		grid-row-gap: 18px;
	}
	/*リスト*/
	#all_wrap .priceList.hydrogen {
		width: calc(100% - 40px);
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		list-style: none;
		display: flex;
		flex-direction: column;
	}
	#all_wrap .priceList.hydrogen > li {
		width: 100%;
		padding: 20px 20px 20px 120px;
		column-gap: 10px;
		flex-wrap: wrap;
		grid-row-gap: 10px;
	}
	#all_wrap .priceList.hydrogen > li > h3 {
		width: 100px;
		font-size: 15px;
		position: absolute;
		top: 50%;
		left: 20px;
		transform: translate(0,-50%);
	}
	#all_wrap .priceList.hydrogen > li > span.price {
		display: block;
		width: 100%;
		font-size: 15px;
	}
	#all_wrap .priceList.hydrogen > li > p {
		font-size: 12px;
		width: 100%;
	}

	/*支払い方法*/
	#price_payment {
		width: 100%;
		padding: 60px 30px;
	}
	.price_payment_wrap {
		width: 100%;
		max-width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 40px;
		position: relative;
	}
	.price_payment_info {
		width: 100%;
	}
	#all_wrap .price_payment_info > h2 {
		font-size: 15px;
		margin: 0 auto 20px;
	}
	#all_wrap .price_payment_info > h2::before {
		width: 24px;
		height: 24px;
	}
	#all_wrap .price_payment_info > p {
		width: 100%;
		padding: 0;
		margin: 0 auto 20px;
	}
	#all_wrap .price_payment_info > p:last-of-type {
		margin-bottom: 0;
	}
	/*タグリスト*/
	#all_wrap .payment_tags {
		width: 100%;
		column-gap: 18px;
		grid-row-gap: 14px;
	}
	#all_wrap .payment_tags > li {
		font-size: 12px;
	}
}

/************************************************************/
/*　施術空間
/************************************************************/
#space {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}
#space_head {
	width: 100%;
	padding: 200px 0 50px;
	margin: 0 auto 100px;
	position: relative;
	background: #FCF5EA;
}
#space_head::after {
	content: '';
	display: block;
	width: calc(100% + 100px);
	height: 300px;
	position: absolute;
	bottom: -100px;
	left: 50%;
	transform: translate(-50%,0);
	background: #FCF5EA;
	border-radius: 50%;
	z-index: -1;
}
#all_wrap #space_head > header {
	width: 100%;
	padding: 0;
	margin: 0 auto 100px;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 20px;
}
#all_wrap #space_head > header em {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	font-family: var(--font-en);
	font-size: 48px;
	line-height: 1;
	color: var(--act);
	font-style: normal;
	text-align: center;
}
#all_wrap #space_head > header > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	border: none;
	background: none;
	font-size: 20px;
	line-height: 1;
	color: var(--act);
	text-align: center;
}
/*-headlist*/
#all_wrap .space_head_list {
	width: 100%;
	max-width: 1000px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	grid-row-gap: 50px;
}
#all_wrap .space_head_list > li {
	width: calc(100% / 3);
	padding: 0 50px;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 25px;
	border-right: 1px solid var(--base3);
}
#all_wrap .space_head_list > li:nth-child(3n) {
	border-right: none;
}
#all_wrap .space_head_list > li::before {
	content: '';
	display: block;
	width: auto;
	height: 32px;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/shine-icon-deepblue.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 100%;
}
#all_wrap .space_head_list > li > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	font-size: 17px;
	line-height: 2em;
	border: none;
	background: none;
	position: relative;
}
#all_wrap .space_head_list > li > em {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	font-family: var(--font-en);
	font-size: 17px;
	line-height: 1;
	color: var(--act);
	font-style: normal;
	text-align: center;
}

/*アバウト*/
#space_about {
	width: 100%;
	padding: 120px 0 120px;
	margin: 0 auto;
	position: relative;
}
.space_about_box {
	width: 100%;
	max-width: 1000px;
	padding: 60px 100px;
	margin: 0 auto;
	position: relative;
	background: var(--main);
	border-radius: 120px 0 120px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 60px;
}
.space_about_box > figure {
	width: 200px;
	min-width: 200px;
	padding: 0;
	margin: 0;
	position: relative;
}
.space_about_box > figure img {
	width: 100%;
	height: auto;
}
.space_about_info {
	width: calc(100% - 60px - 200px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .space_about_info > p {
	padding: 0;
	margin: 0 auto 20px;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	color: #fff;
}
#all_wrap .space_about_info > p:last-of-type {
	margin-bottom: 0;
}

/*sight*/
#space_sight {
	width: 100%;
	padding: 120px 0;
	margin: 0 auto;
	position: relative;
}
.space_sight_wrap {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	column-gap: 50px;
}
#all_wrap .space_sight_wrap > figure {
	width: 540px;
	min-width: 540px;
	padding: 0;
	margin: 0;
	position: relative;
}
/*ギャラリースライダー*/
.swiper-main.gallery {
	width: 100%;
	margin: 0 auto;
}
.swiper-main.gallery .swiper-slide {
	width: 100%;
	height: auto;
	overflow: hidden;
	text-align: center;
	position: relative;
}
.swiper-thumbs.gallery {
	margin-top: 10px;
	display: flex;
	justify-content: flex-start;
	column-gap: 10px;
	grid-row-gap: 10px;
	padding-right: 50px;
}
/* - サムネイル */
.swiper-thumbs.gallery .swiper-slide {
	width: calc((100% - 20px) / 3);
	height: auto;
	opacity: 0.5;
	cursor: pointer;
	transition: var(--ease);
	overflow: hidden;
	text-align: center;
	position: relative;
}
.swiper-thumbs.gallery .swiper-slide-thumb-active {
	opacity: 1;
}
.swiper-main.gallery .swiper-slide::before,
.swiper-thumbs.gallery .swiper-slide::before {
	content: '';
	display: block;
	padding-top: 65%;
}
.swiper-main.gallery .swiper-slide img,
.swiper-thumbs.gallery .swiper-slide img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
/* - 情報 */
.space_sight_info {
	width: calc(100% - 50px - 540px);
	padding: 50px;
	margin: 0;
	background: #FCE9DF;
	position: relative;
	order: 1;
	display: flex;
	flex-direction: column;
	grid-row-gap: 50px;
}
#all_wrap .space_sight_info > header {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
#all_wrap .space_sight_info > header > em {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 10px;
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	font-family: var(--font-en);
	font-size: 17px;
	line-height: 1;
	color: var(--act);
	font-style: normal;
}
#all_wrap .space_sight_info > header > em::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	aspect-ratio: 1/1;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/shine-icon-deepblue.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}
#all_wrap .space_sight_info > header > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	font-size: 22px;
	line-height: 1.4em;
	color: var(--act);
	text-align: left;
}
#all_wrap .space_sight_info > .space_sight_txt {
	width: calc(100% - 80px);
	padding: 0;
	margin: 0 0 0 auto;
	position: relative;
}
#all_wrap .space_sight_info > .space_sight_txt > p {
	padding: 0;
	margin: 0 auto 20px;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .space_sight_info > .space_sight_txt > p:last-of-type {
	margin-bottom: 0;
}

/*smell*/
#space_smell {
	width: 100%;
	padding: 120px 0 120px;
	margin: 0 auto;
	position: relative;
}
.space_smell_wrap {
	width: 100%;
	max-width: 1100px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 80px;
}
.space_smell_wrap > figure {
	width: 520px;
	min-width: 520px;
	padding: 0;
	margin: 0;
	position: relative;
}
.space_smell_wrap > figure img {
	width: 100%;
	height: auto;
}
.space_smell_info {
	width: calc(100% - 80px - 520px);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 50px;
}
#all_wrap .space_smell_info > header {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
#all_wrap .space_smell_info > header > em {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 10px;
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	font-family: var(--font-en);
	font-size: 17px;
	line-height: 1;
	color: var(--act);
	font-style: normal;
}
#all_wrap .space_smell_info > header > em::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	aspect-ratio: 1/1;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/shine-icon-deepblue.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}
#all_wrap .space_smell_info > header > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	font-size: 22px;
	line-height: 1.4em;
	color: var(--act);
	text-align: left;
}
#all_wrap .space_smell_info > .space_smell_txt {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .space_smell_info > .space_smell_txt > p {
	padding: 0;
	margin: 0 auto 20px;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .space_smell_info > .space_smell_txt > p:last-of-type {
	margin-bottom: 0;
}

/*hearing*/
#space_hearing {
	width: 100%;
	padding: 120px 0;
	margin: 120px auto;
	position: relative;
	background: var(--base2);
}
#all_wrap #space_hearing > header {
	width: 100%;
	padding: 0;
	margin: 0 auto 80px;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
#all_wrap #space_hearing > header > em {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 10px;
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	font-family: var(--font-en);
	font-size: 17px;
	line-height: 1;
	color: var(--act);
	font-style: normal;
}
#all_wrap #space_hearing > header > em::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	aspect-ratio: 1/1;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/shine-icon-deepblue.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}
#all_wrap #space_hearing > header > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	font-size: 22px;
	line-height: 1.4em;
	color: var(--act);
	text-align: center;
}
.space_hearing_box {
	width: 100%;
	max-width: 850px;
	padding: 0 80px 80px;
	margin: 0 auto;
	position: relative;
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
}
.space_hearing_box > figure {
	width: 100%;
	height: 130px;
	min-height: 130px;
	padding: 0;
	margin: 0 auto 80px;
	position: relative;
	text-align: center;
}
.space_hearing_box > figure img {
	width: auto;
	height: 100%;
}
.space_hearing_txt {
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .space_hearing_txt > p {
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .space_hearing_txt > p:last-of-type {
	margin-bottom: 0;
}
/*LINE予約*/
#space_reserved {
	width: 100%;
	padding: 120px 0 120px;
	margin: 0 auto 100px;
	position: relative;
}
#space_reserved > figure {
	width: 100%;
	max-width: 800px;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
}
#space_reserved > figure img {
	width: 100%;
	height: auto;
}
#all_wrap #space_reserved > p {
	text-align: center;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
}

/*プレイリスト*/
#playlist {
	width: 100%;
	padding: 120px 0;
	margin: 0 auto;
	position: relative;
	background: var(--base2);
}
#all_wrap #playlist > header {
	width: 100%;
	max-width: 950px;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 12px;
}
#all_wrap #playlist > header::before {
	content: '';
	display: block;
	width: 30px;
	height: auto;
	aspect-ratio: 30 / 18;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/round-icon.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}
#all_wrap #playlist > header em {
	display: inline-block;
	padding: 0;
	margin: 0;
	font-family: var(--font-en);
	font-size: 18px;
	line-height: 1;
	color: var(--sub);
	font-style: normal;
}
#all_wrap #playlist > header h2 {
	display: inline-block;
	padding: 0;
	margin: 0 0 0 15px;
	font-size: 13px;
	line-height: 1;
	color: #707070;
}
/*リスト*/
#all_wrap .playlistList {
	width: 100%;
	max-width: 1000px;
	padding: 0;
	margin: 0 auto;
	list-style: none;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 60px;
}
#all_wrap .playlistList > li {
	width: 100%;
	padding: 40px 50px;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 40px;
	background: #fff;
	border-radius: 20px;
}
#all_wrap .playlistList.sub > li {
	background: var(--base2);
}
#all_wrap .playlistList > li > figure {
	width: 160px;
	min-width: 160px;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}
#all_wrap .playlistList > li > figure::before {
	content: '';
	display: block;
	padding: 50%;
}
#all_wrap .playlistList > li > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
/* - プレイリストボックス */
#all_wrap .playlistList > li > .playlist_box {
	width: 200px;
	min-width: 200px;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
}
#all_wrap .playlistList > li > .playlist_box > li {
	width: 100%;
	padding: 10px 10px 10px 40px;
	margin: 0;
	border-bottom: 1px solid #CFDCEF;
	display: flex;
	flex-direction: column;
	grid-row-gap: 6px;
	position: relative;
}
#all_wrap .playlistList > li > .playlist_box > li:nth-last-child(2) {
	border: none;
}
#all_wrap .playlistList > li > .playlist_box > li::before {
	content: '';
	display: block;
	width: 20px;
	min-width: 20px;
	height: 20px;
	aspect-ratio: 1/1;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/play-icon.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translate(0,-50%);
}
#all_wrap .playlistList > li > .playlist_box > li h4 {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	border: none;
	background: none;
	font-family: var(--font-all);
	font-size: 15px;
	color: #707070;
	line-height: 1;
}
#all_wrap .playlistList > li > .playlist_box > li p {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	border: none;
	background: none;
	font-family: var(--font-all);
	font-size: 11px;
	color: #707070;
	line-height: 1;
}
#all_wrap .playlistList > li > .playlist_box > li.etc {
	padding: 0;
	margin: 0;
	display: block;
	text-align: right;
	font-size: 12px;
	line-height: 1;
	font-family: var(--font-all);
	color: var(--act);
	border: none;
}
#all_wrap .playlistList > li > .playlist_box > li.etc::before {
	display: none;
}
/* - 情報 */
#all_wrap .playlistList > li > .playlistList_info {
	width: calc(100% - 160px - 80px - 200px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .playlistList > li > .playlistList_info > header {
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 30px;
}
#all_wrap .playlistList > li > .playlistList_info > header > h3 {
	width: calc(100% - 30px - 150px);
	padding: 0;
	margin: 0;
	position: relative;
	border: none;
	background: none;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	grid-row-gap: 7px;
	font-family: var(--font-all);
	font-size: 18px;
	line-height: 1;
	color: var(--act);
	text-align: left;
}
#all_wrap .playlistList > li > .playlistList_info > header > h3 small {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	font-size: 11px;
	line-height: 1;
	color: var(--act);
	text-align: left;
}
#all_wrap .playlistList > li > .playlistList_info > header > a {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 10px;
	width: 150px;
	padding: 7px 20px;
	margin: 0;
	background: #FFF4E1;
	font-family: var(--font-en);
	font-size: 13px;
	line-height: 1;
	color: var(--act);
	border: 1px solid var(--act);
	transition: var(--ease);
	border-radius: 30px;
}
#all_wrap .playlistList > li > .playlistList_info > header > a::before {
	content: '';
	display: block;
	width: 16px;
	height: 16px;
	min-width: 16px;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/instagram-icon-red.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	transition: var(--ease);
}
#all_wrap .playlistList > li > .playlistList_info > header > a:hover {
	background: var(--act);
	color: #fff;
	border: 1px solid var(--act);
	transition: var(--ease);
}
#all_wrap .playlistList > li > .playlistList_info > header > a:hover::before {
	background-image: url('https://reliefport-femina.com/wp-content/uploads/instagram-icon-white.svg');
	transition: var(--ease);
}
#all_wrap .playlistList > li > .playlistList_info > p {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	line-height: 1.7em;
}

/*AndMore*/
.playlist_more {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 100%;
	font-family: var(--font-en);
	font-size: 18px;
	line-height: 1;
	color: var(--sub);
	padding: 0;
	margin: 0 auto;
}
.playlist_more::before {
	content: '';
	display: block;
	width: 3px;
	height: 40px;
	background-image: radial-gradient(circle 1.5px at center, var(--sub) 100%, transparent 100%);
	background-size: 3px 10px;
	background-repeat: repeat-y;
	background-position: center top;
	margin-bottom: 20px;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#space {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		overflow: hidden;
	}
	#space_head {
		width: 100%;
		padding: 180px 0 0;
		margin: 0 auto 120px;
	}
	#space_head::after {
		content: '';
		display: block;
		width: calc(100% + 30px);
		height: 150px;
		position: absolute;
		bottom: -50px;
		left: 50%;
		transform: translate(-50%, 0);
		background: #FCF5EA;
		border-radius: 50%;
		z-index: -1;
	}
	#all_wrap #space_head > header {
		margin: 0 auto 30px;
		grid-row-gap: 10px;
	}
	#all_wrap #space_head > header em {
		font-size: 36px;
	}
	#all_wrap #space_head > header > h2 {
		font-size: 15px;
	}
	/*-headlist*/
	#all_wrap .space_head_list {
		width: 65%;
		max-width: 65%;
		grid-row-gap: 0;
	}
	#all_wrap .space_head_list > li {
		width: 100%;
		padding: 30px 0;
		grid-row-gap: 18px;
		border: none;
		border-bottom: 1px solid var(--base3);
	}
	#all_wrap .space_head_list > li:nth-child(3n) {
		border: none;
		border-bottom: 1px solid var(--base3);
	}
	#all_wrap .space_head_list > li:last-child {
		border-bottom: none;
	}
	#all_wrap .space_head_list > li::before {
		height: 25px;
	}
	#all_wrap .space_head_list > li > h3 {
		font-size: 15px;
	}
	#all_wrap .space_head_list > li > em {
		font-size: 13px;
	}

	/*アバウト*/
	#space_about {
		width: 100%;
		padding: 0 0 120px;
	}
	.space_about_box {
		width: calc(100% - 40px);
		max-width: 100%;
		padding: 60px 30px;
		border-radius: 50px 0 50px 0;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 40px;
	}
	.space_about_box > figure {
		width: 100px;
		min-width: 100px;
		margin: 0 auto;
	}
	.space_about_info {
		width: calc(100%);
	}

	/*sight*/
	#space_sight {
		width: 100%;
		padding: 0 0 120px;
		margin: 0 auto;
	}
	.space_sight_wrap {
		width: calc(100% - 40px);
		max-width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 30px;
	}
	#all_wrap .space_sight_wrap > figure {
		width: 100%;
		min-width: 100%;
	}
	/*ギャラリースライダー*/
	.swiper-main.gallery {
		width: 100%;
		margin: 0 auto;
	}
	.swiper-main.gallery .swiper-slide {
		width: 100%;
		height: auto;
		overflow: hidden;
		text-align: center;
		position: relative;
	}
	.swiper-thumbs.gallery {
		margin-top: 10px;
		display: flex;
		justify-content: flex-start;
		column-gap: 10px;
		grid-row-gap: 10px;
		padding-right: 50px;
	}
	/* - サムネイル */
	.swiper-thumbs.gallery .swiper-slide {
		width: calc((100% - 20px) / 3);
		height: auto;
		opacity: 0.5;
		cursor: pointer;
		transition: var(--ease);
		overflow: hidden;
		text-align: center;
		position: relative;
	}
	.swiper-thumbs.gallery .swiper-slide-thumb-active {
		opacity: 1;
	}
	.swiper-main.gallery .swiper-slide::before,
	.swiper-thumbs.gallery .swiper-slide::before {
		content: '';
		display: block;
		padding-top: 65%;
	}
	.swiper-main.gallery .swiper-slide img,
	.swiper-thumbs.gallery .swiper-slide img {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		object-fit: cover;
	}
	/* - 情報 */
	.space_sight_info {
		width: calc(100%);
		padding: 50px 25px;
		grid-row-gap: 30px;
	}
	#all_wrap .space_sight_info > header {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		display: flex;
		flex-direction: column;
		grid-row-gap: 10px;
	}
	#all_wrap .space_sight_info > header > em {
		column-gap: 10px;
		font-size: 15px;
	}
	#all_wrap .space_sight_info > header > em::before {
		width: 18px;
		height: 18px;
	}
	#all_wrap .space_sight_info > header > h2 {
		font-size: 17px;
	}
	#all_wrap .space_sight_info > .space_sight_txt {
		width: calc(100%);
		margin: 0 auto;
	}

	/*smell*/
	#space_smell {
		width: 100%;
		padding: 0 0 120px;
		margin: 0 auto;
		position: relative;
	}
	.space_smell_wrap {
		width: calc(100% - 80px);
		max-width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 40px;
	}
	.space_smell_wrap > figure {
		width: 90%;
		min-width: 90%;
		margin: 0 auto;
	}
	.space_smell_info {
		width: calc(100%);
		grid-row-gap: 30px;
	}
	#all_wrap .space_smell_info > header > em {
		font-size: 15px;
	}
	#all_wrap .space_smell_info > header > em::before {
		width: 18px;
		height: 18px;
	}
	#all_wrap .space_smell_info > header > h2 {
		font-size: 17px;
	}

	/*hearing*/
	#space_hearing {
		width: 100%;
		padding: 60px 30px;
		margin: 0 auto;
	}
	#all_wrap #space_hearing > header {
		margin: 0 auto 50px;
	}
	#all_wrap #space_hearing > header > em {
		font-size: 15px;
	}
	#all_wrap #space_hearing > header > em::before {
		width: 18px;
		height: 18px;
	}
	#all_wrap #space_hearing > header > h2 {
		font-size: 17px;
	}
	.space_hearing_box {
		width: 100%;
		max-width: 100%;
		padding: 0 20px 20px;
		border-left: 2px solid #fff;
		border-right: 2px solid #fff;
	}
	.space_hearing_box > figure {
		width: 100%;
		height: auto;
		min-height: auto;
		padding: 0 10px;
		margin: 0 auto 40px;
	}
	.space_hearing_box > figure img {
		width: 100%;
		height: auto;
	}

	/*プレイリスト*/
	#playlist {
		width: 100%;
		padding: 120px 0 0;
	}
	#all_wrap #playlist > header {
		width: 100%;
		max-width: 100%;
		margin: 0 auto 30px;
		flex-wrap: wrap;
		column-gap: 12px;
		grid-row-gap: 10px;
	}
	#all_wrap #playlist > header::before {
		width: 26px;
	}
	#all_wrap #playlist > header em {
		font-size: 17px;
	}
	#all_wrap #playlist > header h2 {
		display: block;
		width: 100%;
		padding: 0;
		margin: 0;
		font-size: 11px;
	}
	/*リスト*/
	#all_wrap .playlistList {
		width: 100%;
		max-width: 100%;
		grid-row-gap: 40px;
		margin: 0 auto 30px;
	}
	#all_wrap .playlistList.sub {
		width: calc(100% - 60px);
		max-width: 100%;
	}
	#all_wrap .playlistList > li {
		width: 100%;
		padding: 40px 25px;
		column-gap: 0;
		grid-row-gap: 25px;
		flex-wrap: wrap;
	}
	#all_wrap .playlistList.sub > li {
		background: var(--base2);
	}
	#all_wrap .playlistList > li > figure {
		width: 120px;
		min-width: 120px;
		margin: 0 auto;
	}
	/* - プレイリストボックス */
	#all_wrap .playlistList > li > .playlist_box {
		width: 100%;
		min-width: 100%;
		margin: 0 auto 10px;
	}
	#all_wrap .playlistList > li > .playlist_box > li {
		width: 100%;
		padding: 17px 10px 17px 40px;
		margin: 0;
		border-bottom: 1px solid #CFDCEF;
		display: flex;
		flex-direction: unset;
		justify-content: flex-start;
		align-items: center;
		grid-row-gap: 0;
		column-gap: 10px;
		position: relative;
	}
	#all_wrap .playlistList > li > .playlist_box > li:nth-last-child(2) {
		border: none;
	}
	#all_wrap .playlistList > li > .playlist_box > li::before {
		width: 18px;
		min-width: 18px;
		height: 18px;
	}
	#all_wrap .playlistList > li > .playlist_box > li h4 {
		width: fit-content;
		font-size: 15px;
	}
	#all_wrap .playlistList > li > .playlist_box > li p {
		width: fit-content;
		font-size: 11px;
		margin: 0 0 0 auto;
	}
	#all_wrap .playlistList > li > .playlist_box > li.etc {
		margin: 0 0 0 auto;
		display: block;
		width: 100%;
		text-align: right;
		font-size: 14px;
	}
	#all_wrap .playlistList > li > .playlist_box > li.etc::before {
		display: none;
	}
	/* - 情報 */
	#all_wrap .playlistList > li > .playlistList_info {
		width: calc(100%);
	}
	#all_wrap .playlistList > li > .playlistList_info > header {
		margin: 0 auto 20px;
		justify-content: flex-start;
		align-items: center;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 8px;
	}
	#all_wrap .playlistList > li > .playlistList_info > header > h3 {
		grid-row-gap: 7px;
		font-size: 17px;
		width: 100%;
	}
	#all_wrap .playlistList > li > .playlistList_info > header > h3 small {
		font-size: 12px;
	}
	#all_wrap .playlistList > li > .playlistList_info > header > a {
		width: 130px;
		padding: 7px 15px;
		margin: 0 0 0 auto;
		font-size: 15px;
		border-radius: 30px;
	}
	#all_wrap .playlistList > li > .playlistList_info > header > a::before {
		width: 12px;
		height: 12px;
		min-width: 12px;
	}
	#all_wrap .playlistList > li > .playlistList_info > p {
		width: 100%;
		line-height: 2;
	}
	
	/*LINE予約*/
	#space_reserved {
		width: 100%;
		padding: 120px 20px 0;
		margin: 0 auto;
	}
	#space_reserved > figure {
		width: 100%;
		max-width: 100%;
		margin: 0 auto 30px;
	}
	#all_wrap #space_reserved > p {
		text-align: center;
		margin: 0 auto 40px;
	}
}


/************************************************************/
/*　採用情報
/************************************************************/
#recruit {
	padding: 0;
	margin: 0 auto;
	position: relative;
}
/*ビジュアル*/
#recruit_visual {
	width: 100%;
	height: 100vh;
	min-height: 700px;
	padding: 0;
	margin: 0 auto 200px;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-direction: column;
	flex-wrap: wrap;
	grid-row-gap: 50px;
	position: relative;
	z-index: 0;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/recruit-top-img.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
#all_wrap #recruit_visual > header {
	width: 100%;
	padding: 0;
	margin: 120px auto 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 40px;
}
#all_wrap #recruit_visual > header i {
	display: block;
	width: 100%;
	height: 50px;
	padding: 0;
	margin: 0 auto;
	text-align: center;
}
#all_wrap #recruit_visual > header i img {
	width: auto;
	height: 100%;
}
#all_wrap #recruit_visual > header > h1 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	font-size: 24px;
	line-height: 1.7em;
	color: var(--act);
	text-align: center;
	border: none;
	background: none;
	position: relative;
	letter-spacing: 0.1em;
}
#all_wrap .recruit_head_txt {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .recruit_head_txt > p {
	padding: 0;
	margin: 0 auto 20px;
	text-align: center;
}
#all_wrap .recruit_head_txt > p:last-of-type {
	margin-bottom: 0;
}

/*イントロ*/
#recruit_intro {
	width: 100%;
	padding: 80px 0;
	margin: 0 auto 100px;
	position: relative;
	z-index: 0;
}
#recruit_intro::before {
	content: '';
	display: block;
	width: calc(50% + 380px);
	height: 100%;
	background: var(--base);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0,-50%);
	z-index: -1;
}
.recruit_intro_wrap {
	width: 100%;
	max-width: 1100px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 100px;
}
.recruit_intro_wrap > figure {
	width: 380px;
	min-width: 380px;
	padding: 0;
	margin: 0;
	position: relative;
}
.recruit_intro_wrap > figure img {
	width: 100%;
	height: auto;
}
.recruit_intro_info {
	width: calc(100% - 100px - 380px);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 50px;
}
#all_wrap .recruit_intro_info > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	font-size: 20px;
	line-height: 1.4em;
	color: var(--act);
	text-align: left;
}
#all_wrap .checkList {
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 20px;
}
#all_wrap .checkList > li {
	width: 100%;
	padding: 0 0 0 25px;
	margin: 0;
	position: relative;
	font-size: 15px;
	line-height: 1.5em;
}
#all_wrap .checkList > li::before {
	content: '';
	display: block;
	width: 14px;
	height: 14px;
	min-width: 14px;
	aspect-ratio: 1/1;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/check-icon.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	position: absolute;
	top: 0.3em;
	left: 0;
}

/*三層の伴走*/
#recruit_feature {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .recruit_feature_box {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .recruit_feature_box dt {
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 40px;
	font-size: 20px;
	line-height: 1.4em;
	color: var(--act);
	text-align: center;
	white-space: nowrap;
}
#all_wrap .recruit_feature_box dt::before,
#all_wrap .recruit_feature_box dt::after {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background: #FAD0B6;
}
#all_wrap .recruit_feature_box dd {
	width: 100%;
	padding: 70px;
	margin: 0;
	border-bottom: 1px solid #FAD0B6;
}
/*リスト*/
#all_wrap .featureList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	column-gap: 70px;
}
#all_wrap .featureList > li {
	width: calc((100% - 140px) / 3);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 30px;
}
#all_wrap .featureList > li::before {
	content: '';
	display: block;
	width: 32px;
	min-width: 32px;
	height: 32px;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/shine-icon-deepblue.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	padding: 0;
	margin: 0 auto;
}
#all_wrap .featureList > li > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	font-size: 17px;
	line-height: 1.5em;
	text-align: center;
	color: var(--act);
}
#all_wrap .featureList > li > p {
	width: 100%;
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	line-height: 1.7em;
}
/*強み*/
#recruit_strength {
	width: 100%;
	padding: 0;
	margin: 0 auto 150px;
	position: relative;
}
#all_wrap .strength_box {
	width: 100%;
	max-width: 1200px;
	padding: 60px 80px;
	margin: 0 auto 120px;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 80px;
	border-radius: 120px 0 120px 0;
	background: #FCF5EA;
}
#all_wrap .strength_box:last-of-type {
	margin-bottom: 0;
}
#all_wrap .strength_box > figure {
	width: 400px;
	min-width: 400px;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}
#all_wrap .strength_box > figure::before {
	content: '';
	display: block;
	padding: 50%;
}
#all_wrap .strength_box > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .strength_info {
	width: calc(100% - 400px - 80px);
	padding: 0;
	margin: 0;
	position: relative;
	order: 1;
}
#all_wrap .strength_info > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	font-size: 20px;
	line-height: 1.4em;
	color: var(--sub);
	border: none;
	background: none;
}
#all_wrap .strength_info > p {
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .strength_info > p:last-of-type {
	margin-bottom: 0;
}
#all_wrap .strength_box > span {
	display: block;
	width: auto;
	height: 70px;
	position: absolute;
	top: 20px;
	left: 400px;
}
#all_wrap .strength_box > span img {
	width: auto;
	height: 100%;
}
/*強み - 青*/
#all_wrap .strength_box:nth-of-type(odd) {
	background: var(--base2);
}
#all_wrap .strength_box:nth-of-type(odd) .strength_info {
	order: 0;
}
#all_wrap .strength_box:nth-of-type(odd) > span {
	display: block;
	width: auto;
	height: 90px;
	position: absolute;
	top: 30px;
	right: 430px;
	left: unset;
}
#all_wrap .strength_box:nth-of-type(odd) > span img {
	width: auto;
	height: 100%;
}

/*メッセージ*/
#recruit_message {
	width: 100%;
	padding: 0 0 80px;
	margin: 0 auto 100px;
	position: relative;
	z-index: 0;
}
#recruit_message::before {
	content: '';
	display: block;
	width: 100%;
	height: calc(100% - 200px);
	background: var(--main);
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
}
.recruit_message_box {
	width: 100%;
	max-width: 900px;
	padding: 0 130px 30px;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 50px;
}
.recruit_message_box::before,
.recruit_message_box::after {
	content: '';
	display: block;
	width: 1px;
	height: calc(100% - 300px);
	background: #fff;
	position: absolute;
	bottom: 0;
	left: 0;
}
.recruit_message_box::after {
	left: unset;
	right: 0;
}
#all_wrap .recruit_message_box > figure {
	width: 320px;
	min-width: 320px;
	padding: 0;
	margin: 0 auto 15px;
	position: relative;
}
#all_wrap .recruit_message_box > figure img {
	width: 100%;
	height: auto;
}
#all_wrap .recruit_message_box > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	font-size: 20px;
	line-height: 2em;
	color: #fff;
	text-align: center;
}
#all_wrap .recruit_message_txt {
	padding: 0;
	margin: 0;
}
#all_wrap .recruit_message_txt > p {
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	color: #fff;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .recruit_message_txt > p:last-of-type {
	margin-bottom: 0;
}
#all_wrap .recruit_message_box > .name {
	text-align: right;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	color: #fff;
}
#all_wrap .recruit_message_box > .name span {
	display: block;
	text-align: right;
	color: #fff;
}
#all_wrap .recruit_message_box > .name span small {
	font-size: 0.8em;
	color: #fff;
}
#all_wrap .recruit_message_box > .name span b {
	font-size: 1.2em;
	color: #fff;
}

/*募集要項*/
#recruit_job {
	width: 100%;
	padding: 0;
	margin: 0 auto 200px;
	position: relative;
}
#all_wrap #recruit_job > header {
	width: 100%;
	padding: 0;
	margin: 0 auto 60px;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 15px;
}
#all_wrap #recruit_job > header i {
	display: block;
	width: 100%;
	height: 30px;
	padding: 0;
	margin: 0 auto 10px;
	text-align: center;
}
#all_wrap #recruit_job > header i img {
	width: auto;
	height: 100%;
}
#all_wrap #recruit_job > header em {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	font-family: var(--font-en);
	font-size: 40px;
	line-height: 1;
	color: var(--sub);
	text-align: center;
	font-style: normal;
}
#all_wrap #recruit_job > header h2 {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	font-size: 18px;
	line-height: 1;
	color: var(--sub);
	text-align: center;
	border: none;
	background: none;
}
/*テーブル*/
#all_wrap .recruit-table {
	width: 100%;
	max-width: 1000px;
	padding: 0;
	margin: 0 auto 100px;
	position: relative;
	border-collapse: collapse;
	table-layout: auto;
	border: none;
	background: none;
}
#all_wrap .recruit-table td {
	padding: 30px 50px;
	margin: 0;
	border-bottom: 1px solid #FAD0B6;
	font-size: 15px;
	line-height: 2;
	vertical-align: top;
}
#all_wrap .recruit-table td.column-1 {
	color: var(--act);
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#recruit {
		padding: 0;
		margin: 0 auto;
		position: relative;
	}
	/*ビジュアル*/
	#recruit_visual {
		width: 100%;
		height: auto;
		min-height: auto;
		padding: 160px 30px 80px;
		margin: 0 auto 120px;
		grid-row-gap: 30px;
		background-image: url('https://reliefport-femina.com/wp-content/uploads/recruit-top-img_sp.webp');
	}
	#all_wrap #recruit_visual > header {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		grid-row-gap: 40px;
	}
	#all_wrap #recruit_visual > header i {
		height: 38px;
	}
	#all_wrap #recruit_visual > header > h1 {
		font-size: 20px;
	}
	#all_wrap .recruit_head_txt {
		width: 100%;
		padding: 0;
		margin: 0 auto 20px;
		position: relative;
	}
	#all_wrap .recruit_head_txt > p {
		padding: 0;
		margin: 0 auto 20px;
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
	}
	#all_wrap .recruit_head_txt > p:last-of-type {
		font-size: 12px;
		color: #707070;
	}

	/*イントロ*/
	#recruit_intro {
		width: 100%;
		padding: 60px 30px 0;
		margin: 0 auto 140px;
	}
	#recruit_intro::before {
		content: '';
		display: block;
		width: 100%;
		height: calc(100% - 200px);
		background: var(--base);
		position: absolute;
		top: 0;
		left: 0;
		transform: translate(0,0);
		z-index: -1;
	}
	.recruit_intro_wrap {
		width: 100%;
		max-width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 40px;
	}
	.recruit_intro_wrap > figure {
		width: 70%;
		min-width: 70%;
		padding: 0;
		margin: 0 0 0 auto;
		position: relative;
	}
	.recruit_intro_info {
		width: calc(100%);
		grid-row-gap: 30px;
	}
	#all_wrap .recruit_intro_info > h2 {
		font-size: 15px;
		text-align: center;
	}
	#all_wrap .checkList {
		padding: 0;
		margin: 0;
		grid-row-gap: 14px;
	}
	#all_wrap .checkList > li {
		width: 100%;
		padding: 0 0 0 20px;
		margin: 0;
		position: relative;
		font-size: 13px;
		line-height: 1.5em;
	}
	#all_wrap .checkList > li::before {
		content: '';
		display: block;
		width: 12px;
		height: 12px;
		min-width: 12px;
		top: 0.3em;
		left: 0;
	}

	/*三層の伴走*/
	#recruit_feature {
		width: 100%;
		padding: 0;
		margin: 0 auto 120px;
	}
	#all_wrap .recruit_feature_box {
		width: calc(100% - 40px);
		max-width: 100%;
	}
	#all_wrap .recruit_feature_box dt {
		width: 100%;
		padding: 12px;
		margin: 0 auto;
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		column-gap: 40px;
		font-size: 17px;
		line-height: 1.65em;
		color: var(--act);
		text-align: center;
		white-space: nowrap;
		border-top: 1px solid #FAD0B6;
		border-bottom: 1px solid #FAD0B6;
	}
	#all_wrap .recruit_feature_box dt::before,
	#all_wrap .recruit_feature_box dt::after {
		display: none;
	}
	#all_wrap .recruit_feature_box dd {
		width: 100%;
		padding: 50px 20px;
	}
	/*リスト*/
	#all_wrap .featureList {
		width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 40px;
	}
	#all_wrap .featureList > li {
		width: 100%;
		grid-row-gap: 15px;
	}
	#all_wrap .featureList > li::before {
		width: 22px;
		min-width: 22px;
		height: 22px;
	}
	#all_wrap .featureList > li > h2 {
		font-size: 15px;
	}
	#all_wrap .featureList > li > p {
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
		line-height: 1.7em;
	}
	/*強み*/
	#recruit_strength {
		width: 100%;
		margin: 0 auto 120px;
	}
	#all_wrap .strength_box {
		width: calc(100% - 60px);
		max-width: 100%;
		padding: 50px 30px;
		margin: 0 auto 60px;
		column-gap: 0;
		grid-row-gap: 35px;
		border-radius: 50px 0 50px 0;
		flex-wrap: wrap;
	}
	#all_wrap .strength_box > figure {
		width: 230px;
		min-width: 230px;
		padding: 0;
		margin: 0 auto;
	}
	#all_wrap .strength_info {
		width: calc(100%);
		order: 1;
	}
	#all_wrap .strength_info > h2 {
		margin: 0 auto 20px;
		position: relative;
		font-size: 17px;
		line-height: 1.65em;
	}
	#all_wrap .strength_info > p {
		width: 100%;
		padding: 0;
		margin: 0 auto 20px;
	}
	#all_wrap .strength_box > span {
		display: block;
		width: auto;
		height: 45px;
		position: absolute;
		top: 20px;
		left: unset;
		right: 20px;
	}
	/*強み - 青*/
	#all_wrap .strength_box:nth-of-type(odd) {
		background: var(--base2);
	}
	#all_wrap .strength_box:nth-of-type(odd) .strength_info {
		order: 1;
	}
	#all_wrap .strength_box:nth-of-type(odd) > span {
		display: block;
		width: auto;
		height: 60px;
		position: absolute;
		top: 20px;
		right: unset;
		left: 45px;
	}
	#all_wrap .strength_box:nth-of-type(odd) > span img {
		width: auto;
		height: 100%;
	}

	/*メッセージ*/
	#recruit_message {
		width: 100%;
		padding: 0 0 40px;
		margin: 0 auto 120px;
	}
	#recruit_message::before {
		height: calc(100% - 125px);
	}
	.recruit_message_box {
		width: calc(100% - 60px);
		max-width: 100%;
		padding: 0 30px 30px;
		grid-row-gap: 50px;
	}
	.recruit_message_box::before,
	.recruit_message_box::after {
		content: '';
		display: block;
		width: 1px;
		height: calc(100% - 200px);
		background: #fff;
		position: absolute;
		bottom: 0;
		left: 0;
	}
	.recruit_message_box::after {
		left: unset;
		right: 0;
	}
	#all_wrap .recruit_message_box > figure {
		width: 200px;
		min-width: 200px;
		margin: 0 auto;
	}
	#all_wrap .recruit_message_box > h2 {
		font-size: 15px;
		text-align: center;
	}
	#all_wrap .recruit_message_txt {
		padding: 0;
		margin: 0;
	}
	#all_wrap .recruit_message_txt > p {
		padding: 0;
		margin: 0 auto 20px;
	}
	#all_wrap .recruit_message_txt > p:last-of-type {
		margin-bottom: 0;
	}
	#all_wrap .recruit_message_box > .name {
		text-align: right;
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		color: #fff;
	}
	#all_wrap .recruit_message_box > .name span {
		display: block;
		text-align: right;
		color: #fff;
	}
	#all_wrap .recruit_message_box > .name span small {
		font-size: 0.8em;
		color: #fff;
	}
	#all_wrap .recruit_message_box > .name span b {
		font-size: 1.2em;
		color: #fff;
	}

	/*募集要項*/
	#recruit_job {
		width: 100%;
		margin: 0 auto;
	}
	#all_wrap #recruit_job > header {
		width: 100%;
		padding: 0;
		margin: 0 auto 40px;
		grid-row-gap: 10px;
	}
	#all_wrap #recruit_job > header i {
		display: block;
		width: 100%;
		height: 25px;
		margin: 0 auto 10px;
	}
	#all_wrap #recruit_job > header em {
		font-size: 30px;
	}
	#all_wrap #recruit_job > header h2 {
		font-size: 15px;
	}
	/*テーブル*/
	#all_wrap .recruit-table {
		display: table;
		width: calc(100% - 40px);
		max-width: 100%;
		margin: 0 auto 50px;
	}
	#all_wrap .recruit-table td {
		display: table-cell;
		min-width: auto;
		width: auto;
		padding: 20px 10px;
		margin: 0;
		background: none;
		border: none;
		border-bottom: 1px solid #FAD0B6;
		font-size: 13px;
		line-height: 2;
		vertical-align: top;
	}
	#all_wrap .recruit-table td.column-1 {
		display: table-cell;
		min-width: auto;
		width: auto;
		background: none;
		border: none;
		border-bottom: 1px solid #FAD0B6;
		color: var(--act);
		white-space: nowrap;
	}
}


/************************************************************/
/*　お問い合わせ
/************************************************************/
#contact {
	padding: 200px 0 0;
	margin: 0 auto;
	position: relative;
}
#contact_head {
	width: 100%;
	padding: 0;
	margin: 0 auto 130px;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 60px;
}
#all_wrap #contact_head > header {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 25px;
}
#all_wrap #contact_head > header > i {
	display: block;
	width: 100%;
	height: 50px;
	padding: 0;
	margin: 0 auto;
	text-align: center;
}
#all_wrap #contact_head > header > i img {
	width: auto;
	height: 100%;
}
#all_wrap #contact_head > header > em {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	font-family: var(--font-en);
	font-size: 42px;
	line-height: 1em;
	color: var(--act);
	font-style: normal;
	text-align: center;
	position: relative;
}
#all_wrap #contact_head > header > h1 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	font-size: 17px;
	line-height: 1em;
	color: var(--act);
	text-align: center;
	border: none;
	background: none;
	position: relative;
	letter-spacing: 0.1em;
}
#all_wrap #contact_head > p {
	padding: 0;
	margin: 0 auto;
	text-align: center;
}

/*お問い合わせボタン*/
#contact_btns {
	width: 100%;
	padding: 0;
	margin: 0 auto 150px;
	position: relative;
}
#all_wrap .contactList {
	width: 100%;
	max-width: 900px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 100px;
	grid-row-gap: 100px;
}
#all_wrap .contactList > li {
	width: calc((100% - 100px) / 2);
	padding: 0;
	margin: 0;
	border-radius: 30px;
	position: relative;
	display: flex;
	flex-direction: column;
	background: #FFF4EA;
	transition: var(--ease);
}
#all_wrap .contactList > li:hover {
	background: #FCE9DF;
	transition: var(--ease);
}
#all_wrap .contactList > li > a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
#all_wrap .contactList > li > h2 {
	width: 100%;
	padding: 50px 40px 40px;
	margin: 0;
	background: none;
	border: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: var(--font-en);
	font-size: 24px;
	line-height: 1;
	color: var(--act);
	text-align: left;
}
#all_wrap .contactList > li > h2::after {
	content: '';
	display: block;
	width: 26px;
	height: 26px;
	min-width: 26px;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/arrow_blue.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	transform: rotate(-180deg);
}
#all_wrap .contactList > li > figure {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}
#all_wrap .contactList > li > figure::before {
	content: '';
	display: block;
	padding-top: 50%;
}
#all_wrap .contactList > li > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .contactList > li > p {
	width: 100%;
	padding: 40px 40px 50px;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
/*メール*/
#contact_mail {
	width: 100%;
	padding: 0;
	margin: 0 auto 120px;
	display: flex;
	flex-direction: column;
	grid-row-gap: 50px;
}
#all_wrap #contact_mail > h2 {
	padding: 0;
	margin: 0 auto;
	text-align: center;
	font-size: 17px;
	line-height: 1.4em;
	color: var(--act);
	border: none;
	background: none;
	position: relative;
}
#all_wrap #contact_mail > p {
	padding: 0;
	margin: 0 auto;
	text-align: center;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#contact {
		padding: 180px 0 0;
	}
	#contact_head {
		width: calc(100% - 80px);
		margin: 0 auto 50px;
		grid-row-gap: 40px;
	}
	#all_wrap #contact_head > header {
		width: 100%;
		grid-row-gap: 15px;
	}
	#all_wrap #contact_head > header > i {
		height: 40px;
	}
	#all_wrap #contact_head > header > em {
		font-size: 36px;
	}
	#all_wrap #contact_head > header > h1 {
		font-size: 15px;
	}
	#all_wrap #contact_head > p {
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
	}

	/*お問い合わせボタン*/
	#contact_btns {
		width: 100%;
		padding: 0;
		margin: 0 auto 80px;
		position: relative;
	}
	#all_wrap .contactList {
		width: calc(100% - 40px);
		max-width: 100%;
		column-gap: 0;
		grid-row-gap: 60px;
	}
	#all_wrap .contactList > li {
		width: 100%;
		border-radius: 30px;
	}
	#all_wrap .contactList > li > h2 {
		width: 100%;
		padding: 50px 30px 30px;
		font-size: 20px;
	}
	#all_wrap .contactList > li > h2::after {
		width: 24px;
		height: 24px;
		min-width: 24px;
	}
	#all_wrap .contactList > li > p {
		width: 100%;
		padding: 30px 30px 50px;
	}
	/*メール*/
	#contact_mail {
		width: 100%;
		grid-row-gap: 30px;
		margin: 0 auto;
	}
	#all_wrap #contact_mail > h2 {
		font-size: 15px;
	}
	#all_wrap #contact_mail > p {
		width: calc(100% - 80px);
		padding: 0;
		margin: 0 auto;
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
	}
}

/************************************************************/
/*　会社概要
/************************************************************/
#company {
	padding: 200px 0 0;
	margin: 0 auto;
	position: relative;
}
#company_head {
	width: 100%;
	padding: 0;
	margin: 0 auto 130px;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 60px;
}
#all_wrap #company_head > header {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 25px;
}
#all_wrap #company_head > header > i {
	display: block;
	width: 100%;
	height: 50px;
	padding: 0;
	margin: 0 auto;
	text-align: center;
}
#all_wrap #company_head > header > i img {
	width: auto;
	height: 100%;
}
#all_wrap #company_head > header > em {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	font-family: var(--font-en);
	font-size: 42px;
	line-height: 1em;
	color: var(--act);
	font-style: normal;
	text-align: center;
	position: relative;
}
#all_wrap #company_head > header > h1 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	font-size: 17px;
	line-height: 1em;
	color: var(--act);
	text-align: center;
	border: none;
	background: none;
	position: relative;
	letter-spacing: 0.1em;
}
/*データ*/
#company_data {
	width: 100%;
	max-width: 1100px;
	padding: 50px;
	margin: 0 auto 120px;
	background: var(--base);
	position: relative;
}
/*テーブル*/
#all_wrap .company_table {
	width: 100%;
	max-width: 700px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border-collapse: collapse;
	table-layout: auto;
	border: none;
	background: none;
}
#all_wrap .company_table th {
	padding: 20px 40px;
	margin: 0;
	border: none;
	font-size: 15px;
	line-height: 2;
	vertical-align: top;
	color: var(--sub);
	font-weight: 400;
	text-align: left;
	white-space: nowrap;
}
#all_wrap .company_table td {
	padding: 20px 40px;
	margin: 0;
	border: none;
	font-size: 15px;
	line-height: 2;
	vertical-align: top;
	color: var(--text);
	font-weight: 400;
	text-align: left;
}
#all_wrap .company_table td.column-1 {
	color: var(--act);
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#company {
		padding: 180px 0 0;
	}
	#company_head {
		width: calc(100% - 80px);
		margin: 0 auto 50px;
		grid-row-gap: 40px;
	}
	#all_wrap #company_head > header {
		width: 100%;
		grid-row-gap: 15px;
	}
	#all_wrap #company_head > header > i {
		height: 40px;
	}
	#all_wrap #company_head > header > em {
		font-size: 36px;
	}
	#all_wrap #company_head > header > h1 {
		font-size: 15px;
	}
	/*データ*/
	#company_data {
		width: 100%;
		max-width: 100%;
		padding: 50px 30px 30px;
		margin: 0 auto;
	}
	/*テーブル*/
	#all_wrap .company_table {
		width: 100%;
		max-width: 100%;
		background: none;
	}
	#all_wrap .company_table th {
		display: table-cell;
		width: auto;
		min-width: auto;
		padding: 15px 0;
		margin: 0;
		border: none;
		font-size: 15px;
		line-height: 2;
		vertical-align: top;
		color: var(--sub);
		font-weight: 400;
		text-align: left;
		white-space: nowrap;
		background: none;
	}
	#all_wrap .company_table td {
		display: table-cell;
		width: auto;
		min-width: auto;
		padding: 15px 0 15px 20px;
		margin: 0;
		border: none;
		font-size: 15px;
		line-height: 2;
		vertical-align: top;
		color: var(--text);
		font-weight: 400;
		text-align: left;
		background: none;
	}
	#all_wrap .company_table td.column-1 {
		color: var(--act);
	}
}

/************************************************************/
/*　プライバシーポリシー
/************************************************************/
#privacy {
	padding: 200px 0 0;
	margin: 0 auto;
	position: relative;
}
#privacy_head {
	width: 100%;
	padding: 0;
	margin: 0 auto 60px;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 60px;
}
#all_wrap #privacy_head > header {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 25px;
}
#all_wrap #privacy_head > header > i {
	display: block;
	width: 100%;
	height: 50px;
	padding: 0;
	margin: 0 auto;
	text-align: center;
}
#all_wrap #privacy_head > header > i img {
	width: auto;
	height: 100%;
}
#all_wrap #privacy_head > header > em {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	font-family: var(--font-en);
	font-size: 42px;
	line-height: 1em;
	color: var(--act);
	font-style: normal;
	text-align: center;
	position: relative;
}
#all_wrap #privacy_head > header > h1 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	font-size: 17px;
	line-height: 1em;
	color: var(--act);
	text-align: center;
	border: none;
	background: none;
	position: relative;
	letter-spacing: 0.1em;
}
/*sec*/
.privacy_sec {
	width: 100%;
	max-width: 1200px;
	padding: 60px 40px;
	margin: 0 auto;
	position: relative;
	border-bottom: 1px solid #FAD0B6;
}
#all_wrap .privacy_sec > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 10px;
	font-size: 20px;
	line-height: 1.4em;
	color: var(--sub);
}
#all_wrap .privacy_sec > h2::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background-image: url('https://reliefport-femina.com/wp-content/uploads/shine-illust-blue.svg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
#all_wrap .privacy_sec > p {
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .privacy_sec > p:last-of-type {
	margin-bottom: 0;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#privacy {
		padding: 180px 0 0;
	}
	#privacy_head {
		width: calc(100% - 80px);
		margin: 0 auto 30px;
		grid-row-gap: 40px;
	}
	#all_wrap #privacy_head > header {
		width: 100%;
		grid-row-gap: 15px;
	}
	#all_wrap #privacy_head > header > i {
		height: 40px;
	}
	#all_wrap #privacy_head > header > em {
		font-size: 36px;
	}
	#all_wrap #privacy_head > header > h1 {
		font-size: 15px;
	}
	/*sec*/
	.privacy_sec {
		width: calc(100% - 40px);
		max-width: 100%;
		padding: 30px 10px;
	}
	#all_wrap .privacy_sec > h2 {
		width: 100%;
		padding: 0;
		margin: 0 auto 15px;
		font-size: 17px;
	}
	#all_wrap .privacy_sec > p {
		width: 100%;
		padding: 0;
		margin: 0 auto 20px;
		position: relative;
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
	}
	#all_wrap .privacy_sec > p:last-of-type {
		margin-bottom: 0;
	}
}