@charset "UTF-8";




/*---------------------
CSS-LAYOUT
--------------------*/
#pagewrap {
    max-width: 1920px;
    margin: 0px auto;
}
.sidebar-none #content {
    padding: 0;
}
body .pagewidth {
	width: 100%;
	max-width: 100%;
}
body .row_inner {
	width:100%;
    max-width: 1020px;
	margin:0px auto;
}



body .fullwidth .row_inner {
	width:100%;
	max-width: 100%;
}
body .full-col .row_inner {
	width:100%;
	max-width: 100%;
}


/*layout part*/
body .module-layout-part .row_inner{
	width:100%;
    max-width: 1020px;
	margin:0px auto;
}
body .module-layout-part .fullwidth  .row_inner{
	width:100%;
	max-width: 100%;
}
body .module-layout-part .full-col  .row_inner{
	width:100%;
	max-width: 100%;
}

#headerwrap .header{
	border:0;
	padding:0;
}
#footerwrap #footer{
	border:0;
	padding:0;
}



@media screen and (max-width: 939px){
    body .pagewidth {width: 100%;max-width: 100%;}
    body .row_inner{width: 100%;max-width: 100%; padding:0px 2%;}
	body .full-inner .row_inner{width: 100%;max-width: 100%; padding:0px 0%;}
	
	/*layout-part*/
    body .module-layout-part .row_inner{width: 100%;max-width: 100%; padding:0px 2%;}
    body .module-layout-part .full-inner .row_inner{width: 100%;max-width: 100%; padding:0px 0%;}	

}

/*---------------------
end of CSS-LAYOUT
--------------------*/








/*---------------------
CSS-MENU
--------------------*/

#m-menu-header ul {
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
	flex-wrap: wrap;
	justify-content: center;
}
#m-menu-header ul > li {
    display: flex;
    padding: 0;
    margin: 0;
    position: relative;
margin: 5px 0px; 
}
#m-menu-header ul > li >a {
    text-decoration: none;
}

body #m-menu-header ul .current-menu-item a, body #m-menu-header ul .current_page_item a {
    border-radius: 0px;
}




#m-menu-header ul > li:last-child a{
	border-right:0;
}
#m-menu-header ul > li > a:before{
}
#m-menu-header ul > li > a:hover:before{
}
#m-menu-header ul > li > a:hover{

}


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

#m-menu-header ul > li.nav00{
   display:none;
}
#m-menu-header ul > li.nav01 > a{
 
}
#m-menu-header ul > li.nav02 > a{
 
}
#m-menu-header ul > li.nav03 > a{
 
}
#m-menu-header ul > li.nav04 > a{
 
}
#m-menu-header ul > li.nav05 > a{
 
}
#m-menu-header ul > li.nav06 > a{
 
}
#m-menu-header ul > li:last-child a{
    padding-right:0;
}
/*menu hover*/
#m-menu-header ul > li.nav01 > a:hover{
 
}
#m-menu-header ul > li.nav02 > a:hover{
 
}
#m-menu-header ul > li.nav03 > a:hover{
 
}
#m-menu-header ul > li.nav04 > a:hover{
 
}
#m-menu-header ul > li.nav05 > a:hover{
 
}
#m-menu-header ul > li.nav06 > a:hover{
 
}

/* -------
menu sub
---------*/
#m-menu-header ul .menu-item-has-children{
}
#m-menu-header ul  li .sub-menu{
    z-index:9;
    display: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 100px;
    width: 150%;
    transform: translateX(25%);
	box-shadow:none;
}
#m-menu-header ul  li .sub-menu li{
    list-style: none;
    margin: 0;
    padding: 0;
}
#m-menu-header ul  li .sub-menu li a{
    display: block;
    text-align: center;
    padding: 10px 10px;
    color: #4d4d4d;
    font-size: 14px;
    background-color: #f7f7f7;
    line-height: 40px;  
}
#m-menu-header ul  li .sub-menu li a:hover{
 
}
/*sub hover*/
#m-menu-header ul > li:hover .sub-menu{
    display: block;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    width: 150%;
    transform: translateX(-14%);
}

/* ----------------
 css-MENU
---------------- */




/* ----------------
 css-Mobile
---------------- */

#s-menu-button {
  z-index: 99999999;
    position: absolute;
    right: 0;
    top: 0;
	width: 48px;
	height: 48px;
	display:flex;
}

