@charset "utf-8";

/* Kakiden layout.minimal.css */
@import "exvalidation.css";

/* ===== Common / Top ===== */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * container
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.container {
	position: relative;
	margin: 0 auto;
	width: 100%;
	background: #ffffff;
}

.container_inner {
	margin: 0 auto;
	width: 100%;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * header
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.header {
	position: fixed;
    top: 0;
    left: 0;
    z-index: 10000 !important;
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 15px 0;
    border-bottom: 1px solid #e5e4e4;
    background: #ffffff;
	text-align: left;
}

.header.page {
}

.header_inner {
    position: relative;
	display: flex;
	width: 95%;
	height: 100%;
	margin: 0 auto;
	padding: 0px;
	flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-end;
}

.header_logo_wrap {
    margin-right: 1.2vw;
}

.header_logo {
    position: relative;
    --logo-width: clamp(
        180px,
        calc(38.46vw - 213.85px),
        340px
    );/* 適用範囲: 1024px ～ 1440px */
    width: var(--logo-width);
	margin: 0 0 10px;
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.header_logo.is-small {
    width: calc(var(--logo-width) * 0.7);
    margin: 0;
}

.header_logo img {
    position: relative;
    width: 100%;
	height: auto;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.open_close_tag_wrap {
    display: block;
    margin: 0;
    text-align: right;
    flex-grow: 1; /* 余白を埋めるように引き伸ばす */
}

.open_close_tag {
	display: inline-block;
    margin: 0 auto;
	padding: 1px 3px;
	border: 1px solid #e5e4e4;
    text-align: left;
	font-size: clamp(13.00px, calc(0.96vw + 3.15px), 17.00px);/* 適用範囲: 1024px ～ 1440px */
    transition:
        opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.open_close_tag {
    opacity: 1;
    transition: opacity 0.25s ease;
}

.open_close_tag.is-hidden {
    opacity: 0;
    max-height: 0;
    pointer-events: none;
}

.open_close_tag.is-none {
    display: none !important;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * nav
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nav {
    margin-left: 1.2vw;
}

.nav ul {
	display: flex;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	padding: 0px;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	justify-content: space-between;
    align-items: center;
}

.nav ul li {
	display: block;
	list-style-type: none;
	width: 100%;
	height: 100%;
	margin: 0 1vw;
	padding: 0;
	text-align: center;
	vertical-align: middle;
}

.nav ul li.last {
	margin: 0 0 0 1vw;
}

.nav ul li a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
    text-align: center;
	line-height: 1.2;
    white-space: nowrap;
	font-size: clamp(14.00px, calc(0.96vw + 4.15px), 18.00px);/* 適用範囲: 1024px ～ 1440px */
    font-style: normal;
    color: #000000;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.nav ul li a > span {
	letter-spacing: 0;
    font-family: "neue-haas-grotesk-display", sans-serif;
	font-size: clamp(8.00px, calc(0.72vw + 0.62px), 11.00px);/* 適用範囲: 1024px ～ 1440px */
}

.nav ul li.current_on a,
.nav ul li a:hover {
    /*color: #6439ff;*/
	text-decoration: none;
}

.nav ul li a:before {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 50%;
	height: 1px;
	width: 100%;
	margin-left: -50%;
	background: #000000;
    -moz-transition: all .15s ease-in-out 0s;
    -webkit-transition: all .15s ease-in-out 0s;
    -ms-transition: all .15s ease-in-out 0s;
    -o-transition: all .15s ease-in-out 0s;
    transition: all .15s ease-in-out 0s;
	-moz-transform: scaleX(0);
	-webkit-transform: scaleX(0);
  	-ms-transform: scaleX(0);
	-o-transform: scaleX(0);
  	transform: scaleX(0);
}

.nav ul li.current_on a:before,
.nav ul li a:hover:before {
	-moz-transform: scaleX(1);
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	-o-transform: scaleX(1);
	transform: scaleX(1);
}

.sub_nav {
	padding: 20px 0;
	border-bottom: 1px solid #e5e4e4;
}

.sub_nav ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 70%;
	height: 100%;
	margin: 0 auto;
	padding: 0px;
	flex-wrap: nowrap;
	justify-content: center;
    align-items: center;
}

.sub_nav ul li {
	display: block;
	list-style-type: none;
	height: 100%;
	margin: 0 2vw;
	padding: 0;
	text-align: center;
	vertical-align: middle;
}

.sub_nav ul li.last {
	margin: 0 0 0 2vw;
}

.sub_nav ul li a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
    text-align: center;
	line-height: 1.2;
    white-space: nowrap;
	font-size: clamp(14.00px, calc(0.96vw + 4.15px), 18.00px);/* 適用範囲: 1024px ～ 1440px */
    font-style: normal;
    color: #000000;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.sub_nav ul li.current_on a,
.sub_nav ul li a:hover {
	text-decoration: none;
}

.sub_nav ul li a:before {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 50%;
	height: 1px;
	width: 100%;
	margin-left: -50%;
	background: #000000;
    -moz-transition: all .15s ease-in-out 0s;
    -webkit-transition: all .15s ease-in-out 0s;
    -ms-transition: all .15s ease-in-out 0s;
    -o-transition: all .15s ease-in-out 0s;
    transition: all .15s ease-in-out 0s;
	-moz-transform: scaleX(0);
	-webkit-transform: scaleX(0);
  	-ms-transform: scaleX(0);
	-o-transform: scaleX(0);
  	transform: scaleX(0);
}

.sub_nav ul li.current_on a:before,
.sub_nav ul li a:hover:before {
	-moz-transform: scaleX(1);
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	-o-transform: scaleX(1);
	transform: scaleX(1);
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * mainArea
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ==========================================
*** クラス管理に最適化したスライドショーのCSS ***
========================================== */
#mainArea {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 0.514;
	margin: 0 auto;
	text-align: center;
	z-index: 0;
	overflow: hidden;
}

/* ---- 変更箇所: 個別のID指定をすべて共通のクラス名に変更しました ---- */
#mainArea .main-slide {
	z-index: 1;
	position: absolute;
	width: 100%;
	aspect-ratio: 1 / 0.514;
	top: 0;
	left: 0;
}

/* 
   ---- 変更箇所 ----
   最初のスライド以外は、JavaScriptが動くまでの初期状態として
   画面が崩れないようにあらかじめ非表示（display: none）にしておきます。
   （:not(:first-child) で2番目以降のスライドすべてを自動対象にします）
*/
#mainArea .main-slide:not(:first-child) {
	display: none;
}

/* ---- 変更箇所: #main03 のID指定を共通のクラス名に変更しました ---- */
#mainArea .main-slide .main-slide-tit,
#mainArea .main-slide .main-slide-txt {
	z-index: 2;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%; /* 文字画像が横いっぱいに綺麗に重なるための指定 */
}
	
