/*
Theme Name: Arkhe Child
Template: arkhe
Version: 3.4.2
*/

:root {
	--ark-font_family: "Noto Sans JP", "Pinyon Script", cursive, sans-serif, serif;
	--arkb-btn-color--text: #FFF;
	--the-btn-color: #9D8024;
    --arkb-btn-color--default: #9D8024;
	--arkb-btn-width: 280px;
}

/* Common */

.c-postContent>* {
    margin-top: var(--ark-mt--s);
}

a {
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}

.pc {
/*
	display: initial !important;
*/
}
.sp {
	display: none !important;
}
@media screen and (max-width: 600px) {
	.pc {
		display: none !important;
	}
	.sp {
		display: initial !important;
	}
}

.alignfull {
	left: calc(50% - 50vw + var(--ark-scrollbar_width)/2);
	width: calc(100vw - var(--ark-scrollbar_width))
}

.icon-arrow {
    display: inline-block;
    padding: 0 0 0 16px;
    color: #000;
    vertical-align: middle;
    text-decoration: none;
    font-size: 15px;
}
.icon-arrow::before,
.icon-arrow::after{
    position: absolute;
    top: 0;
    bottom: 0;
/*
    left: 0;
*/
    margin: auto;
    content: '';
    vertical-align: middle;
}
.icon-arrow::before{
    right: 25px;
    width: 7px;
    height: 7px;
    border-top: 4px solid #7F033B;
    border-right: 4px solid #7F033B;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.icon-arrow.down::before{
    right: 23px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.ark-block-button__icon.-right {
	position: absolute;
	right: 16px;
}

#overlay{ 
	position: fixed;
	top: 0;
	z-index: 100;
	width: 100%;
	height:100%;
	display: none;
	background: rgba(0,0,0,0.6);
}
.cv-spinner {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: column;
}
.spinner {
	width: 40px;
	height: 40px;
	border: 4px #ddd solid;
	border-top: 4px #2e93e6 solid;
	border-radius: 50%;
	animation: sp-anime 0.8s infinite linear;
}
.spinner_txt {
	display: block;
	margin-top: 0.5em;
	color: #fff;
	font-weight: bold;
}
@keyframes sp-anime {
	100% { 
		transform: rotate(360deg); 
	}
}
.is-hide{
	display:none;
}

dl.table-style {
	padding: 0px;
	font-size: 16px;
    border-top: 1px solid #ededed;
}
dl.table-style dt {
	clear: both;
	float: left;
	width: 170px;
	margin: 14px 0px 0px 10px;
    font-weight: 600 !important;
}
dl.table-style dd {
	margin: 0;
	padding: 14px 0px 13px 188px;
	line-height: 1.6;
    border-bottom: 1px solid #ededed;
}

@media screen and (max-width: 600px) {
	dl.table-style {
		font-size: 14px;
	}
	dl.table-style dt {
		clear: both;
		float: none;
		width: auto;
		margin: 15px 0px 0px 4px;
	}
	dl.table-style dd {
		clear: both;
		margin: 0;
		padding: 14px 0px 13px 4px;
	}
}

.attach_files {
	padding: 1rem 0;
	line-height: 1.6;
}
.attach_files p {
	margin-bottom: 4px;
}
.attach_files a {
	padding: 2px 0px 2px 30px;
	text-decoration: none;
}
.attach_files * html a.pdf,
.attach_files a[href$=".pdf"] {
	background: url("./images/ico_file_pdf.png") no-repeat 1px 50%;
	background-size: 23px;
}
.attach_files * html a.doc,
.attach_files * html a.docx,
.attach_files a[href$=".doc"],
.attach_files a[href$=".docx"] {
	background: url("./images/ico_file_doc.png") no-repeat 1px 50%;
	background-size: 23px;
}
.attach_files * html a.xls,
.attach_files * html a.xlsx,
.attach_files a[href$=".xls"],
.attach_files a[href$=".xlsx"] {
	background: url("./images/ico_file_xls.png") no-repeat 1px 50%;
	background-size: 23px;
}
.attach_files * html a.ppt,
.attach_files * html a.pptx,
.attach_files a[href$=".ppt"],
.attach_files a[href$=".pptx"] {
	background: url("./images/ico_file_ppt.png") no-repeat 1px 50%;
	background-size: 23px;
}
.attach_files * html a.jpg,
.attach_files * html a.jpeg,
.attach_files a[href$=".jpg"],
.attach_files a[href$=".jpeg"] {
	background: url("./images/ico_file_jpg.png") no-repeat 1px 50%;
	background-size: 23px;
}


