@charset "UTF-8";

/* =============================================
	mobile menu settings
=============================================　*/
/* Mobile Menu Button */
#menu-button{
	visibility:hidden;
	opacity:0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: fixed;
	z-index: 900;
	top: 0;
	right: 0;
	width: 48px;
	height: 48px;
	background-color: #fafafa;
}
#menu-button.nav-on {
	visibility:visible;
	opacity:1;
}
#menu-button .ham-lines {
	position: relative;
	margin: 0 auto;
	width: 32px;
	height: 32px;
}
#menu-button .ham-lines span,
#menu-button .ham-lines::before,
#menu-button .ham-lines::after {
	position: absolute;
	display: block;
	right: 0;
	left: 0;
	margin: 0 auto;
	width: 28px;
	height: 2px;
	background-color: #111;
	border-radius: 1px;
}
#menu-button .ham-lines span {
	bottom: 15px;
	transition: all .25s .25s;
	opacity: 1;
}
#menu-button .ham-lines::before,
#menu-button .ham-lines::after {
	content: "";
}
#menu-button .ham-lines::before{
	bottom: 24px;
	animation: menu-bar01 .75s forwards;
}
#menu-button .ham-lines::after {
	bottom: 6px;
	animation: menu-bar03 .75s forwards;
}
#menu-button .ham-text {
	font-size: 12px;
	line-height: 1;
}
#menu-button.is-active .ham-lines span {
	opacity: 0;
}
#menu-button.is-active .ham-lines::before {
	animation: active-menu-bar01 .5s forwards;
}
#menu-button.is-active .ham-lines::after {
	animation: active-menu-bar03 .5s forwards;
}
@keyframes menu-bar01 {
	0% {
		transform: translateY(9px) rotate(45deg);
	}
	50% {
		transform: translateY(9px) rotate(0);
	}
	100% {
		transform: translateY(0) rotate(0);
	}
}
@keyframes menu-bar03 {
	0% {
		transform: translateY(-9px) rotate(-45deg);
	}
	50% {
		transform: translateY(-9px) rotate(0);
	}
	100% {
		transform: translateY(0) rotate(0);
	}
}
@keyframes active-menu-bar01 {
	0% {
		transform: translateY(0) rotate(0);
	}
	50% {
		transform: translateY(9px) rotate(0);
	}
	100% {
		transform: translateY(9px) rotate(45deg);
	}
}
@keyframes active-menu-bar03 {
	0% {
		transform: translateY(0) rotate(0);
	}
	50% {
		transform: translateY(-9px) rotate(0);
	}
	100% {
		transform: translateY(-9px) rotate(-45deg);
	}
}
/* Mobile Menu Button end */

/* by fujimoto */

.btn_mail a:hover {
	opacity: 0.7;
}

.exhibition-wrapper {
	background: url(../../uploads/bg_web_exh_1.png)no-repeat top right, url(../../uploads/web-exhibition.png)repeat-x;
}

#pagewrap .exhibition-wrapper .row_inner {
	display: flex;
	align-items: center;
}

.page-id-503 #pagewrap .ti_2_line_1_border_bottom::after {
	background: transparent;
}

#pagewrap #footer .sp-footer-icons-container a {
    background-color: #4953ab;
    padding: 13px 0 9px;
}

#pagewrap #footer .sp-footer-icons-container a.sp-footer-map {
	background-color: #fff;
}

#pagewrap #footer .sp-footer-icons-container svg {
    fill: #fff;
    height: 20px;
}

#pagewrap #footer .sp-footer-icons-container a.sp-footer-map svg {
	 fill: #4953ab;
}

#pagewrap .tb_y0k3609 img {
	width: 100%;
}

#pagewrap .tb_p9dz251 {
	flex: 1;
}

#pagewrap .wpcf7 table tr td select {
	background-color: transparent;
}

#body #content .module .wpcf7 input[type=submit] {
    font-family: "Font Awesome 6 Free";
}