/*-------------------------------------------
　■メインコンテンツ
-------------------------------------------*/

#main_content {
	width: 100%;
	margin: 0 auto;
}

#content {
	width: 75%;
	max-width: 1300px;
	margin: 50px auto;
	text-align: left;
}

#top_cur_ex {
	position: relative;
	width: 100%;
	margin-bottom: 50px;
}

#top_up_ex {
	position: relative;
	width: 100%;
	margin-bottom: 50px;
}

#top_new_info {
	position: relative;
	width: 100%;
	margin: 0 auto;
}

.top_cur_ex_wrap { 
	width: 100%;
    margin-bottom: 20px;
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	align-content: center;
}

.top_cur_ex_thumnail {
	width: 23%;
}

.top_cur_ex_thumnail img {
	width: 100%;
    box-shadow: 0 0 0 1px #e5e4e4;
}

.top_cur_ex_title {
    margin-bottom: 0;
	padding: 0 0 0 10px;
	line-height: 1.3;
	font-size: clamp(14.00px, calc(2.64vw + -13.08px), 25.00px);/* 適用範囲: 1024px ～ 1440px */
}

.top_cur_ex_title a:hover {
	text-decoration: none;
}

.top_cur_ex_title a.has-bracket-parent .hankakuAll {
    letter-spacing: normal;
    padding-left: 0.7em;
}

.top_cur_ex_title font {
    white-space: nowrap;
	font-size: clamp(12.00px, calc(2.40vw + -12.62px), 22.00px);/* 適用範囲: 1024px ～ 1440px */
}

.top_h2 {
	margin-bottom: 10px;
	line-height: 1;
    letter-spacing: -0.4rem;
	font-size: clamp(1.75rem, 0.574rem + 1.57vw, 2.25rem);
	font-weight: normal;
}

.top_h2 span {
	display: inline-block;
	vertical-align: clamp(0.1rem, -0.135rem + 0.31vw, 0.2rem);
	margin-left: 0.5rem;
	font-family: "neue-haas-grotesk-display", sans-serif;
	font-size: clamp(12.00px, calc(1.44vw + -2.77px), 18.00px);/* 適用範囲: 1024px ～ 1440px */
}

.top_future_ex_wrap {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	/*justify-content: space-between;*/
    gap: 2.66%; /* 列と列の間の隙間を均等に指定 ( (100% - (23% × 4)) / 3 = 約1.33% ) */
	
	/* 5個目以降を下の行に折り返す（カラム落ちさせる）指定 */
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.top_future_ex {
	width: 23%; /* 23% × 4列 = 96%（残りの4%が隙間に自動分配されます） */
}

/* 5個目以降（＝2行目以降）の要素にだけ、上の隙間（または下隙間）を作る */
.top_future_ex:nth-child(n+5) {
	margin-top: 20px; 
}

.top_future_ex_thumnail {
	width: 100%;
}

.top_future_ex_thumnail img {
	width: 100%;
    box-shadow: 0 0 0 1px #e5e4e4;
}

.top_future_ex_title {
    margin-bottom: 0;
	padding: 10px 0 0 0;
	line-height: 1.3;
	font-size: clamp(14.00px, calc(2.64vw + -13.08px), 25.00px);/* 適用範囲: 1024px ～ 1440px */
}

.top_future_ex_title a:hover {
	text-decoration: none;
}

.top_future_ex_title a.has-bracket-parent .hankakuAll {
    letter-spacing: normal;
    padding-left: 0.7em;
}

.top_future_ex_title font {
    white-space: nowrap;
	font-size: clamp(11.00px, calc(1.68vw + -6.23px), 18.00px);/* 適用範囲: 1024px ～ 1440px */
}

.link_to_all {
	position: absolute;
	top: 10px;
	right: 0;
	padding-left: clamp(0.875rem, 0.287rem + 0.78vw, 1.125rem);
	line-height: 1;
	font-size: clamp(0.875rem, 0.287rem + 0.78vw, 1.125rem);
}

.link_to_all a:hover {
	text-decoration: none;
}

.link_to_all::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: clamp(0.875rem, 0.287rem + 0.78vw, 1.125rem);
	height: clamp(0.875rem, 0.287rem + 0.78vw, 1.125rem);
	background: url(../image/arrow.svg) no-repeat 0 0;
}

.top_info {
	width: 100%;
	margin-bottom: 10px;
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	align-content: center;
}

.top_info_thumnail {
	width: clamp(6.25rem, -1.103rem + 9.8vw, 9.375rem);
}

.top_info_thumnail img {
	width: 100%;
    box-shadow: 0 0 0 1px #e5e4e4;
}

.top_info_title {
	padding: 0 0 0 10px;
	line-height: 1.3;
	font-size: clamp(1rem, -0.176rem + 1.57vw, 1.5rem);
}

.top_info_title a:hover {
	text-decoration: none;
}

.top_info_title span {
	font-size: clamp(0.875rem, -0.007rem + 1.18vw, 1.25rem);
}

.ex_archives {
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	align-content: center;
	margin-bottom: 10px;
}

.ex_archives:last-of-type {
	margin-bottom: 0;
}

.ex_archives_thumnail {
	width: 18%;
    flex-shrink: 0;
}

.ex_archives_thumnail img {
    display: block;
    width: 100%;
    height: auto;
}

.ex_archives_text {
	width: 82%;
     flex: 1;
    min-width: 0;
	padding-left: 10px;
}

/* ---------------------------------------------------------------------
■フッター
--------------------------------------------------------------------- */
#footer {
	width: 100%;
	padding: 0;
	margin: 0 auto;
}

#footer a {
	color: #ffffff;
	text-decoration: none;
}

#footer a:hover {
	color:#ffffff;
	text-decoration: none; 
}

.footer_insta {
	width: 100%;
	padding: 20px 0 30px;
	margin: 0 auto;
	background: #f9f9f9;
}

.footer_insta_inner {
	width: 75%;
    max-width: 1300px;
	margin: 0 auto;
}

.footer_insta_title {
	position: relative;
	display: inline-block;
	margin-bottom: 8px;
	padding-left: clamp(1.875rem, 0.404rem + 1.96vw, 2.5rem);
    letter-spacing: 1px;
	line-height: 1;
	font-family: "neue-haas-grotesk-display", sans-serif;
	font-size: clamp(1.25rem, -0.221rem + 1.96vw, 1.875rem);
}