/* MW WP Form */
.mw_wp_form dl {
	margin-top: 2rem;
}
.mw_wp_form dl dt {
	width: 200px;
	margin: 14px 0px 0px 22px;
	position: relative;
}
.mw_wp_form dl dt.must:before {
	content: '※';
	color: #F00;
	display: inline-block;
	position: absolute;
	left: -22px;
}
.mw_wp_form dl dd {
	padding: 14px 0px 13px 218px;
}
.mw_wp_form dl input[name='email2'] {
	margin-top: 8px;
	margin-left: 4px;
}
.mw_wp_form input[type="submit"],
.mw_wp_form button[type="submit"] {
	background: var(--the-btn-color);
    color: var(--arkb-btn-color--text, #fff);
	border: none;
	cursor: pointer;
	position: relative;
}
.mw_wp_form input[type="submit"]:first-child,
.mw_wp_form button[type="submit"]:first-child {
	margin-right: 10px;
}
.mw_wp_form input[type="submit"]:hover,
.mw_wp_form button[type="submit"]:hover {
	opacity: .88;
}
.mw_wp_form input[type="submit"] .fa-angle-left,
.mw_wp_form button[type="submit"] .fa-angle-left {
	position: absolute;
	left: 16px;
}
.mw_wp_form input[type="submit"] .fa-angle-right,
.mw_wp_form button[type="submit"] .fa-angle-right {
	position: absolute;
	right: 16px;
}
.mw_wp_form_confirm dl dt {
	min-height: 17px;
}
.mw_wp_form_confirm dl dd {
	min-height: 52px;
	line-height: 1.5;
}
.mw_wp_form_confirm span.email2 {
	display: none;
}
.mw_wp_form .error {
	margin-top: 4px;
	padding-left: 6px;
	color: #F00;
}

@media screen and (max-width: 600px) {
	.mw_wp_form dl dt {
		width: auto;
		margin-left: 4px;
	}
	.mw_wp_form dl dt.must {
		margin-left: 22px;
	}
	.mw_wp_form dl dd {
		padding: 14px 0px 13px 4px;
	}
	.mw_wp_form input[type="submit"]:first-child,
	.mw_wp_form button[type="submit"]:first-child {
		margin-right: 0;
	}
	.mw_wp_form dl dd input[type='text'],
	.mw_wp_form dl dd input[type='email'],
	.mw_wp_form dl dd textarea {
		width: 100%;
	}
	.mw_wp_form dl dd input.tel,
	.mw_wp_form dl dd input.fax {
		width: auto;
	}
	.mw_wp_form dl input[name='email2'] {
		margin-left: 0;
	}
	.mw_wp_form_confirm dl dd {
		min-height: 28px;
	}
}


/* slick */

.slide-arrow.prev,
.slide-arrow.next {
	position: absolute;
	top: calc(50% - 25px);
	display: block;
	width: 50px;
	height: 50px;
	background: none;
	border-radius: 50%;
	transition: all .3s ease;
	cursor: pointer;
	z-index: 9;
}
.slide-arrow.prev {
	left: -45px;
	transform: rotate(180deg);
}
.slide-arrow.next {
	right: -45px;
}
.slide-arrow.prev:before,
.slide-arrow.next:before{
	position: absolute;
	content: '';
	width: 25px;
	height: 25px;
	border-right: 4px solid #0686AD;
	border-top: 4px solid #0686AD;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
	transform:rotate(45deg);
}
@media screen and (max-width: 1000px) {
	.slide-arrow.prev {
		left: -35px;
	}
	.slide-arrow.next {
		right: -35px;
	}
}
@media screen and (max-width: 600px) {
	.slide-arrow.prev {
		left: 0px;
	}
	.slide-arrow.next {
		right: 0px;
	}
}


/* arkhe */

.ark-block-heading {
	position: relative;
	z-index: 2;
}
.ark-block-heading .ark-block-heading__main {
	font-size: 28px;
	letter-spacing: .1em;
}
.ark-block-heading .ark-block-heading__line {
	display: none;
	color: #7C6B7E;
}
.ark-block-heading .ark-block-heading__line:before {
	width: 60px;
	height: 3px;
}
.ark-block-heading .ark-block-heading__sub {
	font-size: 20px;
}
.ark-block-button__link:hover {
	text-decoration: none;
}
@media screen and (max-width: 600px) {
	.ark-block-heading .ark-block-heading__main {
		font-size: 22px;
	}
	.ark-block-heading .ark-block-heading__line:before {
		width: 48px;
	}
	.ark-block-heading .ark-block-heading__sub {
		font-size: 16px;
	}
}

.ark-block-timeline__item {
	padding-bottom: .1rem;
}
/*
.ark-block-timeline__label {
	font-weight: 700;
	font-size: 1em;
	opacity: 1;
}
.ark-block-timeline__title {
	margin-top: 0;
	font-weight: 500;
}

@media screen and (min-width: 599px) {
	.ark-block-timeline {
		padding-left: 0;
	}
	.ark-block-timeline__head {
	}
	.ark-block-timeline__item {
		padding-left: 0;
		padding-bottom: 20px;
		display: flex;
		flex-wrap: nowrap;
	}
	.ark-block-timeline__item:before {
		left: 208px;
	}
	.ark-block-timeline__shape {
		position: absolute;
		top: 5px;
		left: 201px;
	}
	.ark-block-timeline__title {
		margin-left: 60px;
	}
}
*/


/* Header */

.l-header__body {
	padding-left: 10px;
/*
	padding-right: 10px;
*/
}
.l-header[data-pcfix="1"] {
	background-color: #00318E;
}
[data-scrolled=false] .l-header[data-pcfix="1"] {
	background-color: #00318E;
}

.l-header__center {
	padding: 12px 0;
}
.c-gnav > .c-gnav__li > .c-gnav__a {
	padding: 0 10px;
	text-decoration: none;
	color: #FFF;
}
.c-gnav__li.-current > .c-gnav__a,
.c-gnav__li.focus > .c-gnav__a,
.c-gnav__li:hover > .c-gnav__a {
	color: #9D8024;
}
.c-gnav > .c-gnav__li:last-child > .c-gnav__a {
	padding: 0 10px;
	color: #FFF;
	background: #9D8024;
}
.c-gnav > .c-gnav__li:last-child > .c-gnav__a:hover {
	color: #DCDCDC;
}

.c-iconBtn__icon {
	color: #FFF;
}

@media screen and (max-width: 600px) {
	.l-header__body {
		display: flex;
	}
	.l-header__center {
		max-width: 300px;
		margin: 0 auto;
/*
		padding-left: 20px;
*/
		padding-right: 20px;
	}
}


/* Footer */

.l-footer {
	padding-top: 10rem;
	background: none;
	overflow: hidden;
	background: var(--ark-color--bg, #fff);
}
.l-footer__inner {
	padding-top: 2rem;
	background: #FFFEF7;
	margin-left: -200px;
	margin-right: -200px;
	padding-left: 200px;
	padding-right: 200px;
	border-top-right-radius: 1000px 128px;
	border-top-left-radius: 1000px 128px;
}
.l-footer__foot {
	padding-top: 0.8rem;
	padding-bottom: 0.8rem;
	background-color: #9D8024;
	color: #FFFFFF;
}
.l-footer__widgets {
	padding: 2rem 0 0;
}
.l-footer__nav {
	margin-top: 2.5rem;
	margin-bottom: 2rem;
}

.footer-sns-block .wp-block-group {
	gap: 1rem !important;
}

.footer-contact-block {
	width: 80%;
	max-width: 900px;
	margin: -10rem auto 0 !important;
	padding: 3rem 2rem 3rem;
	background: #FFF;
	box-shadow: 4px 4px 4px 4px rgba(0, 0, 0, 0.1);
	border-radius: 12px;
	position: relative;
	z-index: 1;
	text-align: center;
}
.footer-contact-block .arkb-buttons--1,
.footer-contact-block .arkb-buttons--2 {
/*
	max-width: 320px;
*/
}

@media screen and (max-width: 600px) {
	.l-footer__inner {
/*
		margin-left: -100px;
		margin-right: -100px;
		padding-left: 100px;
		padding-right: 100px;
*/
	}
	.footer-sns-block .wp-block-group img {
		width: 50px !important;
		height: 50px !important;
	}
	.footer-contact-block .wp-block-columns {
		--wp-column-gap: 0.5rem;
	}
	.footer-contact-block .arkb-buttons--1,
	.footer-contact-block .arkb-buttons--2 {
		justify-content: center;
	}
}


/* Layout */
.l-content__body {
    margin: 2rem auto;
}
@media screen and (max-width: 600px) {
	.l-content__body {
		margin: 2rem auto;
	}
}


/* Title */

.p-topArea {
	min-height: 20vh;
	text-align: left;
}
.c-pageTitle__main {
	font-size: 3rem;
	line-height: 1;
}
.c-pageTitle__sub {
	margin-top: 0 !important;
	font-size: 1.5rem;
	font-style: normal;
	font-weight: 600;
	text-transform: capitalize;
}
.c-pageTitle__sub:after,
.c-pageTitle__sub:before {
    content: '';
	margin: 0;
}

@media screen and (max-width: 600px) {
	.p-topArea {
		min-height: 25vh;
	}
	.c-pageTitle__main {
		font-size: 2rem;
	}
}


/* Archive */

[data-sidebar=off] .p-postList.-type-card .p-postList__item {
	flex-basis: 25%;
}

.p-postList.-type-card .p-postList__body {
	padding-top: 0.5rem;
}
.p-postList__category > span {
	padding: 2px 14px;
	color: #FFF;
	background: #DCAD1D;
}
.p-postList__item .p-postList__meta {
	margin-bottom: .25rem;
	font-size: 12px;
	justify-content: space-between;
}
.p-postList__item .p-postList__category {
	margin-right: 0;
}
.p-postList .p-postList__title,
.p-postList.-type-simple .p-postList__title {
	font-size: 1rem;
}

@media screen and (max-width: 600px) {
	[data-sidebar=off] .p-postList.-type-card .p-postList__item {
		flex-basis: 50%;
	}
	.p-postList .p-postList__title,
	.p-postList.-type-simple .p-postList__title {
		font-size: .9rem;
	}
}


/* Page */

body.page h2.wp-block-heading {
/*
	color: #0686AD;
*/
}

.p-entry__foot .c-postTerms__link {
	background: none;
	padding: 2px 0 0;
	color: inherit;
	text-decoration: inherit;
}


/* Top */

#top-news-block {
	padding-top: 4rem;
	padding-bottom: 2rem;
	background: #FFFEF7;
}
#top-news-block .ark-block-heading {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
    justify-content: start;
	gap: 10px;
}
#top-news ul#news-tab {
	float: right;
	width: 50%;
	margin: 0;
	z-index: 9;
	background: #E8E8E8;
}
#top-news-block ul#news-tab li {
	float: left;
	width: 25%;
	margin: 0;
	padding: 5px 0;
	color: #333;
	background: #FFF;
	border: 1px solid #E8E8E8;
	cursor: pointer;
	text-align: center;
	list-style: none;
	box-sizing: border-box;
	letter-spacing: 0.1em;
	position: relative;
	transition:all .5s ease-in-out;
}
#top-news-block ul#news-tab li:first-child {
	border-radius: 50px 0 0 50px;
}
#top-news-block ul#news-tab li:last-child {
	border-radius: 0 50px 50px 0;
}
#top-news-block ul#news-tab li.active {
	cursor: auto;
	color: #FFF !important;
	border: 1px solid #9D8024;
	background: #9D8024;
}
#top-news-block ul#news-tab li.active:after{
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -7px;
	border: 7px solid transparent;
	border-top: 7px solid #9D8024;
}
#top-news-block ul#news-tab li:hover {
	border: 1px solid #9D8024;
	color: #9D8024;
}

