/*
Theme Name: eworks child
Version: 2.0.0
Template: eworks
*/

/************************************************************/
/*　リセット
/************************************************************/
:root {
	--main: #025ac8;
	--sub:  #00c48b;
	--base: #e1f0ff;
	--act:  #f30a18;
	--gray: #fafafa;
	--text: #111111;
	--line: #04ad4b;
	--shade: drop-shadow(2px 3px 6px rgba(41, 76, 122, 0.15)); /*filter用*/
	--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: "LINE Seed JP", sans-serif;
	--font-mincho: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	--font-awe: "Font Awesome 6 Free";
	--ease: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
*:focus {
	outline: none;
}
html{
	box-sizing: border-box;
	line-height:1;
	font-size: 62.5%; /*  50 56.25 62.5 68.75 75*/
	-webkit-font-smoothing: antialiased;
}
::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;
	color: var(--text);
	background: #fff;
}


/*フォント*/
body,
p,
.articleBody p {
	font-size: 15px;
	font-weight: 500;
	line-height: 2;
}
a[href^="tel:"] {
	color: inherit;
	text-decoration: none;
}
@media screen and (max-width: 768px){
	body {
		font-size: 14px;
		font-weight: 500;
		line-height: 2;
	}
	p,
	.articleBody p {
		font-size: 14px;
		font-weight: 500;
		line-height: 2;
		padding: 0;
		margin: 0 auto 1em;
	}
	.articleBody p:last-of-type {
		margin-bottom: 0;
	}
}

/*フォーム*/
button,
input,
select,
textarea {
	margin: 0;
	padding: 0;
	border: none;
	background: transparent;
	font: inherit;
	color: inherit;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	outline: none;
	border-radius: 0;          /* iOSによる角丸を消す */
	box-sizing: border-box;
}
select::-ms-expand {
	display: none;
}


/*PC・タブレット・スマホ 表示*/
.pc { display:block !important; }
.tb { display:none !important; }
.sp { display:none !important; }
@media screen and (max-width: 768px){   
	.pc { display:none !important; }
	.tb { display:block !important; }
	.sp { display:none !important; }
}
@media screen and (max-width: 480px){   
	.pc { display:none !important; }
	.tb { display:none !important; }
	.sp { display:block !important; }
}

.pc_none { display:none !important; }
.tb_none { display:block!important; }
.sp_none { display:block !important; }
@media screen and (max-width: 768px){   
	.pc_none { display:block !important; }
	.tb_none { display:none !important; }
	.sp_none { display:block !important; }
}
@media screen and (max-width: 480px){   
	.pc_none { display:block !important; }
	.tb_none { display:block !important; }
	.sp_none { display:none !important; }
}


/************************************************************/
/*　スクロールアニメーション
/************************************************************/

/* JS有効時だけ初期状態を適用 */
.js .sa {
	opacity: 0;
	transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
		transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	will-change: opacity, transform;
	backface-visibility: hidden;
}
/* 表示 */
.js .sa.show {
	opacity: 1;
}
/* アニメーション定義 */
.js .fade-up {
	transform: translateY(30px);
}
.js .fade-up.show {
	transform: translateY(0);
}
.js .fade-down {
	transform: translateY(-30px);
}
.js .fade-down.show {
	transform: translateY(0);
}
.js .slide-left {
	transform: translateX(-30px);
}
.js .slide-left.show {
	transform: translateX(0);
}
.js .slide-right {
	transform: translateX(30px);
}
.js .slide-right.show {
	transform: translateX(0);
}
.js .zoom-in {
	transform: scale(0.9);
}
.js .zoom-in.show {
	transform: scale(1);
}
.js .rotate-in {
	transform: rotate(-5deg) scale(0.95);
}
.js .rotate-in.show {
	transform: rotate(0) scale(1);
}
/* フェードだけ */
.js .fade-in {
	transform: none;
}
/*ディレイ*/
.js .delay-1 { transition-delay: 0.3s; }
.js .delay-2 { transition-delay: 0.6s; }
.js .delay-3 { transition-delay: 0.9s; }
.js .delay-4 { transition-delay: 1.2s; }
.js .delay-5 { transition-delay: 1.5s; }
.js .delay-6 { transition-delay: 1.8s; }
.js .delay-7 { transition-delay: 2.1s; }
.js .delay-8 { transition-delay: 2.4s; }
.js .delay-9 { transition-delay: 2.7s; }
.js .delay-10 { transition-delay: 3.0s; }

/************************************************************/
/*　構成
/************************************************************/
body#main #contents {
	width: 100%;
	padding: 0;
	margin: 0 auto;
}
body#sub {
	padding-top: 0;
}
body#sub #contents {
	width: 100%;
	padding: 0;
	margin: 0 auto;
}

/*ページトップ*/
.pagetop {
	opacity: 1;
}
.pagetop a {
	background: var(--main);
	color: #fff;
}

/*コンテンツ*/
#archive_wrap {
	width: 100%;
	max-width: 1200px;
	padding: 100px 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	column-gap: 50px;
}