.footer_insta_title::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: clamp(1.25rem, -0.221rem + 1.96vw, 1.875rem);
	height: clamp(1.25rem, -0.221rem + 1.96vw, 1.875rem);
	background: url(../image/icon_insta.svg) no-repeat 0 0;
}

.footer_information {
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding: 30px 0;
	background: #353535;
	color: #ffffff;
}

.footer_information_inner {
	width: 75%;
    max-width: 1300px;
	margin: 0 auto;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
}

.footer_information_left {
	width: 55%;
	padding-right: 2.5%;
}

.footer_information_right {
	width: 45%;
	padding-left: 2.5%;
	margin-top: 15px;
}

.footer_information_head {
	width: 100%;
	margin: 0 auto 30px;
	padding-bottom: 30px;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid rgba(255,255,255,0.5);
}

.footer_information_logo {
	width: 40%;
}

.footer_information_logo img {
	width: 100%;
}

.footer_information_sns {
	width: 60%;
	text-align: right;
}

.footer_information_sns .mr {
	margin-right: 20px;
}

.footer_information_sns img {
	width: clamp(1.25rem, -0.221rem + 1.96vw, 1.875rem);
}

.footer_information_nav {
	width: 100%;
}

.footer_information_nav ul {
	width: 100%;
}

.footer_information_nav ul li {
	position: relative;
	display: inline-block;
	margin-right: clamp(0.75rem, 0.309rem + 0.59vw, 0.938rem);
	margin-bottom: clamp(0.75rem, 0.309rem + 0.59vw, 0.938rem);
	padding-left: clamp(0.75rem, 0.309rem + 0.59vw, 0.938rem);
	font-size: clamp(12.00px, calc(0.96vw + 2.15px), 16.00px);/* 適用範囲: 1024px ～ 1440px */ 
	color: #ffffff;
}

.footer_information_nav ul li::before {
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
	font-size: clamp(0.75rem, 0.309rem + 0.59vw, 0.938rem);
	color: #ffffff;
}

.footer_information_nav ul li a {
	text-decoration: none;
	color: #ffffff;
}

.footer_information_related_links {
	width: 100%;
	margin-top: clamp(0.75rem, 0.309rem + 0.59vw, 0.938rem);
}

.footer_information_related_link {
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
    align-items: center;
	justify-content: flex-start;
}

.footer_information_related_link_pic {
	width: 28%;
}

.footer_information_related_link_pic img {
	width: 100%;
}

.footer_information_related_link_desc {
	width: 72%;
	margin-bottom: 0;
	padding-left: 5px;
	font-size: clamp(12.00px, calc(0.96vw + 2.15px), 16.00px);/* 適用範囲: 1024px ～ 1440px */ 
}

.map {
    position: relative;
    width: 100%;
    height: 0;
    padding-top:75%;
	margin-bottom: 10px;
}

.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:100%
}

.footer_information_address {
	margin: 10px 0 0;
}

.footer_information_address li {
	list-style-type: none;
	margin-left: 0;
	margin-bottom: 10px;
	line-height: 1.2;
	font-size: clamp(12.00px, calc(0.96vw + 2.15px), 16.00px);/* 適用範囲: 1024px ～ 1440px */ 
}

.footer_information_address li .tel{
	font-size: clamp(14.00px, calc(1.44vw + -0.77px), 20.00px);/* 適用範囲: 1024px ～ 1440px */ 
}

.footer_information_address li .kome{
	font-size: clamp(8.00px, calc(1.44vw + -6.77px), 14.00px);/* 適用範囲: 1024px ～ 1440px */ 
}

.footer_information_address li a {
	border-bottom: 1px solid rgba(255,255,255,0.5);
}
	
#gtranslate_element a {
	letter-spacing: 0;
	color: #000000;
}

.copyright {
	width: 100%;
	padding: 0px 0 20px;
	background: #353535;
	text-align: center;
	color: #ffffff;
}

.copyright small {
    font-size: clamp(8.00px, calc(1.44vw + -6.77px), 14.00px);/* 適用範囲: 1024px ～ 1440px */ 
}

/* ===== Page ===== */
/*-----------------------------レイアウト設定（page.php、single.php、archive.php、search.php）-----------------------------*/

/*-------------------------------------------
　■メインコンテンツ（page.php,single.php用）
-------------------------------------------*/

#main_content_page {
	width: 100%;
	margin: 0 auto;
}

#main_content_page_narrow {
    width: 60%;
    max-width: 1300px;
	margin: 0 auto;
}
	
/*-------------------------------------------
　■コンテンツ（page.php,single.php用）
-------------------------------------------*/

.content_page {
	width: 75%;
	max-width: 1300px;
	margin: 50px auto;
	text-align: left;
}

.content_page.narrow {
	width: 60%;
	max-width: 1300px;
	margin: 50px auto;
	text-align: left;
}

.content_page img {
	max-width: 100%;
    height: auto;
}
    
.content_page h2 {
    margin-top: 20px;
	margin-bottom: 5px;
	line-height: 1;
    letter-spacing: -0.4rem;
	font-size: clamp(24.00px, calc(2.88vw + -5.54px), 36.00px);/* 適用範囲: 1024px ～ 1440px */
	font-weight: normal;
}

.content_page .content h2 span.hankakuAll {
    vertical-align: 0;
	font-size: clamp(24.00px, calc(2.88vw + -5.54px), 36.00px);/* 適用範囲: 1024px ～ 1440px */
}

.content_page h2.blog_title {
    margin-top: 20px;
	margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e4e4;
	line-height: 1;
    letter-spacing: -0.4rem;
	font-size: clamp(18.00px, calc(2.88vw + -11.54px), 30.00px);/* 適用範囲: 1024px ～ 1440px */
	font-weight: normal;
}

.content_page h2.blog_title.bbnone {
    padding-top: 0;
    border-top: none;
}

.content_page h2.fc-header-title {
    font-size: clamp(14.00px, calc(2.64vw + -13.08px), 25.00px);/* 適用範囲: 1024px ～ 1440px */
}

.content_page h2 span {
	display: inline-block;
	vertical-align: clamp(0.1rem, -0.135rem + 0.31vw, 0.2rem);
	margin-left: 0.5rem;
     letter-spacing: 1px;
	font-family: "neue-haas-grotesk-display", sans-serif;
	font-size: clamp(12.00px, calc(1.44vw + -2.77px), 18.00px);/* 適用範囲: 1024px ～ 1440px */
    font-weight: 300;
    font-style: normal;
}

