@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: #fff;
}
#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 */

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

	Common settings

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

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

	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 ここを調整すると、メニューボタンクリック後の動作を調整できる */

}

@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;
		background: transparent;
	}
}

@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.skin-default{
   background:#fff;
}

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:1200px;
	margin:0 auto;
}

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


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

/* -----header----- */
body #headerwrap{
   background-color:inherit;
	padding-bottom: 125px;
}

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

body #header.header{
	display:flex;
	align-items: center;
	justify-content: space-between;
	
	padding:18px 3.125vw 19px;
	
	position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #fff;
}

.header-brand-container{
	padding:0;
}
.header-brand-container:hover{
	opacity:0.7;
}

.rh{
	padding:0;
	display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

body #site-logo{
	position:static;
}

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

.tel_header_1{
	background:#4fc3e8;
	border-radius:44px;
	width:302px;
	text-align:center;
	padding:5px;
}

.text_tel_h_1{
	font-size:12px;
	color:#fff;
}
.text_tel_h_2,
.text_tel_h_2 a{
	font-size:26px;
	line-height:1;
	color:#fff;
	font-weight:bold;
	text-decoration: none !important;
}
.text_tel_h_3{
	font-size:14px;
	color:#fff;
}

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

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

#headerwrap #main-menu-container{margin-right:27px;}
 #headerwrap #main-menu{width: 100%;text-align:center;list-style:none;margin:0 auto;display: flex;align-items: center;flex-wrap: nowrap;}
 #headerwrap #main-menu > li {padding:0 20px;margin:0;display:inline-block;position:relative;}
 #headerwrap #main-menu > li > a {padding:0;margin:0;color:#3f3f3f;font-size:16px;text-decoration:none;font-family: "Zen Maru Gothic", sans-serif;font-weight:bold;
	transition:.2s all ease-in-out;}
 #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-menu .current_page_item a,#pagewrap #main-menu .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 a{
	opacity:0.7;
}

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

#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{
	overflow:hidden;
}

.box_footer_1{
	border:2px solid #ace3f4;
	border-radius:20px;
}

.text_footer_1.module{
	font-size:32px;
	line-height:140%;
	color:#fff;
	font-weight:bold;
	letter-spacing:0.01em;
	text-align:center;
	background:#4fc3e8;
	border-radius:20px;
}

.tel_footer_1.module.module-buttons .ui:not(.transparent){
	font-size:40px;
	color:#4fc3e8;
	line-height:1;
	letter-spacing: 0.1em;
    font-weight: bold;
	border:0;
	padding:0;
	background:none;
}

.table_footer_1 table{
	table-layout:fixed;
}

.table_footer_1 tr:not(:last-child){
	border-bottom:1px solid #4fc3e8;
}

.table_footer_1 th,
.table_footer_1 td{
		padding: 12px 10px;
	border:0;
	font-size:16px;
	font-weight:bold;
}

.table_footer_1 td{
		padding: 11px 5px;
	text-align:center;
	font-weight:bold;
}

.table_footer_1 td img{
	margin-bottom:7px;
}

.table_footer_1 th:first-child{
	width:160px;
}

.table_footer_1 tr th:first-child, .table_footer_1 tr td:first-child {
    padding-left: 24px;
    padding-right: 20px;
    text-align: left;
}

.copyright-container{
  padding:3px 0 50px;
	text-align:center;
}

.copyright-container span{
	color:#4fc3e8;
  font-size:14px;
	font-weight:bold;
}

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

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

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

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

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

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

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

#pagewrap .module .module-title{

}

.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----- */

.table_border_1 table{
	border-collapse: separate;
    border-spacing: 0;
	table-layout:fixed;
	background:#fff;
}

.table_border_1 td,
.table_border_1 th {
  border: solid 1px #4fc3e8;
  border-style: none solid solid none;
  padding:12px 10px;
	font-weight:bold;
}

.table_border_1 tr:first-child th:first-child { border-top-left-radius: 15px; }
.table_border_1 tr:first-child th:last-child { border-top-right-radius: 15px; }

.table_border_1 tr:last-child td:first-child { border-bottom-left-radius: 15px; }
.table_border_1 tr:last-child td:last-child { border-bottom-right-radius: 15px; }

.table_border_1 tr:first-child th { border-top-style: solid;}
.table_border_1 tr:first-child th:first-child {border-left-style: solid;width:160px; }
.table_border_1 tr td:first-child { border-left-style: solid; }


.table_border_1 td{
	padding:11px 5px;
	text-align:center;
}
.table_border_1 td img{
	margin-bottom:6px;
}

.table_border_1 tr:first-child{
	background:#e9faff;
}

.table_border_1 tr th:first-child,
.table_border_1 tr td:first-child{
	padding-left:24px;
	padding-right:20px;
	text-align:left;
} 