/*アーカイブ*/
.archiveContent {
	width: 100%;
	padding: 0;
	margin: 0 auto;
}

.full-container,
.full-container .main {
	width: 100%;
	max-width: 100%;
}
body#main .articleBody,
body#sub .articleBody {
	margin: 0 auto;
}

/*固定ページ*/
.pageContent {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
.pageContent.full {
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin: 0 auto;
}
.pageContent.works {
	width: 100%;
	max-width: 1200px;
	padding: 0 0 100px;
	margin: 0 auto;
}

/*1カラム*/
.pageContent.one-column {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
body#sub .pageContent.one-column .articleBody {
	width: 100%;
	padding: 100px 0;
	margin: 0;
	position: relative;
}

/*2カラム*/
.pageContent.two-columns {
	width: 100%;
	max-width: 1200px;
	padding: 100px 0;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	column-gap: 50px;
}
body#sub .pageContent.two-columns .articleBody {
	width: calc(100% - 50px - 250px);
	padding: 0;
	margin: 0;
	position: relative;
	order: 1;
}

/*記事詳細ページ*/
body#sub.single .pageContent.two-columns {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto 100px;
	display: flex;
	justify-content: center;
	column-gap: 50px;
	order: 1;
}
body#sub.single .pageContent.two-columns .articleBody {
	width: calc(100% - 50px - 250px);
	padding: 0;
	margin: 0;
	position: relative;
	order: 1;
}

/*サイドバー*/
#topColumn .side {
	width: 250px;
	min-width: 250px;
	padding: 0;
	margin: 0;
	position: relative;
}
body#sub.single .side,
body#sub .side {
	width: 250px;
	min-width: 250px;
	padding: 0;
	margin: 0;
	position: relative;
}
.sidebar-right .side,
.sidebar-left .side {
	margin: 0;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	body#main #contents {
		width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	body#sub {
		padding-top: 0;
	}
	body#sub #contents {
		width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	
	/*アーカイブ*/
	#archive_wrap {
		width: 100%;
		max-width: 100%;
		padding: 40px 20px;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 30px;
	}
	.archiveContent {
		padding: 0;
	}
	
	/*固定ページ*/
	.pageContent {
		width: 100%;
		max-width: 100%;
		padding: 20px 20px;
	}
	.pageContent.full {
		width: 100%;
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	.pageContent.works {
		width: 100%;
		max-width: 100%;
		padding: 20px 20px;
		margin: 0 auto;
	}

	/*1カラム*/
	.pageContent.one-column {
		width: 100%;
		max-width: 100%;
		padding: 40px 20px;
	}
	body#sub .pageContent.one-column .articleBody {
		width: 100%;
		padding: 0;
	}

	/*2カラム*/
	.pageContent.two-columns {
		width: 100%;
		max-width: 100%;
		padding: 40px 20px;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 40px;
	}
	body#sub .pageContent.two-columns .articleBody {
		width: 100%;
		padding: 0;
	}

	/*記事詳細ページ*/
	body#sub.single .pageContent.two-columns {
		width: 100%;
		max-width: 100%;
		padding: 20px 20px;
		margin: 0 auto;
		justify-content: center;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 40px;
	}
	body#sub.single .pageContent.two-columns .articleBody {
		width: 100%;
		padding: 0;
	}
	
	/*サイドバー*/
	.side {
		width: 100%;
		min-width: 100%;
		padding: 0;
		margin: 0 auto;
		display: none;
	}
	body#sub.single .side {
		width: 100%;
		min-width: 100%;
	}
}

/************************************************************/
/*　Gutenberg
/************************************************************/
/*グループ用*/
.mp0 { padding: 0 !important; margin: 0 !important; }

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

/*テーブル*/
#contents table,
body#main table {
	width: 100%;
	max-width: 1000px;
	margin-right: auto;
	margin-left: auto;
}

/*ボタン*/
.btnList {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 20px;
	grid-row-gap: 10px;
	margin-top: 2em;
}
.btnList.center {
	justify-content: center;
}
.btnList > a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	column-gap: 10px;
	padding: 12px 30px;
	margin: 0;
	background: var(--text);
	font-size: 15px;
	line-height: 1;
	font-weight: 400;
	color: #fff;
	text-align: center;
	text-decoration: none;
	transition: var(--ease);
	position: relative;
	z-index: 0;
}
.btnList > a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	transform: scaleX(0);
	transform-origin: right;
	transition: var(--ease);
	transition-property: transform;
	background: var(--main);
	z-index: -1;
}
.btnList > a:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}
.btnList > a::after {
	content: '';
	display: block;
	width: 20px;
	height: 1px;
	background-image: linear-gradient(to right, #fff 0%, #fff 50%, var(--text) 50%, var(--text) 100%);
	position: absolute;
	top: 50%;
	right: -10px;
	z-index: 1;
	transition: var(--ease);
}
.btnList > a:hover::after {
	background-image: linear-gradient(to right, #c8c8c8 0%, #c8c8c8 50%, #c8c8c8 50%, #c8c8c8 100%);
	transition: var(--ease);
}

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

}

/************************************************************/
/*　タイトル
/************************************************************/

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

}