#top-news-block ul#news-content {
	clear: both;
	margin-top: 1rem;
	margin-bottom: 1.5rem;
	padding: 2rem;
	background: #FFF;
	border-radius: 12px;
	overflow: hidden;
}
#top-news-block ul#news-content li {
	display: none;
	margin: 0;
	padding: 0px;
	list-style: none;
	box-sizing: border-box;
	overflow: hidden;
}
#top-news-block ul#news-content li.active {
	display: block;
}

#top-menu-block {
}
#top-menu-block .wp-block-columns {
	gap: 1.2rem 1rem !important;
}
#top-menu-block .top-menu-block__inner {
	padding: 2rem 1rem 1rem;
	background: #FFFEF7;
	box-shadow: 4px 4px 4px 4px rgba(0, 0, 0, 0.1);
	border-radius: 12px;
	flex-basis: calc(50% - 1rem) !important;
}
#top-menu-block .top-menu-block__inner h2 {
	font-size: 22px;
    font-weight: 500;
}
#top-menu-block .top-menu-block__inner .wp-block-image {
	max-width: 148px;
	margin-left: auto;
	margin-right: auto;
}
#top-menu-block .top-menu-block__inner a {
	color: #00318E;
}
#top-menu-block .top-menu-block__inner a:hover {
	color: #9D8024;
	text-decoration: none;
}