body.page-id-503 input[type=password] {
	width: 100%;
	border-radius: 0;
	background-color: transparent;
}

body.page-id-503 input[type=submit] {
	background: #4953ab;
	font-size: 16px;
	font-weight: bold;
	padding: 12px 35px;
	margin-top: 30px;
	border-radius: 0;
}

body.page-id-503 #pagewrap.site a {
	color: #000;
}

.post-password-form {
    padding-top: 45px;
}

/* end fujimoto */

/* =============================================

	Media Query

============================================= */
@media screen and (max-width: 1400px) { /* for iPad pro landscapes */

}

@media screen and (max-width: 1180px) { /* for tablet landscapes */

	#pagewrap {
		position: relative;
		padding-bottom: 51px;
	}

	#header.header {
		padding-top: 0;
	}

	/* module menu button visible */
	#menu-button{
		visibility:visible;
		opacity:1;
	}
	
	/* Mobile Menu Container ここを調整すると、メニューボタンクリック後の動作を調整できる */
	#main-menu-container {
		position: fixed;
		z-index: 700;
		top: 0;
		left: -100vw;
		right: auto;
		bottom: auto;
		overflow-y: auto;
		background-color: #f1f1f1;
		display:block;
		width: 100vw;
		height: 100vh;
		transition: .3s linear;
	}
	#main-menu-container.is-active{
		left: 0;	
	}
	/* Mobile Menu Container ここを調整すると、メニューボタンクリック後の動作を調整できる */

/* 	by fujimoto */
	body.mobile_menu_active #pagewrap #header, body #pagewrap #header.header {
		padding: 45px 0 0;
	}

	#pagewrap #headerwrap #main-menu-container.is-active {
		background: #4953ab;
	}

	#pagewrap #headerwrap #main-menu-container.is-active a, #menu-button .ham-text {
		color: #fff;
	}

	#menu-button {
		background: #4953ab;
	}

	#menu-button .ham-lines span, #menu-button .ham-lines::before, #menu-button .ham-lines::after {
		background-color: #fff;
	}
	
	#pagewrap #headerwrap #main-menu-container a {
		color: #fff;
	}
	

}

@media screen and (max-width: 1024px) { /* for tablet landscape */

	/* style for contact forms, if do not use to delete please
	コンタクフォームのテーブル調整　不要なら消す*/
	.wpcf7 table tr th,
	.wpcf7 table tr td{
		width:100%;
		display:block;
		padding: 10px 0px;
	}
	.wpcf7 table tr th{
		padding-bottom:0;
	}
	/* style for contact forms, if do not use to delete please
	コンタクフォームのテーブル調整　不要なら消す*/

}

@media screen and (max-width: 980px) { /* for mobile landscape */
	#pc-backtop {
		display: none;
	}
	#footer .sp-footer-icons-container {
		display: flex;
	}
}

@media screen and (max-width: 820px) { /* for tablet portrate */
	#pc-backtop {

	}
	#footer .sp-footer-icons-container {

	}
}

@media screen and (max-width: 768px) { /* for mobile  */
	

}

@media screen and (max-width: 460px) { /* for mobile small  */
	

}

body{
   background:#fff;
}

body.no-home{
  background:url("../../uploads/bg_top_page.png")no-repeat top center;
}

body.single-post{
    background-size: 100% 215px;
}

body *{
    box-sizing:border-box;
}

/**pagewidth body

:root{
  --pagewidthbody:1600px;
}

#pagewrap,
.themify_builder_row.fullwidth .row_inner{
	max-width:var(--pagewidthbody);
    width: 100%;
    margin: 0 auto;
}

end pagewidth body**/

body .pagewidth{
	width:100%;
	max-width:1020px;
	margin:0 auto;
}

.module_row > .row_inner{
	width:100%;
}

#pagewrap.site{
  color:#141414;
  font-size:14px;
  line-height:1.857;
  font-family:"ヒラギノ角ゴ Pro W3", hiragino Kaku Gothic ProN, Hiragino Sans, "ヒラギノ角ゴシック", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

