@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: 33px;
	right: 37px;
	width: 56px;
	height: 56px;
	background-color: #9bada3;
}
#menu-button.nav-on {
	visibility:visible;
	opacity:1;
}
#menu-button .ham-lines {
	position: relative;
	margin: 0 auto;
	width: 50px;
	height: 50px;
}
#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: 50px;
	height: 3px;
	background-color: #fff;
	border-radius: 1px;
}
#menu-button .ham-lines span {
	bottom: 24px;
	transition: all .25s .25s;
	opacity: 1;
}
#menu-button .ham-lines::before,
#menu-button .ham-lines::after {
	content: "";
}
#menu-button .ham-lines::before{
	bottom: 38px;
	animation: menu-bar01 .75s forwards;
}
#menu-button .ham-lines::after {
	bottom: 10px;
	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(14px) rotate(45deg);
	}
	50% {
		transform: translateY(14px) rotate(0);
	}
	100% {
		transform: translateY(0) rotate(0);
	}
}
@keyframes menu-bar03 {
	0% {
		transform: translateY(-14px) rotate(-45deg);
	}
	50% {
		transform: translateY(-14px) rotate(0);
	}
	100% {
		transform: translateY(0) rotate(0);
	}
}
@keyframes active-menu-bar01 {
	0% {
		transform: translateY(0) rotate(0);
	}
	50% {
		transform: translateY(14px) rotate(0);
	}
	100% {
		transform: translateY(14px) rotate(45deg);
	}
}
@keyframes active-menu-bar03 {
	0% {
		transform: translateY(0) rotate(0);
	}
	50% {
		transform: translateY(-14px) rotate(0);
	}
	100% {
		transform: translateY(-14px) rotate(-45deg);
	}
}
/* Mobile Menu Button end */

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

	Common settings

============================================= */
/* table border and paddings */
table th,
table td{
	border: 1px solid #424242;
	padding: 10px;
}









body .pagewidth {
	width: 100%;
	max-width: 1400px;
}
body .row_inner {
	width: 100%;
	max-width: 100%;
}




/* for the navigation for smartphones including the iPad Pro of landscape size */
#main-menu-container.is-active {
}


.font_zen {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}
.font_noto {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
}



/* =========== HEADER ========== */
#headerwrap {
	background: #9bada3;
}
#headerwrap #header {
	width: 100%;
	max-width: 100%;
	padding: 30px 40px;
}
.btn_fixed {
	position: fixed;
	right: 0;
	top: 360px;
	z-index: 999;
}
.btn_fixed a {
	display: block;
	font-size: 18px;
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
	text-decoration: none;
	writing-mode: tb;
	color: white;
	padding: 40px 16px 40px 20px;
	border-radius: 20px 0 0 20px;
	background: #9bada3;
	height: 280px;
    box-sizing: border-box;
    text-align: center;
}
.btn_fixed a + a {
	background: #96644b;
	margin-top: 16px;
}
.btn_fixed a:first-child{
	border:1px solid #9bada3;
	border-right: none;
}
#main-menu-container .main-menu{
	margin:0;
}

/* =========== MENU ========== */
/* Menu button */
#menu-button .ham-text {
	display: none;
}


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

#main-menu-container #main-menu li {
	display: block;
	text-align: center;
	font-family: "Zen Old Mincho", serif;
	  font-weight: 400;
	  font-style: normal;
	font-size: 26px;
	margin-bottom: 40px;
	line-height: 1;
}
#main-menu-container #main-menu li a {
	color: white;
	display: block;
}

/* =========== FOOTER ========== */
.f_menu #menu-main-menu li {
	display: inline-block;
	padding: 0 18px;
	margin: 0;
	border-left: 1px solid #96644b;
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
}
.f_menu #menu-main-menu li a {
	display: block;
	margin: 0;
	padding: 0;
	line-height: 1;
	color: #96644b;
}
.f_menu #menu-main-menu li:first-child {
	padding-left: 0;
	border-left: none;
}
.f_icon a {
	display: inline-block;
	vertical-align: middle;
	margin-right: 18px;
}
#footerwrap .copyright-container {
	text-align: center;
	font-size: 15px;
	color: white;
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
	background: #9bada3;
	padding: 16px;
}