/************************************************************/
/*　ページタイトル
/************************************************************/
#pv {
	width: 100%;
	height: 350px;
	padding: 50px;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: url('');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	z-index: 0;
}
#pv::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: #0255d2;
	backdrop-filter: blur(5px);
	opacity: 0.4;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
#pv > header {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 15px;
}
#pv > header > em {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	font-family: var(--font-en);
	font-size: 20px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	font-style: normal;
	white-space: nowrap;
	text-align: left;
}
#contents #pv > header > h1 {
	width: 100%;
	padding: 0;
	margin: 0;
	font-size: 40px;
	line-height: 1.2em;
	font-weight: 700;
	color: #fff;
	text-align: left;
	border: none;
	background: none;
	position: relative;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#pv {
		width: 100%;
		height: 150px;
		padding: 20px;
	}
	#pv::before {
		background-size: auto 100%;
	}
	#pv > header {
		width: 100%;
		max-width: 100%;
		grid-row-gap: 10px;
	}
	#pv > header > em {
		width: 100%;
		font-size: 4vw;
	}
	#contents #pv > header > h1 {
		font-size: 6vw;
	}
}




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

/*見出し*/
#contents h1 {
	font-size: 2.8rem;
	margin-top: 0;
	margin-bottom: 1.5em;
}
#contents h2 {
	font-size: 1.8rem;
	margin-top: 1.5em;
	margin-bottom: 0.8em;
}



/*パンくず*/
.breadcrumbs {
	width: 100%;
	max-width: 1200px;
	padding: 50px 0;
	margin: 0 auto;
	position: relative;
	z-index: 5;
	color: var(--text);
}
#pv .breadcrumbs > li a,
#pv .breadcrumbs > li::before {
	color: var(--text);
}
#pv .breadcrumbs > li a:hover {
	color: var(--main);
}

/*PV用*/
#pv .breadcrumbs {
	width: 100%;
	max-width: 1200px;
	padding: 10px 0;
	margin: 0 auto;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%,0);
	z-index: 5;
	color: #fff;
}
#pv .breadcrumbs > li a,
#pv .breadcrumbs > li::before {
	color: #fff;
}
#pv .breadcrumbs > li a:hover {
	color: #fff;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*パンくず*/
	.breadcrumbs {
		width: 100%;
		max-width: 100%;
		padding: 10px 20px;
		overflow-x: scroll;
		flex-wrap: nowrap;
		column-gap: 0;
		white-space: nowrap;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}
	.breadcrumbs > li {
		position: relative;
		display: table-cell;
		white-space: nowrap;
		min-width: auto;
		padding: 0;
		font-size: 0.8em;
	}
	.breadcrumbs > li a {
		font-size: 0.8em;
	}

	/*PV用*/
	#pv .breadcrumbs {
		width: 100%;
		max-width: 100%;
		padding: 20px;
		display: none;
	}
}

/************************************************************/
/*　ページネーション
/************************************************************/

.pagination {
	margin: 80px 0 0;
	text-align: center;
}
.pagination .page-numbers {
	display: inline-flex;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 0;
}
.pagination .page-numbers li a,
.pagination .page-numbers li span {
	display: flex;
	justify-content: center;
	align-items: center;
	width: auto;
	height: 42px;
	padding: 0;
	margin: 0;
	aspect-ratio: 1/1;
	border-radius: 50%;
	font-family: var(--font-en);
	font-size: 14px;
	line-height: 1;
	color: var(--main);
	background: #fff;
}
.pagination .page-numbers .current {
	background: var(--main);
	color: #fff;
}
.pagination .page-numbers li a:hover {
	background: var(--main);
	color: #fff;
}
.pagination .page-numbers li a.prev,
.pagination .page-numbers li a.next {
	width: 42px;
	height: 42px;
	aspect-ratio: 1/1;
}
.pagination .page-numbers .dots {
	width: auto;
	padding: 0 12px;
	border: none;
	background: transparent;
	color: var(--gray);
	font-weight: 500;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.pagination {
		margin: 30px 0 0;
		text-align: center;
	}
	.pagination .page-numbers {
		gap: 6px;
	}
	.pagination .page-numbers li a,
	.pagination .page-numbers li span {
		width: 36px;
		height: 36px;
		font-size: 13px;
	}
	.pagination .page-numbers li a.prev,
	.pagination .page-numbers li a.next {
		width: 36px;
		height: 36px;
		aspect-ratio: 1/1;
	}
}

/************************************************************/
/*　ヘッダー
/************************************************************/

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


/************************************************************/
/*　ヘッダー Fix
/************************************************************/
#header.header-fix {
	background: rgba(255,255,255,1);
	border-right: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
}


/************************************************************/
/*　スマホ用ハンバーガーメニュー
/************************************************************/