.content_page h2 span.hankakuAll {
	font-size: inherit;
}

.content_page h2.fc-header-title span.hankakuAll {
    display: inline-block;
    margin-left: 0.2rem;
    letter-spacing: 1px;
    vertical-align: 0;
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-size: inherit;
    font-weight: 300;
    font-style: normal;
    }
    
.content_page h2.taxonomy-header-title span.hankakuAll {
	display: inline-block;
	vertical-align: 0.3rem;
	margin-left: 0.5rem;
     letter-spacing: 1px;
	font-family: "neue-haas-grotesk-display", sans-serif;
	font-size: clamp(24.00px, calc(2.88vw + -5.54px), 36.00px);/* 適用範囲: 1024px ～ 1440px */
    font-weight: 300;
    font-style: normal;
}

.content_page h2.blog_title span.hankakuAll {
	vertical-align: 0;
	margin-left: 0;
	font-size: clamp(18.00px, calc(2.88vw + -11.54px), 30.00px);/* 適用範囲: 1024px ～ 1440px */
}

/*テーブル*/
.content_page table.standard{
	clear:both;
	cellspacing:0px;
	margin:0px auto 20px;
	width: 100%;
	border-top:1px solid #e5e4e4;
	}
	
.content_page table.solid{
	clear:both;
	cellspacing:0px;
	margin:0 auto 15px;
	width:100%;
	border-top:none;
	}
	
.content_page table.dotted{
	clear:both;
	cellspacing:0px;
	margin:0px auto 20px;
	width:100%;
	border-top:1px dotted #e5e4e4;
	}

.content_page th{
	padding:5px;
	background-color:#999999;
	border:1px solid #666666;
	text-align:center;
	color:#ffffff;
	}
    
.content_page th.fc-state-default{
	padding:5px;
	background-color:#cccccc;
	border:none;
	text-align:center;
	color:#000000;
	}

.content_page td{
	padding:5px;
	word-break: break-all;
	}
 
 .content_page td.fc-header-left {
	padding: 0 !important;
	}
    
 .content_page td.fc-header-left td {
	padding: 0 !important;
	}

 .content_page td.fc-header-right  {
	padding: 0 !important;
    vertical-align: bottom!important;
	}

  .content_page td.fc-header-right td {
	padding: 0 !important;
	}   

.content_page td.left_hissu{
	width:25%;
	padding:10px;
	background: url(../image/hissu.jpg) no-repeat 117px 10px;
	background-color:#f0f0f0;
	border:1px solid #e5e4e4;
	border-left:none; /*追加*/
	border-right:none; /*追加*/
	vertical-align:top;
    font-size: clamp(12.00px, calc(0.96vw + 2.15px), 16.00px);/* 適用範囲: 1024px ～ 1440px */
	}

.content_page td.left{
	width:20%;
	padding:20px;
	/*background-color:#f0f0f0;*/
	border:1px solid #e5e4e4;
	border-left:none; /*追加*/
	border-right:none; /*追加*/
}

.content_page td.left:not(.special) span {
	display: inline-block;
	line-height: 1.2;
	font-size: clamp(11.00px, calc(0.48vw + 6.08px), 13.00px);/* 適用範囲: 1024px ～ 1440px */
}

.content_page td.left.special span.small {
	display: inline-block;
	line-height: 1.2;
	font-size: clamp(11.00px, calc(0.48vw + 6.08px), 13.00px);/* 適用範囲: 1024px ～ 1440px */
}
	
.content_page td.left_event{
	width:25%;
	padding:20px;
	background-color:#f0f0f0;
	border:1px solid #e5e4e4;
	border-left:none; /*追加*/
	border-right:none; /*追加*/
	vertical-align:top;
	}
	
.content_page td.left_event_hissu{
	position: relative;
	width:25%;
	padding:20px;
	/*background: url(../image/hissu.jpg) no-repeat;
	background-position: 115px center;*/
	background-color:#f0f0f0;
	border:1px solid #e5e4e4;
	border-left:none; /*追加*/
	border-right:none; /*追加*/
	vertical-align:top;
	}

.content_page td.left_event_hissu .event_hissu_label {
    position: absolute;
    top: 20px;
    right: 10px;
    width: auto;
    height: 18px;
    padding: 0 5px;
    border-radius: 2px;
    background: #353535;
    text-align: center;
    line-height: 18px;
    font-family: 'DFSinSoPro6N-W3', serif;
    font-size: clamp(12px, calc(0.96vw + 2.15px), 16px);
    color: #fff;
}

.content_page td.right{
	width:75%;
	padding:20px;
	background-color:#ffffff;
	border:1px solid #e5e4e4;
	border-left:none; /*追加*/
	border-right:none; /*追加*/
	}
	
.content_page td.right_event{
	width:75%;
	padding:20px;
	background-color:#ffffff;
	border:1px solid #e5e4e4;
	border-left:none; /*追加*/
	border-right:none; /*追加*/
    font-size: clamp(12.00px, calc(0.96vw + 2.15px), 16.00px);/* 適用範囲: 1024px ～ 1440px */
	}
    
.content_page td.right_event p{
    margin-bottom: 0;
	}
	
.content_page td.left_eve{
	width:15%;
	padding:5px;
	background-color:#ffffff;
	border-bottom:1px dotted #aaaaaa;
	border-right:1px dotted #aaaaaa;
	}

.content_page td.right_eve{
	width:85%;
	padding:10px;
	background-color:#ffffff;
	border-bottom:1px dotted #aaaaaa;
	}

.content_page td.right_eve2{
	width:85%;
	padding:10px;
	background-color:#ffffff;
	border-bottom:1px dotted #aaaaaa;
	font-size:16px;
	}

.content_page td.all_solid{
	width:100%;
	padding:5px;
	}

.content_page td.left_solid{
	width:17%;
	padding:5px;
	border-bottom:1px solid #e5e4e4;
	}

.content_page td.right_solid{
	width:83%;
	padding:5px;
	border-bottom:1px solid #e5e4e4;
	}

.content_page td.left_dot2{
	width:50%;
	padding:5px;
	background-color:#ffffff;
	border-bottom:1px dotted #aaaaaa;
	}

.content_page td.center_dot2{
	width:25%;
	padding:10px;
	background-color:#ffffff;
	border-bottom:1px dotted #aaaaaa;
	border-left:1px dotted #aaaaaa;
	text-align:center;
	}

