@charset "UTF-8";
/****************************************
		General Setting 
*****************************************/
html, body, div, span, applet, object, iframe, strong,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, legend, caption,
tbody, tfoot, thead, table, label, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
  list-style: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.8;
  word-break: break-strict;
  text-rendering: optimizeLegibility;
  color: #333333;
  -webkit-text-size-adjust: 100%;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.4;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
}


:root{
    --main-color: #364AAD;
    --main-hover-color: #4A62D9;
    --main-bg-color: #E7F2FC;
    --font-lightblue: #298C95;
    --font-color: #ffffff;
    --faq-q: #008CCD;
    --faq-a: #F5AA00;
    --black: #333333;
}


a {
  color: #333;
  text-decoration: none;
  word-break: break-all;
}

a:hover {
  color: var(--main-color);
  text-decoration: underline;
}

a img:hover {
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  opacity: 0.8;
}

.thumbimg:hover {
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  opacity: 0.8;
}

.clear {
  clear: both;
  line-height: 0;
}

.clearfix {
  display: block;
  zoom: 1;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  font-size: 0px;
}

img {
  vertical-align: bottom;
  max-width: 100%;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.minc {
  font-family: "Noto Serif JP", serif;
}

.ac {
	text-align: center;
}

.ar {
	text-align: right;
}

.al {
  text-align: left;
}

.bold {
	font-weight: bold;
}

em {
	font-weight: bold;
	background: linear-gradient(transparent 70%, #fffab1 70%);
}

small {
	font-size: .8em;
}

strong {
	color: var(--font-lightblue);
}

.wrap p {
	margin-bottom: 1rem;
}


/*1.スクロールしたらフェードインアニメーションの指定*/
.scrollanime {opacity: 0;} /*一瞬表示されるのを防ぐ*/
.fadeInDown {
    animation-name: fadeInDown;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}
@keyframes fadeInDown {
    0% {
        opacity: 0;         
    }
    100% {
    opacity: 1;
    transform: translate(0);
    }
}
 
/*2.上下の動きを指定*/
.updown {transform: translateY(-50px);}
.downup {transform: translateY(50px);}
 
/*3.左右の動きを指定*/
.sect02{overflow: hidden;} /*横スクロールバーを隠す*/
.slide-right {transform: translateX(100px);}
.slide-left {transform: translateX(-100px);}

/* 画面開いたらフェードイン（スクロール無し） */
.fadeUp{
	animation-name:fadeUpAnime;
	animation-duration: 1s;
	animation-fill-mode:forwards;
	opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(50px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/****************************************
		Base Setting 
*****************************************/
.body_wrap {
	overflow: hidden;
}

.mt00 {
	margin-top: 0!important;
}
.mb00 {
	margin-bottom: 0!important;
}

.mt1em {
	margin-top: 1em!important;
}
.mt10 {
	margin-top: 10px!important;
}
.mt20 {
	margin-top: 20px!important;
}
.mt40 {
	margin-top: 40px!important;
}
.mb10{
    margin-bottom: 10px !important;
}
.mb40 {
    margin-bottom: 40px !important;
}
.pt10 {
	padding-top: 10px!important;
}
.pt20 {
	padding-top: 20px!important;
}
.pt40 {
	padding-top: 40px!important;
}

.bg_white {
	background-color: #fff;
}
.bg_blue {
	background-color: var(--main-bg-color);
}
.let_sp-1 {
	letter-spacing: -1px;
}
.let_sp-1 span {
	letter-spacing: normal;
}

/****************************************
		Base Setting 
*****************************************/
.wrap {
  width: 1240px;
  margin: 0 auto;
  position: relative;
}

.w86 {
	width: 86%;
	margin:0 auto;
}

/* btn_style */
.btn_style {
  cursor: pointer;
  display: inline-block;
  color: #fff;
  box-sizing: border-box;
  transition: all 200ms 0s ease;
  text-align: center;
  min-width: 300px;
}

.btn_style a {
  padding: 13px 31px;
  display: block;
  position: relative;
}

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

.btn_style i,
.btn_style i.fa-angle-right {
    position: absolute;
    top: 50%;
    right: 4%;
    transform: translateY(-50%);
}
.btn_style.btn_white {
  border: solid 1px var(--main-color);
}
.btn_style.btn_white a {
  color: var(--main-color);
}
.btn_style.btn_white:hover {
	background: var(--main-bg-color);
}
.btn_style.btn_emerald {
  margin: 1.5em 0;
  border: solid 1px #fff;
}
.btn_style.btn_emerald a {
  padding: 17px 31px;
}
.btn_style.mgB0 {
	margin: 1.5em 0 0;
}
.btn_style.btn_emerald:hover {
	background: var(--main-hover-color);
}
.btn_style.btn_green a,
.btn_style.btn_emerald a {
	color: #fff;
	background: none;
}

.box {
  float: left;
  display: block;
}

.sec {
  padding: 100px 0;
}


table {
	margin: 15px 0;
	width: 100%;
}
table th {
	padding: 1.2em;
    border-bottom: 1px #333 solid;
	vertical-align: middle;
}
table td {
	padding: 1em;
    border-bottom: 1px #333 solid;
}

table tr:first-of-type th,
table tr:first-of-type td {
    border-top: 1px #333 solid;
}

.acc_blk {
	display: none;
}

.lbtns {
  text-align: center;
  padding: 30px 0 0;
}

.lbtn {
  width: 190px;
  padding: 20px 30px;
  background: #f2f1f4;
  display: inline-block;
  line-height: 1.2;
  text-align: left;
  transition: all 200ms 0s ease;
  margin: 0 45px;
  background-image: url(../img/common/btn_arrw_01.png);
  background-size: 12px;
  background-position: right 9px bottom 8px;
  background-repeat: no-repeat;
}

.lbtn h3 {
  color: #000;
  font-size: 134%;
}

.lbtn p {
  font-weight: 700;
  font-size: 87%;
}

.lbtn:hover {
  text-decoration: none;
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
}

.target_flg {
  display: inline-block;
  position: relative;
  text-align: center;
  padding: 0 21px 0 15px;/*横の大きさ*/
  margin-bottom: 7px;
  background: #660000;/*塗りつぶし色*/
  color: #FFF;/*文字色*/
  box-sizing: border-box;
}

.target_flg:after {
  position: absolute;
  content: '';
  width: 0px;
  height: 0px;
  z-index: 1;
}

.target_flg:after {
  top: 0;
  right: 0;
  border-width: 14px 10px 14px 0px;
  border-color: transparent #fff transparent transparent;
  border-style: solid;
}

/* header */
header h1 {
	font-size: .8em;
	padding: 3px 0;
}

.header_logoarea {
  padding: 10px 0;
  position: relative;
}

.header_logo {
  display: inline-block;
}

.header_logo img {
  width: 220px;
}

.header_logoarea ul {
  position: absolute;
  display: flex;
  top: 15px;
  right: 0;
}

.header_logoarea ul li.header_tel {
  margin-right: 18px;
}

.header_tel a p {
    line-height: 1;
    position: relative;
    text-align: center;
	margin-bottom: 0;
}
.header_tel p strong {
    font-size: 1.8em;
    font-weight: 700;
    display: block;
}
.header_tel p span {
    font-size: .8em;
    letter-spacing: .09em;
}

/* gnav */
.gnav {
  text-align: center;
  font-size: 107%;
  font-weight: bold;
  line-height: 1.2;
}

.gnav ul.sub_menu.sp_only {
  display: none;
}

.gnav ul li {
    display: inline-block;
	margin: 0 1em;
}

.gnav ul li a {
  display: block;
  position: relative;
  color: #000;
  text-align: center;
  transition: all 200ms 0s ease;
  padding: 20px 1.4em;
  font-size:0.8em;
}

.gnav ul li a:hover {
	color: #0184c9;
	text-decoration: none;
}

.gnav ul li a i {
  display: block;
  padding: 0 0 5px;
}

/* PC ドロップダウンメニュー */
ul.menu__second-level {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}

.menu > li:hover {
    background: #e6eef3;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.menu__second-level li {
    border-top: 1px solid #003551;
	margin: 0;
}

.menu__second-level li a:hover {
    background: #0184c9;
}

.menu > li.menu__single {
    position: relative;
}

li.menu__single ul.menu__second-level {
    position: absolute;
    top: 40px;
    width: 300px;
    background: #e6eef3;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
	box-shadow: #c0cbd1 0 1px 3px;
}

li.menu__single:hover ul.menu__second-level {
    top: 50px;
    visibility: visible;
    opacity: 1;
}

li.menu__single ul.menu__second-level li {
	display: block;
}
li.menu__single ul.menu__second-level li:first-of-type {
	border-top: none;
}
li.menu__single ul.menu__second-level a:hover {
	color: #fff;
}

.drawer-overlay {
  display: none;
}

/* btn_under_area
------------------------ */
.btn_under .blk4_area {
	display: flex;
    justify-content: inherit;
    flex-wrap: inherit;
}
.btn_under .blk4_area .blk {
	text-align: center;
	border: #c9c9c9 1px solid;
	width: 25%;
	background:#FFF;
	margin: 0;
}
.btn_under .blk4_area .blk a {
    padding: 1.8em 1em;
    display: block;
    box-sizing: border-box;
    transition: all 200ms 0s ease;
}
.btn_under .blk4_area .blk a:hover {
    color: #600;
    text-decoration: none;
    background: #fce8e8;
}
.btn_under .blk4_area .blk h3 {
	margin-top: 10px;
}

.btn_under .blk4_area .blk .btn_style_s {
    color: #fff;
    padding: 5px;
}


/* cv_area
------------------------ */
.cv_area {
	padding: 6% 0 4%;
    position: relative;
    text-align: center;
}

.cv_area h2 {
	font-size: 3.5rem;
    margin-bottom: 0.5em;
}
.cv_area h2 span {
	font-size: 1.3rem;
	display: block;
}

.cv_area h3 {
	font-size: 1.5em;
	margin-bottom: 1.5em;
}

@media screen and (min-width:680px) {
	.cv_area .btn_style.btn_emerald {
		margin-right: 40px;
	}	
}


.clinic_info {
	margin-bottom: 6%;
}

.clinic_info .wrap {
	background: #e6eef3;
	padding: 1.5em 2em;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
}
.clinic_info_inner {
	width: 37%;
}
.clinic_info_inner dl {
	margin-bottom: 1em;
	line-height: 1.6;
}

.clinic_schedule_tbl {
	text-align: center;
}

.clinic_schedule_tbl tr {
  border-bottom: solid 1px #dedede;
}

.clinic_schedule_tbl tr:first-of-type th,
.clinic_schedule_tbl tr:first-of-type td {
  border-top: none;
}

.clinic_schedule_tbl tr th,
.clinic_schedule_tbl tr td {
  border-bottom: none;
}

.clinic_schedule_tbl th, .clinic_schedule_tbl td {
	vertical-align: middle;
	padding: 1em 0.7em;
}

/* fixed
------------------------ */

.btn_fixed_recruit {
  position: fixed;
  top: 20vh;
  right:0;
  z-index:500;
  -webkit-writing-mode: vertical-rl; /* Chrome,Safari対応*/
  -ms-writing-mode: tb-rl; /* IE対応*/
  writing-mode: vertical-rl;
  font-size:0.9rem;
  letter-spacing: 3px;
  padding:22px 0px 22px 14px;
  color:#ffffff;
  background-color: #ff8400;
}
.btn_fixed_recruit p {
	padding-right: 14px;
}

.btn_fixed_recruit:hover {
  background: #fec737;
  color: #660000;
  text-decoration:none;
}

/* footer
------------------------ */
.btn_gotop {
  position: fixed;
  bottom: 2vw;
  right: 2vw;
  z-index: 100;
  background: #fec737;
  padding: 18px 29px;
  border-radius: 50%;
  font-size: .75em;
  text-align: center;
  transition: all 200ms 0s ease;
}

.btn_gotop i  {
	font-size: 2rem;
	display: block;
}

.btn_gotop:hover {
  background: #ff8400;
  color: #ffffff;
  text-decoration: none;
}

/* sns_link */

.sns_link ul {
    display: flex;
}
.sns_link ul li {
	padding-right: .7em;
}
.sns_link ul a:hover {
	opacity: .7;
  transition: all 200ms 0s ease;
}
.header_sns.sns_link {
	position: absolute;
	right: 0;
	top: 50%;
    transform: translateY(-50%);
	font-size: 1.5em;
}
.header_sns.sns_link ul a,
.header_sns.sns_link ul a:hover {
	color: #333;
}


.footer_inner_cv .sns_link {
	margin: 20px 0;
}
.footer_inner_cv .sns_link ul {
	font-size: 2.5em;
}
.footer_inner_cv .sns_link ul a,
.footer_inner_cv .sns_link ul a:hover {
	color: #fff;
}

.footer_inner {
	background-color: var(--main-color);
	color: #ffffff;
}

.footer_inner .wrap {
	display: flex;
	justify-content: space-between;	
	padding: 50px 0;
}

.footer_inner .fnav {
	display: flex;
	justify-content: space-between;
	width: calc(100% - 40%);
}
.fnav .fnav_blk,
.fnav .fnav_blk a,
.footer_bottom ul li a {
  color: #ffffff;
  transition: all 200ms 0s ease;
}

.fnav .fnav_blk h4 {
  padding: 10px 0;
  font-weight: bold;
}
.fnav .fnav_blk li {
  margin-bottom: 3px;
  font-size: 14px;
}
.footer_inner_cv {
	width: 30%;	
}
.footer_inner_cv_btn .btn_style {
	margin: 10px 0;
}
.pay_blk {
	background: #fff;
	margin-bottom: 2em;
	padding: 1.5em;
	color: #333;
}
.pay_blk dt {
	font-weight: bold;
}

.footer_bottom {
	position: relative;
}
.footer_bottom:before, .footer_bottom:after {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    border-style: solid;
}
.footer_bottom:before {
    left: 0;
    border-width: 45px 50vw 0 0;
    border-color: var(--main-color) transparent transparent transparent;
}
.footer_bottom:after {
    right: 0;
    border-width: 0 50vw 45px 0;
    border-color: transparent var(--main-color) transparent transparent;
}

.footer_bottom .wrap {
	padding: 2em 0 1em;
	text-align: center;
}

.footer_bottom img {
  width: 220px;
}

.footer_copy {
	margin-top: .5em;
}


/****************************************
		Youtube 
*****************************************/
.youtube{
    position: relative;
    height: 0;
    padding-bottom: 33%;
    overflow: hidden;
}

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

/****************************************
		Page Setting 
*****************************************/
.sec_page_btit {
	background: var(--main-hover-color);
	padding: 40px 0 30px;
	text-align: center;
  height: 100px;
}

.sec_page_btit h2 {
	color: #fff;
	position: relative;
	margin-bottom: .5em;
}
.sec_page_btit h2:before {
	content: '';
    position: absolute;
    bottom: -7px;
    display: inline-block;
    width: 20px;
    height: 1px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #fff;	
}

.sec_page_ttl {
	padding-top: 40px;
	text-align: center;
}

.sec_page_ttl .main_tit h2 {
	font-size: 2.2em;
	padding: .8em 0;
}
.sec_page_ttl .main_tit_img {
	margin-top: 30px;
}

.page_ttl h2 {
    position: relative;
    line-height: 1em;
    text-indent: 1.2em;
    font-size: 1.8em;
    text-align: left;
    margin: 0 0 1em;
}

.page_ttl02 h2 {
    position: relative;
    line-height: 1em;
    text-indent: 1.2em;
    font-size: 1.8em;
    text-align: left;
    margin: 0 0 20px;
}

.page_ltit h2 {
	font-size: 3.3em;
	margin-bottom: 1.5rem;
    line-height: 1.2;
}
.page_ltit h2 span {
	display: block;
	font-size: 1.3rem;
}
.page_ltit h3 {
	font-size: 1.65em;
    margin-bottom: 1.2em;
}

.page_ttl h2:before {
    position: absolute;
    left: 0;
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    background: url(../img/common/circle_orange.png) no-repeat;
    background-size: contain;
}

.page_ttl h3 {
    font-size: 1.6rem;
    margin: 1em 0;
    padding-left: 10px;
    border-left: #364aad 5px solid;
}
.sec h4 {
    font-size: 1.2rem;
    margin: 1.2em 0 0.5em;
    font-weight: bold;
}

.sec h5 {
	font-size: 1.1rem;
	font-weight: bold;
}

.sec_page_wrap {
	margin: 0 0 5%;
}
.sec_page .sec_page_wrap:last-of-type {
	margin: 0;
}

.page_blk, .page_blk_normal {
	display: flex;
}
.page_blk.reverse, .page_blk_normal.reverse {
	flex-direction: row-reverse;
}

.page_blk_clm,
.page_blk_normal .page_blk_normal_clm {
	width: 42%;
}
	.page_blk_normal.clm_wide .page_blk_normal_clm,
	.page_blk.clm_wide .page_blk_clm{
		width: 60%;
	}

.page_blk_clm_narrow {
    width: 34%;
	display: table-cell;
	vertical-align: middle;
	padding: 40px;
}

.page_blk .page_blk_photo {
	width: 52%;
	margin: 0 6% 0 0;
}
.page_blk_normal.reverse .page_blk_normal_photo {
	margin: 0 6% 0 0;
}
.page_blk_normal .page_blk_normal_photo {
	width: 52%;
	margin: 0 0 0 6%;
}
.page_blk.reverse .page_blk_photo {
	margin: 0 0 0 6%;
}
	.page_blk_normal.clm_wide .page_blk_normal_photo {
		width: 35%;
	}
	.page_blk.clm_wide .page_blk_photo {
		width: 45%;
	}

.bg_color {
	background: var(--main-bg-color)!important;
}
.sec_page .bg_color {
	padding: 25px;
}
.bg_color .page_blk {
	margin: 0;
}

.page_word p {
	margin-top: 20px;
}

.list_item {
	margin-bottom: 1em;
}

.list_item li {
    position: relative;
}
.list_item li:before {
	content: "";
	width: 10px;
	height: 10px;
	display: inline-block;
	background-color: #182835;
	border-radius: 50%;
	margin-right: 5px;
}

.border_blk {
    padding: 15px 20px;
    background: #fff;
    box-sizing: border-box;
    margin-top: 30px;
}

.blk2_area,
.blk3_area {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.blk2_area .blk {
	width: 47.5%;
	margin: 0 0 3%;
}

.blk3_area .blk {
	width: 30%;
	margin: 0 0 4%;
}

.blk3_area .blk em {
	font-size: 1.1em;
}

.blk2_area .blk .photo,
.blk3_area .blk .photo {
	text-align: center;
}

.blk3_area .blk h3 {
	font-size: 22px;
    padding: 25px 0 20px;
    text-align: center;
}

.cv_area span.en {
	letter-spacing: 1px;
	font-size: 1.2rem !important;
}

.table_menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 35px 0;
}
.table_menu .table_menu_inner {
	width: 32%;
}
.table_menu .table_menu_inner dl {
	border-top: #a0a0a0 1px solid;
	padding: 12px;
	display: table;
    width: 100%;
    box-sizing: border-box;
}
.table_menu .table_menu_inner dl:last-of-type {
	border-bottom: #a0a0a0 1px solid;
}
.table_menu .table_menu_inner dl dt,
.table_menu .table_menu_inner dl dd {
	display: table-cell;	
}
.table_menu .table_menu_inner dl dd {
	text-align: right;
}

/* scr_slider */
.scr_slider {
	margin: 2em 0 0;
}


/*****************************************
		pagenavi Setting 
*****************************************/
.pagenavi_inner {
  padding: 30px 0 0;
}

.pagenavi_inner .wp-pagenavi a, .pagenavi_inner .wp-pagenavi span {
  padding: 7px 12px;
  border: 1px solid #454875;
  color: #000;
  font-weight: 700;
  font-size: 107%;
  margin-right: 10px;
}

.pagenavi_inner .wp-pagenavi a:hover {
  background: #c2c4db;
  text-decoration: none;
}

.pagenavi_inner .wp-pagenavi span.current {
  background: #c2c4db;
}


/****************************************
		Mobile Setting 
*****************************************/
.sp_only {
  display: none;
}

.btn_sp_nav {
  display: none;
}

@media (max-width: 1240px) {
	.wrap {
    	width: 90%;
	}
	.tablet_none {
    	display: none;
	}
}

@media (max-width: 1024px) {
	body {
	    min-width: 1024px;
	}
}

@media (max-width: 767px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
  body {
    min-width: 0;
    margin-top: 58px;
	  min-width: initial;
	font-size: 16px;
  }

  /****************************************
			Base Setting 
	*****************************************/
	header .wrap,
    .sec_company_01 .wrap {
	width: 100%;
  }
	
  .wrap {
    box-sizing: border-box;
    width: inherit;
    padding: 0 6%;
  }
  .btn {
    line-height: 1.4;
    padding: 10px 40px;
    background-size: 4px 8px;
    background-position: right 10px center;
    background-repeat: no-repeat;
  }
  .box {
    float: none;
  }
  .sec {
    padding: 11% 0;
  }

  table th,
  table td {
    box-sizing: border-box;
    border-right: 0;
	padding: 2% 0;
  }
  .order1 {
  order: 1;
}
.order2 {
  order: 2;
}
.order3 {
  order: 3;
}
.order4 {
  order: 4;
}
.order5 {
  order: 5;
}
  .lbtns {
    padding: 20px 0 0;
  }
  .lbtn {
    width: 37%;
    padding: 20px 5%;
    display: block;
    float: left;
    margin: 0 5% 10px 0;
    background-size: 9px;
  }
  .lbtn h3 {
    font-size: 115%;
  }
  .lbtn p {
    font-size: 50%;
  }
  .lbtn:nth-child(2n) {
    margin-right: 0;
  }
  .target_line {
    margin-top: -83px;
    padding-top: 83px;
  }
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
    border-bottom: 0;
  }
  .header .wrap {
    padding: 0;
  }
  .header_logoarea {
    padding: 8px 0 3px;
  }
  .header_logo img {
    width: 280px;
    margin-left: 10px;
    padding-top: 5px;
  }
  .header_logoarea ul {
    display: none;
  }
	
	.sp_dnav_btn {
    position: absolute;
    top: -10px;
    right: 0;
    width: 58px;
    background-color: var(--main-color);
  }
  .sp_dnav_btn .inn {
    position: relative;
    height: 58px;
  }
  .sp_dnav_btn .ct {
    position: absolute;
    top: 19px;
    left: 50%;
    width: 24px;
    -webkit-transform: translateY(0%) translateX(-50%);
    transform: translateY(0%) translateX(-50%);
  }
  .sp_dnav_btn .ct .line i {
    display: block;
    width: 100%;
    height: 2px;
    margin-bottom: 8px;
    background-color: #fff;
  }
  .drawer-overlay {
    position: fixed;
    z-index: 9998;
    top: 58px;
    right: 0;
    width: 100%;
    height: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .drawer-bg {
    position: absolute;
    z-index: 9999;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
  .drawer-nav {
    position: absolute;
    z-index: 10000;
    top: 0;
    right: 0;
    overflow-y: auto;
    width: 75vw;
    height: 100%;
    -webkit-transition: all .5s;
    transition: all .5s;
    background-color: #fff;
    -webkit-overflow-scrolling: touch;
  }
  .drawer-menu {
    padding-bottom: 30px;
    border-top: 1px solid #aac3d2;
  }
  .drawer-menu li a, .drawer-menu li p {
    font-size: 110%;
    display: block;
    padding: 20px;
    text-decoration: none;
    border-bottom: 1px solid #aac3d2;
    background: var(--main-bg-color);
  }
  .drawer-menu li a {
    background-image: url(../img/common/sp_common_dnav_ico_02.png);
    background-repeat: no-repeat;
    background-position: center right 10px;
    background-size: 7px 11px;
  }
  .drawer-menu li p {
    background-image: url(../img/common/sp_common_dnav_ico_01.png);
    background-repeat: no-repeat;
    background-position: center right 10px;
    background-size: 11px 11px;
  }
  .drawer-menu li p.open {
    background-image: url(../img/common/sp_common_dnav_ico_03.png);
    background-size: 10px 2px;
  }
  .drawer-menu li ol {
    display: none;
  }
  .drawer-menu li ol li a,
  .drawer-menu li ol li p {
    background-color: #fff;
  }
  .drawer-menu li ol li a img {
    position: relative;
    top: -1px;
    width: 9px;
    margin-right: 6px;
    vertical-align: middle;
  }
  .drawer-menu li ol ul {
    display: none;
  }
	.drawer-nav .cv_tel {
		text-align: center;
    	line-height: 1;
		margin-bottom: 6em;
	}
	.drawer-nav .cv_tel span {
		display: block;
	}
	.drawer-nav .btn_style.btn_emerald,
	.drawer-nav .btn_style.btn_green {
		margin: .5em 0 0;
	}
	.drawer-nav .sns_link {
		padding: 10px 0 150px;
		font-size: 2em;
	}
	.drawer-nav .sns_link ul {
		justify-content: center;
	}
	.drawer-nav .sns_link ul li:last-of-type {
		padding-right: 0;
	}
	.drawer-nav .sns_link a,
	.drawer-nav .cv_tel a {
		color: #298c95;
    font-weight: 600;
    line-height: 1.4;
	}
		
  .gnav {
    display: none;
    position: relative;
    top: inherit;
    right: inherit;
    padding-top: 0;
    background: #FFF;
    border-bottom: 0;
  }
  .gnav .wrap {
    padding: 0;
  }
  .gnav a {
    background: #FFF;
  }
  .gnav ul {
    border-left: none;
    border-right: none;
    padding: 0;
    flex-wrap: wrap;
  }
  .gnav ul.sub_menu.sp_only {
    display: block;
    font-size: .9em;
  }
  .gnav ul li {
    display: block;
    float: none;
    width: 100%;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid #9e0000;
    margin: 0;
    padding: 0;
  }
  .gnav ul li:nth-child(1) {
    display: block;
  }
  .gnav ul li:nth-child(2) {
    border-left: none;
  }
  .gnav ul li a {
    width: auto;
    height: auto;
    padding: 5%;
    text-align: left;
    position: relative;
  }
  .gnav ul li a:after {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
    right: 8px;
    color: #660000;
  }
  .gnav ul li a i {
    display: inline-block;
    height: 18px;
  }
  .gnav ul li a i img {
    max-height: 100%;
    padding-right: 5px;
  }
  .gnav ul li a span {
    width: auto;
    position: relative;
    top: inherit;
    left: inherit;
    transform: translateY(0%) translateX(0%);
    -webkit-transform: translateY(0%) translateX(0%);
  }
  .gnav ul li a span br {
    display: none;
  }
  .gnav ul.sub_menu li:nth-of-type(2),
  .gnav ul.sub_menu li:nth-of-type(3) {
    width: 50%;
    float: left;
  }
  .gnav ul.sub_menu li:nth-of-type(2) {
    border-right: 1px solid #9e0000;
    box-sizing: border-box;
  }
  .gnav ul.sub_menu li:nth-of-type(2) a,
  .gnav ul.sub_menu li:nth-of-type(3) a {
    padding: 10% 5%;
  }
  .gnav .cv_tel {
    padding: 1.5em 0 1em;
  }
  .gnav .cv_tel span {
    display: none;
  }
  .gnav .cv_tel a,
  .gnav .cv_tel i {
    font-size: 1.5em;
  }
  .gnav .btn_style.btn_orange {
    width: 280px;
    margin: 0 auto 1.5em;
  }
  .news_lists {
    margin-top: 10px;
  }
  .news_list dl {
    padding: 12px 0;
  }
  .news_list dl dt, .news_list dl dd {
    padding: 0 1.5%;
  }
 
  .page_blk .page_blk_photo_wide {
	width: 100%;
	margin: 0;
}
.page_blk_clm_narrow {
    width: 90%;
}

.btn_under .blk4_area .blk {
    width: 100%;
    margin: 0;
}
.btn_under .blk4_area {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
  
  .cv_area {
    padding: 65px 0 50px;
      text-align: center;
  }
	.cv_area h2 {
		font-size: 2.8rem;
	}
  .cv_area h3 {
    margin-bottom: 1em;
    font-size: 1.3em;
    text-align: center;
  }
  .cv_area_wrap {
    flex-wrap: wrap;
    width: 300px;
    margin: 0 auto;
  }
  .cv_area_wrap div {
    width: 100%;
    margin: 5px 0;
  }
  .cv_tel a {
    font-size: 2em;
  }
  .cv_area_wrap div.cv_tel,
  .cv_tel small {
    text-align: center;
  }
    .cv_tel small {
        display: block;
    }
  .cv_area_wrap .cv_tel span {
    display: none;
  }
  .clinic_info {
    margin-bottom: 0;
  }
	.clinic_info_inner, .clinic_schedule {
		width: 100%;
	}
	.clinic_info .wrap {
		flex-wrap: wrap;
		padding: 2em 2em 1.5em;
	}
	.clinic_info_inner dl {
		margin-bottom: .5em;
	}
	.clinic_schedule_tbl th, .clinic_schedule_tbl td {
		padding: 2% 0;
	}
  .footer .wrap {
    padding: 0;
    flex-wrap: wrap;
  }
  .footer .wrap p {
    padding: 8px 0;
  }
  .footer_inner .fnav {
    flex-wrap: wrap;
    padding: 0;
	  width: 80%;
    margin: 1em auto 0;
  }
  .fnav .fnav_blk {
    width: 100%;
  }
  .fnav .fnav_blk ul {
    display: none;
  }
  .fnav .fnav_blk .fnav_sp_blk {
    display: block;
  }
  .fnav .fnav_blk h4,
  .fnav .fnav_blk .fnav_sp_blk li {
    padding: 0;
    border-bottom: var(--main-hover-color) 1px solid;
    margin-bottom: 0;
  }
  .fnav .fnav_blk h4 a,
  .fnav .fnav_blk .fnav_sp_blk a {
    padding: 1.2em 0;
    display: block;
    position: relative;
  }
  .fnav .fnav_blk h4 a i,
  .fnav .fnav_blk .fnav_sp_blk a i {
    display: inline-block;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
	.footer_inner_cv {
		width: 100%;
	}
	
	.pay_blk {
		width: 65%;
    	margin: 2em auto;
	}
	.footer_inner_cv_btn {
		text-align: center;
	}
	.footer_inner_cv .sns_link ul {
		justify-content: center;
	}
	.footer_inner_cv .sns_link ul li {
		padding: 0 .5em;
	}
  .footer_bottom {
    padding: 50px 0 0;
  }
  .footer_bottom p.footer_copy {
    text-align: center;
    padding: 20px 10px;
    font-size: 80%;
    line-height: 1.4;
	margin:0 auto;
  }
	
	.sp_foot_btns {
		position: fixed;
		z-index: 9999;
		bottom: 0;
		left: 0;
		width: 100%;
		text-align: center;
	}
	.sp_foot_btns ul {
    display: flex;
  }
	.sp_foot_btns ul li {
		display: block;
		float: left;
		width: 50%;
	}
	.sp_foot_btns ul li a {
    position: static;
    height: 65px;
    border: 2px solid #fff;
	display: block;
	text-decoration: none;
  }
  .sp_foot_btns ul li:nth-of-type(1) a {
    border-right: none;
	  background-color: var(--main-color);
  }
  .sp_foot_btns ul li:nth-of-type(2) a {
    border-right: none;
    background-color: var(--font-lightblue);
  }
  .sp_foot_btns ul li a span {
    position: static;
    transform: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
    font-size: 100%;
    font-weight: 500;
    padding-top: 3px;
  }
  .sp_foot_btns ul li a span img {
    display: block;
    width: auto;
    height: 25px;
    margin: 0;
  }

	.sp_foot_btns ul li:nth-of-type(2) a span {
		left: 43%;
	}
	.sp_foot_btns ul li:nth-of-type(2) a span img {
	  margin-right: 6px;
	}
  
  /****************************************
			Page Setting 
	*****************************************/
	.sec_page_wrap {
		margin: 0 0 15%;
	}
	
	.sec_page_btit {
		padding: 25px 0 0;
	}
	.page_blk, .page_blk_normal {
		flex-wrap: wrap;
	}
  .page_blk.reverse, .page_blk_normal.reverse {
    flex-direction: unset;
  }
  .page_blk .page_blk_photo,
  .page_blk.reverse .page_blk_photo,
	.page_blk_normal .page_blk_normal_photo,
	.page_blk_normal.reverse .page_blk_normal_photo,
	.page_blk_normal.clm_wide .page_blk_normal_photo {
    margin: 0 auto 4%;
    width: 100%;
  }
  .sec_page_btit h1,
  .sec_page_ttl .main_tit h2 {
    font-size: 1.7em;
  }
  .sec_page_ttl {
    padding-top: 20px;
  }
  .page_ltit h2 {
    font-size: 2em;
	  margin: 1rem 0 1.5rem;
  }
  .page_ltit h3,
  .page_ttl h3,
  .blk2_area .blk h3,
  .blk3_area .blk h3,
  .btn_style.round h3 {
    font-size: 1.45em;
  }
  .page_ltit h3,
  .page_ttl h3 {
    margin-bottom: 1em;
  }
	.sec h4 {
		font-size: 1.1rem;
	}
	.sec h5 {
		font-size: 1.05rem;		
	}
  .blk2_area .blk,
  .blk3_area .blk {
    width: 100%;
    margin: 2% auto;
  }
  .page_blk_clm,
  .page_blk_normal .page_blk_normal_clm,
  .cv_area .blk2_area .blk,
  .page_blk_normal.clm_wide .page_blk_normal_clm,
	.page_blk.clm_wide .page_blk_clm {
	  width: 100%;
  }
  
  h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
 }
	
	.border_blk {
		padding: 1.3em 2em 0.5em;
	}
	
	.table_menu .table_menu_inner {
		width: 100%;
	}
	.table_menu .table_menu_inner:nth-of-type(1) dl:last-of-type,
	.table_menu .table_menu_inner:nth-of-type(2) dl:last-of-type{
		border-bottom: none;
	}
	
	/* bottom_link */
	.bottom_link .blk3_area .blk {
		min-width: 300px;
    	margin: 1% auto;
	}
	
}

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

.footer_bottom ul li {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    text-align: left;
}

}

/****************************************
		 mobile btn  
*****************************************/

@media screen and (max-width:425px){
	
	/* btn_style */
	.btn_style {
	  min-width: 270px;
	}
	
	.drawer-nav .btn_style {
		min-width: 245px;
		display: inline-block;
		text-align: center;
	}
	
	.blk3_area .blk {
	  width: 100%;
  }
  .blk3_area .w86 .blk3_area .blk img {
	  width: 100%;
  }
}

/******************************
ヘッダープルダウンメニュー 
******************************/
.global_menu { /* メニュー全体のスタイル */
  width: 100%;
  position: relative;
  color: #333; /* 文字色 */
  background: #fff; /* 背景色 */
  text-align: center;
}
 
.global_menu li {
  display: inline-block;
}
 
.global_menu a { /* 各項目のスタイル */
  display: block;
  padding: 10px 28px;
}
.global_menu a:hover {
	text-align: none;
}
 
.child_menu > li > a { /* 子項目のスタイル */
  font-size: 0.9em;
}
 
.child_menu { /* 下層メニューのスタイル */
  width: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  padding: 30px;
  background: var(--main-bg-color); /* 背景色 */
  visibility: hidden; /* 下層メニューを非表示 */
  z-index: 99;
}
 
.menu:hover .child_menu { /* 下層メニューのスタイル（親項目ホバー時） */
  visibility: visible; /* 下層メニューを表示 */
}
 
.child_menu a:hover {
  opacity: 0.75;
}

.child_menu a{
  padding: 10px 20px;
}

.child_menu div li{
  text-align: left;
  font-size: 14px;
  width: 18%;
}

.child_menu li i{
  padding-left: 7px;
}

.child_menu div a{
  padding: 10px 0;
}

.lkc-content {
    padding-top: 10px;
}

.lkc-url {
    padding: 3px 0 8px;
}

.lkc-internal-wrap {
    background-image: linear-gradient(#1caaa8 0%, #1caaa8 10%, #fff 30%)!important;
}

/*--- Youtube動画埋め込み ---*/
.top_youtube {
  position: relative;
  height: 0;
  padding: 30px 0 37.25%;
  margin: 30px 0;
  overflow: hidden;
}

.top_youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 70%;
  height: 100%;
  margin: 0 auto;
}

.intro_contain .top_youtube {
  margin: 50px 0 0;
}

@media (max-width: 768px) {
  .top_youtube {
    padding: 30px 0 56.25%;
    margin: 10px 0 20px;
  }
  .top_youtube iframe {
    width: 100%;
  }
  .intro_contain .top_youtube {
    margin: 40px 0 0;
  }
}

/*-- とがし歯科医院リニューアル --*/
.wrap p.top_head_text {
  margin-bottom: 0;
}

.header_tel p:first-of-type {
  font-size: 12px;
}

.header_tel a p strong {
  font-size: 27px;
  font-weight: 500;
  padding-bottom: 5px;
  letter-spacing: 0.07em;
}

.header_tel a p span {
  font-size: 14px;
}

.header_tel a {
	display: inline-block;
	border-radius: 5px;
	padding: 0 0 8px;
  margin-right: 50px;
}

.top_head_box {
  display: flex;
  justify-content: right;
  max-width: 600px;
  width: 100%;
}

.header_inner_blk .wrap {
  display: flex;
  justify-content: space-between;
	position: relative;
}

.header_inner_blk {
	padding: 1em 0 0;
}

.top_head_ctr {
  text-align: center;
}

.top_head_ctr a {
  display: block;
  color: #fff;
  width: 190px;
  font-size: 18px;
  font-weight: 600;
  background: #364AAD;
  border-radius: 10px;
  padding: 15px 10px 10px;
  box-shadow: 0px 3px 0px 0px #1D2A41;
}

.top_head_ctr a span {
  line-height: 1;
  font-size: 14px;
  display: block;
}

.flex {
  display: flex;
  justify-content: space-between;
  /*align-items: center;*/
}

.footer h4,
.footer a {
  font-family: "Noto Sans JP", sans-serif;
}

.footer .btn_style {
  min-width: 100%;
}

@media (max-width: 768px) {
  .header_inner_blk {
    padding: 0.6em 0 0.65em;
  }
}


/*-- 医院紹介 --*/
.sec_page_btit h1 {
	color: #fff;
    font-size: 2.7em;
    display: inline-block;
    text-align: center;
}

.sec_page_btit h1:before {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 60px;
  height: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: var(--font-color);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .sec_page_btit h1 {
    color: #fff;
    font-size: 2em;
    padding: 0 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .sec_page_btit h1:before {
    bottom: 0;
  }
}