/* ハンバーガー本体（右上固定） */
.hamburger {
	position: fixed;
	top: 50px;
	right: 50px;
	width: 25px;
	height: 20px;
	cursor: pointer;
	z-index: 1001;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.hamburger span {
	display: block;
	height: 2px;
	border-radius: 2px;
	background-color: #111;
	width: 100%;
	transition: var(--ease);
	transform-origin: center;
}
.hamburger.scroll span {
	background-color: #111;
	transition: var(--ease);
}
.hamburger span:nth-child(1) {
	transform-origin: left;
}
.hamburger span:nth-child(3) {
	transform-origin: right;
}
.hamburger.active span:nth-child(1) {
	transform: scaleX(0);
	transform-origin: left;
	background-color: #111;
}
.hamburger.active span:nth-child(2) {
	transform: scaleX(1);
	background-color: #111;
}
.hamburger.active span:nth-child(3) {
	transform: scaleX(0);
	transform-origin: right;
	background-color: #111;
}

/* サブページ */
body#sub .hamburger {
	position: fixed;
	top: 50px;
	right: 50px;
	width: 25px;
	height: 20px;
	cursor: pointer;
	z-index: 1001;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
body#sub .hamburger span {
	background-color: #111;
}
body#sub .hamburger.active span:nth-child(1) {
	background-color: #111;
}
body#sub .hamburger.active span:nth-child(2) {
	background-color: #111;
}
body#sub .hamburger.active span:nth-child(3) {
	background-color: #111;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.hamburger {
		position: fixed;
		top: 26px;
		right: 20px;
		width: 25px;
		height: 20px;
	}
	.hamburger span {
		background-color: #111;
	}
	.hamburger.scroll span {
		background-color: #111;
		transition: var(--ease);
	}
	.hamburger span:nth-child(1) {
		transform-origin: left;
	}
	.hamburger span:nth-child(3) {
		transform-origin: right;
	}
	.hamburger.active span:nth-child(1) {
		transform: scaleX(0);
		transform-origin: left;
		background-color: #fff;
	}
	.hamburger.active span:nth-child(2) {
		transform: scaleX(1);
		background-color: #fff;
	}
	.hamburger.active span:nth-child(3) {
		transform: scaleX(0);
		transform-origin: right;
		background-color: #fff;
	}

	/* サブページ */
	body#sub .hamburger {
		position: fixed;
		top: 26px;
		right: 20px;
		width: 25px;
		height: 20px;
	}
	body#sub .hamburger span {
		background-color: #111;
	}
	body#sub .hamburger.active span:nth-child(1) {
		background-color: #fff;
	}
	body#sub .hamburger.active span:nth-child(2) {
		background-color: #fff;
	}
	body#sub .hamburger.active span:nth-child(3) {
		background-color: #fff;
	}
}

/* モバイルメニュー */
.mobile-menu {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(255,255,255,0.95);
	z-index: 1000;
	padding: 0;
	opacity: 0;
	visibility: hidden;
	transition: var(--ease);
}
.mobile-menu.active {
	opacity: 1;
	visibility: visible;
	transition: var(--ease);
}

/*デザイン*/
.panel_wrap {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.panel_visual {
	content: '';
	display: block;
	width: calc(100% - 600px);
	height: 100%;
	background-image: url('');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 100px;
	margin: 0;
	overflow: hidden;
	position: relative;
	z-index: 0;
}
.panel_visual::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.3);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.panel_visual > h2 {
	width: 100%;
	padding: 0;
	margin: 0;
	font-family: var(--font-min);
	font-size: 20px;
	line-height: 1.3em;
	font-weight: 500;
	color: #fff;
	border: none;
	background: none;
	position: relative;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}
.panel_visual > h2 span {
	display: block;
	width: 100%;
	text-align: center;
}
.panel_visual > h2 img {
	width: 200px;
	height: auto;
}
.panel_content {
	width: 650px;
	min-width: 650px;
	padding: 50px 50px;
	margin: 0;
	background: none;
	position: relative;
	overflow: hidden;
	overflow-y: auto;
	scrollbar-width: none;
	display: flex;
	justify-content: center;
	column-gap: 50px;
}
.panel_content::-webkit-scrollbar {
	display: none;
}
.panel_nav {
	width: 200px;
	min-width: 200px;
	padding: 0;
	margin: 0;
	position: relative;
}
.panel_info {
	width: calc(100% - 200px - 50px);
	padding: 0;
	margin: 0;
	position: relative;
}

/*ボタンメニュー*/
.menu-panelbtn-menu {
	width: 90%;
	padding: 0;
	margin: 40px auto;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 15px;
}
.menu-panelbtn-menu > li {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
}
.menu-panelbtn-menu > li > a {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 15px 30px;
	margin: 0;
	background: none;
	border: 1px solid #fff;
	font-size: 15px;
	line-height: 1;
	color: #fff;
	text-decoration: none;
	text-align: center;
	overflow: hidden;
	transition: var(--ease);
	position: relative;
}
.menu-panelbtn-menu > li > a:hover {
	background: #fff;
	color: var(--text);
	transition: var(--ease);
}