#menu-button {
    opacity: 1;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    position: fixed;
    background-color: #ededed;
    z-index: 99999999;
    top: 0;
    right: 0;
    cursor: pointer;
	color:white;
}
#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: #3065a9;
  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;
  color: #3065a9;
}
#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);
  }
}


#main-nav-wrap.nav-off {
  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-nav-wrap.is-active{
  left: 0;  
}
@media screen and (max-width: 1024px) { /* mobile visibility changes for max-width */
  #menu-button{
    visibility:visible;
    opacity:1;
  }
}











/*s-menu-sp*/
#s-menu-sp {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: fixed;
    transition: all 0.3s;
    top: 0;
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
    overflow: auto;
    z-index: 999999;
    display: none;
}

#s-menu-sp.is-active {
    display: flex;
}

#s-menu-sp-inner {
    display: flex;
    width: 100%;
    height: 100%;
    overflow: auto;
}


/* ----------------
 end css-Mobile
---------------- */



















/*---------------------
CSS-HEADER
--------------------*/

#headerwrap {

}

#header.header {
  	padding:0;
	border:0;
}
body #header {
    padding: 0;
    border: 0;
}


/*---------------------
end of CSS-HEADER
--------------------*/





/*---------------------
CSS-TITLE
--------------------*/


/*title-01*/
body .title-01{
}
body .title-01 .module-title{
}
body .title-01 .tb_text_wrap{
}





/*---------------------
end of CSS-TITLE
--------------------*/




/*---------------------
CSS-SLICK-SLIDER
--------------------*/


/*---------------------
CSS-SLICK-SLIDER
--------------------*/




/*---------------------
CSS-PAGE
--------------------*/

body .module_row .p-edit-1 {
/*     padding-left: calc((100vw - 1020px) / 2); */
	padding-left: calc((100vw - 1075px) / 2);
}
body .module_row .p-edit-2 {
    padding-right: calc((100vw - 1020px) / 2);
}
/*---------------------
end of CSS-PAGE
--------------------*/




/*--------------------
 * CSS-ACCORDION
 * ------------------*/
body .accordion-01 ul{
    border: 0;
}
body .accordion-01 .accordion-title a{
	display:flex;
	position:relative;
}

body .accordion-01 .accordion-title a:before{
content: url();
    position: absolute;
    left: 0;
    top: 0;
    background-color: #fff6;
    width: 60px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
body .accordion-01 .accordion-content{
	background-image: url();
    background-repeat: no-repeat;
    background-position: top 18px left 23px;
}

/*--------------------
 * end of  CSS-ACCORDION
 * ------------------*/






/*=== CSS-POST ===*/
/*post-index*/
.post-index.module.module-post{
  margin-bottom:0;
}
.post-index.module.module-post .module-title{
 }
.post-index.module.module-post .module-title span{
}
.post-index.module.module-post .builder-posts-wrap {
    height: 410px;
    overflow: auto;
    padding-right: 25px;
      margin-top: 25px;
}
#body .post-index.module.module-post .builder-posts-wrap .post{
  border-bottom: 1px dashed #000;
    margin-bottom: 30px;
}
#body .post-index.module.module-post .builder-posts-wrap .post .post-image{
}
#body .post-index.module.module-post .builder-posts-wrap .post .post-image a{
}
#body .post-index.module.module-post .builder-posts-wrap .post .post-image a img{
}
.post-index.module.module-post .builder-posts-wrap .post .post-content .post-date{
  font-weight: bold;
    margin-bottom: 0;
  font-size: 14px;
}
.post-index.module.module-post .builder-posts-wrap .post .post-content .post-title{
}
.post-index.module.module-post .builder-posts-wrap .post .post-content .post-title a{
}
#body .post-index.module.module-post .builder-posts-wrap .post .post-image {
}

#body .post-index.module.module-post .builder-posts-wrap .post .post-image img {
}.post-index.module.module-post .builder-posts-wrap .post .post-content{
}
.post-index.module.module-post .builder-posts-wrap .post .post-content .entry-content{
  font-size: 14px;
}
.post-index.module.module-post .builder-posts-wrap .post .post-content .entry-content p{
 }