.content_page td.right_dot2{
	width:25%;
	padding:10px;
	background-color:#ffffff;
	border-bottom:1px dotted #aaaaaa;
	border-left:1px dotted #aaaaaa;
	text-align:center;
	}

.content_page iframe{
	border:1px solid #e5e4e4;
	}

.googlemaps{
	margin-bottom:10px;
	}

.print{
	margin:5px 10px;
	text-align:right;
	}

.print a{
	font-size:10px;
	}

#archives_month{
    margin:20px auto 0;
    text-align: center;
}

#archives_month_select {
    margin:20px auto 0;
    text-align: right;
}

#archives_month a{
    display: inline-block;
	width: auto;
    height: 40px;
    padding: 0 30px;
	border-radius: 3px;
	background: #353535;
    line-height: 40px;
	font-family: 'DFSinSoPro6N-W3', serif;
	font-weight: 400;
	font-style: normal;
	font-size: clamp(12.00px, calc(1.44vw + -2.77px), 18.00px);/* 適用範囲: 1024px ～ 1440px */
	color: #ffffff;
    -webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
  	-ms-transition: all 0.3s;
  	-o-transition: all 0.3s;
	transition: all 0.3s;
	}
    
#archives_month a:hover{
	background: #000000;
	}

/*-------------------------------------------
　■パンくずリスト
-------------------------------------------*/
		
#crumbs {
	width:668px;
	height:25px;
	background:url(../image/bg_crumbs.gif) no-repeat left top;
	padding-left:8px;
	margin-bottom:10px;
	font-size:11px;
	}

#crumbs ul {
	width:668px;
	float:right;
	}
	
#crumbs ul li {
	list-style-type:none;
	padding:0;
	margin:0;
	}
	
#crumbs li {
	float:left;
	line-height:25px;
	color:#777;
	padding-left:.75em;
	}
			
#crumbs li a {
	background:url(../image/crumbs.gif) no-repeat right center;
	display:block;
	padding:0 15px 0 0;
	}	
							
#crumbs li a:link,
#crumbs li a:visited {
	color:#777;
	text-decoration:none;
	}	
	
#crumbs li a:hover,
#crumbs li a:focus {
	color:#4A3D50;
	}

/*-------------------------------------------
　■ループ（page.php用）
-------------------------------------------*/

.content{
	width: 100%;
	margin: 0 auto;
	}
	
.content.wide{
	width:674px;
	margin:20px auto 0px;
	}

.content h3{
	clear:both;
	padding:0 0 5px;
	margin:0 auto 3px; /*修正*/
	width:100%;
	line-height:1.2;
	font-size: clamp(14.00px, calc(2.64vw + -13.08px), 25.00px);/* 適用範囲: 1024px ～ 1440px */
	font-weight:lighter;
	}
    
 .content h3 span:not(.hankakuAll) {
	font-size: clamp(10.00px, calc(1.92vw + -9.69px), 18.00px);/* 適用範囲: 1024px ～ 1440px */
	}
	
.content h3 .hankakuAll{
	letter-spacing: normal;
	padding-left: 3px;
	margin-right: -1px;
}
	
.content h3.bb{
	padding-top: 0;
	padding-bottom: 0;
	border-bottom: 1px solid #e5e4e4;
	}
	
.content h3.mb10{
	margin-bottom: 10px;
	}
	
.content h3.outline_title_h3{
	clear:both;
	padding:0px;
	margin:50px auto 20px;
}
	
.content .eng_title {
	font-size: clamp(0.813rem, 0.371rem + 0.59vw, 1rem);
}
	
.content h4{
	clear:both;
	padding:0px;
	margin:10px 0px 10px;
	font-size:15px;
	font-weight:bold;
	color:#85522c;
	border-bottom:1px solid #85522c;
	}

.content h5{
	clear:both;
	padding:0px;
	margin:5px 0px 5px;
	font-size:13px;
	font-weight:bold;
	background:url(../image/liststyle_globalnav2.gif) no-repeat left 0.1em;
	text-indent:20px;
	}
	
.content ul{
	padding:0 0 0 0;
	margin:0 0 0 20px;
	list-style-position:outside;
	}

.content ul li{
	list-style-type:disc;
	margin: 0 0 10px 10px;
	padding: 0 0 0 0;
	}
	
.content ul li ul{
	padding:0px;
	margin-left:10px;
	}
	
.content ul li ul li{
	list-style-type:disc;
	margin: 5px 0 5px 10px;
	padding: 0 0 0 0px;
	}

ul.wp-tag-cloud{
	margin: 0 0 30px 0px;
	padding:0 0 0 0px;
	list-style-position:outside;
	}
	
ul.wp-tag-cloud li{
	display:inline-block;
	list-style-type:none;
	margin: 0 0 5px 0px;
	padding: 0 15px 0 2px;
	background:url(../image/arrow2.gif) no-repeat right center;
	}
	
.alignleft {
    float: left;
    margin: 0 20px 20px 0;
	}

.aligncenter {
    display: block;
    margin: 0 auto 20px;
    text-align: center;
	}

.alignright {
    float: right;
    margin: 0 0 20px 20px;
}

/*展覧会情報タブ 所蔵品紹介タブ*/

#tabArea ul {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

#tabArea ul:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
	
.tab-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
	margin-bottom: 6px;
}

.tab-box p {
	width: 12%;
	margin: 0;
    text-align: center;
}

.tab-box p font.current {
    display: block;
	width: 100%;
	margin: 0;
    padding: 5px 0;
    text-align: center;
    background: #e0decf;
    font-size: clamp(0.875rem, 0.434rem + 0.59vw, 1.063rem);
    color: #000000;
}

.tab-box p a {
    display: block;
	width: 100%;
	margin: 0;
    padding: 5px 0;
    text-align: center;
    background: #f3f3f3;
    font-size: clamp(0.875rem, 0.434rem + 0.59vw, 1.063rem);
    color: #000000;
    transition: all 200ms linear;
}

.tab-box p a:hover {
    background: #e6e6e6;
    text-decoration: none;
}

#tabArea ul li {
    float: left;
	margin:0 5px 10px 0;
    list-style: none;
	}

#tab-contents{
    width: 100%;
    margin:0 auto 30px;
	padding: 50px 0 0;
	}

/*----------------------------------------------------
	Clearfix
----------------------------------------------------*/
#tabArea ul:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

/* 所蔵品のご紹介ページ */
.content .box{
	width:100%;
	background-color:#F0F0F0;
	margin: 15px auto;
	padding: 40px;
    display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: flex-start;
}