#pagewrap.site a{
	color:#f184bf;
	text-decoration:underline;
}
#pagewrap.site a:hover{
	text-decoration:none;
}

/* -----End pagewrap pagewidth----- */

/* -----header----- */
body #headerwrap{
   background-color:transparent;
	z-index:10;
}

#headerwrap #header,
#footerwrap #footer{
   border:0px;
}

body #header{
	overflow:hidden;
	padding:0;
	
	
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
	z-index:10;
}

body.home #header{
  height: 570px;
}

body.no-home #header{
  height:146px;
	position:relative;
	display: flex;
    flex-direction: column-reverse;
}

/*.header-brand-container{
	float:left;
	padding-top:9px;
}

.rh{
	float:right;
	padding-top:25px;
}
*/
body.home #site-logo {
	position:absolute;
    top: auto;
    left: 0;
    right: 0;
    text-align: center;
  bottom:0;
  z-index:2;
}

body.no-home #site-logo {
  top:auto;
    left: 0;
    right: 0;
	bottom:0;
  text-align: center;
}

.btn_mail{
	text-align:right;
}

body #site-logo a,
body #site-logo img{
	display:inline-block;
	vertical-align:middle;
}

/* -----end header----- */

/* -----menu----- */

#headerwrap #main-menu-container{padding:35px 0 33px;border-bottom:1px solid #141414;}
 #headerwrap #main-menu{height: 18px;max-width:1020px;margin:0 auto; width: 100%;position:static;list-style:none;}
 #headerwrap #main-menu > li {height: 18px;background-image:url("../../uploads/menu.png");float:left;padding:0;margin:0;}
#headerwrap #main-menu > li > a {width:100%;height:100%;display:block;color:transparent;}
 #headerwrap #main-menu li ul.sub-menu{width:100%;border: 0;border-radius: 0;padding: 0;background:rgba(255,255,255,0.8);}
 #headerwrap #main-menu li ul.sub-menu li {border-bottom: 1px dotted #ccd6e3;width: 100% !important;}
 #headerwrap #main-menu li ul.sub-menu li a {padding: 18px 0 17px;font-size: 13px;width: 100% !important;color: #434343 !important;z-index:100;}
 #headerwrap #main-nav .current_page_item a,#pagewrap #main-nav .current-menu-item a {background-color: transparent;color: #666;border-radius: 0;}

 #headerwrap #main-menu  li.nav_f,
 #headerwrap #main-menu  li.nav00 {display:none;}

#headerwrap #main-menu > li:hover{
	border-color:#00c8ea;
}

#headerwrap #main-menu ul.sub-menu li a:hover{
	text-decoration:none;
}

 #headerwrap #main-menu > li.nav01 { width: 138px;background-position: top left 0px;}
 #headerwrap #main-menu > li.nav02 { width: 137px;background-position: top left -138px;}
 #headerwrap #main-menu > li.nav03 { width: 235px;background-position: top left -275px;}
 #headerwrap #main-menu > li.nav04 { width: 157px;background-position: top left -510px;}
 #headerwrap #main-menu > li.nav05 { width: 194px;background-position: top left -667px;}
 #headerwrap #main-menu > li.nav06 { width: 159px;background-position: top left -861px;}

 #headerwrap #main-menu > li.nav01:hover { width: 138px;background-position: top 18px left 0px;}
 #headerwrap #main-menu > li.nav02:hover { width: 137px;background-position: top 18px left -138px;}
 #headerwrap #main-menu > li.nav03:hover { width: 235px;background-position: top 18px left -275px;}
 #headerwrap #main-menu > li.nav04:hover { width: 157px;background-position: top 18px left -510px;}
 #headerwrap #main-menu > li.nav05:hover { width: 194px;background-position: top 18px left -667px;}
 #headerwrap #main-menu > li.nav06:hover { width: 159px;background-position: top 18px left -861px;}