/*post-01*/
.post-01.module.module-post{
  margin-bottom:0;
  margin-top:30px;
}
.post-01.module.module-post .module-title{
}
.post-01.module.module-post .module-title span{
}
.post-01.module.module-post .builder-posts-wrap {
}
#body .post-01.module.module-post .builder-posts-wrap .post{
}
#body .post-01.module.module-post .builder-posts-wrap .post .post-image{
}
#body .post-01.module.module-post .builder-posts-wrap .post .post-image a{
}
#body .post-01.module.module-post .builder-posts-wrap .post .post-image a img{
}
.post-01.module.module-post .builder-posts-wrap .post .post-content .post-date{
}
.post-01.module.module-post .builder-posts-wrap .post .post-content .post-title{
}
.post-01.module.module-post .builder-posts-wrap .post .post-content .post-title a{
}
.post-01.module.module-post .builder-posts-wrap .post .post-content{
}
.post-01.module.module-post .builder-posts-wrap .post .post-content .entry-content{
      margin-top: 15px;
}
.post-01.module.module-post .builder-posts-wrap .post .post-content .entry-content p{
}
@media screen and (max-width: 680px){
  #body .post-01.module.module-post .builder-posts-wrap .post{margin-bottom: 50px;}
  #body .post-01.module.module-post .builder-posts-wrap .post .post-image{text-align:center;}
}


/*post-02*/
.post-02.module.module-post{
  	margin:0px 0px 0px 0px;
}
.post-02.module.module-post .module-title{
}
.post-02.module.module-post .module-title span{
}
.post-02.module.module-post .builder-posts-wrap {
}
#body .post-02.module.module-post .builder-posts-wrap .post{
      margin: 20px 0px 0px 0px;
}
#body .post-02.module.module-post .builder-posts-wrap .post .post-image{
  width: 31%;
  margin-top: 0;
}
#body .post-02.module.module-post .builder-posts-wrap .post .post-image a{
}
#body .post-02.module.module-post .builder-posts-wrap .post .post-image a img{
}
.post-02.module.module-post .builder-posts-wrap .post .post-content .post-date{
}
.post-02.module.module-post .builder-posts-wrap .post .post-content .post-title{
}
.post-02.module.module-post .builder-posts-wrap .post .post-content .post-title a{
      font-size: 16px;
    color: #3065a9;
}
.post-02.module.module-post .builder-posts-wrap .post .post-content{
}
.post-02.module.module-post .builder-posts-wrap .post .post-content .entry-content{
}
.post-02.module.module-post .builder-posts-wrap .post .post-content .entry-content p{
}
@media screen and (max-width: 680px){
  #body .post-02.module.module-post .builder-posts-wrap .post{margin-bottom: 50px;}
  #body .post-02.module.module-post .builder-posts-wrap .post .post-image{text-align:center;}
}


/*---------------------
end of CSS-POST
--------------------*/










/*---------------------
// CSS-BUTTOM
--------------------*/






/*---------------------
end of CSS-BOTTON
--------------------*/








/*---------------------
CSS-TABLE
--------------------*/


/*table-01*/
.table-01.module table,
#pagewrap #body #content .module .wpcf7 table{
	border-collapse:collapse;
	width:100%;
}
.table-01.module table tr,
#pagewrap #body #content .module .wpcf7 table tbody tr{
  	border-bottom:1px solid #68a4d6;
}
.table-01.module table tr td,
.table-01.module table tr th,
#pagewrap #body #content .module .wpcf7 table tbody tr th,
#pagewrap #body #content .module .wpcf7 table tbody tr td{
    padding: 16px;
      vertical-align: top;
	border:1px solid #68a4d6;
}
.table-01.module table tr th,
#pagewrap #body #content .module .wpcf7 table tbody tr th{
    background-color: #e2f2ff;
    width: 30%;
    padding: 16px;
	text-align:left;
}