/* メニューリスト */
#menu-panel-menu {
	display: flex;
	flex-direction: column;
	grid-row-gap: 30px;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	list-style: none;
}
#menu-panel-menu > li {
	padding: 0;
	margin: 0;
	position: relative;
	line-height: 1;
}
#menu-panel-menu > li a {
	display: flex;
	flex-direction: column;
	grid-row-gap: 5px;
	font-family: var(--font-en);
	font-size: 15px;
	line-height: 1;
	color: var(--text);
	text-decoration: none;
	transition: var(--ease);
	position: relative;
}
#menu-panel-menu > li a::after {
	content: '';
	display: block;
	width: 0;
	height: 1px;
	background: var(--text);
	transition: var(--ease);
	position: absolute;
	bottom: -8px;
	left: 0;
}
#menu-panel-menu > li a:hover {
	color: var(--text);
	transition: var(--ease);
	position: relative;
}
#menu-panel-menu > li a:hover::after {
	width: 100%;
	transition: var(--ease);
}
#menu-panel-menu > li a > span {
	font-size: 10px;
	line-height: 1;
}

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

	/*デザイン*/
	.panel_wrap {
		flex-wrap: wrap;
	}
	.panel_content {
		width: 100%;
		min-width: 100%;
		height: 100vh;
		padding: 20px 20px 60px;
		flex-wrap: wrap;
		column-gap: 30px;
		grid-row-gap: 30px;
		background: #365f8d;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
	}
	.panel_nav {
		width: 100%;
		min-width: 100%;
		order: 1;
	}
	.panel_info {
		width: 100%;
	}

	/*ボタンメニュー*/
	.menu-panelbtn-menu {
		width: 100%;
		margin: 30px auto;
		grid-row-gap: 12px;
	}
	.menu-panelbtn-menu > li {
		width: 100%;
		padding: 0;
		margin: 0;
		position: relative;
	}
	.menu-panelbtn-menu > li > a {
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 15px 30px;
		margin: 0;
		background: none;
		border: 1px solid var(--text);
		font-size: 15px;
		line-height: 1;
		color: var(--text);
		text-decoration: none;
		text-align: center;
		overflow: hidden;
		transition: var(--ease);
		position: relative;
	}
	.menu-panelbtn-menu > li > a:hover {
		background: var(--text);
		color: var(--text);
		transition: var(--ease);
	}

	/* メニューリスト */
	#menu-panel-menu {
		grid-row-gap: 0;
		margin: 0 auto;
		border-top: 1px solid #fff;
	}
	#menu-panel-menu > li {
		text-align: center;
		border-bottom: 1px solid #fff;
	}
	#menu-panel-menu > li a {
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 20px 20px;
		font-size: 16px;
		text-align: center;
		font-weight: 600;
		color: #fff;
	}
	#menu-panel-menu > li a:hover,
	#menu-panel-menu > li a:active {
		color: #fff;
		opacity: 0.8;
	}
	#menu-panel-menu > li a::after {
		display: none !important;
	}
}

/************************************************************/
/*　フッター
/************************************************************/

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

}


/************************************************************/
/*　サイドバー
/************************************************************/
.side .widget-area {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 40px;
}
.side .widget-area > .widget,
.side .widget-area > .widget_block {
	padding: 20px;
	margin: 0;
	background-color: #fff;
	border-radius: 0;
	box-shadow: none;
}
body .side .widget h2:not(.widget-title) {
	padding: 1rem 1.5rem;
	background: var(--text);
	border-radius: 0;
	color: #fff;
	font-size: 1em;
}
body .side .widget .wp-block-search__label {
	position: static;
	padding: 1rem 1.5rem;
	background: var(--text);
	border-radius: 0;
	color: #fff;
	font-size: 1em;
}

/*リスト*/
body .side .widget .wp-block-page-list,
body .side .widget .wp-block-categories-list,
body .side .widget .wp-block-archives-list {
	border-bottom: 1px solid #eee;
}
body .side .widget .wp-block-page-list a,
body .side .widget .wp-block-categories-list > .cat-item > a:only-child,
body .side .widget .archive-item a {
	padding: 0.7em 0;
	margin: 0;
	position: relative;
	font-size: 0.9em;
}
body .side .widget .wp-block-page-list a::after,
body .side .widget .wp-block-categories-list > .cat-item > a:only-child::after,
body .side .widget .archive-item a::after {
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	border-top: 1px solid var(--text);
	border-right: 1px solid var(--text);
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%) rotate(45deg);
}

/*検索*/
body .side .widget .wp-block-search__input {
	height: 40px;
	padding: 8px 10px;
	background-color: #fff;
	border: 1px solid #ddd;
	border-right: none;
	border-radius: 0;
	font-size: 0.9em;
	outline: none;
}
body .side .widget .wp-block-search.wp-block-search__button-outside .wp-block-search__button.has-icon {
	height: 40px;
	width: auto;
	aspect-ratio: 1/1;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 0;
	outline: none;
}