@media screen and (max-width: 600px) {

/*
	.home .ark-block-heading {
		flex-wrap: wrap;
		gap: 0;
	}
	.home h2.ark-block-heading__main {
		width: 100%;
		font-size: 38px;
		text-align: center;
	}
	.home .ark-block-heading__sub {
		width: 100%;
		margin-top: 0;
		font-size: 42px;
		text-align: center;
	}
	.home h3.wp-block-heading {
		font-size: 17px;
	}
	.home .wp-block-columns {
		gap: 1rem !important;
	}
	.home .wp-block-column p {
		font-size: 14px;
	}
*/

	#top-menu-block .top-menu-block__inner {
		padding: 1rem .5rem;
	}
	#top-menu-block .top-menu-block__inner h2 {
		font-size: 16px;
	}
	#top-menu-block .top-menu-block__inner .wp-block-image {
		max-width: 100px;
	}
}

.access-map iframe {
	height: 600px;
}
@media screen and (max-width: 600px) {
	.access-map iframe {
		height: 350px;
	}
}

/* Page */



/* News */

.news-header {
	margin-bottom: 2rem;
	padding: 2rem 1rem 1rem 2rem;
	background: #F9F9F9;
	border: 1px solid #CCCCCC;
    border-radius: 10px;
}
.news-header dl {
	width: 100%;
	margin: 0px 0px 10px 0px;
	display: flex;
	align-items: baseline;
}
.news-header dl dt {
	clear: both;
	float: left;
	width: 88px;
	margin: 11px 0px 0px 0px;
	font-size: 14px;
	font-weight: 600;
	color: #313131;
}
.news-header dl dd {
	margin: 0;
	padding-left: 8px;
}
.news-header dl dd ul {
	margin: 0;
	font-size: 14px;
	line-height: 1;
	list-style: none;
}
.news-header dl dd ul li {
	display: inline-block;
	margin-right: 10px;
}
.news-header dl dd ul li a {
	padding: 7px 18px;
	display: block;
	text-align: center;
	color: #9D8024;
	background: #FFF;
	border: 1px solid #9D8024;
    border-radius: 4px;
	text-decoration: none;
}
.news-header dl dd ul li.current-cat a,
.news-header dl dd ul li a:hover {
	color: #FFF;
	background: #9D8024;
	border: 1px solid #9D8024;
}

