@charset "UTF-8";

/*----------------------------------------------------------*/
/* カスタマイズ用CSS 1
/*----------------------------------------------------------*/
:root {
	--main: #2e4492;
	--sub:  #366bdf;
	--red: #d32a2a;
	--orange: #ff6900;
	--yellow: #ffff00;
	--base: #f9f2e9;
	--base2: #223c5a;
	--base3: #f1f5fd;
	--text: #2d2d2d;
	--link: #366bdf;
	--line: #5ac263;
	--gradient: linear-gradient(to bottom, #366bdf 0%, #366bdf 25%, #2855cd 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_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	--font-en: "Barlow", sans-serif;
	--font-all: "Barlow", YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	--ease: all 0.3s ease;
}
*{
	margin: 0;
	padding: 0;
}
*:focus {
	outline: none;
}
html{
	box-sizing:border-box;
	line-height:1;
	font-size: 62.5%; /*  50 56.25 62.5 68.75 75*/
	background: #fff;
	-webkit-font-smoothing: antialiased;
}
html {
visibility: hidden;
}
html.wf-active {
visibility: visible;
}
::placeholder {
	color: #ccc;
}
body {
	font-family: var(--font-jp);
	font-style: normal;
	font-weight: 500;
	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt" 1;
	overflow-x: hidden;
	counter-reset: count;
	animation: fadeIn 2.5s ease 0s 1 normal;
	letter-spacing: 0.05em;
	color: var(--text);
}
.content div {
	margin: 0;
}

/*構成*/
#all_wrap {
	width: calc(100%);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap.lp_page {
	width: calc(100%);
	padding: 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;
		padding-top: 68px;
	}
	.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: 14px;
		line-height: 2em;
		font-weight: 500;
		font-feature-settings: "palt" 1;
		font-style: normal;
	}
	#all_wrap .content p {
		font-size: 14px;
		line-height: 2em;
		padding: 0;
		margin-bottom: 10px;
	}

	/*下マージン*/
	#all_wrap .content .mb0,
	#all_wrap .content .mb0 { margin-bottom: 0px; }
	#all_wrap .content .mb5,
	#all_wrap .content .mb5 { margin-bottom: 5px; }
	#all_wrap .content .mb10,
	#all_wrap .content .mb10 { margin-bottom: 10px; }
	#all_wrap .content .mb20,
	#all_wrap .content .mb20 { margin-bottom: 20px; }
	#all_wrap .content .mb30,
	#all_wrap .content .mb30 { margin-bottom: 30px; }
	#all_wrap .content .mb40,
	#all_wrap .content .mb40 { margin-bottom: 20px; }
	#all_wrap .content .mb50,
	#all_wrap .content .mb50 { margin-bottom: 25px; }
	#all_wrap .content .mb60,
	#all_wrap .content .mb60 { margin-bottom: 30px; }
	#all_wrap .content .mb70,
	#all_wrap .content .mb70 { margin-bottom: 35px; }
	#all_wrap .content .mb80,
	#all_wrap .content .mb80 { margin-bottom: 40px; }
	#all_wrap .content .mb90,
	#all_wrap .content .mb90 { margin-bottom: 45px; }
	#all_wrap .content .mb100,
	#all_wrap .content .mb100 { margin-bottom: 50px; }
	#all_wrap .content .mb150,
	#all_wrap .content .mb150 { margin-bottom: 70px; }
	#all_wrap .content .mb200,
	#all_wrap .content .mb200 { margin-bottom: 100px; }
}

/*== スマホ・PC 非表示 ==*/
.pc_none { display: none !important; }
.sp_none { display: block !important; }
@media only screen and (max-width: 768px){
	.pc_none { display: block !important; }
	.sp_none { display: none !important; }
}

/*リスト*/
#all_wrap ul.disc {
	list-style: disc;
	padding: 0;
	margin: 0;
	margin-bottom: 1em;
}
#all_wrap ul.disc li {
	position: relative;
	padding-left: 1em;
	margin: 0;
}
#all_wrap ul.disc li::before {
	content: "・";
	display: inline-block;
	width: auto;
	height: auto;
	background: none;
	border: none;
	color: var(--text);
}

/************************************************************/
/*　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;
	background-color: #ffffff;
	background-image: radial-gradient(circle, #d9e1f7 1px, transparent 1px), radial-gradient(circle, #d9e1f7 1px, transparent 1px);
	background-position: 0 0, 4px 8px;
	background-size: 8px 16px;
	position: relative;
	z-index: 0;
}
#all_wrap .l-wrapper {
	width: calc(100% - 100px);
	max-width: 1100px;
	padding: 50px 0 100px;
	margin: 0 auto;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-content: stretch;
	align-items: stretch;
	column-gap: 50px;
}
#all_wrap .l-wrapper.single {
	width: calc(100% - 100px);
	max-width: 1100px;
	padding: 50px 0 100px;
	margin: 0 auto;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-content: stretch;
	align-items: stretch;
	column-gap: 50px;
}
.l-wrapper-full {
	position: relative;
	width: 100%;
	padding: 0;
	margin: 0 auto;
}
.l-wrapper-cat {
	position: relative;
	width: calc(100% - 100px);
	max-width: 1100px;
	padding: 50px 0 100px;
	margin: 0 auto;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-content: stretch;
	align-items: stretch;
	column-gap: 50px;
}

.wrapper {
	width: 100%;
	padding: 50px 0 100px;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}
.wrapper.cat {
	width: 100%;
	padding: 50px 0 100px;
	margin: 0 auto;
	position: relative;
	z-index: 0;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-content: stretch;
	align-items: stretch;
	column-gap: 50px;
}

#all_wrap .l-wrapper .l-main {
	width: 100%;
	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: 30px 20px;
		margin: 0 auto;
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		align-content: stretch;
		align-items: stretch;
		column-gap: 0;
	}

	#all_wrap .l-wrapper .l-main {
		width: 100%;
		min-width: 100%;
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	#all_wrap .l-wrapper-full .l-main {
		width: 100%;
		padding: 0;
		margin: 0 auto;
	}

	.l-wrapper {
		width: 100%;
		padding: 0;
		margin: 0;
	}
	.l-wrapper-full {
		position:relative;
		width: 100%;
		margin: 0 auto;
		padding: 0;
	}
	.l-wrapper-full.cat {
		position:relative;
		width: 100%;
		margin: 0 auto;
		padding: 30px;
	}
	.l-wrapper-cat {
		position: relative;
		width: 100%;
		padding: 30px 0;
		margin: 0 auto;
	}

	/*トップ構成*/
	.top_wrapper {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	#topMain {
		width: calc(100%);
		padding: 0;
		margin: 0;
		overflow: hidden;
		background: #fff;
	}

	.side-banner {
		display: block;
		margin-bottom: 0 !important;
	}
	.side-contents {
		display: none;
	}

	.page {
		width: 100%;
		padding: 0;
		margin: 0;
	}
	.content {
		width: 100%;
		padding: 0;
		margin: 0;
	}
	.postContents {
		width: calc(100%);
		margin: 0 auto;
		padding: 0;
	}
	.pageContents .content,
	.archiveContents .content {
		padding: 0;
		margin: 0 auto;
	}

	/*グーグルマップ表示*/
	.l-wrapper iframe {
		width: 100%;
	}

}

#all_wrap .pager {
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin: 0 auto;
	margin-top: 50px;
}

/************************************************************/
/*　見出し　＆　パンくず
/************************************************************/

h1,h2,h3,h4,h5,h6,b,strong {
	font-family: var(--font-ttl);
	font-weight: 900;
	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: 15px 0;
	margin: 0 auto;
	background: none;
	border: none;
	overflow-x: scroll;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
	-ms-overflow-style: none;
	scrollbar-width: none;
	z-index: 10;
}
#all_wrap .breadcrumb .container {
	width: calc(100%);
	max-width: 1100px;
}
.breadcrumb::-webkit-scrollbar { 
	display:none;
}
.breadcrumb > ul {
	display: flex;
	justify-content: flex-start;
	width: 100%;
	max-width: 1100px;
	padding: 0;
	margin: 0 auto;
	font-size: 10px;
	color: #fff;
	justify-content: flex-start;
	font-family: var(--font-jp);
}
.breadcrumb a {
	font-size: 10px;
	line-height: 1;
	padding: 0;
	margin: 0;
	text-decoration: none;
	transition: var(--ease);
	color: #fff;
	font-family: var(--font-jp);
	font-weight: 500;
	font-style: normal;
	font-feature-settings: "palt";
}
.breadcrumb a:hover {
	text-decoration: none;
	transition: var(--ease);
	color: #fff;
}
.breadcrumb__list {
	padding: 0;
}
.breadcrumb__item {
	position: relative;
	display: table-cell;
	white-space: nowrap;
	padding-right: 15px;
	padding-left: 15px;
	font-size: 10px;
	line-height: 1;
	color: #fff;
}
.breadcrumb__item::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -2px;
	width: 5px;
	height: 5px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*パンくず*/
	.breadcrumb {
		width: 100%;
		max-width: 100%;
		padding: 10px 20px;
		margin: 0 auto;
		border: none;
		overflow-x: scroll;
		position: absolute;
		top: 0;
		left: 0;
		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: 0;
	margin: 0 auto;
	background: #fff;
	position: relative;
	transition: var(--ease);
}
#all_wrap .header_top {
	width: 100%;
	max-width: 1100px;
	padding: 10px 0 0;
	margin: 0 auto 15px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 20px;
	position: relative;
}
#all_wrap .header_left {
	width: fit-content;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 20px;
	grid-row-gap: 10px;
}
#all_wrap .header_left > .headerDesc {
	width: 100%;
	padding: 0;
	margin: 0 0 5px;
	font-size: 10px;
	line-height: 1;
	color: var(--text);
	font-weight: lighter;
	text-align: left;
	position: relative;
}
#all_wrap .header_left #logo {
	width: auto;
	height: 90px;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .header_left #logo img {
	width: auto;
	height: 100%;
}
#all_wrap .header_left > p {
	padding: 0;
	margin: 0;
	width: fit-content;
	font-size: 16px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
}
#all_wrap .header_left > p strong {
	color: var(--link);
	font-weight: 700;
}
/*電話*/
#all_wrap .header_contact {
	width: 420px;
	min-width: 420px;
	padding: 0;
	margin: 0 0 0 auto;
	position: relative;
	display: inline-flex;
	align-items: flex-end;
	flex-wrap: wrap;
	column-gap: 5px;
	grid-row-gap: 10px;
}
#all_wrap .header_tel {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .header_tel > a {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-end;
	grid-row-gap: 2px;
	padding: 0 0 0 100px;
	margin: 0;
	position: relative;
}
#all_wrap .header_tel > a::before {
	content: '';
	display: block;
	width: auto;
	height: 55px;
	aspect-ratio: 97 / 55;
	position: absolute;
	bottom: 0;
	left: 0;
	background-image: url('https://toso-no1.com/wp-content/uploads/icon_freedial.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}
#all_wrap .header_tel > a strong {
	display: inline-block;
	font-family: var(--font-en);
	font-size: 47px;
	line-height: 1;
	font-weight: 900;
	letter-spacing: 0.03em;
	color: var(--text);
	text-align-last: justify;
	transition: var(--ease);
}
#all_wrap .header_tel > a:hover strong {
	color: var(--orange);
	transition: var(--ease);
}
#all_wrap .header_tel > a span {
	display: inline-block;
	font-size: 16px;
	line-height: 1;
	font-weight: 600;
	color: var(--text);
	text-align: left;
}
/*ボタン*/
#all_wrap .header_btn {
	display: flex;
	width: auto;
	padding: 0 0 0 80px;
	margin: 0;
	position: relative;
	text-align: right;
}
#all_wrap .header_btn > em {
	display: inline-block;
	padding: 7px 13px;
	margin: 0;
	background: #ff0000;
	border-radius: 50px;
	font-size: 10px;
	line-height: 1.2em;
	font-weight: 700;
	font-style: normal;
	text-align: center;
	color: #fff;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0,-50%);
	filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
	z-index: 2;
}
#all_wrap .header_btn > em::after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	background: #ff0000;
	position: absolute;
	top: 50%;
	right: -9px;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	transform: translate(0,-50%);
}
#all_wrap .header_btn > a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 10px 15px 10px 30px;
	margin: 0;
	background-image: var(--gradient);
	font-size: 14px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	box-shadow: 0 3px 0 #2e4492;
	border-radius: 50px;
	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);
	white-space: nowrap;
}
#all_wrap .header_btn > a strong {
	font-size: 14px;
	line-height: 1;
	font-weight: 700;
	color: var(--yellow);
	white-space: nowrap;
}
#all_wrap .header_btn > a span {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 15px;
	height: 15px;
	padding: 0;
	margin: 0 0 0 5px;
	min-width: 15px;
	aspect-ratio: 1/1;
	border-radius: 50%;
	background: #fff;
}
#all_wrap .header_btn > a span::before {
	content: '';
	display: block;
	width: 6px;
	height: 8px;
	background: #ff0000;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	position: relative;
	left: 1px;
}
#all_wrap .header_btn > a: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);
}
/*LINE*/
#all_wrap .header_line {
	display: block;
}
#all_wrap .header_line a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	column-gap: 5px;
	font-size: 12px;
	height: 35px;
	line-height: 1;
	color: #fff;
	width: auto;
	padding: 10px 10px;
	border-radius: 30px;
	background: var(--line);
	transition: var(--ease);
}
#all_wrap .header_line a:hover {
	opacity: 0.8;
	transition: var(--ease);
}
#all_wrap .header_line img {
	width: 15px;
	height: auto;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#header {
		width: 100%;
		position: fixed;
		top: 18px;
		left: 0;
		z-index: 100;
	}
	#all_wrap .header_top {
		width: 100%;
		max-width: 100%;
		height: 50px;
		padding: 0 0 0 10px;
		margin: 0;
		justify-content: space-between;
		column-gap: 10px;
		background: #fff;
	}
	#all_wrap .header_left {
		width: fit-content;
		padding: 0;
		margin: 0;
		column-gap: 10px;
		grid-row-gap: 10px;
	}
	#all_wrap .header_left > .headerDesc {
		display: block;
		width: 100%;
		height: 18px;
		padding: 5px 10px;
		margin: 0;
		font-size: 0.8rem;
		color: #fff;
		background: var(--text);
		position: fixed;
		top: 0;
		left: 0;
		white-space: nowrap;
		overflow-x: scroll;
		/* ↓ スクロールバー非表示設定 */
		-ms-overflow-style: none;   /* IE / Edge */
		scrollbar-width: none;      /* Firefox */
	}
	#all_wrap .header_left > .headerDesc::-webkit-scrollbar {
		display: none;              /* Chrome / Safari / 新Edge */
	}
	#all_wrap .header_left #logo {
		width: auto;
		height: 35px;
	}
	#all_wrap .header_left > p {
		display: none;
	}
	/*電話*/
	#all_wrap .header_contact {
		width: fit-content;
		min-width: auto;
		padding: 0;
		margin: 0 0 0 auto;
		position: relative;
		display: inline-flex;
		flex-direction: column;
		align-items: flex-end;
		grid-row-gap: 10px;
	}
	#all_wrap .header_tel {
		padding: 0;
		margin: 0;
		position: relative;
	}
	#all_wrap .header_tel > a {
		display: inline-flex;
		flex-direction: column;
		grid-row-gap: 2px;
		padding: 0 0 0 40px;
		margin: 0;
		position: relative;
	}
	#all_wrap .header_tel > a::before {
		height: 20px;
	}
	#all_wrap .header_tel > a strong {
		font-size: 21px;
	}
	#all_wrap .header_tel > a span {
		font-size: 0.8rem;
	}
	/*ボタン*/
	#all_wrap .header_btn {
		display: none;
	}
	/*LINE*/
	#all_wrap .header_line {
		display: none;
	}
}


/*ナビゲーション*/
#mainNav {
	width: 100%;
	padding: 0;
	margin: 0 auto 15px;
	position: relative;
}
#all_wrap #menu-header-menu {
	width: 100%;
	max-width: 1100px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: center;
	list-style: none;
	border-left: 1px solid var(--text);
}
#all_wrap #menu-header-menu > li {
	width: calc(100% / 6);
	padding: 0;
	margin: 0;
	position: relative;
	border-right: 1px solid var(--text);
}
#all_wrap #menu-header-menu > li > a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	grid-row-gap: 5px;
	width: 100%;
	height: 100%;
	padding: 5px;
	margin: 0;
	position: relative;
}
#all_wrap #menu-header-menu > li > a .menu-image-title {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	font-size: 16px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
	text-align: center;
	transition: var(--ease);
}
#all_wrap #menu-header-menu > li > a:hover .menu-image-title {
	color: var(--sub);
	transition: var(--ease);
}
#all_wrap #menu-header-menu > li > a .menu-image-hover-wrapper {
	display: inline-block;
	width: auto;
	height: 45px;
	aspect-ratio: 1/1;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap #menu-header-menu > li > a .menu-image-hover-wrapper img {
	width: auto;
	height: 100%;
	padding: 0 !important;
	margin: 0 !important;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