.time_seet{
	position:fixed;
	top:200px;
	right:0;
	z-index:100;
	
	right: -570px;
	transition:0.25s all ease-in-out;
}
.time_seet:hover{
	right:0px;
	transition:0.25s all ease-in-out;
}
.time_seet .module-text{
	width:647px;
	margin: 0;
    display: flex;
    align-items: center;
	background:#fff;
	box-shadow:0 0 20px rgba(0,0,0,0.3);
	border-radius:30px 0 0 30px;
	padding:20px 0 33px;
}
.time_seet .module-text .module-title{
	writing-mode: vertical-rl;
    font-size: 20px;
    font-weight: 500;
    color: #4fc3e8;
    width: 83px;
    margin: 0;
    display: flex;
    align-items: center;
    letter-spacing: 0.1em;
}

.time_seet .module-text .tb_text_wrap{
	width:480px;
	margin:0 0 0 25px;
}
.time_seet .module-text table{
	table-layout:fixed;
}
.time_seet .module-text table tr:not(:last-child){
	border-bottom:1px solid #e8e8e8;
}
.time_seet .module-text table td,
.time_seet .module-text table th{
	font-weight:bold;
	padding: 10px 10px;
	border:0;
	font-weight:bold;
}

.time_seet .module-text table th:first-child{
	width:140px;
}

.time_seet .module-text table td:first-child{
	text-align:left;
	padding:10px 5px;
}

.time_seet .module-text table th{
	padding:10px 5px;
}

.time_seet .module-text table td{
	text-align:center;
}

.time_seet .module-text table td img{
	margin-bottom:7px;
}

.slide_home_1 .module-image{
	text-align:right;
	margin:0;
	padding-left:10vw;
}

.box_text_main_1.module_subrow{
	position:absolute;
	top:95px;
	left:8.33vw;
	z-index:2;
}

.text_main_1.module{
	margin-bottom:60px;
}
.text_main_1.module .tb_text_wrap{
	border:4px solid #4fc3e8;
	border-radius:25px;
	display:inline-block;
	color:#4fc3e8;
	font-size:72px;
	line-height:1.1;
	padding:22px 42px 23px;
	letter-spacing:0.06em;
	box-shadow:0 0 15px rgba(0,0,0,0.2);
	background:#fff;
	font-weight:500;
}
.text_main_1.module .tb_text_wrap strong{
	text-shadow:0 0 4px #4fc3e8,0 0 4px #4fc3e8,0 0 4px #4fc3e8,0 0 4px #4fc3e8,0 0 4px #4fc3e8,0 0 4px #4fc3e8,0 0 4px #4fc3e8,0 0 4px #4fc3e8,0 0 4px #4fc3e8,0 0 4px #4fc3e8,0 0 4px #4fc3e8,0 0 4px #4fc3e8,0 0 4px #4fc3e8,0 0 4px #4fc3e8,0 0 4px #4fc3e8,0 0 4px #4fc3e8,0 0 4px #4fc3e8,0 0 4px #4fc3e8,0 0 4px #4fc3e8,0 0 4px #4fc3e8,0 0 4px #4fc3e8,0 0 4px #4fc3e8,0 0 4px #4fc3e8,0 0 4px #4fc3e8,0 0 4px #4fc3e8,0 0 4px #4fc3e8,0 0 4px #4fc3e8,0 0 4px #4fc3e8,0 0 4px #4fc3e8,0 0 4px #4fc3e8,0 0 4px #4fc3e8,0 0 4px #4fc3e8,0 0 4px #4fc3e8,0 0 4px #4fc3e8,0 0 4px #4fc3e8,0 0 4px #4fc3e8;
	color:#fff;
	position:relative;
	font-weight: 500;
}

.text_main_2.module .tb_text_wrap{
	border:4px solid #4fc3e8;
	border-radius:25px;
	display:inline-block;
	color:#4fc3e8;
	font-size:22px;
	line-height:40px;
	padding:14px 42px;
	letter-spacing:0.07em;
	box-shadow:0 0 15px rgba(0,0,0,0.2);
	background:#fff;
	font-weight:bold;
}

.ti_2_line_1.module{
	text-align:center;
	font-weight:600;
	font-size:30px;
}
.ti_2_line_1b.module{
	font-size:32px;
}
.ti_2_line_1.module .module-title{
	color:#ff9aae;
	font-size:16px;
	margin:0;
	position:relative;
	font-weight:500;
	padding-bottom:8px;
}
.ti_2_line_1b.module .module-title{
	padding-bottom:14px;
	margin-bottom:6px;
}
.ti_2_line_1.module .module-title:before{
	content:"";
	width:200px;
	height:1px;
	display:block;
	margin:0 auto;
	position:absolute;
	left:0;
	right:0;
	bottom:-1px;
	background:#4fc3e8;
}


.ti_2_line_1b.module .module-title:before{
	max-width:720px;
	width:100%;
}

/* POST */

.post_home_1.module{
	max-width:964px;
	width:100%;
	margin:0 auto;
}

.post_home_1 .list-post{
	height:240px;
	overflow:auto;
}

.post_home_1.module.module-post .post{
  margin-bottom:0;
	border-bottom:1px solid #aaa;
	padding:23px 0;
	max-width:860px;
}

.post_home_1 time{
  font-size:16px;
  margin:0;
	color:#4fc3e8;
	width:200px;
	font-weight:500;
	float:left;
	overflow:hidden;
}