@media screen and (max-width: 768px){body #body #layout #content .table-01.module .no_slide tbody th{display:table-cell;width:25%;}}
@media screen and (max-width: 768px){body #body #layout #content .table-01.module .no_slide tbody td{display:table-cell;width:auto;}}



/*table-02*/
.table-02.module table{
  	border:1px solid #68a4d6;
	width:100%;
	border-collapse:collapse;
}
.table-02.module table tr{
  	border-bottom:1px solid #68a4d6;
}
.table-02.module table tr td,
.table-02.module table tr th{
    padding: 16px;
  text-align: center;
}
.table-02.module table tr th{
    background-color: #e2f2ff;
    width: 30%;
    padding: 16px;
  text-align: left;
}

@media screen and (max-width: 768px){body #body #layout #content .table-02.module .no_slide tbody th{display:table-cell;width:25%;}}
@media screen and (max-width: 768px){body #body #layout #content .table-02.module .no_slide tbody td{display:table-cell;width:auto;}}

/*---------------------
end of CSS-TABLE
--------------------*/





/*---------------------
CSS-FOOTER
--------------------*/
#footerwrap {

}
body .copyright-container {

}


body .copyright-container span{
  	display:inline-flex;

}


body .copyright-container a{

}

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


/* menu fooetr */
#m-menu-footer ul > li:last-child a{
	border-right:0;
}


body .footer-nav{
	display: flex;
    align-items: center;
    justify-content: center;
    background-image: url();
    margin: 0;
    flex-wrap: wrap;
    background-color: white;
    padding: 30px 0px;
	padding-bottom:10px;
}
body .footer-nav > li{
	display:inline-flex;
	margin: 0;
	line-height: 1;
	margin-bottom: 10px;
}
body .footer-nav > li > a{
	display:inline-flex;
	border-right:1px solid #000;
	line-height: 1;
	padding: 0px 8px;	
	color:#000;
	text-decoration:underline;
}
body .footer-nav > li.menu-item-has-children a{
	border:0;
}
body .footer-nav > li:last-child > a{
	border-right:0px solid #000;
}
body .footer-nav > li > a:hover{
 	text-decoration:none;
}


body .footer-nav  li .sub-menu{
	margin:0;
	margin-top: -2px;
}
#footerwrap #footer-nav li .sub-menu:before {
    content: '[ ';
}

#footerwrap #footer-nav li .sub-menu:after {
    content: ' ]';
}



body .footer-nav li .sub-menu li{
    margin: 0;
    line-height: 1;
	display:inline-block;
	line-height: 1;
}
body .footer-nav li .sub-menu li a{
    line-height: 1;
	display:inline-block;
	line-height: 1;
	color:#000;
	text-decoration:underline;	
	font-size:14px;
}


body .footer-nav li .sub-menu li a:after{
	content: ' | ';
}

body .footer-nav li .sub-menu li:last-child a:after{
	content: '';
}

body .footer-nav li .sub-menu li a:hover{
	text-decoration:none;	
}


body .footer-nav  li .sub-menu{
	margin:0;
	margin-top: -2px;
}
#footerwrap #footer-nav li .sub-menu:before {
    content: '[ ';
}

#footerwrap #footer-nav li .sub-menu:after {
    content: ' ]';
}





/*---------------------
end of CSS-FOOTER
--------------------*/




/*--------------------
 * CSS-SINGLE
 * ------------------*/
.single #layout {
	max-width: 1100px;
	padding:100px 2%;
}


.single  .post-content{

}

.single .post-title{
    color: #3065a9;
    font-size: 16px;
    margin-top: 30px;
}
.single  .post-image img{

}

.single .history-back-container {
    text-align: center;
}
.single .history-back-container a {
    background-color: #97d0fd;
    color: #333;
    display: inline-flex;
    padding: 5px 60px;
}
.single .history-back-container a:hover {

}
.single .history-back-container a i {

}


/*--------------------
 * end of CSS-SINGLE
 * ------------------*/



/*--------------------
 * CSS-ARCHIVE
 * ------------------*/
.archive .page-title {

}
.archive body #layout {

}

.archive  .post-content {

}

.archive body   .post-content a {

}
.archive body  .post {

}
.archive body .post-image img{

}

/*--------------------
 * end of CSS-ARCHIVE
 * ------------------*/






/*-------------=== 
CSS-FORM
------------- ===*/
/*form*/
body #body .module .wpcf7 table {
    border-collapse: collapse;
    width: 100%;
}

body #body .module .wpcf7 table tbody tr th, body #body .module .wpcf7 table tbody tr td {
    border: 1px solid #1db270;
    padding: 10px;
    background-color: #fff;
    vertical-align: middle;
}
body #body .module .wpcf7 table tbody tr th {
    background-color: transparent;
    font-size: 14px;
    color: #333;
    text-align: left;
    width: 28%;
    font-weight: bold;
}

body #body .module .wpcf7 table tbody tr th span {
    display: inline-flex;
    color: #ff0000;
    padding: 0px 0px;
    font-size: 10px;
    font-weight: 700;
    margin: 0px 10px;
    line-height: 20px;
}
body #body .wpcf7-form-control-wrap .wpcf7-radio .wpcf7-list-item  label {
	display:inline-flex;
	align-items:center;
}
body #body .wpcf7-form-control-wrap .wpcf7-radio .wpcf7-list-item  label span{
	white-space:nowrap;
}