#headerwrap #main-menu li ul.sub-menu{
	display: block !important;
    position: absolute;
	top:calc(100% + 1px);
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.1s ease-in, opacity 0.1s ease-in;
	z-index: 100;
    border-radius: 5px;
    left: -999em;
	width:100%;
	border: 0;
	border-radius: 0;
	padding:8px 0 0;
	background-image: linear-gradient(to top, rgba(47,200,226,0.95) , rgba(110,224,243,0.95));
	list-style:none;
	margin:0;
	white-space: nowrap;
}
#headerwrap #main-menu li:hover > ul.sub-menu{
    left: 50%;
    transform: translateX(-50%);
	visibility: visible;
    opacity: 1;
}

/* -----end menu----- */

/* -----footer----- */
#footerwrap #footer{
	padding:40px 0 10px;
	overflow:hidden;
}

.menu_footer .module ul{
	list-style:none;
  margin:0;
  border-left:1px solid #5d5d5d;
  padding:8px 10px 6px 28px;
}

.menu_footer .module{
	width:calc(50% - 5px);
  display:inline-block;
  vertical-align:top;
}

#pagewrap .menu_footer .module ul li a{
	color:#000;
}

.copyright-container{
	background:#ffebeb;
  padding:10px 10px 9px;
	text-align:center;
}

.copyright-container span{
	color:#141414;
  font-size:13px;
}

.copyright-container a img{
	display:block;
}

.copyright-container span,.copyright-container a{
  display:inline-block;
	vertical-align:middle;
  padding-left:3px;
}

body #pc-backtop{
    bottom:90px;
	width:auto;
}

#pagewrap .f-con .rtt a{
	padding:0;
}

/* -----end footer----- */

/* -----general----- */

body .module.module-layout-part{
	margin-bottom:0px;
}

#pagewrap .module .module-title{
	font-family: "ヒラギノ角ゴ Pro W6", hiragino Kaku Gothic ProN, Hiragino Sans, "ヒラギノ角ゴシック",Yu Gothic,Yu Gothic M,"メイリオ",sans-serif, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.module-image:hover a img{
	opacity:0.7;
}

table{
	width:100%;
	border-collapse:collapse;
}


.module.module-buttons *{
	display:block;
}

.module.module-buttons span{
	margin:0;
}


.m_font_1.module,
.ti_font_1.module .module-title{

}

#content{
	padding:0;
}

.module{
	margin-bottom:30px;
}
.module p:last-child{
	margin:0;
}

body .module_row > .row_inner {
    max-width:100%;
}

/* -----end general----- */

.row_main_home_1 .module{
	margin:0;
}

.img_bg_main.module img{
	height:750px;
	width:100%;
	object-fit:cover;
}

.img_catch_home.module{
	position:absolute !important;
	bottom:0;
	left:0;
	right:0;
	text-align:center;
}

.text_1_home_1.module{
	max-width:510px;
  width:100%;
  margin:-240px 0 0 auto;
  background:#fff;
  padding:46px 5px 45px 50px;
}

.ti_2_line_1_border_bottom.module,
.ti_2_line.module{
	font-size:16px;
  color:#4953ab;
	line-height:1;
  text-align:center;
} 

.ti_2_line_1_border_bottom.module{
	font-size:14px;
  margin-bottom:24px;
}

.ti_2_line_1_border_bottom.module:after{
	content:"";
	display:block;
  height:1px;
  width:200px;
  background:#c4c4c4;
  margin:28px auto 0;
}

.ti_2_line_0_border_bottom.module:after{
	content:none;
}


.ti_2_line_1_border_bottom.module .module-title,
.ti_2_line.module .module-title{
	font-size:25px;
  color:#141414;
  margin:0 0 3px;
}

.ti_2_line_1_border_bottom.module .module-title{
	font-size:18px;
  margin-bottom:6px;
}

.list_img_1_home_2 .module-image{
	position:relative
}

.list_img_1_home_2 .module-image:after{
	content:"";
  width:59px;
  height:59px;
  position:absolute;
  bottom:12px;
  left:calc(50% - 29.5px);
  background:url("../../uploads/n1.png")no-repeat center;
}