.post_home_1.module.module-post .post-title{
  margin-bottom:1px;
	font-size:16px;
	line-height:2;
	font-weight:500;
}

.post_home_1.module.module-post .post-title a{
	color:#3f3f3f;
	font-size:16px;
	line-height:2;
  text-decoration:none;
	font-weight:500;
}
.post_home_1.module.module-post .post-title a:hover{
  text-decoration:underline;
}

/* End POST */

.ti_home_1.module{
	font-size:40px;
	color:#3f3f3f;
	font-weight:100;
	line-height:1.75;
	border-bottom:1px solid #4fc3e8;
	padding:0 0 16px;
}

.box_home_ct_1 .tb-column-inner{
	background:#fff;
	border-radius:20px;
	padding:29px 32px 20px;
	margin-bottom:30px;
}

.btn_page_1.module{
	text-align:center;	
}

.btn_page_1.module.module-buttons .ui:not(.transparent){
	display:inline-block;
	width:282px;
/* 	border:1px solid #8cd9f1; */
	border: 1px solid #4fc3e8;
	border-radius:15px;
	padding:16px 10px 21px;
	color:#3f3f3f;
	font-size:16px;
	line-height:1.5;
	text-align:center;
	font-weight:bold; 
	background:#fff;
/* 	box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); */
	box-shadow: 0 0 5px rgba(79, 195, 232, 0.3);
}
.btn_page_1.module.module-buttons .ui:not(.transparent) span{
	max-width:120px;
	background:url("../../uploads/arr_r_1.png")no-repeat center right;
	text-align: left;
    display: inline-block;
    width: 100%;
}

.box_home_1{
	max-width:830px;
	width:100%;
	margin:0 auto;
}

.box_home_1 .module .image-wrap > a {
	width:211px;
	height:211px;
	margin:0 auto;
	border:2px solid #a2dff3;
	border-radius:20px;
	margin-bottom:60px;
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 40px 12px 30px;
	background:#fff;
}

.box_home_1 .module-image.image-top .image-content{
	margin:0;
}
.box_home_1 .module-image.image-top::after{
	display:none;
}
.box_home_1 .module .image-title{
	font-size:20px;
	line-height:1.5;
	margin:0;
}
/* .box_home_1 .module .image-title  */
.box_home_1 .module-image.image-top .image-content{
	display: inline-block;
    font-size: 20px;
    line-height: 1.5;
    color: #3f3f3f;
    font-weight: bold;
    padding: 0 15px 0 0;
    background: url(../../uploads/arr_r_1.png) no-repeat bottom 5px right 20%;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
}

.box_home_2 .sub_column{
	border:1px solid #4fc3e8;
	border-radius:20px;
	margin-bottom:60px;
	background:#fff;
	padding:40px 40px 22px;
}

.text_box_home_1.module{
	line-height:28.8px;
}
.text_box_home_1.module .module-title{
	font-size:16px;
	line-height:28.8px;
	display:inline-block;
	border-bottom:1px solid #4fc3e8;
	margin:0 0 3px;
}

.box_home_circle_1 .subrow_inner {
	grid-template-columns: 322px 322px 322px;
	--gutter: calc((100% - (322px * 3)) / 2);
}

.box_home_circle_1 .module{
	width:322px;
	height:322px;
	border:1px solid #4fc3e8;
	border-radius:50%;
	margin-bottom:14px;
	
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	text-align:center;
	background:url("../../uploads/3dot.png")no-repeat top 39px center,#fff;
}

.box_home_circle_1 .sub_column:nth-child(odd) .module{
	margin-top:65px;
}

.box_home_circle_1 .module .module-title{
	color:#3f3f3f;
	font-size:26px;
	border-bottom:1px solid #4fc3e8;
	margin:0 0 14px;
	padding:12px 0 8px;
}

.text_home_2.module{
	display:flex;
}
.text_home_2.module .module-title{
	width:102px;
	margin:0;
	font-weight:normal;
	color:#4fc3e8;
	font-size:16px;
	line-height: 2;
}

.box_home_3,
.box_home_3b{
	position:relative;
	padding:0 0 120px;
}

.box_home_3 .sub_column.first .tb-column-inner,
.box_home_3b .sub_column.last .tb-column-inner{
	position:absolute;
	top:-56px;
	border:1px solid #4fc3e8;
	border-radius:20px;
	z-index:2;
	width:600px;
	background:#fff;
	padding:40px 37px 10px;
	box-shadow: 0px 0px 15px 0px #b2d7e3;
}
.box_home_3 .sub_column.first .tb-column-inner{
	left:67px;
}
.box_home_3b .sub_column.last .tb-column-inner{
	right:67px;
}

.box_home_3 .sub_column.first .module-text,
.box_home_3b .sub_column.last .module-text{
	line-height:28.8px;
	margin-bottom:23px;
}

.box_home_3 .module-text .module-title,
.box_home_3b .module-text .module-title{
	color:#4fc3e8;
	font-size:36px;
	margin:0 0 27px;
}