#all_wrap #menu-header-menu > li > a:hover .menu-image-hover-wrapper img
#all_wrap #menu-header-menu > li > a:hover .menu-image-hover-wrapper .hovered-image {
	width: auto;
	height: 100%;
	padding: 0;
	margin: 0 !important;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

/*評価*/
#all_wrap .header_btm {
	width: 100%;
	padding: 10px;
	margin: 0 auto;
	background: var(--main);
}
#all_wrap .header_btm > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	position: relative;
	border: none;
	background: none;
	font-size: 12px;
	line-height: 1;
	font-weight: 500;
	color: #fff;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*ナビゲーション*/
	#mainNav {
		display: none;
	}
	/*評価*/
	#all_wrap .header_btm {
		display: none;
	}
}


/*固定*/
#header.fixed {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	background: #ffff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	transition: var(--ease);
}
#header.fixed #mainNav,
#header.fixed .header_btm {
	display: none;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*固定*/
	#header.fixed {
		top: 18px;
	}
}


/************************************************************/
/*　ハンバーガーメニュー
/************************************************************/
/* ドロワーメニュー */
.navicon {
	display: none;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/* ドロワーメニュー */
	.navicon {
		display: block;
		position: relative;
		width: 50px;
		height: 50px;
		min-width: 50px;
	}
	.humburger {
		width: 20px;
		height: 20px;
		padding: 0;
		margin: 0;
		background: none;
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
		grid-row-gap: 12px;
	}
	.humburger > span {
		width: 30px;
		display: inline-block;
		transition: var(--ease);
		position: relative;
		height: 1px;
		background: #fff;
		margin: auto;
	}
	.humburger span::before {
		content: '';
		width: 100%;
		display: inline-block;
		transition: var(--ease);
		position: absolute;
		right: 0;
		height: 1px;
		background: #fff;
	}
	.humburger span::after {
		content: '';
		width: 100%;
		display: inline-block;
		transition: var(--ease);
		position: absolute;
		left: 0;
		height: 1px;
		background: #fff;
	}
	.humburger span::before {
		top: -7px;
	}
	.humburger span::after {
		top: 7px;
	}
	#navTgl:checked + .open .humburger span {
		background: #fff;
	}
	#navTgl:checked + .open .humburger span::before {
		width: 0;
		transition: var(--ease);
	}
	#navTgl:checked + .open .humburger span::after {
		width: 0;
		transition: var(--ease);
	}
	#navTgl:checked + .open .humburger {
		background: none;
	}

	#navTgl {
		display: none;
	}
	label.open,
	label.close {
		cursor: pointer;
	}
	.open {
		opacity: 1;
		z-index: 10001;
		width: 50px;
		height: 50px;
		padding: 10px 10px;
		color: #fff;
		background: var(--orange);
		border-radius: 0;
		box-sizing: border-box;
		font-size: 3em;
		text-align: center;
		transition: var(--ease);
		position: relative;
		display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		column-gap: 10px;
	}
	#navTgl:checked + .open,
	.open:hover {
		background: var(--orange);
		transition: var(--ease);
	}
	.close {
		pointer-events: none;
		z-index: 1;
		width: 100%;
		height: 100%;
		transition: var(--ease);
	}
	#navTgl:checked ~ .close {
		pointer-events: auto;
	}
}

/*パネル*/
#menu.menuNav {
	position: fixed;
	top: 0;
	right: 0;
	width: 500px;
	height: calc(100vh);
	background: none;
	transition: var(--ease);
	padding: 0;
	overflow: hidden;
	z-index: 99;
	transform: translateX(500px);
}
#menu.menuNav::-webkit-scrollbar {  /* Chrome, Safari 対応 */
	display:none;
}
#navTgl:checked ~ #menu.menuNav {
	width: 500px;
	transition: var(--ease);
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}

/*メニュー*/
#menuNavBox {
	width: 100%;
	height: 100%;
	padding: 75px 50px 50px;
	margin: 0;
	background-color: #000;
	overflow-y: scroll;
	-ms-overflow-style: none;    /* IE, Edge 対応 */
	scrollbar-width: none;       /* Firefox 対応 */
	position: fixed;
	top: 0;
	left: 0;
	transition: var(--ease);
	visibility: hidden;
	opacity: 0;
	display: flex;
	flex-direction: column;
	grid-row-gap: 50px;
}
#menuNavBox::-webkit-scrollbar {  /* Chrome, Safari 対応 */
	display:none;
}
#navTgl:checked ~ #menu.menuNav #menuNavBox {
	width: 100%;
	transition: var(--ease);
	visibility: visible;
	opacity: 1;
}


/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*パネル*/
	#menu.menuNav {
		position: fixed;
		top: 0;
		right: 0;
		width: 100%;
		height: 100%;
		transform: translateX(100%);
		z-index: -1;
	}
	#menu.menuNav::-webkit-scrollbar {  /* Chrome, Safari 対応 */
		display:none;
	}
	#navTgl:checked ~ #menu.menuNav {
		width: 100%;
		transition: var(--ease);
		opacity: 1;
		visibility: visible;
		transform: translateX(0);
	}

	/*メニュー*/
	#menuNavBox {
		width: 100%;
		height: 100%;
		padding: 100px 30px 70px;
		margin: 0;
		background: rgba(0,0,0, 0.7);
		backdrop-filter: blur(5px);
		overflow-y: scroll;
		-ms-overflow-style: none;    /* IE, Edge 対応 */
		scrollbar-width: none;       /* Firefox 対応 */
		position: fixed;
		top: 0;
		left: 0;
		transition: var(--ease);
		visibility: hidden;
		opacity: 0;
		display: flex;
		flex-direction: column;
		grid-row-gap: 30px;
	}
	#menuNavBox::-webkit-scrollbar {  /* Chrome, Safari 対応 */
		display:none;
	}
	#navTgl:checked ~ #menu.menuNav #menuNavBox {
		width: 100%;
		transition: var(--ease);
		visibility: visible;
		opacity: 1;
	}
}

#all_wrap #menu-panel-menu {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	border-top: 1px solid rgba(255,255,255,0.5);
}
#all_wrap #menu-panel-menu > li {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap #menu-panel-menu > li > a {
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	padding: 15px 10px 15px 25px;
	margin: 0;
	background: none;
	border-bottom: 1px solid rgba(255,255,255,0.5);
	position: relative;
	font-size: 15px;
	line-height: 1.2em;
	color: #fff;
	text-decoration: none;
	transition: var(--ease);
}
#all_wrap #menu-panel-menu > li > a::before {
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translate(0,-50%) rotate(45deg);
}
#all_wrap #menu-panel-menu > li > a:hover {
	opacity: 0.8;
	color: #fff;
	text-decoration: none;
	transition: var(--ease);
}
/*-段落ちメニュー*/
#all_wrap #menu-panel-menu .sub-menu {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
}
#all_wrap #menu-panel-menu .sub-menu > li {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap #menu-panel-menu .sub-menu > li > a {
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	padding: 10px 10px 10px 45px;
	margin: 0;
	background: none;
	border-bottom: 1px solid rgba(255,255,255,0.5);
	position: relative;
	font-size: 14px;
	line-height: 1.2em;
	color: #fff;
	text-decoration: none;
	transition: var(--ease);
}
#all_wrap #menu-panel-menu .sub-menu > li > a::before {
	content: '';
	display: block;
	width: 5px;
	height: 1px;
	border: none;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 30px;
	transform: translate(0,-50%);
}
#all_wrap #menu-panel-menu .sub-menu > li > a:hover {
	opacity: 0.8;
	font-size: 14px;
	line-height: 1.2em;
	color: #fff;
	text-decoration: none;
	transition: var(--ease);
}

/************************************************************/
/*　メインビジュアル
/************************************************************/
#mainVisual {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	background-image: url('https://toso-no1.com/wp-content/uploads/mv_bg-scaled.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	z-index: 0;
}
#mainVisual::before {
	content: '';
	display: block;
	width: 650px;
	height: auto;
	aspect-ratio: 1200 / 804;
	background-image: url('https://toso-no1.com/wp-content/uploads/mv_human.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: -1;
}
#all_wrap .mv_wrap {
	width: 100%;
	max-width: 1100px;
	padding: 20px 0 50px;
	margin: 0 auto;
	position: relative;
}
#all_wrap .mv_wrap > h3 {
	width: 450px;
	padding: 0;
	margin: 0;
	position: relative;
	border: none;
	background: none;
	z-index: 3;
}
#all_wrap .mv_wrap > h3 img {
	width: 100%;
	height: auto;
}
#all_wrap .mv_wrap > h2 {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	border: none;
	background: none;
	z-index: 5;
}
#all_wrap .mv_wrap > h2 img {
	width: 100%;
	height: auto;
}
/*アワード*/
#all_wrap .mv_award {
	width: 650px;
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	column-gap: 5px;
	position: absolute;
	top: 20px;
	right: 0;
	z-index: 1;
}
#all_wrap .mv_award > li {
	width: calc((100% - 15px) / 4);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .mv_award > li img {
	width: 100%;
	height: auto;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#mainVisual {
		width: 100%;
		padding: 0;
		margin: 0;
		position: relative;
		overflow: hidden;
		background: none;
		z-index: 0;
	}
	#mainVisual::before {
		display: none;
	}
	#mainVisual img {
		width: 100%;
		height: auto;
	}
}

/************************************************************/
/*　サイドバー
/************************************************************/
.l-sidebar {
	width: 250px;
	min-width: 250px;
	padding: 0;
	margin: 0;
	position: relative;
	order: 1;
}

.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;
}
#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;
	}
}

/************************************************************/
/*　フッター
/************************************************************/
.footer_wrap {
	width: 100%;
	max-width: 1100px;
	padding: 50px 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	column-gap: 50px;
}
.footer_left {
	width: calc(100% - 50px - 400px);
	padding: 0;
	margin: 0;
	position: relative;
}
.footer_right {
	width: 400px;
	min-width: 400px;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 30px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.footer_wrap {
		width: 100%;
		max-width: 100%;
		padding: 20px;
		flex-wrap: wrap;
		column-gap: 20px;
		grid-row-gap: 30px;
	}
	.footer_left {
		width: calc(100%);
	}
	.footer_right {
		width: calc(100%);
		min-width: 100%;
		grid-row-gap: 20px;
	}
}

/*情報*/
#all_wrap .panelinfo {
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .panelinfo .logo {
	width: auto;
	height: 90px;
	padding: 0;
	margin: 0 0 20px;
	position: relative;
	border: none;
	background: none;
}
#all_wrap .panelinfo .logo img {
	width: auto;
	height: 100%;
}
#all_wrap .panelinfo tel.header_tel {
	display: block;
	margin-bottom: 20px;
}
#all_wrap .panelinfo > p {
	padding: 0;
	margin: 0 auto 10px;
	line-height: 1.4em;
}
#all_wrap .panelinfo > p strong {
	display: block;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*情報*/
	#all_wrap .panelinfo {
		padding: 0;
		margin: 0;
		position: relative;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		column-gap: 20px;
		grid-row-gap: 10px;
	}
	#all_wrap .panelinfo .logo {
		width: fit-content;
		height: 40px;
		padding: 0;
		margin: 0;
		position: relative;
		border: none;
		background: none;
		text-align: center;
	}
	#all_wrap .panelinfo tel.header_tel {
		display: block;
		width: fit-content;
		margin-bottom: 0;
		text-align: right;
		margin: 0;
	}
	#all_wrap .panelinfo > p {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		line-height: 1.4em;
	}
	#all_wrap .panelinfo > p strong {
		display: block;
	}
}

/*フッターメニュー*/
#all_wrap #menu-footer-menu {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 20px;
	grid-row-gap: 20px;
}
#all_wrap #menu-footer-menu > li {
	width: calc(50% - 10px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap #menu-footer-menu > li a {
	font-size: 16px;
	line-height: 1.2em;
	font-weight: 700;
	color: var(--text);
	text-decoration: none;
	transition: var(--ease);
}
#all_wrap #menu-footer-menu > li a:hover {
	font-size: 16px;
	line-height: 1.2em;
	font-weight: 700;
	color: var(--link);
	text-decoration: none;
	transition: var(--ease);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*フッターメニュー*/
	#all_wrap #menu-footer-menu {
		width: 100%;
		column-gap: 20px;
		grid-row-gap: 20px;
	}
	#all_wrap #menu-footer-menu > li {
		width: calc(50% - 10px);
	}
	#all_wrap #menu-footer-menu > li a {
		font-size: 14px;
	}
	#all_wrap #menu-footer-menu > li a:hover {
		font-size: 14px;
	}
}

/*サブメニュー*/
#all_wrap #menu-sub-menu {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	column-gap: 15px;
	grid-row-gap: 15px;
}
#all_wrap #menu-sub-menu > li {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 0 0 0 15px;
	margin: 0;
	border-left: 1px solid var(--text);
}
#all_wrap #menu-sub-menu > li a {
	font-size: 14px;
	line-height: 1;
	text-decoration: none;
	color: var(--text);
	transition: var(--ease);
}
#all_wrap #menu-sub-menu > li a:hover {
	font-size: 14px;
	line-height: 1;
	text-decoration: none;
	color: var(--link);
	transition: var(--ease);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*サブメニュー*/
	#all_wrap #menu-sub-menu {
		width: 100%;
		justify-content: center;
		column-gap: 10px;
		grid-row-gap: 10px;
	}
	#all_wrap #menu-sub-menu > li {
		padding: 0 0 0 10px;
	}
	#all_wrap #menu-sub-menu > li a {
		font-size: 12px;
	}
	#all_wrap #menu-sub-menu > li a:hover {
		font-size: 12px;
	}
}

/*SNS*/
#all_wrap #menu-sns-menu {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	column-gap: 10px;
	grid-row-gap: 10px;
}
#all_wrap #menu-sns-menu > li {
	width: auto;
	height: 25px;
}
#all_wrap #menu-sns-menu > li img {
	width: auto;
	height: 100%;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*SNS*/
	#all_wrap #menu-sns-menu {
		justify-content: center;
	}
	#all_wrap #menu-sns-menu > li {
		width: auto;
		height: 25px;
	}
}

/*コピーライト*/
.copyright {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1100px;
	width: 100%;
	padding: 30px 0;
	margin: 0 auto;
	position: relative;
	text-align: center;
	font-size: 10px;
	line-height: 1;
	color: var(--text);
	font-style: normal;
	background: #fff;
}
.copyright::before {
	content: '';
	display: block;
	width: 100vw;
	height: 1px;
	background: #cfcfcf;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,0);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*コピーライト*/
	.copyright {
		display: flex;
		flex-direction: column;
		grid-row-gap: 10px;
		width: 100%;
		max-width: 100%;
		padding: 20px;
		margin: 0 auto;
		position: relative;
		text-align: center;
		font-size: 0.8rem;
	}
}

/************************************************************/
/*　アーカイブ　リスト
/************************************************************/

/************************************************************/
/*　リスト
/************************************************************/
.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: 80%;
}
#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; }
.sp { display:none !important; }
@media screen and (max-width: 768px){   
	.pc { display:none !important; }
	.sp { display:block !important; }
}


/************************************************************/
/*　本文ギャラリー
/************************************************************/

/*プラグイン*/
#swipebox-overlay {
	background: rgba(0, 0, 0, 0.8);
}
#swipebox-slider .slide img,
#swipebox-slider .slide .swipebox-video-container,
#swipebox-slider .slide .swipebox-inline-container {
	display: inline-block;
	max-height: 90%;
	max-width: 90%;
	margin: 0;
	padding: 0;
	width: auto;
	height: auto;
	vertical-align: middle;
}
/*ギャラリー*/
#all_wrap .content .gallery {
	width: 100%;
	max-width: 980px;
	padding: 0;
	margin: 0 auto 30px;
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 20px;
	grid-row-gap: 20px;
}
#all_wrap .content .gallery::after {
	content: '';
	display: block;
	width: calc(100% / 3 - 13.4px);
}
#all_wrap .content .gallery dl {
	width: calc(100% / 3 - 13.4px);
	padding: 0;
	margin: 0;
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	grid-row-gap: 5px;
}
#all_wrap .content .gallery dt {
	padding: 0;
	margin: 0;
	text-align: center;
}
#all_wrap .content .gallery dd {
	padding: 0;
	margin: 0;
	text-align: center;
}
#all_wrap .content .gallery dl img {
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0;
}
/*閉じる*/
.tos-close {
	height: 40px;
	top: 10px;
	left: 10px;
	right: unset;
}
.tos-close span:after,
.tos-close span:before {
	width: 10px;
	height: 10px;
	margin-top: -4px;
	margin-left: 0;
	margin-right: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .content .gallery {
		width: 100%;
		max-width: 100%;
		margin: 0 auto 20px;
		column-gap: 20px;
		grid-row-gap: 20px;
	}
	#all_wrap .content .gallery::after {
		content: '';
		display: none;
	}
	#all_wrap .content .gallery dl {
		width: calc(100% / 2 - 10px);
		grid-row-gap: 5px;
	}
}