.list_img_1_home_2 .col3-1:nth-child(2) .module-image:after{
  background:url("../../uploads/n2.png")no-repeat center;

}

.list_img_1_home_2 .col3-1.last .module-image:after{
  background:url("../../uploads/n3.png")no-repeat center;
}

.list_img_1_home_2 .module{
	background:#fff;
  max-width:318px;
  width:100%;
  margin:0 auto;
}

.list_img_1_home_2 .module-image{
	padding-bottom:41px;
}

.list_img_1_home_2 .module-text{
	padding:0 20px 12px;
  margin-bottom:30px;
}

.list_img_1_home_2 .module-text .module-title{
	font-size:20px;
  color:#141414;
  text-align:center;
	margin-bottom:15px;
}

#pagewrap .bg_home_4 {
    background: url(../../uploads/bg_home_4.png)no-repeat bottom left 20px, url(../../uploads/bg_home_2.jpg);
}

/* POST */

.post_home_1.module{
	margin:0;
}
.post_home_1.module.module-post .post{
	margin-bottom:30px;
}
.post_home_1.module.module-post .post-title {
    line-height: 26px;
    font-size: 16px;
    background: url(../../uploads/icon_post.png)no-repeat top 5px left;
    padding: 0 0 0 25px;
    margin-bottom: 10px;
}
#pagewrap .post_home_1.module.module-post .post-title a {
    font-size: 16px;
    color: #000;
    font-weight: bold;
    font-family: "ヒラギノ角ゴ Pro W6", hiragino Kaku Gothic ProN, Hiragino Sans, "ヒラギノ角ゴシック",Yu Gothic,Yu Gothic M,"メイリオ",sans-serif, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/* End POST */

.content_hair_orna_1 .sub_column .tb-column-inner{
	background:#fff2f2;
  padding:40px 40px 0;
	text-align:center;
}

.content_web_exh_1 .sub_column .tb-column-inner{
  padding:40px 40px 26px;
}

.content_hair_orna_1 .sub_column{
  margin-bottom:40px;
	align-content: stretch;
}

.content_row_1_hair_orna .tb-column-inner .content_hair_orna_1:last-child .sub_column{
	margin-bottom:30px;
}

.bg_sub_main_1 .module{
	margin:0;
	padding: 8px 0 9px;
}

.table_info_1.module{
	margin-bottom:0;
}

.table_info_1 table tr{
	border-bottom:1px solid #c4c4c4;
}

.table_info_1 table th,
.table_info_1 table td{
	border-bottom:0;
  padding:15px 9px;
}

.table_info_1 table th{
	width:120px;
  color:#4953ab;
  font-weight:bold;
	text-align:left;
}

.p_anchor_1.module ul{
	margin:0;
	list-style:none;
	text-align:center;
}
.p_anchor_1.module ul li{
	margin:0 0 10px;
	display:inline-block;
	padding:0 10px;
	line-height:1;
	border-left:1px solid #000;
}
.p_anchor_1.module ul li a{
	color:#000 !important;
}
.p_anchor_1.module ul li:first-child{
	border-left:0;
}

#pagewrap .bg_flow_page_1 {
    background: url(../../uploads/flow_page_1.png)no-repeat top right;
}

#pagewrap .bg_list_info {
    background: url(../../uploads/bg_link_info.png)no-repeat top left, url(../../uploads/bg_home_2.jpg);
}

.list_link_info.module{
	margin:0;
}

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

.list_link_info ul li{
	line-height:1.7;
  padding:0 0 0 30px;
	background:url("../../uploads/icon_list.png")no-repeat top left;
  margin-bottom:20px;
}

#pagewrap .list_link_info ul li a{
	color:#000;
}

#pagewrap .list_link_info ul li a:hover{
	text-decoration:none;
}