.btn_page_2.module{
	text-align:right;
}
.btn_page_2.module.module-buttons .ui:not(.transparent){
	border:0;
	padding:0 50px 0 0;
	background:url("../../uploads/arr_r_1.png")no-repeat center right;
	display:inline-block;
	color:#3f3f3f;
	font-size:16px;
	line-height:1.5;
	font-weight:bold;
}

.bg_sub_main{
	padding-bottom:80px;
	background:url("../../uploads/deco1.png")repeat-x center bottom;
}
.bg_sub_main .module{
	margin:0;
}
.bg_sub_main .module-image.image-top .image-content{
	position:absolute;
	top:50%;
	left:2%;
	right:2%;
	transform:translatey(-50%);
	display:block;
	max-width:640px;
	width:100%;
	margin:0 auto;
	background:rgba(255,255,255,0.8);
	border-radius:20px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	text-align:center;
	padding:20px 20px 17px;
}

.bg_sub_main .module-image .image-title{
	margin:0;
	display:inline-block;
	color:#3f3f3f;
	font-size:40px;
	padding:0 48px 7px;
	border-bottom:1px solid #4fc3e8;
}

.box_flow_1{
	border-radius:20px;
	border:1px solid #4fc3e8;
	position:relative;
	box-shadow:0 0 10px rgba(79,195,232,0.3);
}
.text_step_1.module{
	position:absolute !important;
	top:0;
	left:0;
	background:#e5f6fc;
	width:95px;
	height:95px;
	border-radius:20px 0 20px 0;
	line-height:1;
	font-size:56px;
	color:#4fc3e8;
	text-align:center;
	font-weight:bold;
	padding:10px 0 0;
}
.text_step_1.module .module-title{
	font-size:20px;
	color:#4fc3e8;
	line-height:1;
	margin:0;
	font-weight:500;
}

.text_flow_1.module{
	padding:25px 20px 25px 165px;
	font-size:30px;
	color:#4fc3e8;
	margin:0 0 24px;
	font-weight:bold;
	line-height:1.5;
}

.box_flow_wrap_1{
	padding:0 15px 7px;
}

.box_flow_wrap_1 .subrow_inner {
	max-width:1105px;
	width:100%;
	margin:0 auto;
}

.text_flow_2.module .module-title{
	border-bottom:3px solid #ff9aae;
	padding:0 0 15px 44px;
	background:url("../../uploads/normal.png")no-repeat top left;
	font-size:22px;
	color:#3f3f3f;
	margin:0 0 21px;
	font-weight: 600;
}

.table_flow_1 th,
.table_flow_1 td{
	padding:0;
	border:0;
}
.table_flow_1 th{
	width:105px;
	color:#ff9aae;
	text-align:left;
}

.ti_cc_1.module .module-title{
	text-align:center;
	margin:0 auto;
	background:url("../../uploads/teeth1-1.png")no-repeat center;
	padding:1px 0 18px;
	color:#fff;
	margin-bottom:17px;
}
.ti_cc_1.module{
	font-size:24px;
	line-height:1.5;
	font-weight:bold;
	text-align:center;
	background:url("../../uploads/line1.png")no-repeat center bottom;
	padding:0 0 14px;
}

.box_voice_1{
	position:relative;
}

.cc_voice_1.module{
	width:258px;
	height:258px;
	border-radius:50%;
	border:1px solid #4fc3e8;
	box-shadow:0 0 10px rgba(79,195,232,0.3);
	background:#fff;
	
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	z-index:2;
}
.cc_voice_1.module-image.image-top .image-content{
	margin:11px 0 0;
}
.cc_voice_1.module-image.image-top .image-title{
	font-size:16px;
	font-weight:500;
}

.cc_voice_2.module{
	border-radius:20px;
	border:1px solid #4fc3e8;
	padding:15px 38px 16px;
	display:inline-block;
	max-width:777px;
	background:#fff;
	position:absolute !important;
	top:97px;
	left:240px;
	z-index:1;
}

.row_cc_voice_1 .box_voice_1:nth-child(odd) .cc_voice_1.module{
	margin:0 0 0 auto;
}

.row_cc_voice_1 .box_voice_1:nth-child(odd) .cc_voice_2.module{
	top:64px;
	left:auto;
	right:240px;
}

.row_cc_voice_1 .box_voice_1:nth-child(3){
	margin-top:-70px;
}
.row_cc_voice_1 .box_voice_1:nth-child(4){
	margin-top:-174px;
}
.row_cc_voice_1 .box_voice_1:nth-child(5){
	margin-top:-75px;
}

.row_cc_voice_1 .box_voice_1:nth-child(6){
	margin-top:-45px;
}

.row_cc_voice_1 .box_voice_1:nth-child(4) .cc_voice_2.module{
	top:128px;
}

.row_cc_voice_1 .box_voice_1:nth-child(5) .cc_voice_2.module{
	top:97px;
}

.row_cc_voice_1 .box_voice_1:nth-child(6) .cc_voice_2.module{
	top:103px;
}