body #body .module .wpcf7 table tbody tr td span input,body  #body .module .wpcf7 table tbody tr td span textarea {
    background-color: #eeeeee;
    width: 100%;
    height: 40px;
    border-radius: 0;
}
body  #body .module .wpcf7 table tbody tr td span textarea {
	height:300px;
}


body  #body .module .wpcf7 table tbody tr td select{
    width: 100%;
    height: 35px;
    border: 1px solid #ccc;
}





body #body .module .wpcf7 table tbody tr td.reader {

}
body #body .module .wpcf7 table tbody tr td.reader .wpcf7-form-control-wrap {
}
body #body .module .wpcf7 input[type=submit] {
	background-color: #97d0fd;
    padding: 10px 90px;
    color: #222;
	font-size: 15px;
    display: inline-flex;
    box-sizing: border-box;
    border-radius: 0;
	max-width: 280px;
    width: 100%;
}
body .wpcf7-form > p{
    text-align: center;
    width: 100%;
    padding-top: 60px;
}
body .wpcf7-form > p:after{
}

body .reader {

}
/*-------------=== 
end of CSS-FORM
------------- ===*/






/*-------------------
CSS-PAGE-NAV
--------------------*/
body .pagenav {

}
body .pagenav .number,
body .pagenav a{

} 

body .pagenav .current{
 
}
/*-------------------
end of CSS-PAGE-NAV
--------------------*/


.s-icon {
    display:none;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 99;
}	
#pagewrap .s-icon .module-icon-item{
	width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;	
}
#pagewrap .s-icon .module-icon-item a{
	width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;	
}




/* 20250711 */

body #pagewrap.site #content {
	font-size: 14px;
	line-height: 1.7em;
}
.site a {
	color: #000;
	text-decoration: underline;
}
.site a:hover {
	color: #196836;
    text-decoration: none;
}


#pagewrap .b-title.module .sub-head {
    font-size: 30px;
	padding-top: 0;
}
.b-title.module .sub-head:first-letter {
    color: #3065a9;
}
.home-post.module-post {
	height: 410px;
}
#pagewrap .module.gallery .gallery-caption {
    margin: 15px 0 0;
}
#pagewrap .module.gallery .gallery-caption {
	font-size: 1em;
}

}
#pagewrap .max-width-500 {
    max-width: 500px;
    margin: 0px auto;
}
.title-fix .module-title {
	margin-bottom: 15px;
}
#pagewrap .photo-gallery.module .module-gallery-grid {
	row-gap: 20px;
}
.module-fancy-heading .fancy-heading {
	margin-bottom: 0;
}
.post-02 .post-image {
	float: left;
	margin-right: 14px;
}
.themify_builder_content-3088 .tb_161m147.module-post .post {
	padding: 0;
}
.themify_builder_content .post-02.module.module-post .post {
	padding: 0;
	padding-bottom: 20px;
}
#pagewrap .themify_builder_content-3633 .tb_ryb9346.module-menu.module .nav > li > a {
	color: #3065a9;
}

.event-p.module.module-post .post-content {
	margin-top: 15px;
}
.swiper-subrow .tb-column-inner {
/* 	height: 600px; */
	height: auto;
}
.swiper-subrow .swiper-txt.module {
/* 	z-index: 99;
	position: absolute; 
	bottom: 0; */
}
.swiper-subrow .swiper-txt.module img {
	padding-top: 100px;
}







/*---------------------------
 * -@1600@
 * ------------------------*/

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

}/*1600*/




/*---------------------------
 * -@939@
 * ------------------------*/

@media screen and (max-width: 939px){
	
#menu-button{
	display:flex;
}	
	
	
	
/*menu -footer*/ 
body #main-menu {

}
#main-menu li a:before {

}   
#main-menu li a {

}   

body #pc-backtop {
display:none;
}


.s-icon {
	display:flex;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 99999;
}	





/*single*/
.single    .post-image {

}


#main-menu > li.nav00 {
    display: block;
}


#footerwrap {
    margin-bottom: 70px;
}
	
.rb2 {
    display: none;
}	
	
	
}/*@939-*/


/*---------------------------
 * end of @939
 * ------------------------*/



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