/************************************************************/
/*　Youtube
/************************************************************/
#all_wrap .l-wrapper .youtubeBox {
	width:860px;              /*横幅いっぱいにwidthを指定*/
	padding-bottom: 56.25%;  /*高さをpaddingで指定(16:9)*/
	height:0px;              /*高さはpaddingで指定するためheightは0に*/
	position: relative;
	margin: 0 auto;
}
#all_wrap .l-wrapper .youtubeBox > iframe {
	position: static;
	top: auto;
	left: auto;
	width: 860px;
	height: 500px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .l-wrapper .youtubeBox {
		width:100%;              /*横幅いっぱいにwidthを指定*/
		padding-bottom: 56.25%;  /*高さをpaddingで指定(16:9)*/
		height:0px;              /*高さはpaddingで指定するためheightは0に*/
		position: relative;
	}
	#all_wrap .l-wrapper .youtubeBox > iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
}


/************************************************************/
/*　アーカイブ
/************************************************************/
#all_wrap .archiveList {
	width: calc(100%);
	max-width: 980px;
	padding: 0;
	margin: 0 auto;
	list-style: none;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#all_wrap .archiveList::after {
	content: '';
	display: block;
	width: 31%;
}
#all_wrap .archiveList > li {
	width: 31%;
	padding: 0;
	margin: 0 0 40px;
}
#all_wrap .archiveList > li::before,
#all_wrap .archiveList > li::after {
	display: none;
}
#all_wrap .archiveList > li figure {
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	text-align: center;
	overflow: hidden;
	border-radius: 5px;
}
#all_wrap .archiveList > li figure::before {
	content: '';
	display: block;
	padding-top: 56.25%;
}
#all_wrap .archiveList > li figure img {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .archiveList > li .date {
	display: inline-block;
	font-family: var(--font-en);
	font-size: 12px;
	font-weight: lighter;
	line-height: 1em;
	color: #c8c8c8;
	font-style: normal;
	white-space: nowrap;
	padding: 0;
	margin: 0 0 5px;
}
#all_wrap .archiveList > li > h3,
#all_wrap .content .archiveList > li > h3 {
	padding: 0;
	margin: 0 auto 5px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.4em;
	font-style: normal;
	border: none;
	background: none;
}
#all_wrap .archiveList > li > p {
	font-size: 14px;
	line-height: 1.7em;
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .archiveList {
		width: calc(100%);
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
		list-style: none;
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	#all_wrap .archiveList::after {
		content: '';
		display: none;
	}
	#all_wrap .archiveList > li {
		width: 100%;
		padding: 0;
		margin: 0 auto 20px;
	}
	#all_wrap .archiveList > li::before,
	#all_wrap .archiveList > li::after {
		display: none;
	}
	#all_wrap .archiveList > li figure {
		width: 100%;
		padding: 0;
		margin: 0 auto 10px;
		position: relative;
		text-align: center;
		overflow: hidden;
		border-radius: 5px;
	}
	#all_wrap .archiveList > li figure::before {
		content: '';
		display: block;
		padding-top: 56.25%;
	}
	#all_wrap .archiveList > li figure img {
		width: 100%;
		height: 100%;
		padding: 0;
		margin: 0;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		-webkit-transform: translate(-50%,-50%);
		object-fit: cover;
	}
	#all_wrap .archiveList > li .date {
		display: inline-block;
		font-family: var(--font-en);
		font-size: 12px;
		font-weight: lighter;
		line-height: 1em;
		color: #c8c8c8;
		font-style: normal;
		white-space: nowrap;
		padding: 0;
		margin: 0 0 5px;
	}
	#all_wrap .archiveList > li > h3,
	#all_wrap .content .archiveList > li > h3 {
		padding: 0;
		margin: 0 auto 5px;
		font-size: 15px;
		font-weight: 700;
		line-height: 1.4em;
		font-style: normal;
		border: none;
		background: none;
	}
	#all_wrap .archiveList > li > p {
		font-size: 14px;
		line-height: 1.7em;
		padding: 0;
		margin: 0;
		text-align: justify;
		text-justify: inter-ideograph;
	}
}

/************************************************************/
/*　記事詳細
/************************************************************/
#all_wrap .singleContent {
	margin-bottom: 100px;
}
#all_wrap .singleHeader {
	width: 100%;
	padding: 0 0 15px;
	margin: 0 auto 30px;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
#all_wrap .singleHeader_data {
	width: 100%;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
	position: relative;
}
#all_wrap .singleHeader_data > .date {
	display: block;
	font-family: var(--font-en);
	font-weight: lighter;
	font-size: 14px;
	line-height: 1;
	color: #ccc;
	padding: 0;
	margin: 0;
}
#all_wrap .tagList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 10px;
	grid-row-gap: 10px;
}
#all_wrap .tagList > .tag {
	display: inline-block;
	padding: 5px 10px;
	margin: 0;
	font-size: 11px;
	line-height: 1;
	font-weight: 500;
	color: var(--sub);
	background: #fff;
	border: 1px solid var(--sub);
	border-radius: 5px;
	position: relative;
	transition: var(--ease);
}
#all_wrap .singleHeader > h1 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	font-size: 28px;
	line-height: 1.4em;
	color: var(--text);
	text-align: left;
	border: none;
	background: none;
}

.tags {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 5px;
	grid-row-gap: 5px;
}
.tags > span {
	display: inline-block;
	padding: 0;
	margin: 0;
	font-size: 10px;
	line-height: 1;
	color: #8c8c8c;
}

.single_eyecatch {
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
}
.single_eyecatch img {
	width: 100%;
	height: auto;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .singleContent {
		margin-bottom: 50px;
	}
	#all_wrap .singleHeader {
		width: 100%;
		padding: 0;
		margin: 0 auto 20px;
		position: relative;
		display: flex;
		flex-direction: column;
		grid-row-gap: 5px;
	}
	#all_wrap .singleHeader_data {
		width: 100%;
		padding: 0;
		margin: 0;
		display: flex;
		flex-direction: column;
		grid-row-gap: 10px;
		position: relative;
	}
	#all_wrap .singleHeader_data > .date {
		display: block;
		font-family: var(--font-en);
		font-weight: lighter;
		font-size: 12px;
		line-height: 1;
		color: #ccc;
		padding: 0;
		margin: 0;
	}
	#all_wrap .tagList {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		flex-wrap: wrap;
		column-gap: 5px;
		grid-row-gap: 5px;
	}
	#all_wrap .tagList > .tag {
		display: inline-block;
		padding: 5px 7px;
		margin: 0;
		font-size: 0.8rem;
		line-height: 1;
		font-weight: 500;
		color: var(--sub);
		background: #fff;
		border: 1px solid var(--sub);
		border-radius: 5px;
		position: relative;
		transition: var(--ease);
	}
	#all_wrap .singleHeader > h1 {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		font-size: 18px;
		line-height: 1.4em;
		color: var(--text);
		text-align: left;
		border: none;
		background: none;
	}

	.tags {
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		column-gap: 5px;
		grid-row-gap: 5px;
	}
	.tags > span {
		display: inline-block;
		padding: 0;
		margin: 0;
		font-size: 10px;
		line-height: 1;
		color: #8c8c8c;
	}

	.single_eyecatch {
		width: 100%;
		padding: 0;
		margin: 0 auto 20px;
		position: relative;
	}
	.single_eyecatch img {
		width: 100%;
		height: auto;
	}
}


/*==============================*/
/*目次*/
/*==============================*/
#all_wrap .content .toc {
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
}
#all_wrap .content .toc-title {
	display: inline-block;
	padding: 5px 10px;
	margin: 0;
	background: #19244c;
	font-family: "Ubuntu", sans-serif;
	font-size: 14px;
	line-height: 1;
	font-weight: 500;
	color: #fff;
	position: relative;
	top: 15px;
	left: 0;
	z-index: 2;
}
#all_wrap .content .toc .toc-list {
	padding: 30px;
	margin: 0;
	position: relative;
	list-style: none;
	background: #f4f4f4;
}
#all_wrap .content .toc .toc-list li ul {
	margin: 10px 0 !important;
	padding: 0 0 0 1.2em;
}
#all_wrap .content .toc .toc-list li {
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .content .toc .toc-list li a {
	display: 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: #0c61a8;
}
#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 .editor {
	padding: 0;
	margin: 50px auto 50px;
	position: relative;
}
#all_wrap .editor > header {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 5px;
	padding: 12px;
	margin: 0 auto;
	background: var(--main);
	position: relative;
	z-index: 0;
}
#all_wrap .editor > header > em {
	font-family: var(--font-en);
	font-size: 18px;
	line-height: 1;
	text-transform: uppercase;
	font-weight: 700;
	font-style: normal;
	color: #fff;
	text-decoration: none;
}
#all_wrap .editor > header > h2 {
	font-size: 10px;
	line-height: 1;
	font-weight: 400;
	color: #fff;
	padding: 0;
	margin: 0;
}
#all_wrap .editorBox {
	width: 100%;
	padding: 20px;
	margin: 0;
	background: #fff;
	border: 5px solid var(--main);
	border-top: none;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	column-gap: 20px;
}
#all_wrap .editorBox > figure {
	width: 150px;
	padding: 0;
	margin: 0;
	position: relative;
	text-align: center;
	overflow: hidden;
	border-radius: 50%;
}
#all_wrap .editorBox > figure::before {
	content: '';
	display: block;
	padding: 50%;
}
#all_wrap .editorBox > figure img {
	width: 100%;
	max-width: unset;
	height: 100%;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	object-fit: cover
}
#all_wrap .editorBox_info {
	width: calc(100% - 150px - 20px);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	align-content: center;
	align-items: center;
	grid-row-gap: 5px;
}
#all_wrap .editorBox_info > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	font-size: 16px;
	line-height: 1.2em;
	font-weight: bold;
	border: none;
	background: none;
}
#all_wrap .editorBox_info > h3 > small {
	font-size: 12px;
	font-weight: lighter;
}
#all_wrap .editorBox_info > p {
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 12px;
	line-height: 1.7em;
}

@media screen and (max-width: 768px) {
	#all_wrap .editorBox > figure {
		width: 100px;
	}
	#all_wrap .editorBox_info {
		width: calc(100% - 100px - 20px);
	}
	#all_wrap .editorBox_info > h3 {
		font-size: 15px;
	}
	#all_wrap .editorBox {
		width: 100%;
		padding: 15px;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 10px;
	}
	#all_wrap .editorBox > figure {
		width: 150px;
		padding: 0;
		margin: 0 auto;
	}
	#all_wrap .editorBox_info {
		width: calc(100%);
	}
	#all_wrap .editorBox_info > h3 {
		width: 100%;
		font-size: 15px;
		text-align: center;
	}
}


/*前後の記事*/
#all_wrap .prevNext {
	width: 100%;
	padding: 0;
	margin: 0 auto;
}
#all_wrap .prevNext__pop {
	background-color: var(--text);
}
#all_wrap .eyecatch {
	background: var(--text);
}
#all_wrap .heading-secondary {
	color: var(--text);
}
#all_wrap .prevNext__text {
	padding: 0;
	margin: 0;
	color: var(--text);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*前後の記事*/
	#all_wrap .prevNext {
		width: 90%;
		padding: 0;
		margin: 0 auto;
	}
}

/*プロフィール*/
#all_wrap .profile {
	border: none;
	margin-top: 0;
	padding: 20px;
	background: var(--text);
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
	align-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
}
#all_wrap .profile__text {
	background: none;
	font-size: 15px;
	padding: 0 0 0 13px;
	margin-bottom: 15px;
	margin-top: 40px;
	border-left: 2px solid #d3c8a8;
	font-style: italic;
	text-align: left;
	color: #d3c8a8;
}
#all_wrap .profile__contents {
	width: 80%;
	padding: 0;
	margin: 0;
}
#all_wrap .profile__name {
	color: #d3c8a8;
	font-size: 19px;
	line-height: 1.4em;
	font-style: italic;
	padding: 0 0 10px;
	margin: 0 auto 10px;
	border-bottom: 1px solid #d3c8a8;
}
#all_wrap .profile__author {
	width: 15%;
	text-align: left;
	padding: 0;
	margin: 0 20px 0 0;
}
#all_wrap .profile__author img {
	width: 100%;
	height: auto;
	margin: 0;
}
#all_wrap .profile__list {
	display: none;
}
#all_wrap .profile__description {
	padding: 0;
	margin: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*プロフィール*/
	#all_wrap .profile {
		border: none;
		margin-top: 0;
		padding: 20px;
		background: var(--text);
		display: -webkit-flex;
		display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	}
	#all_wrap .profile__text {
		background: none;
		font-size: 15px;
		padding: 0 0 0 13px;
		margin-bottom: 15px;
		margin-top: 40px;
		border-left: 2px solid #d3c8a8;
		font-style: italic;
		text-align: left;
		color: #d3c8a8;
	}
	#all_wrap .profile__contents {
		width: 80%;
		padding: 0;
		margin: 0;
	}
	#all_wrap .profile__name {
		color: #d3c8a8;
		font-size: 19px;
		line-height: 1.4em;
		font-style: italic;
		padding: 0 0 10px;
		margin: 0 auto 10px;
		border-bottom: 1px solid #d3c8a8;
	}
	#all_wrap .profile__author {
		width: 15%;
		text-align: left;
		padding: 0;
		margin: 0 0 0 0;
	}
	#all_wrap .profile__author img {
		width: 100%;
		height: auto;
		margin: 0;
	}
	#all_wrap .profile__list {
		display: none;
	}
	#all_wrap .profile__description {
		padding: 0;
		margin: 0;
	}
}

/************************************************************/
/*　共通
/************************************************************/
#all_wrap .contHead {
	width: 100%;
	max-width: 1100px;
	padding: 0;
	margin: 0 auto 40px;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 0;
}
#all_wrap .contHead > em {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 15px;
	font-family: var(--font-en);
	font-size: 20px;
	line-height: 1;
	font-weight: 700;
	color: var(--sub);
	text-align: center;
	font-style: normal;
	margin: 0 auto 10px;
}
#all_wrap .contHead > em::before,
#all_wrap .contHead > em::after {
	content: '';
	display: block;
	width: auto;
	height: 24px;
	aspect-ratio: 20 / 25;
	background-image: url('https://toso-no1.com/wp-content/uploads/slash.svg');
	background-repeat: no-repeat;
	background-size: auto 100%;
	background-position: center;
}
#all_wrap .contHead > h2 {
	width: 100%;
	padding: 0 0 30px;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	font-size: 50px;
	line-height: 1.1em;
	font-weight: 900;
	text-align: center;
	color: var(--text);
}
#all_wrap .contHead > h2 small {
	display: block;
	padding: 0;
	margin: 0 auto;
	font-size: 0.5em;
	text-align: center;
}
#all_wrap .contHead > h2::after {
	content: '';
	display: block;
	width: 85px;
	height: 4px;
	border-radius: 4px;
	background-image: linear-gradient(to right, #2e4492 0%, #2e4492 50%, #366bdf 50%, #366bdf 100%);
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%,0);
}
#all_wrap .contHead > p {
	padding: 0;
	margin: 30px auto 0;
	text-align: center;
	font-weight: 700;
	font-size: 18px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .contHead {
		width: 100%;
		max-width: 100%;
		margin: 0 auto 20px;
	}
	#all_wrap .contHead > em {
		column-gap: 10px;
		font-size: 14px;
		margin: 0 auto 5px;
	}
	#all_wrap .contHead > em::before,
	#all_wrap .contHead > em::after {
		height: 14px;
	}
	#all_wrap .contHead > h2 {
		width: 100%;
		padding: 0 0 15px;
		font-size: 25px;
	}
	#all_wrap .contHead > h2 small {
		font-size: 0.5em;
	}
	#all_wrap .contHead > h2::after {
		width: 55px;
		height: 2px;
		border-radius: 2px;
	}
	#all_wrap .contHead > p {
		padding: 0;
		margin: 15px auto 0;
		font-size: 12px;
	}
}