/* =========== TABLE ========== */
body table {
	width: 100%;
	border-collapse: collapse;
}


/* =========== POST ========== */
#pagewrap .news_post .list-post .post {
	border-bottom: 2px dotted #af8975;
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
	padding: 15px 0;
	margin-bottom: 0;
}
.news_post .list-post .post .post-content {
	display: flex;
	align-items: center;
}
.news_post .list-post .post .post-date {
	font-size: 16px;
	color: #96644b;
	order: 1;
	margin-right: 50px;
	margin-bottom: 0;
}
.news_post .list-post .post .post-meta {
	order: 2;
	margin-right: 12px;
	margin-bottom: 0;
}
.news_post .list-post .post .post-meta .post-category {
	font-size: 13px;
	margin: 0;
	color: white;
	background: #9bada3;
	display: block;
}
.news_post .list-post .post .post-meta .post-category:after {
	display: none;
}
.news_post .list-post .post .post-meta .post-category a {
	display: block;
	line-height: 1;
	padding: 0px 20px 4px;
}
.news_post .list-post .post .post-title {
	font-size: 16px;
	color: #96644b;
	order: 3;
	font-weight: normal;
	margin-bottom: 0;
}
.news_post .list-post .post .post-title a {
	color: #96644b;
}

/* === Archive === */
body.blog #layout, body.archive #layout, body.single #layout {
	display: flex;
    flex-direction: column-reverse;
	max-width: 1000px;
	margin-top: 110px;
	margin-bottom: 170px;
}
body.archive #layout h1.page-title {
	display:none;
}
#layout #sidebar {
	padding-top: 0;
}
#sidebar .widget.list-categories {
	color: white;
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
	text-align: center;
}
#sidebar .widget.list-categories .widgettitle {
	font-size: 26px;
	background: #86a79d;
	border-radius: 40px 40px 0 0;
	border-bottom: 1px solid white;
	margin: 0;
    display: block;
    padding: 24px;
    text-transform: lowercase;
	font-weight: normal;
}
#sidebar .widget.list-categories .categories-list {
	display: flex;
	background: #9bada3;
}
#sidebar .widget.list-categories .categories-list li {
	display: block;
	font-size: 20px;
	flex: 1;
}
#sidebar .widget.list-categories .categories-list li + li {
	border-left: 1px solid white;
}
#sidebar .widget.list-categories .categories-list li a {
	display: block;
	padding: 14px;
	color: white;
	text-decoration: none;
}
body.blog #layout .post , body.archive #layout .post {
	border-bottom: 2px dotted #af8975;
	padding: 15px 0;
	margin-bottom: 0;
}
body.blog #layout .post .post-content , body.archive #layout .post .post-content {
	display: flex;
	align-items: center;
}
body.blog #layout .post .post-date, body.archive #layout .post .post-date {
	font-size: 16px;
	color: #96644b;
	order: 1;
	margin-right: 30px;
	margin-bottom: 0;
}
body.blog #layout .post .post-meta, body.archive #layout .post .post-meta {
	order: 2;
	margin-right: 50px;
	margin-bottom: 0;
}
body.blog #layout .post .post-meta .post-category, body.archive #layout .post .post-meta .post-category {
	font-size: 13px;
	margin: 0;
	color: white;
	background: #9bada3;
	display: block;
	width: 67px;
	text-align: center;
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
}
body.blog #layout .post .post-meta .post-category:after, body.archive #layout .post .post-meta .post-category:after, body.sidebar1 #layout .post .post-meta .post-author {
	display: none;
}
body.blog #layout .post .post-meta .post-category a, body.archive #layout .post .post-meta .post-category a {
	display: block;
	line-height: 1;
	padding: 0px 20px 4px;
}
body.blog #layout .post .post-title, body.archive #layout .post .post-title {
	font-size: 16px;
	color: #96644b;
	order: 3;
	font-weight: normal;
	margin-bottom: 0;
}
body.blog #layout .post .post-title a, body.archive #layout .post .post-title a {
	color: #96644b;
}
body .pagenav {
	text-align: center;
	padding: 50px 0 0;
}
body .pagenav .number {
	font-size: 18px;
	color: #ffffff;
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
	border: 1px solid #9bada3;
	background: #9bada3;
	border-radius: 45%;
    padding: 17px 18px;
}
body .pagenav .number.current {
	background: none;
	color: #9bada3;
}
/* === Detail === */
body.single #layout {
	display: block;
}
body.single .post .post-date {
	font-size: 20px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 50px;
}
body.single .post .post-meta {
	display: inline-block;
	vertical-align: middle;
	margin:0  25px 0 0;
}
body.single .post .post-meta .post-author {
	display: none;
}
body.single .post .post-meta .post-category {
	font-size: 13px;
	margin: 0;
	color: white;
	background: #9bada3;
	display: block;
	width: 67px;
	text-align: center;
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
	line-height: 1;
	padding: 2px 4px 5px;
}
body.single .post .post-meta .post-category:after {
	display: none;
}
body.single .post .post-title {
	font-size: 20px;
	display: inline;
	vertical-align: middle;
	margin: 0;
	font-weight: normal;
}
body.single .post .entry-content {
	border-top: 2px dotted #ac8571;
	padding: 45px 130px 35px;
	font-size: 15px;
	margin-top: 24px;
}
body.single .rtb {
	text-align: center;
}
body.single .rtb a {
	font-size: 15px;
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
	color: #96644b;
	width: 100%;
	max-width: 343px;
	box-sizing: border-box;
	text-align: center;
	border: 1px solid #96644b;
	border-radius: 40px;
	background: url(../../uploads/arrow-back.png) no-repeat left 30px center;
	padding: 10px 70px;
	display: block;
    margin: 0 auto;
}
/* =========== TITLE ========== */
.module .module-title {
	margin-bottom: 15px;
	font-size: 22px;
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
}
.title_mb25.module .module-title {
	margin-bottom: 25px;
}
.title_en.module .module-title {
	font-size: 55px;
	color: #96644b;
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 2px;
}
.title_en_line.module {
	
}
.title_en_line.module .module-title:before, .title_en_line.module .module-title:after {
	content: '';
	width: 100%;
	border-top: 2px dotted #e6eae8;
	display: block;
}
.title_en_line.module .module-title {
	font-size: 34px;
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
	text-align: center;
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 40px;
	color: white;
}
.title_page .fancy-heading .main-head {
	font-size: 42px;
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
	text-align: center;
	color: white;
}
.title_60.module .module-title {
	font-size: 60px;
	color: #96644b;
}
.title_bd_dot.module .module-title {
	font-size: 26px;
	border-bottom: 2px dotted #ae8874;
	padding-bottom: 15px;
}
.title_white.module .module-title {
	color: white;
	border-color: white;
}