@media screen and (max-width: 600px) {
	.news-header {
    	margin-bottom: 20px !important;
		padding: 15px 15px 5px;
	}
	.news-header dl {
		margin-bottom: 5px;
		flex-wrap: wrap;
	}
	.news-header dl dt {
		float: none;
		width: 100%;
		margin-top: 0px;
	}
	.news-header dl dd {
		margin-top: 10px;
		padding-left: 0;
	}
	.news-header dl dd ul {
		padding-left: 0px;
	}
	.news-header dl dd ul li {
		margin-bottom: 6px;
		margin-right: 4px;
	}
	.news-header dl dd ul li a {
		padding: 6px 12px;
		font-size: 12px;
	}
}

.p-postList.-type-news h4 {
	margin-top: 2rem !important;
	margin-bottom: .5rem !important;
	padding: 0px;
	font-size: 16px !important;
	line-height: 1.6;
	letter-spacing: 0.05em;
	color: #83001A;
	font-weight: 500;
}
.p-postList.-type-news h4 span {
	padding: .5rem 1rem;
	border: 1px solid #83001A;
}

dl.news-list {
	padding: 0px;
	font-size: 16px;
	box-sizing: border-box;
	border-top: 1px solid #E8E8E8;
}
dl.news-list dt {
	clear:both;
	float: left;
	width: 240px;
	margin: 10px 0px 0px 2px;
}
dl.news-list dt span.news-category,
dl.news-list dt span.news-date {
	float: left;
	width: 120px;
	margin: 0px 10px 8px 0px;
	padding: 1px 0px;
	text-align: center;
	color: #FFF;
	background: #9D8024;
	border: 1px solid #9D8024;
	border-radius: 6px;
	display: inline-block;
	font-size: 14px;
}
dl.news-list dt span.news-date {
	width: 100px;
	padding: 2px 0px 0px 0px;
	background: none;
	border: none;
	font-size: 14px;
	font-weight: 600;
	color: #707070;
}
dl.news-list dd {
	margin: 0;
	padding: 12px 0px 8px 248px;
	line-height: 1.6;
}
dl.news-list a {
	padding-bottom: 5px;
	position: relative;
	display: block;
	z-index: 1;
	border-bottom: 1px solid #E8E8E8;
	color: var(--ark-color--main);
	text-decoration: none;
}
dl.news-list a:first-child {
/*
	border-top: 1px solid #EBEBEB;
*/
}
dl.news-list a:hover {
	color: var(--ark-color--link);
}
dl.news-list a i {
	color: var(--ark-color--link);
	position: absolute;
	top: 35%;
/*
	bottom: 0;
*/
	right: 15px;
	vertical-align: middle;
}