/*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;
}



/************************************************************/
/*　CTA
/************************************************************/
.topCta {
	width: 100%;
	padding: 80px 0;
	margin: 0 auto;
	background: var(--base2);
	position: relative;
}
.mvCta {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
.topCta_wrap {
	width: 100%;
	max-width: 1100px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: center;
	background: #fff;
	border-radius: 10px;
	z-index: 5;
}
.topCta_left {
	width: 50%;
	min-width: 600px;
	padding: 0;
	margin: 0;
	position: relative;
}
.topCta_right {
	width: calc(50%);
	min-width: 500px;
	padding: 30px;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 10px;
	grid-row-gap: 20px;
}
/*画像*/
.topCta_left > figure {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 10px 0 0 10px;
}
.topCta_left > figure::before {
	content: '';
	display: block;
	width: 100px;
	height: 100%;
	background: #fff;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	clip-path: polygon(50% 0, 100% 0, 100% 100%, 0% 100%);
}
.topCta_left > figure::after {
	content: '';
	display: block;
	width: 120px;
	height: 100%;
	background-image: url('https://toso-no1.com/wp-content/uploads/cta_serif_2.webp');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
}
.topCta_left > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.topCta_left > h2 {
	width: 400px;
	padding: 0;
	margin: 0;
	position: absolute;
	top: -30px;
	left: 45%;
	transform: translate(-50%,0);
	z-index: 10;
}
.topCta_left > h2 img {
	width: 100%;
	height: auto;
}
/* - 電話*/
.topCta_right > a.cta_tel {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	grid-row-gap: 3px;
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	transition: var(--ease);
}
.topCta_right > a.cta_tel > em {
	display: inline-block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align-last: justify;
	font-size: 20px;
	line-height: 1;
	font-weight: 700;
	font-style: normal;
	white-space: nowrap;
	color: var(--text);
	letter-spacing: normal;
	z-index: 2;
	transition: var(--ease);
}
#all_wrap .topCta_right > a.cta_tel > p {
	display: inline-flex;
	justify-content: center;
	align-items: baseline;
	flex-wrap: wrap;
	column-gap: 5px;
	grid-row-gap: 7px;
	font-family: var(--font-en);
	font-size: 59px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
	letter-spacing: normal;
	position: relative;
	transition: var(--ease);
}
#all_wrap .topCta_right > a.cta_tel:hover > p {
	color: #f77311;
	transition: var(--ease);
}
.topCta_right > a.cta_tel > p::before {
	content: '';
	display: block;
	width: auto;
	height: 40px;
	aspect-ratio: 262 / 150;
	background-image: url('https://toso-no1.com/wp-content/uploads/icon_freedial.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}
.topCta_right > a.cta_tel > p > span {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 5px;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	font-size: 18px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
}
.topCta_right > a.cta_tel > p > span em {
	display: inline-block;
	padding: 6px 10px;
	margin: 0;
	background: #f77311;
	border-radius: 16px;
	font-size: 15px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	font-style: normal;
}
/*ボタン*/
a.cta_mail,
a.cta_line {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	column-gap: 10px;
	width: calc(50% - 10px);
	padding: 20px 20px;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	white-space: nowrap;
	text-decoration: none;
	border-radius: 12px;
	text-align: center;
	position: relative;
	overflow: hidden;
	transition: var(--ease);
}
a.cta_mail:hover,
a.cta_line:hover {
	filter: brightness(1.1);
	transform: translateY(3px);
	box-shadow: 0 0 0 rgba(0,0,0,0);
}
/* メール */
a.cta_mail {
	color: var(--text);
	background-image: linear-gradient(to bottom, #ffffff 0%, #fcdba0 100%);
	border: 2px solid #ff6600;
	box-shadow: 0 3px 0 #ff6600;
}
a.cta_mail::before {
	content: '';
	display: block;
	width: auto;
	height: 20px;
	aspect-ratio: 1/1;
	background-image: url('https://toso-no1.com/wp-content/uploads/icon_main.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}
/* LINE */
a.cta_line {
	color: #fff;
	background-image: linear-gradient(to bottom, #8af5b0 0%, #06c755 50%, #06ba55 100%);
	border: 2px solid #007651;
	box-shadow: 0 3px 0 #007651;
}
a.cta_line::before {
	content: '';
	display: block;
	width: auto;
	height: 20px;
	aspect-ratio: 53 / 50;
	background-image: url('https://toso-no1.com/wp-content/uploads/icon_line_w.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}

/*色変え*/
.mvCta .topCta_wrap {
	background: #ffe980;
	transform: translateY(-30px);
}
.mvCta .topCta_left > figure::before {
	background: #ffe980;
}
.mvCta .topCta_left > h2 {
	top: -55px;
	left: 40%;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.topCta {
		width: 100%;
		padding: 30px 10px 10px;
	}
	.topCta_wrap {
		width: 100%;
		max-width: 100%;
		flex-wrap: wrap;
		border-radius: 0;
	}
	.topCta_left {
		width: 100%;
		min-width: 100%;
		padding: 0;
		margin: 0;
		position: relative;
	}
	.topCta_right {
		width: 100%;
		min-width: 100%;
		padding: 20px;
		margin: 0;
		position: relative;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		column-gap: 10px;
		grid-row-gap: 10px;
	}
	.topCta .topCta_right {
		padding: 20px 10px;
	}
	/*画像*/
	.topCta_left > figure {
		width: 100%;
		border-radius: 0;
	}
	.topCta_left > figure::before {
		content: '';
		display: block;
		width: auto;
		height: auto;
		background: #fff;
		position: relative;
		top: unset;
		right: unset;
		z-index: -1;
		clip-path: unset;
		padding-top: 50%;
	}
	.topCta_left > figure::after {
		display: none;
	}
	.topCta_left > h2 {
		width: 80%;
		padding: 0;
		margin: 0;
		position: absolute;
		top: -15px;
		left: 50%;
		transform: translate(-50%,0);
		z-index: 10;
	}
	/* - 電話*/
	.topCta_right > a.cta_tel {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		grid-row-gap: 3px;
		width: 100%;
		padding: 0;
		margin: 0;
		position: relative;
		transition: var(--ease);
	}
	.topCta_right > a.cta_tel > em {
		font-size: 14px;
		margin-bottom: 5px;
		text-align: center;
		text-align-last: center;
	}
	#all_wrap .topCta_right > a.cta_tel > p {
		font-size: 40px;
		justify-content: center;
	}
	.topCta_right > a.cta_tel > p::before {
		height: 25px;
	}
	.topCta_right > a.cta_tel > p > span {
		column-gap: 5px;
		width: 100%;
		font-size: 14px;
	}
	.topCta_right > a.cta_tel > p > span em {
		display: inline-block;
		padding: 6px 10px;
		border-radius: 16px;
		font-size: 12px;
	}
	/*ボタン*/
	a.cta_mail,
	a.cta_line {
		column-gap: 5px;
		width: calc(50% - 5px);
		padding: 17px 10px;
		font-size: 17px;
		letter-spacing: -0.05em;
		white-space: nowrap;
	}
	/* メール */
	a.cta_mail::before {
		height: 17px;
	}
	/* LINE */
	a.cta_line::before {
		height: 17px;
	}
	
	/*色変え*/
	.mvCta .topCta_wrap {
		background: #ffe980;
		transform: unset;
	}
	.mvCta .topCta_left > figure::before {
		background: #ffe980;
	}
	.mvCta .topCta_left > h2 {
		width: 70%;
		padding: 0;
		margin: 0;
		position: absolute;
		top: -25px;
		left: 15%;
		transform: unset;
		z-index: 10;
	}
}

/* 固定バナー */
.fixedBan {
	display: none;
	width: 350px;
	padding: 0;
	margin: 0;
	position: fixed;
	bottom: 50px;
	right: 0;
	z-index: 10;
}
.fixedBan a {
	display: block;
}
.fixedBan img {
	width: 100%;
	height: auto;
	filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
	transition: var(--ease);
	cursor: pointer;
}
.fixedBan img:hover {
	opacity: 0.9;
	transition: var(--ease);
}
/* 閉じるボタン */
.fixedBan-close {
	position: absolute;
	top: 5px;
	left: 0;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	border: none;
	border-radius: 50%;
	width: 28px;
	height: 28px;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	z-index: 11;
	transition: opacity 0.2s;
}
.fixedBan-close:hover {
	opacity: 0.8;
}
/************************************************************/
/*　トップページ　エリア
/************************************************************/
#topArea {
	width: 100%;
	padding: 30px 0 70px;
	margin: 0 auto;
	position: relative;
}
/*エリアリスト*/
#all_wrap .areaList {
	width: 100%;
	max-width: 1100px;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	column-gap: 15px;
	grid-row-gap: 15px;
	flex-wrap: wrap;
}
#all_wrap .areaList > li {
	width: calc((100% - 60px) / 5);
	padding: 15px;
	margin: 0;
	background: #ebf0fc;
	border-radius: 5px;
	border: 1px solid var(--sub);
	text-align: center;
	font-size: 18px;
	line-height: 1;
	font-weight: 900;
	color: var(--text);
}
#topArea > p {
	width: 100%;
	max-width: 1100px;
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 16px;
}
#topArea > p:last-of-type {
	margin-bottom: 0;
}
#topArea > p strong {
	color: var(--main);
	font-size: 1.5em;
	font-weight: 900;
}
#topArea > p b {
	color: var(--red);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topArea {
		width: 100%;
		padding: 30px 20px;
		margin: 0 auto;
		position: relative;
	}
	/*エリアリスト*/
	#all_wrap .areaList {
		width: 100%;
		max-width: 100%;
		margin: 0 auto 20px;
		justify-content: space-between;
		column-gap: 15px;
		grid-row-gap: 15px;
	}
	#all_wrap .areaList > li {
		width: calc((100% - 15px) / 2);
		padding: 12px;
		border-radius: 5px;
		font-size: 15px;
	}
	#topArea > p {
		width: 100%;
		max-width: 100%;
		margin: 0 auto 10px;
		font-size: 14px;
	}
	#topArea > p strong {
		color: var(--main);
		font-size: 1.2em;
		font-weight: 900;
	}
}

/************************************************************/
/*　トップページ　お悩み
/************************************************************/
#topWorry {
	width: 100%;
	padding: 80px 0 20px;
	margin: 0 auto;
	background-color: var(--base2);
	position: relative;
	z-index: 0;
}
#topWorry::before {
	content: '';
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1440 / 817;
	background-image: url('https://toso-no1.com/wp-content/uploads/topWarry_bg.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
#topWorry > header {
	width: 100%;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	text-align: center;
}
#topWorry > header > em {
	display: block;
	width: fit-content;
	padding: 10px 30px 12px;
	margin: 0 auto 20px;
	background: var(--orange);
	border: 3px solid #fff;
	font-size: 25px;
	line-height: 1;
	font-weight: 900;
	color: #fff;
	font-style: normal;
	text-align: center;
	border-radius: 40px;
}
#all_wrap #topWorry > header > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	border: none;
	background: none;
	position: relative;
	font-size: 60px;
	line-height: 1.4em;
	text-align: center;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 20px;
}
#all_wrap #topWorry > header > h2::before,
#all_wrap #topWorry > header > h2::after {
	content: '';
	display: block;
	width: auto;
	height: 145px;
	aspect-ratio: 90 / 144;
	background-image: url('https://toso-no1.com/wp-content/uploads/serif.svg');
	background-repeat: no-repeat;
	background-size: auto 100%;
	background-position: center;
}
#all_wrap #topWorry > header > h2::after {
	transform: scale(-1,1);
}
#all_wrap #topWorry > header > h2 strong {
	color: var(--yellow);
	position: relative;
	display: inline-block;
}
#all_wrap #topWorry > header > h2 strong::after {
	content: '';
	display: block;
	width: 100%;
	height: 5px;
	background-image: url('https://toso-no1.com/wp-content/uploads/wave.svg');
	background-size: auto 100%;
	background-position: left center;
	background-repeat: repeat-x;
}
/*悩みリスト*/
#all_wrap .worryList {
	width: 100%;
	max-width: 1100px;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	column-gap: 20px;
	grid-row-gap: 20px;
}
#all_wrap .worryList > li {
	width: calc((100% - 20px) / 2);
	padding: 20px;
	margin: 0;
	background: rgba(255,255,255,0.2);
	border-radius: 10px;
	font-size: 20px;
	line-height: 1.2em;
	font-weight: 900;
	color: #fff;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	column-gap: 10px;
}
#all_wrap .worryList > li::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	min-width: 20px;
	aspect-ratio: 1/1;
	background-image: url('https://toso-no1.com/wp-content/uploads/check.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	position: relative;
	top: 0.1em;
}

/*お悩みケース*/
#all_wrap .worryCase {
	width: 100%;
	max-width: 1100px;
	padding: 30px;
	margin: 0 auto 20px;
	background: #fff;
	border-radius: 20px;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 30px;
}
#all_wrap .worryCase > li {
	width: calc((100% - 60px) / 3);
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 10px;
	z-index: 0;
}
#all_wrap .worryCase > li::before {
	content: '';
	display: block;
	width: 100%;
	height: 80px;
	background-image: linear-gradient(to top, rgba(34,60,90,1) 0%, rgba(34,60,90,0) 100%);
	position: absolute;
	bottom: 0;
	left: 0;
	opacity: 0.9;
	z-index: 1;
}
#all_wrap .worryCase > li > figure {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}
#all_wrap .worryCase > li > figure::before {
	content: '';
	display: block;
	padding-top: 75%;
}
#all_wrap .worryCase > li > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .worryCase > li > h3 {
	width: 100%;
	padding: 15px 10px;
	margin: 0;
	border: none;
	background: none;
	font-size: 25px;
	line-height: 1.2em;
	color: #fff;
	text-align: center;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 2;
}
#all_wrap #topWorry > p {
	padding: 0;
	margin: 0 auto;
	position: relative;
	color: #fff;
	font-weight: 900;
	text-align: center;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topWorry {
		width: 100%;
		padding: 30px 20px;
	}
	#topWorry::before {
		background-image: url('https://toso-no1.com/wp-content/uploads/topWarry_bg_sp.webp');
	}
	#topWorry > header {
		width: 100%;
		margin: 0 auto 15px;
	}
	#topWorry > header > em {
		display: block;
		width: fit-content;
		padding: 7px 15px 10px;
		margin: 0 auto 10px;
		border: 2px solid #fff;
		font-size: 14px;
		border-radius: 40px;
	}
	#all_wrap #topWorry > header > h2 {
		width: 100%;
		font-size: 25px;
		column-gap: 10px;
		align-items: flex-end;
		white-space: nowrap;
	}
	#all_wrap #topWorry > header > h2::before,
	#all_wrap #topWorry > header > h2::after {
		height: 50px;
	}
	#all_wrap #topWorry > header > h2 strong::after {
		height: 3px;
	}
	/*悩みリスト*/
	#all_wrap .worryList {
		width: 100%;
		max-width: 100%;
		margin: 0 auto 15px;
		column-gap: 0;
		grid-row-gap: 10px;
	}
	#all_wrap .worryList > li {
		width: 100%;
		padding: 15px 10px;
		font-size: 13px;
	}
	#all_wrap .worryList > li::before {
		width: 15px;
		height: 15px;
		min-width: 15px;
		top: 0.1em;
	}

	/*お悩みケース*/
	#all_wrap .worryCase {
		width: 100%;
		max-width: 100%;
		padding: 15px;
		margin: 0 auto 10px;
		column-gap: 15px;
		grid-row-gap: 15px;
	}
	#all_wrap .worryCase > li {
		width: calc((100% - 15px) / 2);
	}
	#all_wrap .worryCase > li::before {
		width: 100%;
		height: 50px;
	}
	#all_wrap .worryCase > li > h3 {
		width: 100%;
		padding: 10px;
		font-size: 10px;
	}
	#all_wrap #topWorry > p {
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
		font-size: 12px;
		font-weight: 700;
	}
}