.content .box_left{
	width:40%;
	text-align: center;
}

.content .box_left img{
	width:100%;
    box-shadow: 0 0 0 1px #dedddd;
}
	
.content .box_right{
	width:60%;
	padding-left: 5%;
}
	
.soldout {
	display: inline-block;
	margin-left: 23px;
	padding: 3px 5px 2px;
	background: #e3dfce;
    letter-spacing:  -0.2rem;
	/*box-shadow: 0 0 4px 2px #bbbbbb;*/
}

.soldout2 {
	display: inline-block;
	margin-left: 23px;
	padding: 3px 5px;
	background: #e3dfce;
	box-shadow: 1px 1px 2px 1px #bbbbbb;
}
	
/* ギャラリーへのアクセスページ */
.content .box2{
	width:654px;
	margin:0 auto 15px;
	}

.content .box3{
	width:644px;
	height:400px;
	margin:0 auto 20px;
	padding:5px;
	background-color:#F0F0F0;
	border:1px solid #e5e4e4;
	}

/* Widgets */
.widget {
    position: relative;
    overflow: hidden;
    width: 100%;
}


.widget-content {
    position: relative;
	margin:0;
	padding:0;
}

.sidebar_inner .textwidget{
	padding:10px 10px 0;
	}

.sidebar2_inner .textwidget{
	padding:10px 10px 0;
	}

.widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.widget ul ul {
    margin-left: 15px;
}

.widget li {
    margin-top: 5px;
    margin-bottom: 5px;
}

/*-------------------------------------------
　■ループ（single.php用）
-------------------------------------------*/

.content_page .blog{
	width:100%;
	margin:0 auto 20px;
	}
	
.content_page .blog_innner{
	padding:15px;
	}
	
.content_page .blog h2{
	clear:both;
	width: auto !important;
	height: auto !important;
	padding: 30px 10px !important;
	/*border-bottom:1px solid #D9D9D9;*/
	background: #f3f1ea;
	text-align:left;
	font-size:16px;
	font-weight: lighter;
	letter-spacing:0em;
	color:#555555;
	margin-bottom:0px;
	}
	
.content_page .blog h3{
	padding:0px;
	margin:20px 0px 10px;
	font-size:16px;
	font-wight:bold;
	background:url(../image/bg_split.gif) no-repeat left center;
	text-indent:10px;
	color:#555555;
	}

.content_page .blog h4{
	padding:0px;
	margin:10px 0px 10px;
	font-size:15px;
	font-weight:lighter;
	background:url(../image/bg_split2.gif) no-repeat left center;
	text-indent:7px;
	color:#555555;
	}

.content_page .blog h5{
	padding:0px;
	margin:10px 0px 10px;
	font-size:13px;
	font-weight:lighter;
	color:#555555;
	}
	
.content_page .blog ul{
	padding:0 0 0 0;
	margin:0 0 0 20px;
	list-style-image:url(../image/arrow.gif);
	list-style-position:outside;
	}

.content_page .blog ul li{
	list-style-type:none;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	}

.content_page .blog table{
	clear:both;
	cellspacing:0px;
	margin:0px auto 20px;
	width:100%;
	border:1px solid #e5e4e4;
	}
	
.content_page .blog td{
	padding:5px;
	border:1px solid #e5e4e4;
	}

.content_page .blog a{
	color:#555555;text-decoration:underline;
	}

.content_page .blog a:hover{
	text-decoration:underline;
	}

.content_page .date	{
	text-align: right;
	}

.content_page .blog_content{
	padding-bottom:10px;
	margin-bottom:10px;
	}
	
.content_page .blog_content p{
	clear:both;
	}
    
.content_page .blog_content a{
	text-decoration: underline !important;
	}
    
.content_page .blog_content a span{
	text-decoration: underline !important;
	}
    
.content_page .blog_content img{
    max-width: 100%;
	margin: 20px 0;
	}

.content_page a.detail-btn {
    display:block;
    width:300px;
    height:40px;
    padding:0;
    margin:30px auto;
    line-height:40px;
    text-align:center;
    text-decoration:none;
    background:#e8e5d7;
    -webkit-transition:all .3s;
    -moz-transition:all .3s;
    -ms-transition:all .3s;
    transition:all .3s;
}

.content_page a.detail-btn:hover {
    background:#c3bb96;
    text-decoration:none;
}

.ut-bura dl {
    display: block;
    line-height: 1.4;
}

.ut-bura dt {
    float: left;
}

.ut-bura dd {
    overflow: hidden;
}

.ut-bura dl:after {
    display: block;
    visibility: hidden;
    clear: both;
    height: 0;
    content: ".";
}

#trackbacks .trackbacks-header {
	background:url(../image/liststyle01.gif) no-repeat left 0.35em;
	text-indent:16px;

	}

#comments .comments-header {
	background:url(../image/liststyle01.gif) no-repeat left 0.35em;
	text-indent:16px;
	}

#comments .comments-content {
	padding: 5px 0px 5px 0px;
    border-bottom: 1px dotted #aaaaaa;
	}

.comment .inner {
	margin-top: 10px;
	margin-bottom: 0;
	word-wrap: break-word; 
	}

/*-------------------------------------------
　■2017年追加css
-------------------------------------------*/

.the_content {
	padding-bottom:10px;
}

.the_content p {
	margin-bottom:0px;
}

.the_content img {
	max-width: 100%;
}

.thumbnail_image_group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 10px;
    padding-top: 3px;
}

.thumbnail_image_group > span {
    flex: 0 0 calc((100% - 30px) / 4);
    aspect-ratio: 4 / 3;
    box-shadow: 0 0 0 1px #dedddd;
}

/*-------------------------------------------
　■2018年追加css
-------------------------------------------*/

.ut-m0 {
    margin: 0 !important;
}

.ut-mt0 {
    margin-top: 0 !important;
}

.ut-mb0 {
    margin-bottom: 0 !important;
}

.ut-mt5 {
    margin-top: 5px !important;
}

.ut-mb5 {
    margin-bottom: 5px !important;
}

.ut-ms0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.ut-mt10 {
    margin-top: 10px !important;
}

.ut-mb10 {
    margin-bottom: 10px !important;
}

.ut-mt20 {
    margin-top: 20px !important;
}

.ut-mb20 {
    margin-bottom: 20px !important;
}

.ut-mt30 {
    margin-top: 30px !important;
}

.ut-mb30 {
    margin-bottom: 30px !important;
}