body .sub-col-reverse-680  .subrow_inner{
	flex-direction: column-reverse;
    display: flex;
}
body .standard-frame .mfp-iframe-holder .mfp-content {
    height: 90% !important;
}

body #header .header-info .tb-column-inner {
	display: block;
}
	

	
	
	
	
	
}/*@768-*/
/*---------------------------
 * end of @768
 * ------------------------*/

/*---------------------------
 * @680@
 * ------------------------*/

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


body #footer .sp-footer-icons-container a {
    font-size: 0px;
    padding: 10px 0px;
} 	
	
body #footer  .sp-footer-icons-container svg {
    height: 15px;
    margin-bottom: 5px;
}	
#footerwrap {
    margin-bottom: 0px;
}	




body #footer li.menu-item-has-children{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width:100%;
}	
body .footer-nav > li {
    margin-bottom: 10px;
}	
body .footer-nav > li a {
    margin-bottom: 10px;border:0;
}
	
body #footer li.menu-item-has-children > a {
    margin-bottom: 15px;
}	
		
body .footer-nav li .sub-menu {
    margin: 0;
    margin-top: -2px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}	


#footerwrap {
margin-bottom: 55px;
}

#menu-button .ham-text {
    font-size: 0;
    line-height: 1;
}



	
#pagewrap #body .module .wpcf7 table  tr{
	display: flex;
    flex-direction: column;
    box-sizing: border-box;
    border-bottom: 1px solid #ccc;
}
	
#pagewrap #body .module .wpcf7 table tbody tr th {
	font-size: 14px;
	text-align: left;
	color: #333;
	font-weight: bold;
	background: #e6d5fa;
/* 	color: #fff; */
	width: 100%;
	margin-top: 25px;
	box-sizing: border-box;
	border-bottom: 0;
}	
	
#pagewrap #body .module .wpcf7 table tbody tr td span input, #pagewrap #body .module .wpcf7 table tbody tr td span textarea {
    width: 100%;
    max-width: 100%;
}	

#headerwrap {
    position: static;
    z-index: 999;
    position: relative;
}
.header-brand-container {
    justify-content: center;
}
#site-logo {
    padding-bottom: 0;
	padding-right: 51px;
}

body .mfp-iframe-holder .mfp-close {
    top: 0;
    z-index: 999;
    color: #000;
}	
.single #layout {
    padding: 100px 2%;
}	
#pagewrap #body #content .module .wpcf7 table tbody tr th {
    width: 100%;
}	
	
	
#pagewrap #body #content .module .wpcf7 .fa.submit_btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}	
	
	
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }





/* SP_20250715 */
	#pagewrap .header-info .subrow_inner .module_column .tb-column-inner {
		margin-top: 30px;
		justify-content: center;
	}
	#pagewrap .themify_builder_content-2571 .tb_ddg9286.module_row {
		background: none;
	}
	#pagewrap .themify_builder_content .module_column.sub_column.col-borber-right {
		border: none;
	}
	#pagewrap .photo-gallery.module .module-gallery-grid {
		column-gap: 10px;
	}
	.table-01.module table tr th {
    	width: 25%;
	}
	body #body .module .wpcf7 input[type=submit] {
    	max-width: 378px;
	}
	#s-menu-sp ul#menu-main-menu-1 li {
		border-bottom: 1px solid #fff;
	}
	#pagewrap .themify_builder_content-3633 .tb_ryb9346.module-menu.module .nav > li > a {
		font-size: 17px;
	}
	.event-p.module.module-post .post-image {
		text-align: center;
	}
	.event-p.module.module-post article {
		margin-bottom: 50px;
	}
	.swiper-subrow .swiper-txt.module img {
		padding-top: 0;
	}
	#pagewrap .swiper-subrow .tb-column-inner .module_subrow {
		background-size: cover;
		background-position: center right;
	}
	#pagewrap .swiper-subrow .tb-column-inner .module_subrow.srider-bg01 {
		background-position: center right 20%;
	}

		
	
	
	
}/*@680-*/

/*---------------------------
 * end of @680
 * ------------------------*/


/* fix */
.p-mb .tb_text_wrap p:nth-of-type(3) {
	margin-bottom: 1.2em;
}

article.category-voice .post-content .post-title a {
	text-decoration: underline;
}

article.category-voice .post-content .post-title a:hover {
	text-decoration: none !important;
}

article.category-voice .post-content .entry-content a {
	text-decoration: none;
}