/* =========== OTHER ========== */
.module {
	margin-bottom: 30px;
}
.module p:last-child {
	margin-bottom: 0;
}
.row_1100 .row_inner {
	max-width: 1100px;
}
#pagewrap .bg_wave_top {
	background: #9bada3;
	margin-top: 40px;
}
#pagewrap .bg_wave_top:before {
	content: '';
	display: block;
	background: url(../../uploads/bg-wave_09.png) no-repeat bottom;
	height: 40px;
	width: 100%;
	position: absolute;
    top: -40px;
	left: 0;
    right: 0;
}

#pagewrap .bg_wave_bottom {
	background: #9bada3;
	margin-bottom: 43px;
}
#pagewrap .bg_wave_bottom:after {
	content: '';
	display: block;
	background: url(../../uploads/bg-wave_06.png) no-repeat bottom;
	height: 43px;
	width: 100%;
	position: absolute;
    bottom: -43px;
	left: 0;
    right: 0;
}
#pagewrap .bg_wave_bottom2 {
	background: #9bada3;
	margin-bottom: 41px;
}
#pagewrap .bg_wave_bottom2:after {
	content: '';
	display: block;
	background: url(../../uploads/bottom-2_02.png) no-repeat bottom;
	height: 41px;
	width: 100%;
	position: absolute;
    bottom: -41px;
	left: 0;
    right: 0;
}
#pagewrap .btn_arrow .module-buttons-item a {
	font-size: 15px;
	color: #96644b;
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
	border: 1px solid #96644b;
	background: url(../../uploads/arrow.png) no-repeat right 30px center;
	min-width: 340px;
    border-radius: 30px;
    text-align: center;
    padding: 10px 70px 16px;
    box-sizing: border-box;
}
#pagewrap .btn_arrow_solid .module-buttons-item a {
	font-size: 15px;
	color: #fff;
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
	border: 1px solid #96644b;
	background: url(../../uploads/arrow-w.png) no-repeat right 30px center, #96644b;
	min-width: 340px;
    border-radius: 30px;
    text-align: center;
    padding: 10px 70px 16px;
    box-sizing: border-box;
}
#pagewrap .qa ul li {
	margin-bottom: 10px;
	padding: 0;
}
#pagewrap .qa ul li .accordion-title a {
	font-size: 18px;
	color: white;
	background: #9bada3;
	display: flex;
    align-items: center;
	gap: 16px;
	font-weight: normal;
	padding: 25px 50px;
	border-radius: 15px;
}
#pagewrap .qa ul li .accordion-title a:before {
	content: 'Q';
	display: inline-block;
	order: 1;
}
#pagewrap .qa ul li .accordion-title a span {
	order: 2;
}
#pagewrap .qa ul li .accordion-title a i {
	order: 3;
}
#pagewrap .qa ul li .accordion-content {
	padding: 20px 80px;
	line-height: 2;
}
#pagewrap .qa ul li .accordion-content ul {
	display: flex;
	gap: 20px;
	margin: 25px 0 0;
}
#pagewrap .qa ul li .accordion-content ul li {
	display: block;
}
#pagewrap .qa ul li .accordion-content ul li a {
	font-size: 15px;
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
	background: url(../../uploads/arrow.png) no-repeat right 30px center;
	border: 1px solid #96644b;
	padding: 15px 70px;
	display: block;
    width: 343px !important;
	text-align: center;
	border-radius: 30px;
	box-sizing: border-box;
	text-decoration: none;
}
#pagewrap .qa ul li .accordion-content ul li + li a {
	background: url(../../uploads/arrow-w.png) no-repeat right 30px center, #96644b;
	color: white;
}
#pagewrap .policy .tb_text_wrap {
	max-height: 360px;
	overflow-y: scroll;
}