.ut-mt40 {
    margin-top: 40px !important;
}

.ut-mb40 {
    margin-bottom: 40px !important;
}

.ut-mt50 {
    margin-top: 50px !important;
}

.ut-mb50 {
    margin-bottom: 50px !important;
}

.ut-pl5 {
	padding-left: 5px !important;
}

.ut-pl10 {
	padding-left: 10px !important;
}

.ut-lead {
    font-size: 16px;
	line-height: 1.5;
}

.ut-strong {
    font-weight: bold;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=password] {
	clear: both;
	overflow: auto;
	width: 50%;
	height: 40px;
	margin: 0;
	padding: 0 5px;
	font-size: 14px;
}

textarea {
	clear: both;
	width: 100%;
	margin: 0;
	padding: 10px;
	resize: none;
	font-size: 14px;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=password],
textarea {
  	outline: none;
	border-radius: 3px;
	border: 1px solid #dddddd;
	box-shadow: inset 0 0 3px #cccccc;
	background: #ffffff;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
	transition: all 0.3s;
}

input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=password]:focus,
textarea:focus {
	box-shadow: 0px 0px 5px #7bc1f7;
	background: #dbeefd;
}

input[type="text"][size="3"] {
    font-family: monospace !important;
    width: 5ch !important; /* 3文字 ＋ 1文字分のゆとり */
}

input[type="text"][size="4"] {
    font-family: monospace !important;
    width: 6ch !important; /* 4文字 ＋ 1文字分のゆとり */
}

label {
	padding-left: 7px;
	cursor: pointer;
}

select {
	-moz-appearance: none;
  	-webkit-appearance: none;
  	appearance: none;
	width: 150px;
	height: 30px;
	padding: 0 5px;
	line-height: 30px;
	border: 1px solid #dddddd;
	border-radius: 3px;
	background: #eeeeee;
	text-align: left;
	font-size: 14px;
	color: #333333;
}

select.narrow {
	width: 60px;
}

select.auto {
	width: auto;
}

button,
input[type=submit],
input[type=button] {
	display: inline-block;
	outline:none;
	width: 150px;
	height: 40px;
	border-radius: 3px;
	border: none;
	background: #353535;
    letter-spacing: -0.15em;
	font-family: 'DFSinSoPro6N-W3', serif;
	font-weight: 400;
	font-style: normal;
	font-size: clamp(12.00px, calc(1.44vw + -2.77px), 18.00px);/* 適用範囲: 1024px ～ 1440px */
	color: #ffffff;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-o-appearance: none;
	-ms-appearance: none;
	line-height: 1;
	vertical-align: middle;
	cursor: pointer;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
  	-ms-transition: all 0.3s;
  	-o-transition: all 0.3s;
	transition: all 0.3s;
}

button:hover,
input[type=submit]:hover,
input[type=button]:hover {
	background: #000000;
}

.check-submit-wrap {
	margin: 40px 0;
	text-align: center;
}

.check-submit {
    display: inline;
}

.check-submit button {
	outline: none;
	width: 150px;
	height: 40px;
	margin: 0 20px;
	border-radius: 3px;
	border: none;
	background: #353535;
	font-size: 16px;
	font-weight: bold;
	color: #ffffff;
	cursor: pointer;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
	transition: all 0.3s;
}

.check-submit button:hover {
	background: #000000;
}

.lock {
    overflow:hidden;
}

.overlay {
	display: none;
	overflow: hidden;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1002;
	height: 100%;
	width: 100%;
	background: rgba(0,0,0,0.7);
}

.sending-indication {
	display: none;
	position: fixed;
	top: 50%;
	left: 0;
	right: 0;
	z-index: 1003;
	width: 200px;
	height: 100px;
	margin: -50px auto 0;
	padding-top: 18px;
	border-radius: 4px;
	background: rgba(0,0,0,0.5);
	text-align: center;
	font-weight: bold;
	color: #ffffff;
}

.sending-indication span{
	display: inline-block;
	width:40px;
	height:40px;
	border-radius: 50%;
	border: 3px solid #ffffff;
	border-top-color: #aba9aa;
	-webkit-animation: spinner 0.5s infinite ease-in;
	-moz-animation: spinner 0.5s infinite ease-in;
	-o-animation: spinner 0.5s infinite ease-in;
	-ms-animation: spinner 0.5s infinite ease-in;
}

@-webkit-keyframes spinner {
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
}

@-moz-keyframes spinner {
	0% { -moz-transform: rotate(0deg); }
	100% { -moz-transform: rotate(360deg); }
}