/************************************************************/
/*　トップページ　解決
/************************************************************/
#topSolution {
	width: 100%;
	padding: 120px 0 100px;
	margin: 0 auto;
	background-color: var(--base);
	position: relative;
	z-index: 0;
}
#topSolution::before {
	content: '';
	display: block;
	width: 100%;
	height: 70px;
	background: var(--base2);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
}
#topSolution::after {
	content: '';
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 2000 / 923;
	background-image: url('https://toso-no1.com/wp-content/uploads/topSolution_bg.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -2;
}
#topSolution > header {
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	text-align: center;
}
#topSolution > header > em {
	display: block;
	width: fit-content;
	padding: 10px 30px 12px;
	margin: 0 auto 20px;
	background: var(--sub);
	border: 3px solid #fff;
	font-size: 25px;
	line-height: 1;
	font-weight: 900;
	color: var(--yellow);
	font-style: normal;
	text-align: center;
	border-radius: 40px;
}
#all_wrap #topSolution > header > h2 {
	width: 100%;
	max-width: 750px;
	padding: 0;
	margin: 0 auto;
	border: none;
	background: none;
	position: relative;
}
#all_wrap #topSolution > header > h2 img {
	width: 100%;
	height: auto;
}
#all_wrap .topSolution_box {
	width: 100%;
	max-width: 1100px;
	padding: 40px;
	margin: 0 auto;
	background: #fff;
	border-radius: 20px;
	filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
	position: relative;
}
#all_wrap .topSolution_box::before {
	content: '';
	display: block;
	width: 220px;
	height: auto;
	aspect-ratio: 350 / 484;
	background-image: url('https://toso-no1.com/wp-content/uploads/topSolution_human.webp');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center bottom;
	position: absolute;
	bottom: -12px;
	right: 35px;
	z-index: 2;
}
/*資格*/
#all_wrap .qualiList {
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: center;
	align-items: baseline;
	flex-wrap: wrap;
	column-gap: 10px;
	grid-row-gap: 10px;
}
#all_wrap .qualiList > li {
	width: calc((100% - 40px) / 5);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .qualiList > li img {
	width: 100%;
	height: auto;
}
/*解決*/
#all_wrap .solutionList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
}
#all_wrap .solutionList > li {
	width: 100%;
	padding: 15px 0;
	margin: 0 auto;
	position: relative;
	border-bottom: 1px dashed #b7b7b7;
	display: flex;
	justify-content: flex-start;
	align-items: baseline;
	column-gap: 10px;
	font-size: 22px;
	line-height: 1.4em;
	font-weight: 900;
	color: var(--text);
}
#all_wrap .solutionList > li::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	min-width: 20px;
	aspect-ratio: 1/1;
	background-image: url('https://toso-no1.com/wp-content/uploads/check2.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	position: relative;
	top: 0.1em;
}
#all_wrap .solutionList > li > p {
	font-size: 22px;
	line-height: 1.4em;
	font-weight: 900;
	color: var(--text);
	padding: 0;
	margin: 0;
}
#all_wrap .solutionList > li > p strong {
	display: inline;
	background-image: linear-gradient(#ffee72, #ffee72);
	background-size: 100% 0.7em;
	background-repeat: no-repeat;
	background-position: 0 100%;
	padding-bottom: 0.05em;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone; /* Safari / iOS 対応 */
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topSolution {
		width: 100%;
		padding: 120px 0 30px;
	}
	#topSolution::before {
		height: 30px;
		top: -0.5px;
	}
	#topSolution::after {
		background-image: url('https://toso-no1.com/wp-content/uploads/topSolution_bg_sp.webp');
	}
	#topSolution > header {
		width: 100%;
		padding: 0;
		margin: 0 auto 20px;
		position: relative;
		text-align: center;
	}
	#topSolution > header > em {
		padding: 7px 15px 10px;
		margin: 0 auto 10px;
		border: 2px solid #fff;
		font-size: 14px;
	}
	#all_wrap #topSolution > header > h2 {
		width: calc(100% - 40px);
		max-width: 100%;
	}
	#all_wrap .topSolution_box {
		width: calc(100% - 40px);
		max-width: 100%;
		padding: 20px;
	}
	#all_wrap .topSolution_box::before {
		display: none;
	}
	/*資格*/
	#all_wrap .qualiList {
		margin: 0 auto 10px;
	}
	/*解決*/
	#all_wrap .solutionList {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		list-style: none;
	}
	#all_wrap .solutionList > li {
		width: 100%;
		padding: 15px 0;
		column-gap: 10px;
		font-size: 12px;
	}
	#all_wrap .solutionList > li::before {
		width: 12px;
		height: 12px;
		min-width: 12px;
		top: 0.1em;
	}
	#all_wrap .solutionList > li > p {
		font-size: 15px;
	}
}

/************************************************************/
/*　トップページ　Googleレビュー
/************************************************************/
#topReview {
	width: 100%;
	padding: 60px 0 100px;
	margin: 0 auto;
	background-color: #fff3de;
	background-image: radial-gradient(circle, #fff 1px, transparent 1px), radial-gradient(circle, #fff 1px, transparent 1px);
	background-position: 0 0, 4px 8px;
	background-size: 8px 16px;
	position: relative;
	z-index: 0;
	border-top: 10px solid var(--orange);
}
#topReview::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-image: url('https://toso-no1.com/wp-content/uploads/topReview_bg.svg');
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: bottom center;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -11;
}
#topReview > header {
	width: 100%;
	padding: 0;
	margin: 0 auto 40px;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 20px;
}
#topReview > header > em {
	display: block;
	width: 150px;
	height: auto;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#topReview > header > em img {
	width: 100%;
	height: auto;
}
#all_wrap #topReview > header > h2 {
	position: relative;
	display: inline-block;
	background: #fff;
	border: 2px solid #ccc;
	border-radius: 20px;
	width: fit-content;
	padding: 10px 25px 12px;
	margin: 0 auto;
	box-sizing: border-box;
	font-size: 45px;
	line-height: 1.4em;
	text-align: center;
	font-weight: 900;
	color: var(--text);
}
#all_wrap #topReview > header > h2::before,
#all_wrap #topReview > header > h2::after{
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	pointer-events: none;
}
#all_wrap #topReview > header > h2::before{
	bottom: -13px;
	border-left: 11px solid transparent;
	border-right: 11px solid transparent;
	border-top: 11px solid #ccc;
}
#all_wrap #topReview > header > h2::after{
	bottom: -10px;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid #fff;
}
#all_wrap #topReview > header > h2 strong {
	color: var(--orange);
}
/*レビューセクション*/
#all_wrap .review_wrap {
	width: 100%;
	max-width: 1100px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 40px;
	grid-row-gap: 40px;
}
#all_wrap .review_wrap dl {
	width: calc((100% - 40px) / 2);
	padding: 7px;
	margin: 0;
	background: #fff;
	border-radius: 20px;
	position: relative;
}
#all_wrap .review_wrap dt {
	width: 100%;
	padding: 15px 25px;
	margin: 0;
	background: var(--orange);
	border-radius: 20px;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	grid-row-gap: 5px;
}
#all_wrap .review_wrap dt > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	font-size: 30px;
	line-height: 1.2em;
	color: #fff;
	text-align: left;
}
#all_wrap .review_wrap dt > em {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	font-family: var(--font-en);
	font-size: 25px;
	line-height: 1;
	font-weight: bold;
	font-style: normal;
	color: var(--yellow);
}
#all_wrap .review_wrap dd {
	padding: 30px;
	margin: 0 auto;
	position: relative;
	height: 350px;
	overflow-y: scroll;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
#all_wrap .review_wrap dd::-webkit-scrollbar {
	display: none;
}

/*スライダー*/
#all_wrap .topReview_slider {
	width: 100%;
	padding: 0 100px;
	margin: 0 auto;
	position: relative;
}
#all_wrap .topReview_slider .ti-widget.ti-goog .ti-review-item > .ti-inner {
	background: #fff !important;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topReview {
		width: 100%;
		padding: 30px 0;
		border-top: 5px solid var(--orange);
	}
	#topReview::before {
		background-image: url('https://toso-no1.com/wp-content/uploads/topReview_bg.svg');
	}
	#topReview > header {
		width: calc(100% - 40px);
		margin: 0 auto 20px;
		grid-row-gap: 10px;
	}
	#topReview > header > em {
		display: block;
		width: 100px;
	}
	#topReview > header > em img {
		width: 100%;
		height: auto;
	}
	#all_wrap #topReview > header > h2 {
		padding: 10px 15px 12px;
		font-size: 16px;
	}
	
	/*スライダー*/
	#all_wrap .topReview_slider {
		width: 100%;
		padding: 0 20px;
		margin: 0 auto;
		position: relative;
	}
	#all_wrap .topReview_slider .ti-widget.ti-goog .ti-review-item > .ti-inner {
		background: #fff !important;
	}
	#all_wrap .topReview_slider .ti-widget.ti-goog .ti-col-1 .ti-footer,
	#all_wrap .topReview_slider .ti-reviews-container,
	#all_wrap .topReview_slider .ti-widget.ti-goog .ti-widget-container {
		margin-bottom: 0 !important;
	}
	#all_wrap .topReview_slider .ti-row {
		margin-bottom: 10px !important;
	}
}

/************************************************************/
/*　トップページ　選ばれる理由
/************************************************************/
#topReason {
	width: 100%;
	padding: 100px 0 100px;
	margin: 0 auto;
	background-color: #fff;
	position: relative;
	z-index: 0;
}
#topReason .contHead > em {
	margin: 0 auto 20px;
}
/*リスト*/
#all_wrap .reasonList {
	width: 1100px;
	max-width: 1100px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 80px;
}
#all_wrap .reasonList > li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 60px;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}
#all_wrap .reasonList > li::before {
	content: '';
	display: block;
	width: calc(570px - 40px);
	height: 100%;
	position: absolute;
	bottom: -30px;
	left: 0;
	z-index: -1;
	background-color: #e1e9fa;
	border-radius: 0 20px 20px 0;
}
#all_wrap .reasonList > li::after {
	content: '';
	display: block;
	width: 100vw;
	height: 100%;
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translate(-50%,0);
	z-index: -2;
	background-image: linear-gradient(to right, #e1e9fa 0%, #e1e9fa 45%, #ffffff 45%, #ffffff 100%);
}
#all_wrap .reasonList > li > figure {
	width: 570px;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 20px;
	border: 5px solid var(--sub);
}
#all_wrap .reasonList > li > figure::before {
	content: '';
	display: block;
	padding-top: 65%;
}
#all_wrap .reasonList > li > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .reasonList_info {
	width: calc(100% - 60px - 570px);
	padding: 0;
	margin: 0;
	position: relative;
	order: 2;
}
#all_wrap .reasonList_info > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	border: none;
	background: none;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	grid-row-gap: 7px;
}
#all_wrap .reasonList_info > h2 > span {
	width: fit-content;
	padding: 5px 10px 7px;
	margin: 0 auto 0 0;
	background: var(--sub);
	border-radius: 5px;
	font-size: 30px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
}
#all_wrap .reasonList_info > h2 > span b {
	color: var(--yellow);
}
#all_wrap .reasonList_info > p {
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .reasonList_info > p:last-of-type {
	margin-bottom: 0;
}
/*EVEN*/
#all_wrap .reasonList > li:nth-child(even) .reasonList_info {
	order: 0;
}
#all_wrap .reasonList > li:nth-child(even)::before {
	content: '';
	display: block;
	width: calc(570px - 40px);
	height: 100%;
	position: absolute;
	bottom: -30px;
	left: unset;
	right: 0;
	z-index: -1;
	background-color: #e1e9fa;
	border-radius: 20px 0 0 20px;
}
#all_wrap .reasonList > li:nth-child(even)::after {
	content: '';
	display: block;
	width: 100vw;
	height: 100%;
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translate(-50%,0);
	z-index: -2;
	background-image: linear-gradient(to left, #e1e9fa 0%, #e1e9fa 45%, #ffffff 45%, #ffffff 100%);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topReason {
		width: 100%;
		padding: 30px 0 50px;
		scroll-margin-top: 68px;
	}
	#topReason .contHead > em {
		margin: 0 auto 10px;
	}
	/*リスト*/
	#all_wrap .reasonList {
		width: 100%;
		max-width: 100%;
		grid-row-gap: 50px;
	}
	#all_wrap .reasonList > li {
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 20px;
	}
	#all_wrap .reasonList > li::before {
		content: '';
		display: block;
		width: calc(100% - 40px);
		height: 100%;
		position: absolute;
		bottom: -20px;
		left: 0;
		z-index: -1;
		background-color: #e1e9fa;
		border-radius: 0 20px 20px 0;
	}
	#all_wrap .reasonList > li::after {
		display: none;
	}
	#all_wrap .reasonList > li > figure {
		width: calc(100% - 40px);
		margin: 0 auto;
	}
	#all_wrap .reasonList_info {
		width: calc(100% - 40px);
		padding: 0;
		margin: 0 auto;
	}
	#all_wrap .reasonList_info > h2 {
		margin: 0 auto 10px;
		grid-row-gap: 5px;
	}
	#all_wrap .reasonList_info > h2 > span {
		width: fit-content;
		padding: 5px 10px 7px;
		font-size: 20px;
	}
	/*EVEN*/
	#all_wrap .reasonList > li:nth-child(even) .reasonList_info {
		order: 1;
	}
	#all_wrap .reasonList > li:nth-child(even)::before {
		content: '';
		display: block;
		width: calc(100% - 40px);
		height: 100%;
		position: absolute;
		bottom: -20px;
		left: unset;
		right: 0;
		z-index: -1;
		background-color: #e1e9fa;
		border-radius: 20px 0 0 20px;
	}
	#all_wrap .reasonList > li:nth-child(even)::after {
		display: none;
	}
}

/************************************************************/
/*　トップページ　施工実績
/************************************************************/
#topWorks {
	width: 100%;
	padding: 50px 0 0;
	margin: 0 auto;
	background-color: var(--orange);
	position: relative;
	z-index: 0;
}
#all_wrap #topWorks > header {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	background-image: url('https://toso-no1.com/wp-content/uploads/confetti.svg');
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 90%;
	z-index: 2;
}
#all_wrap #topWorks > header > em {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 10px;
	font-size: 30px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	text-align: center;
	font-style: normal;
	padding: 0;
	margin: 0 auto 5px;
	transform: translateY(50px);
}
#all_wrap #topWorks > header > em::before,
#all_wrap #topWorks > header > em::after {
	content: '';
	display: block;
	width: auto;
	height: 30px;
	aspect-ratio: 25 / 40;
	background-image: url('https://toso-no1.com/wp-content/uploads/slash2.svg');
	background-repeat: no-repeat;
	background-size: auto 100%;
	background-position: center;
}
#all_wrap #topWorks > header > em::after {
	transform: scale(-1,1);
}
#all_wrap #topWorks > header > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	font-size: 120px;
	line-height: 1;
	font-weight: 900;
	color: #fff;
	text-align: center;
	transform: translateY(50px);
}
#all_wrap #topWorks > header > h2 > span {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 8px 10px 15px;
	margin: 0 5px 0 0;
	background: var(--yellow);
	font-size: 100px;
	line-height: 1;
	font-weight: 900;
	color: var(--orange);
	position: relative;
	top: -5px;
}
/*マップ*/
#all_wrap #topWorks > figure {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}
#all_wrap #topWorks > figure::before {
	content: '';
	display: block;
	width: 100%;
	height: 100px;
	background-image: linear-gradient(to bottom, rgba(255,105,0,1) 0%, rgba(255,105,0,0) 100%);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
#all_wrap #topWorks > figure img {
	width: 100%;
	height: auto;
}
#all_wrap .topWorks_info {
	width: 100%;
	max-width: 1100px;
	padding: 0;
	margin: 0 auto;
	position: absolute;
	bottom: 50px;
	left: 50%;
	transform: translate(-50%,0);
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	column-gap: 50px;
}
/*アワード*/
#all_wrap .works_award {
	width: 600px;
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 5px;
	z-index: 1;
}
#all_wrap .works_award > li {
	width: calc((100% - 15px) / 4);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .works_award > li img {
	width: 100%;
	height: auto;
}
#all_wrap .topWorks_info > h3 {
	width: calc(100% - 60px - 600px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .topWorks_info > h3 img {
	width: 100%;
	height: auto;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topWorks {
		width: 100%;
		padding: 30px 0 0;
	}
	#all_wrap #topWorks > header > em {
		column-gap: 10px;
		font-size: 14px;
		margin: 0 auto 5px;
		transform: unset;
	}
	#all_wrap #topWorks > header > em::before,
	#all_wrap #topWorks > header > em::after {
		height: 20px;
	}
	#all_wrap #topWorks > header > h2 {
		width: 100%;
		margin: 0 auto;
		font-size: 30px;
		transform: unset;
	}
	#all_wrap #topWorks > header > h2 > span {
		padding: 5px 5px 8px;
		margin: 0 5px 0 0;
		font-size: 28px;
		top: 0;
	}
	/*マップ*/
	#all_wrap #topWorks > figure::before {
		height: 30px;
	}
	#all_wrap .topWorks_info {
		width: 100%;
		max-width: 100%;
		padding: 0 20px;
		margin: 0 auto;
		position: absolute;
		bottom: 20px;
		left: 50%;
		transform: translate(-50%,0);
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
		column-gap: 10px;
	}
	/*アワード*/
	#all_wrap .works_award {
		width: 50%;
		column-gap: 5px;
		z-index: 1;
	}
	#all_wrap .works_award > li {
		width: calc((100% - 15px) / 4);
		padding: 0;
		margin: 0;
		position: relative;
	}
	#all_wrap .topWorks_info > h3 {
		width: calc(50% - 50px);
		padding: 0;
		margin: 0;
		position: relative;
	}
	#all_wrap .topWorks_info > h3 img {
		width: 100%;
		height: auto;
	}
}