/*タイトル*/
#contents .aside > h2 {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 7px;
	width: 100%;
	padding: 12px;
	margin: 0 auto 1px;
	background: var(--main);
	border-radius: 5px 5px 0 0;
	color: #fff;
	text-align: center;
	font-family: var(--font-en);
	font-size: 16px;
	font-weight: 900;
	line-height: 1.2em;
	position: relative;
	z-index: 0;
}
#contents .aside.map > h2::before {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: "\f3c5";
	color: #fff;
}
#contents .aside.content > h2::before {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: "\f03a";
	color: #fff;
}

/*カテゴリ*/
.side .iconmenu {
	width: 100%;
	padding: 10px;
	margin: 0 auto;
	border: none;
	background: var(--base);
	border-radius: 0 0 5px 5px;
	box-shadow: none;
	list-style: none;
	position: relative;
}
.side .iconmenu > li {
	width: 100%;
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	box-shadow: none;
}
.side .iconmenu > li a {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	column-gap: 10px;
	padding: 10px 20px 10px 10px;
	margin: 0 auto;
	border-bottom: 1px solid rgba(0,0,0,0.05);
	background: #fff;
	position: relative;
	font-size: 12px;
	line-height: 1.4em;
	color: var(--text);
	font-weight: 400;
	text-decoration: none;
	box-shadow: none;
	transition: all 0.3s ease;
}
.side .iconmenu > li:last-child a {
	border-bottom: none;
}
.side .iconmenu > li a::before,
.side .iconmenu > li a::after {
	display: none;
}
.side .iconmenu > li a::after {
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	background: none;
	border-top: 1px solid var(--text);
	border-right: 1px solid var(--text);
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translate(0,-50%) rotate(45deg);
	-webkit-transform: translate(0,-50%) rotate(45deg);
}
.side .iconmenu > li a:hover {
	font-size: 12px;
	line-height: 1.4em;
	color: var(--sub);
	font-weight: 400;
	transition: all 0.3s ease;
}
.side .iconmenu > li a figure {
	width: 40px;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.side .iconmenu > li a figure::before {
	content: '';
	display: block;
	padding: 50%;
}
.side .iconmenu > li a 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){
}


/************************************************************/
/*　フォーム
/************************************************************/

.wpcf7 {
	background: var(--grad);
	padding: 100px 0 0;
	margin: 0;
}

/*ボックス*/
#contents .formBox > h3 {
	width: 100%;
	margin: 0 auto 30px;
}
.formBox {
	width: 100%;
	max-width: 1000px;
	padding: 100px 50px;
	margin: 0 auto;
	position: relative;
	background: #fff;
	border-radius: 10px 10px 0 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}
.formBox > dl {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 20px;
	border-bottom: 1px solid #eee;
}
.formBox > dl:first-of-type {
	border-top: 1px solid #eee;
}
.formBox > dl dt {
	width: 200px;
	min-width: 200px;
	padding: 20px 0 20px 20px;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 10px;
	font-size: 14px;
}
.formBox > dl dt .att,
.formBox > dl dt .any {
	display: inline-block;
	padding: 5px 10px;
	margin: 0;
	background: #dd3131;
	border-radius: 0;
	font-size: 12px;
	line-height: 1;
	color: #fff;
	white-space: nowrap;
}
.formBox > dl dt .any {
	background: #4584c9;
}
.formBox > dl dd {
	width: calc(100% - 20px - 200px);
	padding: 20px 20px 20px 0;
	margin: 0;
	position: relative;
}
.formBox > dl dt p,
.formBox > dl dd p {
	padding: 0;
	margin: 0;
	line-height: 1.4em;
}

.formBox input[type="text"],
.formBox input[type="email"],
.formBox input[type="tel"] {
	width: 100%;
	padding: 10px;
	margin: 0;
	border: 1px solid #ccc;
	background: #fafafa;
	border-radius: 5px;
	line-height: 1;
}
.formBox textarea {
	width: 100%;
	padding: 10px;
	margin: 0;
	border: 1px solid #ccc;
	background: #fafafa;
	border-radius: 5px;
	line-height: 1.6;
}
.formBox input.w50 {
	max-width: 50%;
}
.formBox input.w25 {
	max-width: 25%;
}

/*住所*/
.formBox .wpcf7-form-control-wrap[data-name="your-zip"],
.formBox .wpcf7-form-control-wrap[data-name="your-adress"] {
	display: block;
	margin-bottom: 10px;
}
.formBox .wpcf7-form-control-wrap + p {
	margin-top: 5px;
}