.p_anchor_1.module ul{
	text-align:center;
	list-style:none;
	margin:0;
}
.p_anchor_1.module ul li{
	display:inline-block;
	margin:0 8px 10px;
}
.p_anchor_1.module ul li a{
	display:inline-block;
	font-size:16px;
	color:#fff;
	line-height:1.4;
	padding:3px 17px;
	background:#4fc3e8;
	border-radius:14px;
	text-decoration:none !important;
}
.p_anchor_1.module ul li a:hover{
	opacity:0.7;
}

.text_den_2.module{
	border:1px solid #4fc3e8;
	border-radius:20px;
	padding:35px 20px 14px;
}
.text_den_2.module > *{
	max-width:1070px;
	width:100%;
	margin:0 auto;
}
.text_den_2.module .module-title{
	background:
		url("../../uploads/ti_3dot_1.png")no-repeat top center,
		url("../../uploads/line2.png")no-repeat bottom center;
	font-size:30px;
	line-height:1.4;
	text-align:center;
	margin-bottom:30px;
	padding:23px 0 12px;
	font-weight: 600;
}

.text_den_2.module ul{
	list-style:none;
	margin:0;
}
.text_den_2.module ul li{
	font-size:20px;
	line-height:1.6;
	color:#3f3f3f;
	margin:0 0 26px;
	padding:0 0 0 24px;
	position:relative;
	font-weight:normal;
}
.text_den_2.module ul li:before{
	content:"";
	height:16px;
	width:16px;
	background:#ff9aae;
	border-radius:50%;
	display:block;
	position:absolute;
	top:8px;
	left:0;
}

.list_den_2.module ul{
	column-count:2;
	column-gap: 23px;
}
.list_den_3.module ul{
	column-count:3;
	column-gap: 22px;
}
.list_den_4.module ul{
	column-count:4;
}

.text_direc_1.module{
	text-align:center;
	font-size:48px;
	line-height:1.4;
	font-weight:200;
	color:#4fc3e8;
}
.text_direc_1.module strong{
	text-shadow: 0 0 2px #4fc3e8, 0 0 4px #4fc3e8, 0 0 4px #4fc3e8, 0 0 4px #4fc3e8, 0 0 4px #4fc3e8, 0 0 4px #4fc3e8, 0 0 4px #4fc3e8, 0 0 4px #4fc3e8, 0 0 4px #4fc3e8, 0 0 4px #4fc3e8, 0 0 4px #4fc3e8, 0 0 4px #4fc3e8, 0 0 4px #4fc3e8, 0 0 4px #4fc3e8, 0 0 4px #4fc3e8, 0 0 4px #4fc3e8, 0 0 4px #4fc3e8, 0 0 4px #4fc3e8, 0 0 4px #4fc3e8, 0 0 4px #4fc3e8, 0 0 4px #4fc3e8, 0 0 4px #4fc3e8, 0 0 4px #4fc3e8, 0 0 4px #4fc3e8, 0 0 4px #4fc3e8, 0 0 4px #4fc3e8, 0 0 4px #4fc3e8, 0 0 4px #4fc3e8, 0 0 4px #4fc3e8, 0 0 4px #4fc3e8, 0 0 4px #4fc3e8, 0 0 4px #4fc3e8, 0 0 4px #4fc3e8, 0 0 4px #4fc3e8, 0 0 4px #4fc3e8, 0 0 4px #4fc3e8;
    color: #fff;
    position: relative;
    font-weight: 200;
}

.text_direc_2.module .module-title{
	font-size:22px;
	border-bottom:3px solid #ff9aae;
	padding:0 0 13px 5px;
	margin:0 0 22px;
	font-weight: 600;
}


.table_clinic_1.module,
.table_direc_1.module{
	border-radius:20px;
	border:1px solid #4fc3e8;
	padding:13px 30px 15px;
	max-width:600px;
	width:100%;
	margin:0 auto;
	background:#fff;
	box-shadow:0 0 10px rgba(79,195,232,0.3);
}

.table_clinic_1.module tr:not(:last-child),
.table_direc_1.module tr:not(:last-child){
	border-bottom:1px solid #4fc3e8;
}

.table_clinic_1.module th,
.table_clinic_1.module td,
.table_direc_1.module th,
.table_direc_1.module td{
	border:0;
	font-weight:normal;
	vertical-align:top;
	padding:9px 10px 8px;
}

.table_clinic_1.module th,
.table_clinic_1.module td{
	padding:16px 0px 15px
}

.table_clinic_1.module th,
.table_direc_1.module th{
	width:140px;
}
.table_clinic_1.module td,
.table_direc_1.module td{
	padding-left:25px;
	padding-right:10px;
}

.text_clinic_1.module{
	text-align:center;
}
.text_clinic_1.module .module-title{
	font-size:20px;
	color:#4fc3e8;
	margin:0;
}

.text_clinic_2.module{
	text-align:center;
	margin-bottom:54px;
}
.text_clinic_2.module .module-title{
	font-size:20px;
	margin:0 0 10px;
	display:inline-block;
	border-bottom:1px solid #ff9aae;
	padding:0 0 4px;
	font-weight: normal;
}
.text_clinic_2.module .tb_text_wrap{
	text-align:left;
}

.row_6_clinic .module-image{
	margin-bottom:18px;
}

.single-post .post{
	margin:155px 0 160px;
}