#pagewrap .wpcf7 {
	background: #86a79d;
	color: white;
	padding: 50px 80px 20px;
}
#pagewrap .wpcf7 table tr th, #pagewrap .wpcf7 table tr td {
	border: none;
	padding: 16px 0;
	vertical-align: top;
	font-weight: normal;
}
#pagewrap .wpcf7 table tr td input, #pagewrap .wpcf7 table tr td textarea, #pagewrap .wpcf7 table tr td select {
	background: white;
	border-radius: 10px;
	border: none;
	box-shadow: none;
}
#pagewrap .wpcf7 table tr th span {
	font-size: 100%;
	color: #86a79d;
	background: #faf9f6;
	line-height: 1;
	padding: 0 4px;
	margin-right: 22px;
}
#pagewrap .wpcf7 table tr th span.optional {
	border: 1px solid white;
	color: white;
	background: none;
}
#pagewrap .wpcf7 .submit_btn {
	margin: 20px 0 0;
}
#pagewrap .wpcf7 .submit_btn input {
	color: #faf9f6;
	border: 1px solid white;
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
	background: url(../../uploads/arrow-w.png) no-repeat right 30px center;
	padding: 15px 70px;
	display: block;
    width: 343px !important;
	text-align: center;
	border-radius: 30px;
	box-sizing: border-box;
	text-decoration: none;
}

/* by fujimoto */
.btn_fixed a {
	color: #96644b;
	background: #ffffff;
}

.btn_fixed a + a {
	color: #fff;
}

#main-menu-container #main-menu li {
    letter-spacing: .05em;
}

body #pagewrap.site {
	font-family: "noto-sans-cjk-jp", sans-serif;
	font-weight: 400;
	font-style: normal;
	letter-spacing: .05em;
	font-size: 15px;
}

#pagewrap .news_post .list-post .post .post-meta .post-category {
    display: flex;
    align-items: center;
}