.text_policy_1.module .module-title{
    margin: 0 0 15px;
    color: #141414;
    font-size: 20px;
    text-align: center;
}
.text_policy_1.module{
	border: 2px solid #ffcccc;
    padding: 24px 28px 28px;
}
.text_policy_1.module .tb_text_wrap{
    height: 250px;
    overflow: auto;
    margin: 0;
}

#body #content .module .wpcf7 table tbody tr th,
#body #content .module .wpcf7 table tbody tr td{
	border:none;
	padding:5px 7px;
}
#body #content .module .wpcf7 table tbody tr {
	border-bottom: 1px solid #c4c4c4;
}
#body #content .module .wpcf7 table tbody tr th{
	color: #4953ab;
	padding: 15px 9px;
	width:25%;
}
#body #content .module .wpcf7 table tbody tr th span{
	color: #ff237b;
	font-size:10px;
}
#body #content .module .wpcf7 table tbody tr td select{
	width:100%;
}
#body #content .module .wpcf7 input[type=submit]{
	height:40px;
	background-color:#4953ab;
	margin-top:45px;
}

.module .wpcf7 input,
.module .wpcf7 textarea{
	border-radius:0;
	background:#fff;
	box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);
}

.arr_info.module .ui.module-accordion,
.arr_info.module .accordion-content{
  background:transparent;
  border:0;
  margin:0;
}

.arr_info.module li{
  border:0;
	margin-bottom:20px;
}

.arr_info.module .builder-accordion-active:last-child{
	margin-bottom:0;
}

#pagewrap .arr_info.module .accordion-title a,
#pagewrap .arr_info.module li:hover .accordion-title a{
  background-color:#fff;
  font-size:16px;
  font-weight:bold;
  color:#141414;
  padding:18px 20px 17px 52px;
  line-height:1.6;
  position:relative;
	text-decoration:none;
}

.arr_info.module .accordion-title a:before,
.arr_info.module li:hover .accordion-title a:before{
	content:"Q.";
  font-size:24px;
  color:#f184bf;
  font-weight:bold;
  position:absolute;
  top:16px;
  left:19px;
  line-height:1;
}

.arr_info.module li:hover .accordion-title{
	opacity:0.7;
}

.arr_info.module .accordion-content{
	padding:16px 53px 15px;
  line-height:1.6;
}

.post_event.module .post{
	background:#fff2f2;
  padding:25px 20px 17px;
  margin-bottom:40px;
}

.bodywrap{
	min-height:500px;
}

.single .post {
    padding: 50px 0 0;
    margin-bottom: 20px;
}
.archive .post .post-title, .single .post .post-title {
    line-height: 26px;
    font-size: 20px;
    color: #141414;
    background: url(../../uploads/bg_ti_single.jpg);
    padding: 17px 20px;
    margin-bottom: 20px;
}
.archive .post .post-image, .single .post .post-image {
    text-align: center;
    margin-bottom: 12px;
}

.history-back-button{
	display:block;
	max-width:300px;
	width:100%;
	margin:0 auto 60px;
	color:#fff !important;
	text-decoration:none !important;
	font-size:16px;
	text-align:center;
	border-radius:5px;
	padding:10px 10px;
	background:#f582a2;
	font-weight:bold;
}

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


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

	#pagewrap .pagewidth{
    width:98%;
  }
	#headerwrap #main-menu li.nav00 {
		display: block;
	}
	
	body.mobile_menu_active #header,body #header.header  {
    padding:30px 0 25px;
	}

	.header-brand-container,.rh{
		float:none;
		text-align:center;
		padding:0;
	 }
	
	.h_contact{
		display:none;
	}
#headerwrap #main-menu-container.is-active{
		display: flex;
    align-items: center;
	background:rgba(255,255,255,0.95);
	border: 0;
	}
#headerwrap #main-menu {
    background: none;
    padding-right: 0;
	height:auto;
}
#headerwrap #main-menu li ul.sub-menu {
		position: static;
		opacity: 1;
		visibility: unset;
		background: none;
		padding:0;
	}
	#headerwrap #main-menu li ul.sub-menu li {
    	background:none;
		padding-bottom:15px;
	}
	li ul.sub-menu li:first-child {
		padding-top: 0;
	}
	li ul.sub-menu li:last-child {
		padding-bottom: 0;
	}