/*チェックボックス*/
.formBox .wpcf7-list-item {
	position: relative;
	display: inline-flex;
	align-items: center;
	margin-right: 15px !important;
}
.formBox .wpcf7-list-item input[type="checkbox"] {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0 !important;
	cursor: pointer;
	z-index: 10;
	margin: 0 !important;
}
.formBox .wpcf7-list-item-label {
	position: relative;
	padding-left: 25px !important;
	display: inline-block;
	z-index: 5;
	cursor: pointer;
}
.formBox .wpcf7-list-item-label::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	border: 1px solid #ccc !important;
	background: #fff !important;
	border-radius: 4px;
	display: block !important;
}
.formBox .wpcf7-list-item input:checked ~ .wpcf7-list-item-label::before {
	background: #333 !important;
	border-color: #333 !important;
}
.formBox .wpcf7-list-item-label::after {
	content: "";
	position: absolute;
	left: 7px;
	top: 50%;
	transform: translateY(-65%) rotate(45deg);
	width: 6px;
	height: 11px;
	border-right: 3px solid #fff !important;
	border-bottom: 3px solid #fff !important;
	opacity: 0 !important;
	display: block !important;
}
.formBox .wpcf7-list-item input:checked ~ .wpcf7-list-item-label::after {
	opacity: 1 !important;
}

/*ラジオボタン*/
.formBox .wpcf7-radio {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 10px;
	width: 100%;
}
.formBox .wpcf7-list-item {
	padding: 0;
	margin: 0;
}
.formBox .wpcf7-radio input[type="radio"] {
	display: none;
}
.formBox .wpcf7-radio label {
	display: flex;
	align-items: center;
	cursor: pointer;
	font-size: 14px;
	gap: 6px;
}
.formBox .wpcf7-radio label::before {
	content: "";
	width: 14px;
	height: 14px;
	border: 1px solid #ccc;
	background: #fafafa;
	border-radius: 50%;
	box-sizing: border-box;
	transition: var(--ease);
}
.formBox .wpcf7-radio input[type="radio"]:checked + .wpcf7-list-item-label {
	position: relative;
}
.formBox .wpcf7-radio input[type="radio"]:checked + .wpcf7-list-item-label::before {
	content: "";
	position: absolute;
	left: -17px;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--main);
}

#contents .wpcf7-spinner {
	display: none;
}
#contents .wpcf7 .wpcf7-response-output {
	width: 100%;
	max-width: 1000px;
	background: #fff;
	margin: 100px auto;
	text-align: center;
	padding: 20px;
}

/*ファイル添付*/
.formBox .fileStatus {
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}

/*送信ボタン*/
.formBox input[type="submit"] {
	width: fit-content;
	min-width: 300px;
	padding: 10px 24px;
	margin: 30px auto 0;
	background: var(--main);
	border-radius: 5px;
	border: none;
	font-size: 15px;
	color: #fff;
	cursor: pointer;
	transition: var(--ease);
}
.formBox input[type="submit"]:hover {
	background: var(--sub);
	transition: var(--ease);
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.wpcf7 {
		background: var(--main);
		padding: 20px 20px 0;
		margin: 0;
	}
	/*ボックス*/
	.formBox {
		width: 100%;
		max-width: 100%;
		padding: 40px 20px 40px;
	}
	.formBox > dl {
		width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 10px;
	}
	.formBox > dl dt {
		width: 100%;
		min-width: 100%;
		padding: 20px 0 0;
		justify-content: flex-start;
		column-gap: 10px;
	}
	.formBox > dl dt .att,
	.formBox > dl dt .any {
		padding: 3px 7px;
		font-size: 10px;
	}
	.formBox > dl dd {
		width: 100%;
		padding: 0 0 20px;
	}
	.formBox input.w50 {
		max-width: 100%;
	}
	.formBox input.w25 {
		max-width: 50%;
	}

	/*ラジオボタン*/
	.formBox .wpcf7-radio {
		column-gap: 30px;
		grid-row-gap: 5px;
		width: 100%;
	}

	#contents .wpcf7-spinner {
		display: none;
	}
	#contents .wpcf7 .wpcf7-response-output {
		width: calc(100% - 40px);
		max-width: 100%;
		margin: 30px auto;
		text-align: center;
		padding: 20px;
	}
}

/************************************************************/
/*　サイトマップ
/************************************************************/
.sitemap-menu {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	border-top: 1px solid #dee5ec;
}
.sitemap-menu > li {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border-bottom: 1px solid #dee5ec;
}
.sitemap-menu > li::after {
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	border-top: 1px solid #737e8c;
	border-right: 1px solid #737e8c;
	background: none;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translate(0,-50%) rotate(45deg);
}
.sitemap-menu > li > a {
	display: block;
	padding: 15px 30px 15px 15px;
	margin: 0;
	font-size: 14px;
	line-height: 1.4em;
	color: var(--text);
	text-decoration: none;
	transition: var(--ease);
}
.sitemap-menu > li > a:hover {
	font-size: 14px;
	line-height: 1.4em;
	color: var(--sub);
	text-decoration: underline;
	transition: var(--ease);
}

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

/*タイトル*/
#contents .articleHeader__title {
	margin: 0 auto 1em;
	font-size: 2.2vw;
}

/*ヘッダー*/
.articleHeader {
	padding: 0 0 50px;
	margin: 0 auto 50px;
	position: relative;
	border-bottom: 3px solid #eee;
}

/*公開・更新日時*/
.articleHeader__info {
	margin: 0.8rem auto 1rem;
}