.single-post time{
	color: #ff9aae;
    font-size: 16px;
    margin: 0;
    position: relative;
    font-weight: 500;
	padding-bottom: 14px;
    margin-bottom:18px;
	line-height:1.4em;
	display: block;
    text-align: center;
	font-weight:bold;
}
.single-post time:before {
    content: "";
    max-width: 720px;
    width: 100%;
    height: 1px;
    display: block;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    background: #4fc3e8;
}

.single-post .post-title{
	text-align: center;
    font-weight: 600;
	font-size: 32px;
	margin-bottom:58px;
}
.single-post .entry-content{
	border-radius:20px;
	border:1px solid #4fc3e8;
	padding:67px 120px 55px;
}


/* 20250625 */
br.sp-only {
	display: none;
}
br.not-sp {
		display: block;
	}
.dentures-text ul li:nth-child(2) {
	margin-bottom: 50px;
}
html {
  scroll-padding-top: 100px; /* 固定ヘッダの高さ分 */
}
.table_border_1 table {
	border: 2px solid #4fc3e8;
    border-collapse: separate;
    width: 100%;
    border-radius: 17px;
}

.sp-footer-time .time-icon img {
	width: 9%;
}






@media screen and (max-width: 1460px) {
	
	body #headerwrap {
		padding-bottom: 162px;
	}
	
	.rh {
		align-items: flex-end;
		flex-direction: column-reverse;
	}
	
	.tel_header_1{
		margin-bottom:15px;
	}
	
	#headerwrap #main-menu-container{
		margin:0;
	}
	
}

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


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

	#pagewrap .pagewidth{
    width:98%;
  }
	#headerwrap #main-menu li.nav00 {
		display: block;
	}
	
	body #headerwrap {
		padding-bottom:91px;
	}
	
	body.mobile_menu_active #header,body #header.header  {
    padding:10px 15px;
	}

	.header-brand-container,.rh{
		float:none;
		text-align:center;
		padding:0;
	 }
	
	.tel_header_1,
	.h_contact{
		display:none;
	}
#headerwrap #main-menu-container.is-active{
		display: flex;
    align-items: center;
/* 	background:rgba(255,255,255,0.95); */
		background: url(../../uploads/h-menu_bg.png);
	background-size: cover;
	}
#headerwrap #main-menu-container {
		display: flex;
		align-items: center;
		background: url(../../uploads/h-menu_bg.png);
        background-size: cover;
	}
#headerwrap #main-menu {
    background: none;
    padding-right: 0;
	flex-direction: column;
}
#headerwrap #main-menu::before {
    content: "";
	display: block;
	background: url(../../uploads/3dot.png) no-repeat center top;
	width: 100px;
	height: 50px;
}
#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: 13px; */
		padding: 5px 0;
		background: none;
		text-align: left;
		border-bottom:0;
		width: 200px;
        background: #fff;
        border-radius: 30px;
        text-align: center;
        margin-bottom: 10px;
	}
	
	#headerwrap #main-menu > li > a {
		font-size: 20px;
	}

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

#pagewrap {
    padding-bottom: 0;
}

body #footer .sp-footer-icons-container a{
		background: #e9faff;
        color: #000;
		border-color:#4fc3e8;
	}

  
}

@media screen and (max-width: 1150px) {
	
	.row_cc_voice_1 .box_voice_1:nth-child(3),
	.row_cc_voice_1 .box_voice_1:nth-child(4),
	.row_cc_voice_1 .box_voice_1:nth-child(5),
	.row_cc_voice_1 .box_voice_1:nth-child(6){
		margin:0;
	}
	
	.row_cc_voice_1 .box_voice_1:nth-child(odd) .cc_voice_1.module{
		margin-bottom:30px;
	}
	
	.list_den_2.module ul,
	.list_den_3.module ul,
	.list_den_4.module ul{
		column-count:1;
		column-gap:0;
	}
	
}

@media screen and (max-width: 1120px) {
	
	.box_text_main_1.module_subrow {
		top: 80px;
		left: 4vw;
	}
	
}