.single-news .p-entry__head .c-postMetas,
.single-business .p-entry__head .c-postMetas,
.single-member .p-entry__head .c-postMetas {
	margin-top: 0rem;
	margin-bottom: 1rem;
	font-size: 12px;
	letter-spacing: 0;
}
.single-news .c-postMetas>.c-postAuthor,
.single-news .c-postMetas>div,
.single-business .c-postMetas>.c-postAuthor,
.single-business .c-postMetas>div,
.single-member .c-postMetas>.c-postAuthor,
.single-member .c-postMetas>div {
	margin-bottom: 0;
	margin-right: 10px;
	padding: 4px 12px;
	text-align: center;
	color: #9D8024;
	background: none;
	border: 1px solid #9D8024;
	border-radius: 4px;
}
.single-news .c-postTimes__item,
.single-news .c-postMetas__icon,
.single-news .c-postTerms__item,
.single-news .c-postTerms__link,
.single-business .c-postTimes__item,
.single-business .c-postMetas__icon,
.single-business .c-postTerms__item,
.single-business .c-postTerms__link,
.single-member .c-postTimes__item,
.single-member .c-postMetas__icon,
.single-member .c-postTerms__item,
.single-member .c-postTerms__link {
	margin-right: 0;
}
.single-news svg.c-postMetas__icon,
.single-business svg.c-postMetas__icon,
.single-member svg.c-postMetas__icon {
	display: none;
}
.single-news h3.c-pageTitle__main,
.single-business h3.c-pageTitle__main,
.single-member h3.c-pageTitle__main {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4;
}
.single-news .p-entry__content.c-postContent,
.single-business .p-entry__content.c-postContent,
.single-member .p-entry__content.c-postContent {
	margin-top: 2rem;
	line-height: 1.4;
}
.single-news .p-entry__content.c-postContent .gallery,
.single-business .p-entry__content.c-postContent .gallery,
.single-member .p-entry__content.c-postContent .gallery {
	line-height: 1.6;
	display: flex;
	flex-wrap: wrap;
	align-items: start;
	justify-content: start;
	gap: 10px;
}
.single-news .p-entry__content.c-postContent .gallery > div,
.single-business .p-entry__content.c-postContent .gallery > div,
.single-member .p-entry__content.c-postContent .gallery > div {
	width: calc(33.3333% - 20px / 3);
}
.single-news .p-entry__content.c-postContent .gallery > div img,
.single-business .p-entry__content.c-postContent .gallery > div img,
.single-member .p-entry__content.c-postContent .gallery > div img {
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

@media screen and (max-width: 600px) {

	dl.news-list {
		font-size: 14px;
	}
	dl.news-list dt {
		margin-left: 0;
	}
	dl.news-list dd {
		clear: both;
		padding: 0px 20px 7px 0px;
	}
	dl.news-list dt span.news-category {
		margin-bottom: 5px;
		font-size: 12px;
	}
	dl.news-list dt span.news-date {
		margin-bottom: 5px;
		padding: 2px 0px 0px 0px;
	}

	.single-news h3.c-pageTitle__main,
	.single-business h3.c-pageTitle__main,
	.single-member h3.c-pageTitle__main {
		font-size: 16px;
	}
}


/* Business */

.list-business {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.list-business > div {
	width: calc((100% - 60px) / 4);
	margin-bottom: 1.5rem;
}
.list-business .c-postThumb__figure {
	aspect-ratio: 0.7 / 1;
}
.list-business h4 {
	margin-top: .75rem !important;
	font-size: 16px !important;
	font-weight: 600 !important;
	text-align: left;
}
.list-business h5 {
	margin-top: .25rem;
	font-size: 18px;
	font-weight: 600;
	text-align: left;
}
.list-business p {
	margin-top: .75rem;
	text-align: center;
	color: var(--ark-color--link);
}
.list-business a {
	text-decoration: none;
}
.list-business a:hover {
	opacity: .8;
}

.single-business h4 {
	font-size: 22px;
	font-weight: 600;
	line-height: 1.4;
}
.single-business .description {
	margin-top: 2rem;
}
.single-business .googleurl,
.single-business .contact {
	margin-top: 2.5rem;
}

@media screen and (max-width: 600px) {
	.list-business {
		gap: 10px;
		justify-content: space-between;
	}
	.list-business > div {
		width: calc((100% - 10px) / 2);
	}
	.list-business h4 {
		font-size: 14px !important;
	}
	.list-business h5 {
		font-size: 16px;
	}

	.single-business h4 {
		font-size: 18px;
	}
}


/* Member */

.list-member {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.list-member > div {
	width: calc((100% - 60px) / 4);
	margin-bottom: 1.5rem;
}
.list-member .c-postThumb__figure {
	aspect-ratio: 0.7 / 1;
}
.list-member h4 {
	margin-top: .75rem !important;
	font-size: 20px !important;
	font-weight: 600 !important;
	text-align: left;
}
.list-member h4 span {
	display: block;
}
.list-member h5 {
	margin-top: .25rem;
	font-size: 16px;
	font-weight: 600;
	text-align: left;
}
.list-member p {
	margin-top: .75rem;
	text-align: center;
	color: var(--ark-color--link);
}
.list-member a {
	text-decoration: none;
}
.list-member a:hover {
	opacity: .8;
}

.single-member h4 {
	font-size: 22px;
	font-weight: 600;
	line-height: 1.4;
}
.single-member .description {
	margin-top: 2rem;
}
.single-member .detail_member {
	margin-top: 2rem;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
}
.single-member .detail_member {
	margin-top: 2rem;
}
.single-member .detail_member h3 {
	margin-bottom: 1rem;
	font-size: 22px;
}
.single-member .detail_member > .detail_member-image {
	width: 23%;
}
.single-member .detail_member > .detail_member-info {
	width: 75%;
}

@media screen and (max-width: 600px) {
	.list-member {
		gap: 10px;
		justify-content: space-between;
	}
	.list-member > div {
		width: calc((100% - 10px) / 2);
	}
	.list-member h4 {
		font-size: 16px !important;
	}
	.list-member h5 {
		font-size: 14px;
	}

	.single-member h4 {
		font-size: 18px;
	}
	.single-member .detail_member {
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.single-member .detail_member h3 {
		margin-top: 2rem;
		font-size: 20px;
	}
	.single-member .detail_member > .detail_member-image {
		width: 100%;
		text-align: center;
	}
	.single-member .detail_member > .detail_member-info {
		width: 100%;
	}
}