#pagewrap .news_post .list-post .post .post-meta .post-category a {
    width: 66px;
    text-align: center;
    padding: 2px 0 5px;
}

#pagewrap a:hover, .f_icon a:hover {
	opacity: 0.7;
	transition: 0.5s;
	text-decoration: none;
}

#menu-button {
    width: 60px;
    height: 60px;
}

#pagewrap .bg_wave_bottom {
    padding-bottom: 90px;
}

.page-id-574 #pagewrap .title_60.module .module-title {
	margin-bottom: 40px;
}

#pagewrap .tb_zaow601 p {
	margin: 0 0 1.9em;
}

#pagewrap .tb_1bi8274 .subrow_inner, #pagewrap .tb_5gr4733 .subrow_inner {
	--gutter: 4.2%;
}

body #pagewrap .post-category {
	width: 66px;
	display: flex;
	align-items: center;
	justify-content: center;
}

body.blog #layout .post .post-meta .post-category a, body.archive #layout .post .post-meta .post-category a, .single .post-meta a {
	padding: 2px 0 5px;
}


body.blog #footer {
	max-width: 100%;
}

.time p {
	display: flex;
}

#pagewrap .wpcf7 table tr td.time select {
	padding: 5px 18px;
}

#pagewrap .wpcf7 table tr td.time .wpcf7-form-control-wrap {
	margin-right: 13px;
}

#pagewrap .wpcf7 table tr td.time .wpcf7-form-control-wrap:not(:first-child) {
	margin-left: 20px;
}

#pagewrap .wpcf7 table tr td select {
	color: #96644b;
}

#menu-button .ham-lines {
    width: 100%;
    height: 100%;
}

#menu-button {
	border-radius: 0 0 0 25px;
	width: 70px;
	height: 60px;
}

#menu-button .ham-lines span, #menu-button .ham-lines::before, #menu-button .ham-lines::after {
	width: 36px;
	height: 2px;
	border-radius: 0px;
}

#menu-button .ham-lines::before {
	bottom: 41px;
}

#menu-button .ham-lines span {
	bottom: 31px;
}

#menu-button .ham-lines::after {
	bottom: 21px;
}

#menu-button.is-active .ham-lines::before {
	bottom: 45px;
}

#menu-button.is-active .ham-lines::after {
	bottom: 18px;
}
.about_left h3.module-title {
	text-align: center;
	width: 90px;
	padding: 5px;
}
.tab_about table tr td {
    border: none;
    padding: 0;
	vertical-align: top;
	position: relative;
}
.tab_about table tr td:first-child {
    width: 25%;
}
.tab_about table tr td:first-child:before {
    content: "●";
    font-size: 12px;
}
.tab_about table tr td:first-child:after {
    content: "";
    width: 1px;
    border-left: 1px solid #af9e93;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 5px;
}
.tab_about table tr:first-child td:first-child:after {
    top: 10px;
}
.tab_about table tr:last-child td:first-child:after {
    bottom: 10px;
}


/* お問い合わせ非表示で404ページにサイドバーが出てくるのを消す（いらなくなったら削除） */

.error404 #layout #sidebar {
	display: none;
}
.error404.sidebar-left #content {
	float: none;
}


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

	Media Query

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

}

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

	#pagewrap {
		position: relative;
	}

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

	
	
	

}

@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
	コンタクフォームのテーブル調整　不要なら消す*/
	
	body .pagewidth {
		max-width: 94%;
	}
	#menu-button {
		right: 10px;
		top: 10px;
	}
	#pagewrap .btn_arrow .module-buttons-item a, #pagewrap .btn_arrow_solid .module-buttons-item a {
		min-width: 300px;
	}
	#header #site-logo {
		width: 150px;
	}
	.btn_fixed {
		display: none;
	}
	#pagewrap .wpcf7 {
		padding: 50px 30px 20px;
	}
	#pagewrap .wpcf7 table tr th  {
		padding-bottom: 0;
		width: 100%;
	}
	body.blog #layout, body.archive #layout, body.single #layout {
		max-width: 94%;
		margin-top: 60px;
    	margin-bottom: 90px;
	}
	.tab_about table tr td:first-child {
		width: 40%;
	}
}