@media screen and (max-width: 1024px) {
	
	.box_home_circle_1 .subrow_inner {
		grid-template-columns:100% 100% 100%;
		--area: "col1" "col2" "col3";
		--gutter:0;
	}

	.box_home_circle_1 .module,
	.box_home_circle_1 .sub_column:nth-child(odd) .module{
		margin:0 auto 40px;
	}
	
	.box_home_3 .subrow_inner,
	.box_home_3b .subrow_inner{
		grid-template-columns:100% 100%;
		--gutter:0;
	}
	
	.box_home_3 .subrow_inner{
		--area: "col2" "col1" !important;
	}
	
	.box_home_3b .subrow_inner{
		--area: "col1" "col2";
	}
	
	.box_home_3 .sub_column.first .tb-column-inner, 
	.box_home_3b .sub_column.last .tb-column-inner {
		position: static;
		width:100%;
		max-width:580px;
		width:100%;
		margin:0 auto 30px;
	}
	
	.box_home_3, .box_home_3b {
		padding: 0 0 50px;
	}
	
	.box_home_0 .subrow_inner,
	.row_footer_2 .row_inner  ,
	.box_home_about_1 .subrow_inner{
		grid-template-columns:100% 100%;
		--gutter:0;
		--area: "col1" "col2";
	}
	
	.text_main_1.module .tb_text_wrap {
		font-size: 40px;
	}
	.text_main_2.module .tb_text_wrap {
    	font-size: 20px;
		line-height: 2;
	}
	
	.bg_sub_main .module-image img{
		height:350px;
		object-fit:cover;
	}
	
	.bg_sub_main .module-image.image-top .image-content {
		width: 96%;
	}
	
	/* 	TABLET_20250627 */
	.text_main_1.module .tb_text_wrap {
    	padding: 22px 28px 23px;
	}
	#menu-button {
    	top: 20px;
	}
	
	.director-img img,
	.hospital-img img {
		width: 300px;
	}
	.row_cc_voice_1 .box_voice_1 .cc_voice_1.module {
        margin: 0 auto !important;
        position: relative;
        top: 16px;
        z-index: 1;
    }
	.row_cc_voice_1 .box_voice_1 .cc_voice_2.module {
        position: relative !important;
        max-width: 100%;
        display: block;
        left: 0;
        right: 0;
        top: 0;
    }
	.row_cc_voice_1 .box_voice_1:nth-child(odd) .cc_voice_2.module {
		top: 0;
		left: 0;
		right: 0;
	}
	.row_cc_voice_1 .box_voice_1:nth-child(4) .cc_voice_2.module {
		top: 0;
	}
	.row_cc_voice_1 .box_voice_1:nth-child(5) .cc_voice_2.module {
		top: 0;
	}
	.row_cc_voice_1 .box_voice_1:nth-child(6) .cc_voice_2.module {
		top: 0;
	}
	.text_flow_2.module .module-title {
		background: url(../../uploads/normal.png) no-repeat center left;
		padding: 10px 0 10px 44px;
	}
	.list-den-fix.list_den_4.module ul {
		column-count: 2;
		column-gap: 15px;
	}
	.table_flow_1 th {
		vertical-align: baseline;
	}
	.text_main_2.module .tb_text_wrap {
    		padding: 13px 28px;
	}
	#pagewrap .themify_builder_content-263 .tb_d5x9453.module_subrow>.subrow_inner {
        --area: "col2" "col1";
    }
	.box_home_circle_1 .module {
		width: 60%;
        height: auto;
        border-radius: 30px;
        background: url(../../uploads/3dot.png) no-repeat top 20px center / 10%, #fff;
		padding: 45px 0 15px;
	}
	.box_home_circle_1 .module .module-title {
		font-size: 18px;
	}
	.table_border_1 table {
		max-width: 580px;
		margin: 0 auto;
	}
	.text_home_2.module {
		display: flex;
		max-width: 580px;
		margin: 0 auto;
	}
}


@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;
}

body #pc-backtop{
		display:none;
	}
	
	.row_cc_voice_1 .box_voice_1 .cc_voice_2.module{
		position:static !important;
		max-width:100%;
		display:block;
	}
	
	.row_cc_voice_1 .box_voice_1 .cc_voice_1.module {
        margin: 0 auto 10px !important;
    }
	
	.single-post .entry-content {
		padding:40px 40px 25px;
	}
	
	

}


@media screen and (max-width: 768px) {
  
  .table_multicolumn.module .tb_text_wrap{
    overflow: auto;
/*     margin-right: 2%;
    margin-left: 2%; */
		margin-right: 0;
		margin-left: 0;
	}
  
  
  .table_multicolumn.module.module .tb_text_wrap table{
    width: 685px;
	}
	
	.box_text_main_1.module_subrow {
        top: 7vw;
        left: 4vw;
		right:90px;
		width: auto;
    }

}

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

#pagewrap .pagewidth{
    width:92%;
  }
	
	 .box_text_main_1.module_subrow {
        position: static;
        padding: 4vw 2vw 0;
    }
	
	.text_main_2.module .tb_text_wrap {
		padding:14px 20px;
		font-size: 18px;
		font-weight: normal;
		line-height: 1.8;
	}
	
	.slide_home_1 {
		padding-bottom:30px !important
	}
	
	.time_seet{
		display:none;
	}
	
	.text_flow_1.module {
/* 		padding: 25px 20px 25px 120px; */
		padding: 15px 10px 15px 60px;
	}
	
	.bg_sub_main .module-image img{
		height:300px;
	}
	
	.single-post .entry-content {
		padding:40px 15px 25px;
	}

	.single-post .post {
		margin: 95px 0 100px;
	}
	
	
/* 	SP20250625 */
	br.sp-only {
		display: block;
	}
	.text_main_1.module {
		margin-bottom: 30px;
	}
	.dentures-text ul li:nth-child(2) {
		margin-bottom: 26px;
	}