/*カスタムポスト・タクソノミー・カテゴリ・タグ*/
.post-taxonomy {
	width: 100%;
	padding: 0;
	margin: auto auto 0;
	position: relative;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 8px;
}
.post-taxonomy > span {
	display: inline-block;
	width: fit-content;
	padding: 0;
	margin: 0;
	position: relative;
}
.post-taxonomy > span a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 5px 10px;
	background: var(--main);
	font-size: 10px;
	line-height: 1;
	color: #fff;
	white-space: nowrap;
	text-decoration: none;
	overflow: hidden;
	position: relative;
	transition: color 0.3s ease;
	z-index: 0;
}
.post-taxonomy > span a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--act);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
	z-index: -1;
}
.post-taxonomy > span a:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}
.post-taxonomy > span a span,
.post-taxonomy > span a * {
	position: relative;
	z-index: 1;
	transition: color 0.3s ease;
}
.post-taxonomy > span a:hover {
	color: #fff;
}
.post-taxonomy > span a:not(:hover)::before {
	transform-origin: right;
	transform: scaleX(0);
}

/*目次*/
.toc_block .toc > ol > li:not(.previous):has(> a) > a::before {
	content: "\f105";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	color: var(--main);
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
}
.toc_block .toc > ol > li > ol > li:has(> a) > a::before {
	content: "";
	display: block;
	position: absolute;
	top: calc(1em - 2px);
	left: 0;
	width: 6px;
	height: 6px;
	background-color: var(--main);
	border-radius: 50%;
}

/*監修者*/
.articleFooter__author .caption {
	border-radius: 0;
}
.articleFooter__author .uqAuthor {
	border-radius: 0;
}

/*関連記事*/
#contents .articleFooter {
	margin-top: 70px;
}
#contents .ttl {
	width: 100%;
	padding: 10px 15px;
	margin: 0 auto 30px;
	background: var(--main);
	border: none;
	border-radius: 0;
	font-size: 16px;
	line-height: 1;
	color: #fff;
	text-align: left;
}
/* - リスト*/
.relationList {
	width: 100%;
	max-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: 50px;
}
.relationList > li {
	width: calc((100% - 60px) / 3);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 15px;
}
.relationList > li.none {
	width: 100%;
	text-align: center;
	justify-content: center;
	align-items: center;
}
.relationList > li > figure {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.relationList > li > figure::before {
	content: '';
	display: block;
	padding-top: 65%;
}
.relationList > li > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
	transform-origin: center;
	transition: var(--ease);
}
.relationList > li > figure:hover img {
	filter: brightness(1.05);
	transform: translate(-50%,-50%) scale(1.05);
	transform-origin: center;
	transition: var(--ease);
}
#contents .relationList > li > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	border: none;
	background: none;
	position: relative;
	font-size: 13px;
	line-height: 1.5em;
	color: var(--text);
	font-weight: 500;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#contents .relationList > li > h3::before,
#contents .relationList > li > h3::after {
	display: none;
}
#contents .relationList > li > h3 a {
	font-size: 13px;
	line-height: 1.5em;
	color: var(--text);
	font-weight: 500;
	text-decoration: none;
	transition: var(--ease);
}
#contents .relationList > li > h3 a:hover {
	color: var(--main);
	transition: var(--ease);
}
.news-meta {
	width: 100%;
	padding: 0;
	margin: auto auto 0;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 10px;
}
.news-meta > span {
	display: inline-block;
	padding: 3px 7px;
	margin: 0;
	background: var(--main);
	font-size: 10px;
	line-height: 1;
	color: #fff;
	font-weight: 400;
}
.news-meta > time {
	display: inline-block;
	padding: 0;
	margin: 0;
	font-family: var(--font-en);
	font-size: 12px;
	line-height: 1;
	color: var(--text);
}
.relationList > li.no-result {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	display: block;
	text-align: center;
}

/*前後の記事*/
.articlePager a:hover {
	background: none;
	box-shadow: none;
	color: var(--main);
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*タイトル*/
	#contents .articleHeader__title {
		margin: 0 auto 1em;
		font-size: 5vw;
	}
	/*ヘッダー*/
	.articleHeader {
		padding: 0 0 30px;
		margin: 0 auto 30px;
	}
	#contents .toc_block {
		margin: 30px auto;
	}

	/*関連記事*/
	#contents .ttl {
		width: 100%;
		padding: 10px 15px;
		margin: 0 auto 1.5em;
		background: var(--main);
		border: none;
		border-radius: 0;
		font-size: 16px;
		line-height: 1;
		color: #fff;
		text-align: left;
	}
	/* - リスト*/
	.relationList {
		column-gap: 20px;
		grid-row-gap: 30px;
	}
	.relationList > li {
		width: calc((100% - 20px) / 2);
		grid-row-gap: 10px;
	}
	#contents .relationList > li > h3 {
		font-size: 12px;
		line-height: 1.5em;
	}
	#contents .relationList > li > h3 a {
		font-size: 12px;
		line-height: 1.5em;
	}
}


/************************************************************/
/*　トップページ コンセプト
/************************************************************/