@media screen and (max-width: 980px) { /* for mobile landscape */
	#pc-backtop {
		display: none;
	}
	#footer .sp-footer-icons-container {
		display: flex;
	}
	body #footer .sp-footer-icons-container a {
		color: #96644b;
		border-color: #96644b;
	}
	body #footer .sp-footer-icons-container a svg {
		fill: #96644b;
	}
	#pagewrap {
		padding-bottom: 50px;
	}
	/*murata*/
	.f-logo img{
		width:150px;
	}
}

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

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

	}
	
}

@media screen and (max-width: 768px) { /* for mobile  */
	.news_post .list-post .post .post-date {
		margin-right: 10px;
	}
	.news_post .list-post .post .post-meta {
		margin-right: 8px;
	}
	#headerwrap #header {
		padding: 10px 20px;
	}
	.module .module-title {
		font-size: 20px;
	}
	.title_en.module .module-title {
		font-size: 35px;
	}
	.title_en_line.module .module-title {
		font-size: 24px;
		gap: 20px;
	}
	#pagewrap .bg_wave_top:before {
		background-size: contain;
    	background-position: bottom;
	}
	#pagewrap .bg_wave_bottom:after, #pagewrap .bg_wave_bottom2:after {
		background-size: contain;
    	background-position: top;
	}
	.title_60.module .module-title {
		font-size: 40px;
	}
	.title_bd_dot.module .module-title {
		font-size: 20px;
	}
	.title_page .fancy-heading .main-head {
		font-size: 30px;
	}
	#pagewrap .qa ul li .accordion-content {
		padding: 20px;
	}
	#pagewrap .qa ul li .accordion-content ul li a {
		width: auto !important;
		background-position: right 20px center !important;
	}
	
}

@media screen and (max-width: 680px) { /* for mobile small  */
	#pagewrap .qa ul li .accordion-title a {
		font-size: 16px;
		gap: 10px;
		padding: 15px 20px;
	}
	#pagewrap .qa ul li .accordion-content ul {
		flex-wrap: wrap;
	}
	body.blog #layout .post .post-content, body.archive #layout .post .post-content {
		flex-wrap: wrap;
	}
	body.blog #layout .post .post-date, body.archive #layout .post .post-date {
		margin-right: 15px;
	}
	body.single .post .entry-content {
    	padding: 25px 0px 15px;
	}
	body.single .post .post-date {
		font-size: 18px;
		margin-right: 20px;
	}
	body.single .post .post-meta {
		margin: 0 15px 0 0;
	}
	body.single .post .post-title {
		font-size: 18px;
		display: block;
	}
	
/* 	by fujimoto */
	#pagewrap .module-buttons {
		text-align: center;
	}
	
	.news_post .list-post .post .post-title {
		width: 100%;
		margin-top: 8px;
	}
	
	.news_post .list-post .post .post-content {
		flex-wrap: wrap;
	}
	
	.f_menu #menu-main-menu, .f_icon {
		text-align: center;
	}

	#pagewrap .bg_wave_bottom {
		padding: 0px 0 20px;
	}
	
	.title_60.module .module-title {
		font-size: 30px;
	}
	
	#pagewrap .qa ul li .accordion-content ul li {
		display: block;
		width: 300px;
	}
		
	#pagewrap .qa ul li .accordion-content ul li a {
		padding: 18px 0;
	}
	
	#pagewrap .qa ul li .accordion-content ul {
		justify-content: center;
	}

	#pagewrap .wpcf7 {
		padding: 50px 3% 20px;
	}

	#pagewrap .wpcf7 table tr td.time select {
		padding: 5px 0px;
	}
	
	#pagewrap .wpcf7 table tr td.time .wpcf7-form-control-wrap:not(:first-child) {
		margin-left: 12px;
	}
	
	#pagewrap .wpcf7 table tr td.time .wpcf7-form-control-wrap {
		margin-right: 10px;
	}
	
	#pagewrap .themify_builder_content-572 .tb_z41j60.module-text {
		font-size: 42px;
	}
	.tab_about table tr td:first-child {
		width: 25%;
	}
	
}
@media screen and (max-width: 370px) {
	.tab_about table tr td:first-child {
        width: 40%;
    }
}