/************************************************************/
/*　トップページ　施工実績
/************************************************************/
#topCase {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	background-color: #fff;
	position: relative;
	z-index: 0;
}
#topCase::before {
	content: '';
	display: block;
	width: 100%;
	height: 150px;
	background-image: linear-gradient(to right, #3694df 0%, #3694df 50%, #366bdf 50%, #366bdf 100%);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -2;
}
#topCase::after {
	content: '';
	display: block;
	width: 100%;
	height: 130px;
	background: #fff;
	position: absolute;
	top: 20.5px;
	left: 0;
	z-index: -1;
	clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.topCase_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: 40px;
}
.case-sidebar {
	width: 300px;
	min-width: 300px;
	padding: 25px;
	margin: 0;
	background: var(--sub);
	border-radius: 20px;
	position: sticky;
	top: 40px;
	left: 0;
	display: flex;
	flex-direction: column;
	grid-row-gap: 30px;
}
.topCase_content {
	width: calc(100% - 40px - 300px);
	padding: 0;
	margin: 0;
	position: relative;
}
/*サイドバー*/
.asideBox {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .asideBox > h2 {
	width: 100%;
	padding: 0 0 10px;
	margin: 0 auto 10px;
	position: relative;
	border: none;
	background: none;
	border-bottom: 1px solid #fff;
	font-size: 20px;
	line-height: 1;
	font-weight: 900;
	color: #fff;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topCase {
		width: 100%;
		padding: 50px 0;
	}
	#topCase::before {
		height: 50px;
	}
	#topCase::after {
		width: 100%;
		height: 40px;
		top: 10.5px;
		left: 0;
	}
	.topCase_wrap {
		width: calc(100% - 40px);
		max-width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 30px;
	}
	.case-sidebar {
		width: 100%;
		min-width: 100%;
		padding: 20px;
		position: relative;
		top: unset;
		left: unset;
		grid-row-gap: 20px;
		order: 1;
	}
	.topCase_content {
		width: 100%;
	}
	/*サイドバー*/
	#all_wrap .asideBox > h2 {
		width: 100%;
		padding: 0 0 10px;
		margin: 0 auto 10px;
		font-size: 18px;
	}
}

/* - カテゴリ一覧 */
#all_wrap .case-child-categories {
	width: 100%;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
#all_wrap .case-child-categories > li {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .case-child-categories > li > a {
	font-size: 15px;
	line-height: 1;
	font-weight: 500;
	color: #fff;
	text-decoration: none;
	transition: var(--ease);
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 5px;
}
#all_wrap .case-child-categories > li > a .cat-count {
	display: inline-block;
	padding: 4px 10px 5px;
	margin: 0;
	font-size: 0.8rem;
	line-height: 1;
	color: var(--sub);
	background: #fff;
	border-radius: 20px;
	position: relative;
	top: 1px;
}
#all_wrap .case-child-categories > li > a:hover {
	color: #fff;
	text-decoration: underline;
	transition: var(--ease);
}

/*タグ*/
#all_wrap .area-child-tags {
	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: 5px;
	grid-row-gap: 5px;
}
#all_wrap .area-child-tags > li {
	display: inline-block;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .area-child-tags > li > a {
	display: inline-block;
	padding: 5px 12px 6px;
	margin: 0;
	font-size: 11px;
	line-height: 1;
	font-weight: 500;
	color: var(--main);
	cursor: pointer;
	background: #fff;
	border: 1px solid var(--main);
	border-radius: 22px;
	position: relative;
	transition: var(--ease);
}
#all_wrap .area-child-tags > li > a:hover {
	opacity: 0.8;
	transition: var(--ease);
}
/*more*/
#all_wrap .aside_more {
	padding: 0;
	margin: 0;
	text-align: left;
}
#all_wrap .aside_more > a {
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 10px;
	font-size: 15px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	transition: var(--ease);
}
#all_wrap .aside_more > a::before {
	content: '';
	display: block;
	width: auto;
	height: 15px;
	aspect-ratio: 1 / 1;
	background-image: url('https://toso-no1.com/wp-content/uploads/arrow_w.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 100%;
}
#all_wrap .aside_more > a:hover {
	text-decoration: underline;
	transition: var(--ease);
}

/*カテゴリタブ*/
#category-buttons {
	width: 100%;
	padding: 0;
	margin: 0 auto 40px;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 10px;
	grid-row-gap: 10px;
}
.cat-btn {
	display: inline-block;
	padding: 7px 14px;
	margin: 0;
	font-size: 14px;
	line-height: 1;
	font-weight: 500;
	color: var(--sub);
	cursor: pointer;
	background: #fff;
	border: 1px solid var(--sub);
	border-radius: 5px;
	position: relative;
	transition: var(--ease);
}
.cat-btn:hover,
.cat-btn.active {
	color: #fff;
	background: var(--sub);
	transition: var(--ease);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*カテゴリタブ*/
	#category-buttons {
		width: 100%;
		margin: 0 auto 20px;
		column-gap: 5px;
		grid-row-gap: 5px;
	}
	.cat-btn {
		display: inline-block;
		padding: 5px 10px;
		font-size: 11px;
	}
}

/*リスト*/
#all_wrap .caseList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 30px;
}
#all_wrap .caseList > li {
	width: 100%;
	padding: 30px;
	margin: 0 auto;
	position: relative;
	background: var(--base3);
	border-radius: 20px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	grid-row-gap: 20px;
}
#all_wrap .caseList > li > a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
#all_wrap .caseList > li > figure {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 7px;
}
#all_wrap .caseList > li > figure > span {
	display: block;
	width: calc((100% - 40px) / 2);
	padding: 0;
	margin: 0;
	border-radius: 10px;
	overflow: hidden;
	text-align: center;
	position: relative;
}
#all_wrap .caseList > li > figure > span::before {
	content: '';
	display: block;
	padding-top: 65%;
}
#all_wrap .caseList > li > figure > span::after {
	content: '';
	display: block;
	width: 100px;
	height: auto;
	aspect-ratio: 110 / 32;
	background-image: url('https://toso-no1.com/wp-content/uploads/before.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
#all_wrap .caseList > li > figure > span.after::after {
	background-image: url('https://toso-no1.com/wp-content/uploads/after.svg');
}
#all_wrap .caseList > li > figure > span img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .caseList > li > figure > em {
	display: block;
	width: 26px;
	height: auto;
	aspect-ratio: 23 / 31;
	background-image: url('https://toso-no1.com/wp-content/uploads/arrow.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
}
/*情報*/
.caseList_info {
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
/*タグ・カテゴリー・地域*/
#all_wrap .caseList_tag {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 10px;
	grid-row-gap: 10px;
}
#all_wrap .caseList_tag > span {
	display: inline-block;
	padding: 5px 10px;
	margin: 0;
	font-size: 11px;
	line-height: 1;
	font-weight: 500;
	color: var(--sub);
	cursor: pointer;
	background: #fff;
	border: 1px solid var(--sub);
	border-radius: 5px;
	position: relative;
	transition: var(--ease);
}
#all_wrap .caseList_tag > span:hover {
	color: #fff;
	background: var(--sub);
	transition: var(--ease);
}
/*タイトル*/
#all_wrap .caseList > li .caseList_info > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	font-size: 24px;
	line-height: 1.4em;
	font-weight: 900;
	color: var(--text);
	transition: var(--ease);
}
#all_wrap .caseList > li:hover .caseList_info > h3 {
	color: var(--orange);
	transition: var(--ease);
}
#all_wrap .caseList > li .caseList_info > p {
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-weight: 500;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*リスト*/
	#all_wrap .caseList {
		width: 100%;
		grid-row-gap: 20px;
	}
	#all_wrap .caseList > li {
		width: 100%;
		padding: 20px;
		border-radius: 20px;
		grid-row-gap: 10px;
	}
	#all_wrap .caseList > li > figure {
		width: 100%;
		column-gap: 7px;
	}
	#all_wrap .caseList > li > figure > span {
		display: block;
		width: calc((100% - 20px) / 2);
	}
	#all_wrap .caseList > li > figure > span::after {
		width: 70px;
	}
	#all_wrap .caseList > li > figure > em {
		width: 16px;
	}
	/*情報*/
	.caseList_info {
		padding: 0;
		margin: 0;
		position: relative;
		display: flex;
		flex-direction: column;
		grid-row-gap: 5px;
	}
	/*タグ・カテゴリー・地域*/
	#all_wrap .caseList_tag {
		width: 100%;
		column-gap: 5px;
		grid-row-gap: 5px;
	}
	#all_wrap .caseList_tag > span {
		display: inline-block;
		padding: 3px 7px;
		margin: 0;
		font-size: 0.8rem;
		border-radius: 3px;
	}
	/*タイトル*/
	#all_wrap .caseList > li .caseList_info > h3 {
		font-size: 15px;
	}
	#all_wrap .caseList > li .caseList_info > p {
		font-weight: 400;
		font-size: 12px;
		line-height: 1.4em;
	}
}

/*一覧ボタン*/
#category-link-wrap {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 10px;
	grid-row-gap: 10px;
}
#all_wrap #category-link-btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	column-gap: 10px;
	padding: 15px 30px;
	background: var(--main);
	border-radius: 5px;
	font-size: 16px;
	line-height: 1;
	color: #fff;
	transition: var(--ease);
}
#all_wrap #category-link-btn::after {
	content: '';
	display: block;
	width: 15px;
	height: 15px;
	aspect-ratio: 1/1;
	background-image: url('https://toso-no1.com/wp-content/uploads/arrow_w.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	transition: var(--ease);
}
#all_wrap #category-link-btn:hover {
	opacity: 0.8;
	transition: var(--ease);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*一覧ボタン*/
	#category-link-wrap {
		column-gap: 5px;
		grid-row-gap: 5px;
	}
	#all_wrap #category-link-btn {
		column-gap: 10px;
		padding: 12px 20px;
		font-size: 14px;
	}
	#all_wrap #category-link-btn::after {
		width: 13px;
		height: 13px;
	}
}

/************************************************************/
/*　施工事例詳細
/************************************************************/
#all_wrap .case_images {
	width: 100%;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 7px;
}
#all_wrap .case_images > span {
	display: block;
	width: calc((100% - 40px) / 2);
	padding: 0;
	margin: 0;
	border-radius: 10px;
	overflow: hidden;
	text-align: center;
	position: relative;
}
#all_wrap .case_images > span::before {
	content: '';
	display: block;
	padding-top: 65%;
}
#all_wrap .case_images > span::after {
	content: '';
	display: block;
	width: 100px;
	height: auto;
	aspect-ratio: 110 / 32;
	background-image: url('https://toso-no1.com/wp-content/uploads/before.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
#all_wrap .case_images > span.after::after {
	background-image: url('https://toso-no1.com/wp-content/uploads/after.svg');
}
#all_wrap .case_images > span img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .case_images > em {
	display: block;
	width: 26px;
	height: auto;
	aspect-ratio: 23 / 31;
	background-image: url('https://toso-no1.com/wp-content/uploads/arrow.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
}

/*説明*/
#all_wrap .before_info {
	width: 100%;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
}
#all_wrap .before_info dt {
	width: 100%;
	padding: 15px 30px;
	margin: 0;
	background: #2d2d2d;
	font-size: 20px;
	line-height: 1;
	color: #fff;
	font-weight: 600;
	text-align: left;
	border-radius: 5px 5px 0 0;
}
#all_wrap .before_info dd {
	padding: 25px 30px;
	margin: 0;
	background: #fff;
	border: 3px solid #2d2d2d;
	border-top: none;
	border-radius: 0 0 5px 5px;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .before_info dd p {
	padding: 0;
	margin: 0 auto 10px;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	position: relative;
}
#all_wrap .before_info dd p:last-of-type {
	margin-bottom: 0;
}
#all_wrap .before_info.after dt {
	background: var(--sub);
}
#all_wrap .before_info.after dd {
	border: 3px solid var(--sub);
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .case_images {
		width: 100%;
		padding: 0;
		margin: 0 auto 20px;
		position: relative;
		display: flex;
		justify-content: space-between;
		align-items: center;
		column-gap: 7px;
	}
	#all_wrap .case_images > span {
		display: block;
		width: calc((100% - 30px) / 2);
		padding: 0;
		margin: 0;
		border-radius: 10px;
		overflow: hidden;
		text-align: center;
		position: relative;
	}
	#all_wrap .case_images > span::after {
		width: 70px;
	}
	#all_wrap .case_images > em {
		width: 16px;
	}

	/*説明*/
	#all_wrap .before_info {
		width: 100%;
		padding: 0;
		margin: 0 auto 20px;
		position: relative;
	}
	#all_wrap .before_info dt {
		width: 100%;
		padding: 10px 20px;
		font-size: 18px;
	}
	#all_wrap .before_info dd {
		padding: 15px 20px;
	}
	#all_wrap .before_info dd p {
		padding: 0;
		margin: 0 auto 10px;
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
		position: relative;
	}
	#all_wrap .before_info dd p:last-of-type {
		margin-bottom: 0;
	}
	#all_wrap .before_info.after dt {
		background: var(--sub);
	}
	#all_wrap .before_info.after dd {
		border: 3px solid var(--sub);
	}
}

/************************************************************/
/*　トップページ　リフォームメニュー
/************************************************************/
#topMenu {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	background-color: #fff;
	border-top: 10px solid var(--sub);
	position: relative;
	z-index: 0;
}
/*リスト*/
#all_wrap .menuList {
	width: 100%;
	max-width: 1100px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 30px;
}
#all_wrap .menuList > li {
	width: calc((100% - 60px) / 3);
	padding: 0;
	margin: 0;
	background: var(--sub);
	border-radius: 20px;
	position: relative;
}
#all_wrap .menuList > li figure {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 20px 20px 0 0;
}
#all_wrap .menuList > li figure::before {
	content: '';
	display: block;
	padding-top: 65%;
}
#all_wrap .menuList > li figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.menuList_info {
	padding: 20px;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 5px;
}
#all_wrap .menuList_info > h3 {
	display: inline-flex;
	justify-content: center;
	align-content: center;
	width: fit-content;
	padding: 6px 20px;
	margin: 0 auto;
	background: var(--main);
	font-size: 20px;
	line-height: 1.2em;
	font-weight: 900;
	color: #fff;
	white-space: nowrap;
	text-align: center;
	clip-path: polygon(
		10px 0,         /* 左上の欠け */
		calc(100% - 0px) 0, /* 右上の角 */
		100% calc(100% - 10px), /* 右下の欠け */
		calc(100% - 10px) 100%, /* 右下の角 */
		0 100%,         /* 左下の角 */
		0 10px          /* 左上の欠け */
	);
	border: none;
	position: relative;
}
#all_wrap .menuList_info > p {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	font-size: 35px;
	line-height: 1;
	font-weight: 900;
	color: var(--yellow);
}
#all_wrap .menuList_info > p .en {
	font-family: var(--font-en);
	font-size: 35px;
}
#all_wrap .menuList_info > p small {
	font-family: var(--font-jp);
	font-size: 15px;
	line-height: 1;
	font-weight: 900;
	color: var(--yellow);
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topMenu {
		width: 100%;
		padding: 30px 0;
		border-top: 5px solid var(--sub);
		scroll-margin-top: 68px;
	}
	/*リスト*/
	#all_wrap .menuList {
		width: calc(100% - 40px);
		max-width: 100%;
		column-gap: 20px;
		grid-row-gap: 20px;
	}
	#all_wrap .menuList > li {
		width: calc((100% - 20px) / 2);
		border-radius: 10px;
	}
	#all_wrap .menuList > li figure {
		border-radius: 10px 10px 0 0;
	}
	.menuList_info {
		padding: 10px;
	}
	#all_wrap .menuList_info > h3 {
		padding: 4px 10px;
		font-size: 11px;
		clip-path: polygon(
			5px 0,         /* 左上の欠け */
			calc(100% - 0px) 0, /* 右上の角 */
			100% calc(100% - 5px), /* 右下の欠け */
			calc(100% - 5px) 100%, /* 右下の角 */
			0 100%,         /* 左下の角 */
			0 5px          /* 左上の欠け */
		);
	}
	#all_wrap .menuList_info > p {
		width: 100%;
		font-size: 25px;
	}
	#all_wrap .menuList_info > p .en {
		font-family: var(--font-en);
		font-size: 30px;
	}
	#all_wrap .menuList_info > p small {
		font-family: var(--font-jp);
		font-size: 0.5em;
		line-height: 1;
		font-weight: 900;
		color: var(--yellow);
	}
	#all_wrap .menuList_info > p small.tax {
		display: block;
		width: 100%;
		margin: 5px auto 0;
	}
}