#headerwrap #main-menu-container ul > li.menu-item{
		padding: 15px;
		background: none !important;
		text-align: center;
		border-bottom: 0;
		height:auto;
		display: block;
		float: none;
		width: 100% !important;
	}
	#headerwrap #main-menu-container ul > li.menu-item a{
		color:#141414;
		font-size:18px;
		text-decoration:none;
		font-weight:500;
		font-family: "Hannari","Times New Roman","游明朝", YuMincho, "ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","ＭＳ Ｐ明朝", "メイリオ", Meiryo, serif;
	}

body .sp-footer-icons-container a {
    font-size: 14px;
    padding: 11px 0;
}

#pagewrap {
    padding-bottom: 0;
}
	
	body.home #site-logo,
	body #header {
		position: static;
	}
	
	.btn_mail {
		text-align: center;
	}
	
	.img_bg_main.module img {
		height: auto;
	}
	
	body #pc-backtop{
		display:none;
	}
	
	body.no-home #header {
		flex-direction: column;
	}
	
	.bg_sub_main_1 .module{
		padding:0;
	}
  
}


@media screen and (max-width: 1024px) {
	
	.img_catch_home.module img{
		width:80%;	
	}
	
}

@media screen and (max-width: 939px) {
  
	#pagewrap .pagewidth{
    width:96%;
  }
	
  .f-con{
    position:fixed;
    bottom:0;
    left:0;
    right:0;
    z-index:9999;
  }
	
#headerwrap #main-menu > li {display:block;border:0;padding:10px;}
		
	
body #headerwrap {
  padding:0;
}
  
  
  body.mobile_menu_active .social-widget{
  	padding:0;
  }

body #footerwrap .f-con {
    display:flex;
	}

body #footerwrap .f-con a {
    padding: 5px;
  }
  
  .img_right_939_center .subrow_inner{
  	flex-direction: column-reverse;
  }

#pagewrap {
    padding-bottom:50px;
}

}


@media screen and (max-width: 768px) {
  
  .table_multicolumn.module .tb_text_wrap{
    overflow: auto;
    margin-right: 2%;
    margin-left: 2%;
	}
  
  
  .table_multicolumn.module.module .tb_text_wrap table{
    width: 685px;
	}

}

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

#pagewrap .pagewidth{
    width:92%;
  }
	
	.footer_content .first > .tb-column-inner{
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	
	.menu_footer .module ul li{
		margin-bottom:12px;
	}
	
	#body #content .module .wpcf7 table tbody tr th{
		width:100%;
	}
	
	#pagewrap .module-accordion ul *{  
    transition: all 0.3s;
  }
  #pagewrap .module-accordion ul li .accordion-content {
     display:none;
  }
  #pagewrap .module-accordion ul .builder-accordion-active .accordion-content {
     display:block !important;
  }
	
/* 	by fujimoto */
	#pagewrap .exhibition-wrapper .row_inner {
		flex-direction: column;
	}
	
	#pagewrap .tb_zjgy58 img {
		height: 190px;
	}

	#pagewrap .img_catch_home.module img {
		width: 100%;
	}
	
	#pagewrap .tb_stqc84 {
		padding-left: 7px;
		padding-right: 7px;
	}
	
/* 	body:not(.page-id-503) #pagewrap #content .module_row:nth-child(1) {
		padding-top: 0;
	} */
	
	#pagewrap .table_info_1 table th, #pagewrap .table_info_1 table td {
		display: block;
	}
	
	.post-password-form {
		padding-top: 0px;
	}

}

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

@media screen and (max-width: 480px) {
	
	.text_1_home_1.module {
		margin: 0 auto 30px;
		padding: 0 20px;
	}
	
}

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

@media screen and (max-width: 320px) {
	
	.menu_footer .module ul {
		padding: 8px 10px 6px 8px;
	}
	
}