@-o-keyframes spinner {
	0% { -o-transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

@-ms-keyframes spinner {
	0% { -ms-transform: rotate(0deg); }
	100% { -ms-transform: rotate(360deg); }
}

.disp {
	display: block !important;
}

.disp-table {
	display: table !important;
}

.disp-table-cell {
	display: table-cell !important;
}

.disp-inline {
	display: inline !important;
}

.disp-inline-block {
	display: inline-block !important;
}

.disp-none {
	display: none !important;
}

.print-disp {
	display: none;
}

.visibility-hidden {
	visibility: hidden !important;
}

.visibility-visibile {
	visibility: visible !important;
}

.attention {
	position: relative;
    margin: 20px auto;
    padding: 20px;
	border-radius: 2px;
	border: 1px solid #dddddd;
}

.event-end {
	display: inline-block;
	height: clamp(14.00px, calc(2.40vw + -10.62px), 24.00px);
	padding: 0 5px;
	border-radius: 2px;
	background: #666666;
	line-height: clamp(14.00px, calc(2.40vw + -10.62px), 24.00px);
	font-size: clamp(11.00px, calc(1.68vw + -6.23px), 18.00px);/* 適用範囲: 1024px ～ 1440px */
	color: #ffffff;
}

.top_event_banner {
    width: 100%;
    margin-bottom: 50px;
    background: #f3f1eb;
}

.top_event_banner_inner {
	width: 75%;
	max-width: 1300px;
	height: clamp(120.00px, calc(19.23vw + -76.92px), 200.00px);/* 適用範囲: 1024px ～ 1440px */
	margin: 0 auto;
	padding: 20px 0;
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	align-content: center;
}

.top_event_banner_left {
	width: auto;
	padding: 0 clamp(1.5rem, -2.029rem + 4.71vw, 3rem) 0 0;
	text-align: left;
	line-height: 1;
	letter-spacing: -0.4rem;
	font-size: clamp(1.75rem, 0.574rem + 1.57vw, 2.25rem);
	white-space: nowrap;
}

.top_event_banner_left span {
    margin-left: 0.5rem;
    vertical-align: clamp(0.1rem, -0.135rem + 0.31vw, 0.2rem);
	letter-spacing: 1;
	font-family: "neue-haas-grotesk-display", sans-serif;
	font-size: clamp(12.00px, calc(1.44vw + -2.77px), 18.00px);/* 適用範囲: 1024px ～ 1440px */
}

.top_event_banner_center {
	width: auto;
	height: 100%;
	padding: 0 0 0 clamp(1.5rem, -2.029rem + 4.71vw, 3rem);
	border-left: 1px solid #dddddd;
}

.top_event_banner_center img {
	height: 100%
}

.top_event_banner_right {
	padding: 0 0 0 10px;
	line-height: 1.3;
	font-size: clamp(14.00px, calc(2.64vw + -13.08px), 25.00px);/* 適用範囲: 1024px ～ 1440px */
}

.top_event_banner_right font {
	font-size: clamp(12.00px, calc(2.40vw + -12.62px), 22.00px);/* 適用範囲: 1024px ～ 1440px */
}

.top_event_banner_right a {
	text-decoration: none;
}

.link-event-wrap {
	display: block;
	margin: 10px auto;
}

.link-event {
	display: block;
	width: 200px;
	height: 40px;
	margin: 0 auto;
	border-radius: 3px;
	border: 1px solid #d3ccb0;
	background: #e5e1d1;
	box-shadow: inset 1px 1px 1px #f1efe7, 1px 1px 1px #cccccc;
	line-height: 40px;
	text-shadow: 0 -1px 1px rgba(0,0,0,0.5), 1px 1px 1px rgba(255,255,255,0.5);
	text-align: center;
	font-size: 14px;
	color: #3d0a02;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
	transition: all 0.3s;
}

.link-event:hover {
	border: 1px solid #c6be9b;
	background: #d3ccb0;
	text-decoration: none !important;
}

.tablenav {
	clear: both;
	height: 30px;
	margin: 30px auto 0;
	padding: 0;
	text-align: center;
	color: #3d0a02;
}

.page-numbers,
.tablenav .current,
.tablenav .next,
.tablenav .prev {
	display: inline-block;
	width: 30px;
	height: 30px;
	margin: 0 3px;
	line-height: 30px;
	border: 1px solid #d3ccb0;
	background: #e5e1d1;
	box-shadow: inset 1px 1px 1px #f1efe7, 1px 1px 1px #cccccc;
	text-align: center;
	text-decoration: none;
	text-shadow: 0 -1px 1px rgba(0,0,0,0.5), 1px 1px 1px rgba(255,255,255,0.5);
	font-size: 14px;
	color: #3d0a02;
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
	transition: all 200ms linear;
}

.page-numbers:hover,
.tablenav .next:hover,
.tablenav .prev:hover {
	border: 1px solid #c6be9b;
	background: #d3ccb0;
	text-decoration: none;
	color: #3d0a02;
}

.tablenav .current {
	border: 1px solid #c6be9b;
	background: #d3ccb0;
	text-decoration: none;
	color: #3d0a02;
}

.movie {
	width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    margin: 0;
    border: 0;
}

.exhibition-sell {
	width: 100%;
    padding: 20px 30px;
    position: relative;
    margin: 20px auto 50px;
	font-size: clamp(0.813rem, 0.077rem + 0.98vw, 1.125rem);
}

.exhibition-sell:before,
.exhibition-sell:after {
    content: "";
    position: absolute;
    top: -2px;
    bottom: -2px;
    z-index: 1;
    width: 10px;
    border: 1px solid #e5e4e4;
}

.exhibition-sell:before {
    left: 0;
    border-right:none;
}

.exhibition-sell:after {
    right: 0;
    border-left:none;
}

.exhibition-year-title {
	margin-bottom: 9px;
	padding-bottom: 9px;
	line-height: 1;
	font-size: clamp(14.00px, calc(2.64vw + -13.08px), 25.00px);/* 適用範囲: 1024px ～ 1440px */
}

.blog_content img {
	margin-bottom: 10px;
}

.exhibition-movie-wrap {
	display: inline-block;
	width: auto;
	max-width: 100%;
}

.exhibition-movie-mov1 {
	float: right;
	max-width: 300px;
}

.exhibition-movie-mov2 {
	float: right;
	max-width: 300px;
	margin-right: 20px;
}

.exhibition-movie {
	max-width: 300px;
	aspect-ratio: 16 / 9; /* 実際の動画比率に合わせて変更 */
    object-fit: cover;
    object-position: center;
}

.exhibition-movie-text {
	margin-top: 10px;
	margin-bottom: 0;
}

.exhibition-photo-wrap {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	width: 100%;
}

.exhibition-photo {
	width: 18%;
	margin-right: 2%;
	margin-bottom: 2%;
}

.exhibition-photo:nth-of-type(n+6) {
	margin-bottom: 0;
}

.exhibition-photo img {
	width: 100%;
	height: auto;
}

.iframe-landscape {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9; /* または 4 / 3 */
  border: 0;
}

.landscape_pics_wrap {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	/*justify-content: space-between;*/
    gap: 1.33%; /* 列と列の間の隙間を均等に指定 ( (100% - (30% × 3)) / 3 = 約3.33% ) */
	
	/* 4個目以降を下の行に折り返す（カラム落ちさせる）指定 */
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.landscape_pic {
	width: 24%; /* 24% × 4列 = 96%（残りの4%が隙間に自動分配されます） */
}

/* 4個目以降（＝2行目以降）の要素にだけ、上の隙間（または下隙間）を作る */
.landscape_pic:nth-child(n+5) {
	margin-top: 20px; 
}

.landscape_pic img {
	width: 100%;
}

a.tag-cloud-link {
    font-size: clamp(12.00px, calc(1.44vw + -2.77px), 18.00px) !important;/* 適用範囲: 1024px ～ 1440px */ 
}

.iframe-map {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9; /* または 4 / 3 */
  border: 0;
}

.access_pics_wrap {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
    margin: 20px 0;
}

.access_pic.narrow {
	width: 47.586%;
    margin-bottom: 0;
    text-align: center;
}

.access_pic.wide {
	width: 50.414%;
    margin-bottom: 0;
    text-align: center;
}

.access_pic img {
    width: 100%;
}

.privacy_h3 {
    font-size: clamp(16.00px, calc(1.92vw + -3.69px), 24.00px);/* 適用範囲: 1024px ～ 1440px */
}