/************************************************************/
/*　トップページ　施工の流れ
/************************************************************/
#topFlow {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	background-color: #e1e9fa;
	background-image: radial-gradient(circle, #c7d5f2 1px, transparent 1px), radial-gradient(circle, #c7d5f2 1px, transparent 1px);
	background-position: 0 0, 4px 8px;
	background-size: 8px 16px;
	position: relative;
	z-index: 0;
}
#topFlow::before {
	content: '';
	display: block;
	width: 100%;
	height: 150px;
	background-image: linear-gradient(to right, #3694df 0%, #3694df 50%, #366bdf 50%, #366bdf 100%);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -2;
}
#topFlow::after {
	content: '';
	display: block;
	width: 100%;
	height: 130px;
	background-color: #e1e9fa;
	background-image: radial-gradient(circle, #c7d5f2 1px, transparent 1px), radial-gradient(circle, #c7d5f2 1px, transparent 1px);
	background-position: 0 0, 4px 8px;
	background-size: 8px 16px;
	position: absolute;
	top: 20.5px;
	left: 0;
	z-index: -1;
	clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
#all_wrap #topFlow > .contHead {
	margin-bottom: 60px;
}
/*リスト*/
#all_wrap .flowList {
	width: 1100px;
	min-width: 1100px;
	padding: 0;
	margin: 0 auto 60px;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	column-gap: 60px;
}
#all_wrap .flowList > li {
	width: calc((100% - 180px) / 3);
	padding: 25px;
	margin: 0;
	background: #fff;
	border-radius: 20px;
	filter: drop-shadow(6px 6px 0 rgba(46,68,146, 0.15));
	position: relative;
}
#all_wrap .flowList > li::after {
	content: '';
	display: block;
	width: 20px;
	height: auto;
	aspect-ratio: 20 / 45;
	background-image: url('https://toso-no1.com/wp-content/uploads/arrow2.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	position: absolute;
	top: 50%;
	left: -40px;
	transform: translate(0,-50%);
	filter: unset;
}
#all_wrap .flowList > li > em {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	grid-row-gap: 5px;
	font-family: var(--font-en);
	font-size: 55px;
	line-height: 1;
	font-weight: 900;
	font-style: normal;
	color: var(--main);
	opacity: 0.5;
	position: relative;
	margin: 0 auto 20px;
}
#all_wrap .flowList > li > em small {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	font-size: 0.3em;
	line-height: 1;
	font-weight: 900;
	font-style: normal;
	color: var(--main);
	position: absolute;
	top: -0.5em;
	left: 2px;
}
#all_wrap .flowList > li > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
	border: none;
	background: none;
	position: relative;
	font-size: 25px;
	line-height: 1.2em;
	font-weight: 900;
	color: var(--main);
	text-align: left;
}
#all_wrap .flowList > li > p {
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 14px;
	line-height: 1.5em;
	font-weight: 500;
}
#all_wrap .flowList > li > .att {
	display: block;
	width: 100%;
	padding: 0;
	margin: 5px auto 0;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 10px;
	line-height: 1.4em;
	font-weight: 500;
	color: var(--red);
}
/*ODD EVEN*/
#all_wrap .flowList.even {
	margin-bottom: 0;
	justify-content: flex-end;
}
#all_wrap .flowList.odd > li:first-child::after {
	display: none;
}
/*イラスト*/
#all_wrap .flowList > li::before {
	content: '';
	display: block;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
}
#all_wrap .flowList.odd > li:nth-child(1)::before {
	width: 130px;
	height: auto;
	aspect-ratio: 315 / 254;
	background-image: url('https://toso-no1.com/wp-content/uploads/topFlow_img_1.webp');
	position: absolute;
	top: -15px;
	right: 20px;
}
#all_wrap .flowList.odd > li:nth-child(2)::before {
	width: 100px;
	height: auto;
	aspect-ratio: 250 / 258;
	background-image: url('https://toso-no1.com/wp-content/uploads/topFlow_img_2.webp');
	position: absolute;
	top: -15px;
	right: 20px;
}
#all_wrap .flowList.odd > li:nth-child(3)::before {
	width: 80px;
	height: auto;
	aspect-ratio: 200 / 184;
	background-image: url('https://toso-no1.com/wp-content/uploads/topFlow_img_3.webp');
	position: absolute;
	top: 15px;
	right: 20px;
}
#all_wrap .flowList.even > li:nth-child(1)::before {
	width: 100px;
	height: auto;
	aspect-ratio: 288 / 173;
	background-image: url('https://toso-no1.com/wp-content/uploads/topFlow_img_4.webp');
	position: absolute;
	top: 25px;
	right: 20px;
}
#all_wrap .flowList.even > li:nth-child(2)::before {
	width: 100px;
	height: auto;
	aspect-ratio: 1 / 1;
	background-image: url('https://toso-no1.com/wp-content/uploads/topFlow_img_5.webp');
	background-position: top center;
	position: absolute;
	top: -15px;
	right: 20px;
}
#all_wrap .flowList.even > li:nth-child(3)::before {
	width: 120px;
	height: auto;
	aspect-ratio: 338 / 282;
	background-image: url('https://toso-no1.com/wp-content/uploads/topFlow_img_6.webp');
	position: absolute;
	position: absolute;
	top: -15px;
	right: 10px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topFlow {
		width: 100%;
		padding: 50px 0 30px;
	}
	#topFlow::before {
		height: 50px;
	}
	#topFlow::after {
		height: 40px;
		top: 10.5px;
	}
	#all_wrap #topFlow > .contHead {
		margin-bottom: 30px;
	}
	/*リスト*/
	#all_wrap .flowList {
		width: calc(100% - 40px);
		min-width: calc(100% - 40px);
		padding: 0;
		margin: 0 auto 40px;
		justify-content: center;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 40px;
	}
	#all_wrap .flowList > li {
		width: 100%;
		padding: 20px;
	}
	#all_wrap .flowList > li::after {
		content: '';
		top: unset;
		bottom: -40px;
		left: 50%;
		transform: translate(-50%,0) rotate(90deg);
		filter: unset;
	}
	#all_wrap .flowList > li > em {
		display: flex;
		justify-content: flex-start;
		align-items: center;
		/* flex-wrap: wrap; */
		column-gap: 5px;
		font-size: 25px;
		margin: 0 auto 10px;
	}
	#all_wrap .flowList > li > em small {
		display: inline-block;
		width: auto;
		padding: 0;
		margin: 0;
		font-size: 20px;
		position: relative;
		top: unset;
		left: unset;
	}
	#all_wrap .flowList > li > h3 {
		margin: 0 auto 10px;
		font-size: 20px;
	}
	#all_wrap .flowList > li > p {
		font-size: 14px;
	}
	/*ODD EVEN*/
	#all_wrap .flowList.even {
		margin-bottom: 0;
		justify-content: flex-end;
	}
	#all_wrap .flowList.odd > li:first-child::after {
		display: block;
	}
	/*イラスト*/
	#all_wrap .flowList.odd > li:nth-child(1)::before {
		width: 100px;
	}
	#all_wrap .flowList.odd > li:nth-child(2)::before {
		width: 80px;
	}
	#all_wrap .flowList.odd > li:nth-child(3)::before {
		width: 70px;
	}
	#all_wrap .flowList.even > li:nth-child(1)::before {
		width: 90px;
	}
	#all_wrap .flowList.even > li:nth-child(2)::before {
		width: 100px;
	}
	#all_wrap .flowList.even > li:nth-child(3)::before {
		width: 90px;
	}
	#all_wrap .flowList.even > li:last-child::after {
		display: none;
	}
}

/************************************************************/
/*　トップページ　よくある質問
/************************************************************/
#topFaq {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	background: #fff;
	position: relative;
}
/*リスト*/
#all_wrap .faqList {
	width: 100%;
	max-width: 850px;
	padding: 0;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	grid-row-gap: 0;
}
#all_wrap .faqList > dl {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	background: none;
	border-radius: 20px;
}
#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: 30px 60px 30px 0;
	margin: 0 auto;
	background: none;
	border-radius: 0;
	border-bottom: 1px dotted #cfcfcf;
	font-size: 20px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
	position: relative;
	cursor: pointer;
	transition: var(--ease);
}
#all_wrap .faqList > dl > dt:hover {
	color: var(--main);
	transition: var(--ease);
}
#all_wrap .faqList > dl > dt.active {
	color: var(--main);
	transition: var(--ease);
}
#all_wrap .faqList > dl > dt::before {
	content: 'Q';
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 35px;
	min-width: 35px;
	height: 35px;
	padding: 0 0 3px;
	aspect-ratio: 1/1;
	font-family: var(--font-en);
	font-size: 22px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	background: var(--sub);
	border-radius: 5px;
	transition: var(--ease);
}
#all_wrap .faqList > dl > dt:hover::before,
#all_wrap .faqList > dl > dt.active::before {
	transition: var(--ease);
}
#all_wrap .faqList > dl > dt span {
	display: block;
	width: 20px;
	height: 20px;
	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: 20px;
	height: 3px;
	background: var(--sub);
	border-radius: 3px;
	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: 20px;
	height: 3px;
	background: var(--sub);
	border-radius: 3px;
	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 > dt:hover span::before,
#all_wrap .faqList > dl > dt:hover span::after,
#all_wrap .faqList > dl > dt.active span::before,
#all_wrap .faqList > dl > dt.active span::after {
	background: var(--sub);
	transition: var(--ease);
}
#all_wrap .faqList > dl > dd {
	margin: 0 auto;
	padding: 30px 0px 30px 55px;
	background: #fff;
	font-size: 15px;
	line-height: 2;
	font-weight: 500;
}
#all_wrap .faqList > dl > dd p {
	padding: 0;
	margin: 0 auto 10px;
	font-size: 15px;
	line-height: 2;
	font-weight: 500;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topFaq {
		width: 100%;
		padding: 30px 0;
		margin: 0 auto;
		background: #fff;
		position: relative;
		scroll-margin-top: 68px;
	}
	/*リスト*/
	#all_wrap .faqList {
		width: calc(100% - 40px);
		max-width: 100%;
	}
	#all_wrap .faqList > dl {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		background: none;
		border-radius: 20px;
	}
	#all_wrap .faqList > dl > dt {
		column-gap: 15px;
		width: 100%;
		padding: 15px 25px 15px 0;
		font-size: 14px;
	}
	#all_wrap .faqList > dl > dt::before {
		width: 25px;
		min-width: 25px;
		height: 25px;
		padding: 0 0 3px;
		font-size: 14px;
	}
	#all_wrap .faqList > dl > dt span {
		display: block;
		width: 10px;
		height: 10px;
	}
	#all_wrap .faqList > dl > dt span::before {
		content: '';
		display: block;
		width: 10px;
		height: 1px;
		border-radius: 0;
	}
	#all_wrap .faqList > dl > dt span::after {
		content: '';
		display: block;
		width: 10px;
		height: 1px;
		border-radius: 0;
	}
	#all_wrap .faqList > dl > dd {
		margin: 0 auto;
		padding: 15px 0 15px 0;
		font-size: 14px;
		line-height: 1.7em;
		font-weight: 500;
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
	}
	#all_wrap .faqList > dl > dd p {
		padding: 0;
		margin: 0 auto 10px;
		font-size: 14px;
		line-height: 1.7em;
		font-weight: 500;
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
	}
}


/************************************************************/
/*　トップページ　お役立ちコラム
/************************************************************/
#topColumn {
	width: 100%;
	padding: 280px 0 100px;
	margin: 0 auto;
	background: #fff;
	position: relative;
	z-index: 0;
}
#topColumn::before {
	content: '';
	display: block;
	width: 100%;
	height: 500px;
	padding: 0;
	margin: 0;
	background-image: url('https://toso-no1.com/wp-content/uploads/topColumn_bg.webp');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center bottom;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -2;
}
#topColumn::after {
	content: '';
	display: block;
	width: 100%;
	height: 500px;
	padding: 0;
	margin: 0;
	background: #2e4492;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	opacity: 0.5;
}
.topColumn_wrap {
	width: 100%;
	max-width: 1260px;
	min-width: 1260px;
	padding: 65px 80px;
	margin: 0 auto;
	border-radius: 25px 25px 0 0;
	background: #fff;
	position: relative;
}
.topColumn_wrap::before,
.topColumn_wrap::after {
	content: '';
	display: block;
	width: 15px;
	height: 15px;
	background: var(--sub);
	border-radius: 50%;
	position: absolute;
	top: 20px;
	left: 20px;
}
.topColumn_wrap::after {
	left: unset;
	right: 20px;
}
/*リスト*/
#all_wrap .columnList {
	width: 100%;
	max-width: 1100px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 40px;
}
#all_wrap .columnList > li {
	width: calc((100% - 60px) / 3);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .columnList > li > figure {
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 10px;
}
#all_wrap .columnList > li > figure::before {
	content: '';
	display: block;
	padding-top: 65%;
}
#all_wrap .columnList > li > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .columnList > li > .columnList_info {
	width: 100%;
	padding: 0;
	margin: auto;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
#all_wrap .columnList > li > .columnList_info .tags {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 5px;
	grid-row-gap: 5px;
}
#all_wrap .columnList > li > .columnList_info .tags span {
	display: inline-block;
	padding: 5px;
	margin: 0;
	font-size: 10px;
	line-height: 1;
	font-weight: 500;
	color: var(--sub);
	cursor: pointer;
	background: #fff;
	border: 1px solid var(--sub);
	border-radius: 5px;
	position: relative;
	transition: var(--ease);
}
#all_wrap .columnList > li > .columnList_info .tags span.date {
	display: inline-block;
	font-size: 12px;
	line-height: 1;
	color: #969696;
	background: none;
	border: none;
}
#all_wrap .columnList > li > .columnList_info h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .columnList > li > .columnList_info h3 a {
	font-size: 16px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
	transition: var(--ease);
}
#all_wrap .columnList > li > .columnList_info h3 a:hover {
	color: var(--sub);
	transition: var(--ease);
}
#all_wrap .columnList > li > .columnList_info > p {
	padding: 0;
	margin: 0;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	line-height: 1.4em;
	font-size: 12px;
	color: #777;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topColumn {
		width: 100%;
		padding: 100px 0 30px;
	}
	#topColumn::before {
		width: 100%;
		height: 200px;
		background-image: url('https://toso-no1.com/wp-content/uploads/topColumn_bg_sp.webp');
	}
	#topColumn::after {
		width: 100%;
		height: 200px;
	}
	.topColumn_wrap {
		width: calc(100% - 40px);
		max-width: calc(100% - 40px);
		min-width: calc(100% - 40px);
		padding: 20px 0 0;
		border-radius: 20px 20px 0 0;
	}
	.topColumn_wrap::before,
	.topColumn_wrap::after {
		width: 10px;
		height: 10px;
		top: 15px;
		left: 15px;
	}
	.topColumn_wrap::after {
		left: unset;
		right: 15px;
	}
	/*リスト*/
	#all_wrap .columnList {
		width: 100%;
		max-width: 100%;
		column-gap: 20px;
		grid-row-gap: 20px;
	}
	#all_wrap .columnList.sub {
		width: calc(100% - 40px);
		max-width: 100%;
		column-gap: 20px;
		grid-row-gap: 20px;
	}
	#all_wrap .columnList > li {
		width: calc((100% - 20px) / 2);
	}
	#all_wrap .columnList > li > figure {
		width: 100%;
		padding: 0;
		margin: 0 auto 5px;
		border-radius: 10px;
	}
	#all_wrap .columnList > li > .columnList_info {
		width: 100%;
		grid-row-gap: 5px;
	}
	#all_wrap .columnList > li > .columnList_info .tags {
		width: 100%;
		column-gap: 5px;
		grid-row-gap: 5px;
	}
	#all_wrap .columnList > li > .columnList_info .tags span {
		display: inline-block;
		padding: 3px;
		font-size: 0.8rem;
		line-height: 1;
		border-radius: 5px;
	}
	#all_wrap .columnList > li > .columnList_info .tags span.date {
		font-size: 10px;
		display: block;
		width: 100%;
		padding: 0;
		margin: 0;
	}
	#all_wrap .columnList > li > .columnList_info h3 {
		width: 100%;
	}
	#all_wrap .columnList > li > .columnList_info h3 a {
		font-size: 12px;
	}
	#all_wrap .columnList > li > .columnList_info > p {
		display: none;
	}
}

/************************************************************/
/*　トップページ　インフォメーション
/************************************************************/
#topInformation {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
}
.topInformation_cont {
	width: 50%;
	width: 100%;
	padding: 60px 50px 80px;
	margin: 0;
	position: relative;
	z-index: 0;
}
#topGReview.topInformation_cont {
	background: #3e506d;
}
#topGReview.topInformation_cont::before {
	content: '';
	display: block;
	width: 100%;
	height: 150px;
	clip-path: polygon(0 0, 100% 0, 100% 20%, 0% 100%);
	background: #253357;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
#topNews.topInformation_cont {
	background: #366bdf;
}
#topNews.topInformation_cont::before {
	content: '';
	display: block;
	width: 100%;
	height: 150px;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 20%);
	background: #1457c2;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