/* 	font */
	.ti_home_1.module {
    	font-size: 25px;
	}
	.bg_sub_main .module-image .image-title {
    	font-size: 30px;
	}
	.ti_2_line_1b.module {
		font-size: 28px;
	}
	.text_flow_1.module {
    	font-size: 20px;
	}
	.text_step_1.module {
    	font-size: 32px;
	}
	.text_step_1.module .module-title {
		font-size: 14px;
	}
	.text_flow_2.module .module-title {
    	font-size: 16px;
	}
	.text_den_2.module .module-title {
    	font-size: 20px;
	}
	.text_direc_1.module {
    	font-size: 30px;
	}
	.text_footer_1.module {
    	font-size: 24px;
	}
	.ti_cc_1.module {
    	font-size: 20px;
	}
	.text_den_2.module ul li {
    	font-size: 16px;
	}
	.ti_2_line_1.module {
		font-size: 24px;
	}
	
	
/* 	font-END */
	
	.text_main_1.module .tb_text_wrap,
	.text_main_2.module .tb_text_wrap {
		border-width: 3px;
	}
	br.not-sp {
		display: none;
	}
	.themify_builder_content-263 .tb_xl7f507.module_row {
		background-size: cover;
	}
	.btn_page_1.module.module-buttons .ui:not(.transparent) span {
		font-size: 16px;
	}
/* 	.box_home_1 .module {
		width: 170px;
		height: 170px;
		padding: 20px 10px 20px;
		justify-content: center;
		gap: 15px;
	} */
	.box_home_1 .module img {
		width: 50px;
		margin-bottom: 15px;
	}
	.box_home_1 .module .image-title a {
		font-size: 15px;
	}
	.box_home_circle_1 .module {
		width: auto;
		height: auto;
		border-radius: 30px;
		background: url(../../uploads/3dot.png) no-repeat top 20px center / 15% , #fff;
		padding: 45px 0 15px;
	}
	.box_home_circle_1 .module .module-title {
    	font-size: 18px;
	}
	.box_home_1 .module .image-wrap > a {
		width: 150px;
		height: 150px;
		padding: 20px 10px 20px;
		justify-content: space-around;
	}
	.box_home_1 .module-image.image-top .image-content {
		display: inline-block;
		font-size: 20px;
		padding: 0 15px 0 0;
		background: url(../../uploads/arr_r_1.png) no-repeat bottom 3px right 15%;
	}
	.table_footer_1 tr th:first-child, .table_footer_1 tr td:first-child {
		padding-left: 0;
		padding-right: 5px;
		text-align: center;
	}
	.table_footer_1 th:first-child {
		width: auto;
	}
	.table_border_1 td, .table_border_1 th {
		font-size: 14px;
	}
	.table_footer_1 th, .table_footer_1 td {
    	font-size: 14px;
	}	
	.box_home_3 .module-text .module-title, .box_home_3b .module-text .module-title {
		font-size: 24px;
		margin-bottom: 16px;
	}
	.sp-footer-time .time-icon img {
		width: 18%;
	}
	.table_border_1 table {
		max-width: unset;
	}
	.text_home_2.module {
		max-width: unset;
	}
	
	
	
/* 	top-table */
	.table_border_1 tr th:first-child, .table_border_1 tr td:first-child {
		padding-left: 5px;
		padding-right: 5px;
		text-align: center;
	}
	.table_multicolumn.module.module .tb_text_wrap table {
        width: auto;
    }
	.table_border_1 tr:first-child th:first-child {
		width: 23%;
	}
	
	.bg_sub_main {
    	padding-bottom: 40px;
	}
	
	.text_step_1.module {
		width: 48px;
		height: 68px;
	}
	.ti_cc_1.module .module-title {
		background-size: 12%;
	}
	.table_direc_1.module th, .table_direc_1.module td {
        text-align: left;
    }
	table_clinic_1.module, .table_direc_1.module {
    	padding: 13px 10px 15px;
	}
	.table_clinic_1.module th, .table_direc_1.module th {
		width: 30%;
	}

}

@media screen and (max-width: 568px) {
	
	.post_home_1 time {
		float: none;
	}
	
	.bg_sub_main .module-image img{
		height:250px;
	}
	
}

@media screen and (max-width: 480px) {
	
	.text_main_1.module .tb_text_wrap {
		padding: 15px 20px;
		margin: -48px 0 0;
	}
	
	.table_direc_1.module th,
	.table_direc_1.module td{
		width:100%;
		display:block;
	}
	.table_direc_1.module td{
		padding-left:10px;
		padding-right:10px;
		padding-top:0;
	}
	
	.table_direc_1.module {
		padding: 13px 15px 15px;
	}
	
	.single-post .post-title{
		font-size: 18px;
		text-align: left;
		margin-bottom: 32px;
	}
	
}

@media screen and (max-width: 380px) {
	
	.box_home_ct_1 .tb-column-inner {
		padding: 20px 15px 20px;
	}
	
	.box_home_2 .sub_column {
		padding: 40px 15px 22px;
	}
	
	.box_home_3 .sub_column.first .tb-column-inner, 
	.box_home_3b .sub_column.last .tb-column-inner {
		padding: 25px 15px 0;
	}
	
}

@media screen and (max-width: 320px) {
	
	.box_home_circle_1 .module {
    	width: 290px;
		height: 290px;
	}
	
}