/*タイトル*/
#all_wrap .topInformation_cont > header {
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
#all_wrap .topInformation_cont > header em {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 10px;
	font-family: var(--font-en);
	font-size: 20px;
	line-height: 1;
	font-weight: 900;
	color: #fff;
	text-align: center;
	font-style: normal;
}
#all_wrap .topInformation_cont > header em::before,
#all_wrap .topInformation_cont > header em::after {
	content: '';
	display: block;
	width: 65px;
	height: 4px;
	background: none;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}
#all_wrap .topInformation_cont > header > h2 {
	padding: 0;
	margin: 0 auto;
	border: none;
	background: none;
	position: relative;
	text-align: center;
	font-size: 40px;
	line-height: 1;
	font-weight: 900;
	color: #fff;
}
#all_wrap .topInformation_cont > header > h2 small {
	font-size: 25px;
	line-height: 1;
	font-weight: 900;
	color: #fff;
}
#all_wrap .topInformation_cont > header > h2 strong {
	display: inline-block;
	font-size: 50px;
	line-height: 1;
	font-weight: 900;
	background: linear-gradient(to top, #fff 0%, #fff 25%, #ffda78 25%, #fff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
/*リスト*/
#all_wrap .topInfoBox {
	width: 100%;
	max-width: 800px;
	padding: 30px 20px 30px 30px;
	margin: 0 auto;
	border-radius: 20px;
	background: #fff;
}
#all_wrap .topInfoBox > ul {
	width: 100%;
	height: 350px;
	padding: 0 20px 0 0;
	margin: 0;
	list-style: none;
	overflow-y: scroll;
}
/* スクロールの幅の設定 */
#all_wrap .topInfoBox > ul::-webkit-scrollbar {
	width: 3px;
	height: 10px;
}
/* スクロールの背景の設定 */
#all_wrap .topInfoBox > ul::-webkit-scrollbar-track {
	border-radius: 2px;
	background: #E1E1E1;
}
/* スクロールのつまみ部分の設定 */
#all_wrap .topInfoBox > ul::-webkit-scrollbar-thumb {
	border-radius: 2px;
	background: #373737;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topInformation {
		width: 100%;
	}
	.topInformation_cont {
		width: 100%;
		width: 100%;
		padding: 20px;
	}
	#topGReview.topInformation_cont::before {
		height: 50px;
	}
	#topNews.topInformation_cont::before {
		height: 50px;
	}
	/*タイトル*/
	#all_wrap .topInformation_cont > header {
		width: 100%;
		margin: 0 auto 20px;
		grid-row-gap: 5px;
	}
	#all_wrap .topInformation_cont > header em {
		column-gap: 10px;
		font-size: 14px;
	}
	#all_wrap .topInformation_cont > header em::before,
	#all_wrap .topInformation_cont > header em::after {
		width: 50px;
	}
	#all_wrap .topInformation_cont > header > h2 {
		font-size: 25px;
	}
	#all_wrap .topInformation_cont > header > h2 small {
		font-size: 30px;
	}
	#all_wrap .topInformation_cont > header > h2 strong {
		font-size: 30px;
	}
	/*リスト*/
	#all_wrap .topInfoBox {
		width: 100%;
		max-width: 100%;
		padding: 20px;
	}
	#all_wrap .topInfoBox > ul {
		width: 100%;
		height: 300px;
		padding: 0 20px 0 0;
	}
}

/*レビュー*/
#all_wrap .greviewList {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
}
#all_wrap .greviewList > li {
	width: 100%;
	padding: 15px 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	grid-row-gap: 7px;
	border-bottom: 1px solid #d5d5d5;
}
#all_wrap .greviewList > li:first-child {
	padding-top: 0;
}
#all_wrap .greviewList.sub {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 30px;
}
#all_wrap .greviewList.sub > li {
	width: calc(50% - 15px);
	padding: 15px 20px 20px;
	margin: 0;
	display: flex;
	flex-direction: column;
	grid-row-gap: 7px;
	border-bottom: none;
	background: var(--base3);
	border-radius: 20px;
}
#all_wrap .greviewList > li h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	display: flex;
	justify-content: flex-start;
	align-items: baseline;
	column-gap: 7px;
}
/* - 星評価*/
.star5_rating {
	position: relative;
	z-index: 0;
	display: inline-block;
	white-space: nowrap;
	color: #CCCCCC; /* グレーカラー 自由に設定化 */
	font-size: 18px;
}
.star5_rating:before, .star5_rating:after {
	content: '★★★★★';
}
.star5_rating:after {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	overflow: hidden;
	white-space: nowrap;
	color: #ffb100;
}
.star5_rating[data-rate="5"]:after{ width: 100%; } /* 星5 */
.star5_rating[data-rate="4.5"]:after{ width: 90%; } /* 星4.5 */
.star5_rating[data-rate="4"]:after{ width: 80%; } /* 星4 */
.star5_rating[data-rate="3.5"]:after{ width: 70%; } /* 星3.5 */
.star5_rating[data-rate="3"]:after{ width: 60%; } /* 星3 */
.star5_rating[data-rate="2.5"]:after{ width: 50%; } /* 星2.5 */
.star5_rating[data-rate="2"]:after{ width: 40%; } /* 星2 */
.star5_rating[data-rate="1.5"]:after{ width: 30%; } /* 星1.5 */
.star5_rating[data-rate="1"]:after{ width: 20%; } /* 星1 */
.star5_rating[data-rate="0.5"]:after{ width: 10%; } /* 星0.5 */
.star5_rating[data-rate="0"]:after{ width: 0%; } /* 星0 */

#all_wrap .greviewList > li h3 em {
	font-size: 25px;
	line-height: 1;
	font-weight: 700;
	font-family: var(--font-en);
	color: var(--orange);
	font-style: normal;
}
#all_wrap .greviewList > li p {
	padding: 0;
	margin: 0;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	line-height: 1.4em;
}

/*お知らせ*/
#all_wrap .newsList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
}
#all_wrap .newsList.sub {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 30px;
}
#all_wrap .newsList > li {
	width: 100%;
	padding: 15px 0;
	margin: 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 15px;
}
#all_wrap .newsList > li:first-child {
	padding-top: 0;
}
#all_wrap .newsList.sub > li {
	width: calc(50% - 15px);
	padding: 20px;
	margin: 0;
	background: var(--base3);
	border-radius: 20px;
	position: relative;
	transition: var(--ease);
}
#all_wrap .newsList.sub > li:hover {
	opacity: 0.8;
	transition: var(--ease);
}
#all_wrap .newsList > li > a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	cursor: pointer;
}
#all_wrap .newsList > li > figure {
	width: 150px;
	min-width: 150px;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 10px;
}
#all_wrap .newsList > li > figure::before {
	content: '';
	display: block;
	padding-top: 65%;
}
#all_wrap .newsList > li > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .newsList > li .newsList_info {
	display: flex;
	flex-direction: column;
	grid-row-gap: 5px;
}
#all_wrap .newsList > li .newsList_info .tags {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 5px;
	grid-row-gap: 5px;
}
#all_wrap .newsList > li .newsList_info .tags span {
	display: inline-block;
	padding: 4px 8px;
	margin: 0;
	font-size: 10px;
	line-height: 1;
	font-weight: 500;
	color: var(--sub);
	cursor: pointer;
	background: #fff;
	border: 1px solid var(--sub);
	border-radius: 5px;
	position: relative;
	transition: var(--ease);
}
#all_wrap .newsList > li h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
}
#all_wrap .newsList > li h3 a {
	font-size: 14px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .newsList > li .date {
	font-size: 12px;
	line-height: 1;
	color: #c8c8c8;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*お知らせ*/
	#all_wrap .newsList {
		width: 100%;
	}
	#all_wrap .newsList.sub {
		width: calc(100% - 40px);
		column-gap: 0;
		grid-row-gap: 20px;
		margin: 0 auto;
	}
	#all_wrap .newsList > li {
		width: 100%;
		padding: 15px 0;
		margin: 0;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		column-gap: 15px;
		border-bottom: 1px solid #d5d5d5;
	}
	#all_wrap .newsList > li:first-child {
		padding-top: 0;
	}
	#all_wrap .newsList.sub > li {
		width: 100%;
		padding: 10px;
		margin: 0;
		background: var(--base3);
		border: none;
		border-radius: 5px;
		position: relative;
		transition: var(--ease);
	}
	#all_wrap .newsList > li > figure {
		width: 100px;
		min-width: 100px;
		border-radius: 5px;
	}
	#all_wrap .newsList > li > figure::before {
		padding: 50%;
	}
	#all_wrap .newsList > li .newsList_info {
		display: flex;
		flex-direction: column;
		grid-row-gap: 5px;
		width: calc(100% - 15px - 100px);
	}
	#all_wrap .newsList > li .newsList_info .tags {
		width: 100%;
	}
	#all_wrap .newsList > li .newsList_info .tags span {
		display: inline-block;
		padding: 3px 5px;
		font-size: 0.8rem;
		border-radius: 3px;
	}
	#all_wrap .newsList > li h3 a {
		font-size: 12px;
	}
	#all_wrap .newsList > li .date {
		font-size: 10px;
	}
}

/************************************************************/
/*　トップページ　ショウルーム
/************************************************************/
#topShowroom {
	width: 100%;
	padding: 0 0 100px;
	margin: 0 auto;
	position: relative;
	background: var(--base);
}
#all_wrap .imageHead {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#all_wrap .imageHead > span {
	display: block;
	width: calc(100% / 3);
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}
#all_wrap .imageHead > span::before {
	content: '';
	display: block;
	padding-top: 65%;
}
#all_wrap .imageHead > span img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
/*タイトル*/
#all_wrap .showroom_info {
	width: 100%;
	max-width: 1100px;
	padding: 80px 0 50px;
	margin: 0 auto;
	position: relative;
}
#all_wrap .showroom_info > header {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
#all_wrap .showroom_info > header em {
	display: inline-block;
	padding: 0;
	margin: 0;
	font-family: var(--font-en);
	font-size: 25px;
	line-height: 1;
	font-weight: 900;
	color: var(--orange);
	font-style: normal;
}
#all_wrap .showroom_info > header > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	font-size: 55px;
	line-height: 1;
	font-weight: 900;
	color: var(--text);
	border: none;
	background: none;
}
#all_wrap .showroom_btn {
	display: inline-flex !important;
	justify-content: center;
	align-items: center;
	column-gap: 10px;
	padding: 15px 30px;
	background: #fff;
	border: 1px solid var(--orange);
	border-radius: 5px;
	font-size: 16px;
	line-height: 1;
	color: var(--orange);
	transition: var(--ease);
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%);
}
#all_wrap .showroom_btn.pc {
	display: inline-flex !important;
}
#all_wrap .showroom_btn.sp {
	display: none !important;
}
#all_wrap .showroom_btn::after {
	content: '';
	display: block;
	width: 15px;
	height: 15px;
	aspect-ratio: 1/1;
	background-image: url('https://toso-no1.com/wp-content/uploads/arrow_orange.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	transition: var(--ease);
}
#all_wrap .showroom_btn:hover {
	background: var(--orange);
	color: #fff;
	transition: var(--ease);
}
#all_wrap .showroom_btn:hover::after {
	background-image: url('https://toso-no1.com/wp-content/uploads/arrow_orange_w.svg');
}
#all_wrap .showroom_info > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	font-size: 25px;
	line-height: 1;
	font-weight: 900;
	color: var(--text);
	border: none;
	background: none;
}
#all_wrap .showroom_info > p {
	padding: 0;
	margin: 0;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
/*ショウルームリスト*/
#all_wrap .showroomList {
	width: 100%;
	max-width: 1100px;
	padding: 50px;
	margin: 0 auto;
	position: relative;
	background: #fff;
	border-radius: 20px;
	filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
	display: flex;
	flex-direction: column;
	grid-row-gap: 50px;
}
#all_wrap .showroomList > li {
	width: 100%;
	padding: 0 0 50px;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 30px;
	border-bottom: 1px solid #cfcfcf;
}
#all_wrap .showroomList > li:last-child {
	border: none;
	padding-bottom: 0;
}
#all_wrap .showroomList > li > figure {
	width: 520px;
	min-width: 520px;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 10px;
}
#all_wrap .showroomList > li > figure::before {
	content: '';
	display: block;
	padding-top: 56.25%;
}
#all_wrap .showroomList > li > figure iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
#all_wrap .showroomList > li .showroomList_info {
	width: calc(100% - 520px - 30px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .showroomList > li .showroomList_info header em {
	display: inline-block;
	padding: 5px 10px 6px;
	margin: 0 0 10px;
	background: var(--orange);
	font-size: 15px;
	line-height: 1;
	font-weight: 900;
	color: #fff;
	font-style: normal;
	border-radius: 30px;
}
#all_wrap .showroomList > li .showroomList_info header h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	border: none;
	background: none;
	font-size: 40px;
	line-height: 1.2em;
	font-weight: 900;
	color: var(--text);
	text-align: left;
}
#all_wrap .showroomList > li .showroomList_info > p {
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	line-height: 1.4em;
}
#all_wrap .showroomList > li .showroomList_info > tel {
	display: inline-block;
	padding: 0;
	margin: 0;
	font-size: 25px;
	line-height: 1;
	font-family: var(--font-en);
	font-style: normal;
	color: var(--orange);
	text-decoration: none;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topShowroom {
		width: 100%;
		padding: 0 0 30px;
	}
	#all_wrap .imageHead {
		width: 100%;
	}
	/*タイトル*/
	#all_wrap .showroom_info {
		width: 100%;
		max-width: 100%;
		padding: 30px 20px;
	}
	#all_wrap .showroom_info > header {
		width: 100%;
		margin: 0 auto 15px;
		grid-row-gap: 5px;
	}
	#all_wrap .showroom_info > header em {
		font-size: 12px;
	}
	#all_wrap .showroom_info > header > h2 {
		font-size: 25px;
	}
	#all_wrap .showroom_btn {
		width: calc(100% - 40px);
		padding: 15px 30px;
		margin: 0 auto;
		font-size: 16px;
		position: relative;
		top: unset;
		right: unset;
		transform: unset;
	}
	#all_wrap .showroom_btn.pc {
		display: none !important;
	}
	#all_wrap .showroom_btn.sp {
		display: flex !important;
	}
	#all_wrap .showroom_btn::after {
		content: '';
		display: block;
		width: 15px;
		height: 15px;
	}
	#all_wrap .showroom_info > h3 {
		margin: 0 auto 10px;
		font-size: 18px;
		line-height: 1.2em;
	}
	/*ショウルームリスト*/
	#all_wrap .showroomList {
		width: calc(100% - 40px);
		max-width: 100%;
		padding: 20px;
		margin: 0 auto 20px;
		border-radius: 20px;
		grid-row-gap: 20px;
	}
	#all_wrap .showroomList > li {
		width: 100%;
		padding: 0 0 20px;
		column-gap: 15px;
		grid-row-gap: 15px;
		flex-wrap: wrap;
	}
	#all_wrap .showroomList > li > figure {
		width: 100%;
		min-width: 100%;
	}
	#all_wrap .showroomList > li .showroomList_info {
		width: calc(100%);
	}
	#all_wrap .showroomList > li .showroomList_info header em {
		display: inline-block;
		padding: 5px 10px 6px;
		margin: 0 0 5px;
		font-size: 12px;
		border-radius: 30px;
	}
	#all_wrap .showroomList > li .showroomList_info header h2 {
		margin: 0 auto 10px;
		font-size: 25px;
	}
	#all_wrap .showroomList > li .showroomList_info > p {
		padding: 0;
		margin: 0 auto 10px;
	}
	#all_wrap .showroomList > li .showroomList_info > tel {
		font-size: 25px;
	}
}


/************************************************************/
/*　固定ボタン
/************************************************************/
#all_wrap .fixedContact {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 100;
	display: flex;
	justify-content: space-between;
}
#all_wrap .fixedContact > a {
	width: 50%;
	padding: 17px 10px;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 5px;
	font-size: 16px;
	line-height: 1;
	color: #fff;
}
#all_wrap .fixedContact > a.mail {
	background: var(--orange);
}
#all_wrap .fixedContact > a.mail::before {
	content: '';
	display: block;
	width: auto;
	height: 15px;
	aspect-ratio: 22 / 17;
	background-image: url('https://toso-no1.com/wp-content/uploads/icon_mail_w.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 100%;
}
#all_wrap .fixedContact > a.line {
	background: var(--line);
}
#all_wrap .fixedContact > a.line::before {
	content: '';
	display: block;
	width: auto;
	height: 18px;
	aspect-ratio: 53 / 50;
	background-image: url('https://toso-no1.com/wp-content/uploads/icon_line_w.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 100%;
}