@charset "UTF-8";

/*--------------------------------------------------
  body
--------------------------------------------------*/
html {
  font-size: 62.5%;
	-webkit-text-size-adjust: 100%;
}
body {
  color: #000;
  font-size: 15px;
  font-family: 'Noto Sans JP', sans-serif;
	-webkit-text-size-adjust: none;
	word-break: break-word;
	word-wrap: break-word;
	overflow-wrap: break-word;
	overflow-x: hidden;
}
a {
	display: block;
  text-decoration: none;
	color: #000;
	transition: all 0.3s;
}
a:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha(opacity=60)";
}
a.point_none {
  pointer-events: none;
}
img {
	width: 100%;
}
body, html {
	/* important */
	height: 100%;
}
.cf:after {
  content: "";
  clear: both;
  display: block;
}
.pc_only {
	display: block;
}
.sp_only {
  display: none;
}
.pc_br {
	display: block;
}
.sp_br {
  display: none;
}

@media screen and (max-width: 768px){
	body {
		font-size: 14px;
	}
	.pc_only {
		display: none;
	}
	.sp_only {
		display: block;
	}
	
	.pc_br {
		display: none;
	}
	.sp_br {
		display: block;
	}
}


/*--------------------------------------
　color
---------------------------------------*/
.cl-wh {
  color: #fff;
}
.cl-bl {
  color: #06AAEB;
}
.cl-pk {
  color: #E94688;
}
.cl-gn {
  color: #36A29C;
}


/*--------------------------------------
　background
---------------------------------------*/
.bg_bl {
  background: #E4F4F4;
}


/*--------------------------------------
　background
---------------------------------------*/
.pd_80 {
  padding: 80px 0;
  box-sizing: border-box;
}
.pd_60 {
  padding: 60px 0;
  box-sizing: border-box;
}

@media screen and (max-width: 768px){
.pd_80 {
  padding: 40px 20px;
  width: calc(100% + 40px);
  margin: 0 20px 0 -20px;
}
.pd_60 {
  padding: 40px 20px;
  width: calc(100% + 40px);
  margin: 0 20px 0 -20px;
}  
}


/*--------------------------------------
　font
---------------------------------------*/
.eng-lato {
  font-family: "Lato", sans-serif;
  font-weight: bold;
}
.fw-b {
  font-weight: 600;
}
.fw-b span {
  font-weight: 600;
}
.ta-c {
  text-align: center;
  line-height: 1.8;
}
.ta-r {
  text-align: right;
  line-height: 1.8;
}
h2,
h3,
h4,
h5,
h6,
.cc {
  font-weight: 600;
  line-height: 1.5;
}
h2 span,
h3 span,
h4 span,
h5 span,
h6 span,
.cc span {
  font-weight: 600;
  line-height: 1.5;
}
.fs18 {
  font-size: 18px;
}
.fs24 {
  font-size: 24px;
}
.fs32 {
  font-size: 32px;
}
.fs40 {
  font-size: 40px;
}

@media screen and (max-width: 768px){
  .ta-c {
    line-height: 1.6;
  }
  .ta-r {
    line-height: 1.6;
  }
  .fs18 {
    font-size: 16px;
  }
  .fs24 {
    font-size: 18px;
  }
  .fs32 {
    font-size: 20px;
  }
  .fs40 {
    font-size: 22px;
  }
}


/*--------------------------------------
　border-radius
---------------------------------------*/
.br5 {
  border-radius: 5px;
}
.br10 {
  border-radius: 10px;
}


/*--------------------------------------
　header
---------------------------------------*/
header {
	width: calc(100% - 80px);
	min-width: 1280px;
	height: 70px;
  background: rgba(255,255,255,0.7);
  border-radius: 5px;
	margin: auto;
	position: fixed;
	top: 30px;
  left: 40px;
	z-index: 888;
}
header .header_inner {
	padding: 0 20px 0 30px;
	box-sizing: border-box;
}
header .header_block {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/*----- logo -----*/
.header_home .h_logo {
	width: 200px;
}

/*----- hd_cont -----*/
.header_home .flex {
  display: flex;
}
.header_home .align-center {
  align-items: center;
}
.header_home .justify-flexEnd {
  justify-content: flex-end;
}
.header_home .flexwrap {
  display: flex;
  flex-wrap: wrap;
}
.hd_cont-pc {
  display: block;
}
.hd_cont-pc nav > ul > li {
  color: #000;
  font-size: 14px;
  margin: 0 0 0 35px;
  position: relative;
}
.hd_cont-pc nav > ul > li > a {
  color: #000;
  display: inline-block;
  line-height: 70px;
  border-bottom: none;
}
.hd_cont-pc nav > ul > li > a:hover {
  border-bottom: 4px solid #06AAEB;
}
.hd_cont-pc nav > ul > li .parent_menu {
  cursor: pointer;
  display: inline-block;
  line-height: 70px;
  border-bottom: 4px solid rgba(0,0,0,0.0);
  position: relative;
  padding-right: 12px;
}
.hd_cont-pc nav > ul > li .parent_menu::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg) translateY(-50%);
  right: 0;
  top: 48%;
  transition: 0.3s;
}
.hd_cont-pc nav > ul > li.selected .parent_menu {
  position: relative;
  padding-right: 12px;
  box-sizing: border-box;
  border-bottom: 4px solid #06AAEB;
  z-index: 102;
}
.hd_cont-pc nav > ul > li.selected .parent_menu::before {
  top: 52%;
  transform: rotate(45deg) translateY(-50%) scale(-1, -1);
}
.hd_cont-pc nav > ul > li .child_wrap {
  display: none;
  position: absolute;
  top: 70px;
  left: 0;
  width: 220px;
  max-height: 70vh;
  overflow-y: auto;
  background: #e3f2f8;
  z-index: 101;
  padding: 10px 20px 10px;
  border-radius: 0 0 10px 10px;
}
.hd_cont-pc nav > ul > li .child_wrap li {
	font-size: 14px;
  border-bottom: 1px dashed #06AAEB;
}
.hd_cont-pc nav > ul > li .child_wrap li:last-of-type {
  border-bottom: none;
}
.hd_cont-pc nav > ul > li .child_wrap li a {
  display: block;
  padding: 10px 0;
}
.hd_cont-pc nav > ul > li .child_wrap li a:hover {
  opacity: 0.6;
}
.hd_cont-pc li.last {
  padding: 15px 0 0;
  box-sizing: border-box;
}
.hd_cont-pc li.last a {
  color: #fff;
  font-weight: 500;
  background: #E94688;
  border-radius: 3px;
  line-height: inherit;
	padding: 13px 15px;
	box-sizing: border-box;
	position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hd_cont-pc li.last a img {
  width: 15px;
  margin: 0 0 0 10px;
}
.hd_cont-pc li.last a:hover {
  border-bottom: none;
}

@media screen and (max-width: 1400px){
header .header_inner {
	padding: 0 20px;
}
.header_home .h_logo {
	width: 200px;
}
.hd_cont-pc nav > ul > li {
	font-size: 13px;
} 
}

@media screen and (max-width: 768px){
header {
	width: calc(100% - 40px);
	min-width: calc(100% - 40px);
	height: 50px;
	top: 20px;
  left: 20px;
	z-index: 9999;
}  
header .header_inner {
	padding: 0 0 0 10px;
}
header .header_block {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/*----- logo -----*/
.header_home .h_logo {
  width: 150px;
  height: 50px;
	display: flex;
	align-items: center;
}
/*.header_home .h_logo h1 {
	width: 80px;
}*/

/*----- hd_cont -----*/
.hd_cont-pc {
  display: none;
}
	
/*----- .hb-menu -----*/
#hb-menu {
  display: table;
  position: fixed;
  top: 27px;
  right: 30px;
  width: 35px;
  height: 35px;
  background: #E94688;
  border-radius: 6px;
  box-sizing: border-box;
  cursor: pointer;
  z-index: 999;
}
#hb-menu .hb-inner {
  display: table-cell;
  vertical-align: middle;
}
#hb-menu span {
  display: block;
  width: 14px;
  height: 2px;
  background: #fff;
  border-radius: 100px;
  margin: auto;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  transition: all 0.6s ease;
}	
#hb-menu span:nth-of-type(2),
#hb-menu span:nth-of-type(3) {
  margin-top: 3px;
}
#hb-menu span:nth-of-type(4) {
  background: none;
  margin-top:-1px;
}
	
/* ナビゲーションアイコン：アクティブ */
.hb-open #hb-menu span {
  background: #fff;
}
.hb-open span:nth-of-type(1) {
  -webkit-transform: translateY(5px) translateX(0) rotate(45deg);
  -ms-transform: translateY(5px) translateX(0) rotate(45deg);
  transform: translateY(5px) translateX(0) rotate(45deg);
}
.hb-open span:nth-of-type(2) {
  margin-top: 5px;
  opacity: 0;
  -webkit-transform: translateY(9px);
  -ms-transform: translateY(9px);
  transform: translateY(9px);
}
.hb-open span:nth-of-type(3) {
  -webkit-transform: translateY(-5px) translateX(0) rotate(-45deg);
  -ms-transform: translateY(-5px) translateX(0) rotate(-45deg);
  transform: translateY(-5px) translateX(0) rotate(-45deg);
}
.hb-open span:nth-of-type(4) {
  background: none!important;
}

/* overlay */
.overlay {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: transparent;
  pointer-events: none;
  z-index: 10;
  transition: all 0.6s ease;
}

/*----- sp_g_nav_logo -----*/
.sp_g_nav_logo {
  width: calc(100% - 40px);
  /*height: 50px;*/
  background: #fff;
  border-radius: 5px;
  padding: 0 0 0 10px;
  box-sizing: border-box;
  position: fixed;
  z-index: 999;
}

/*----- .sp-g-nav -----*/
.sp-g-nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 888;
}
.hb-open .sp-g-nav .g-nav-inner {
  transform: translateX(0);
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateZ(0);
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
.sp-g-nav .g-nav-inner {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #E4F4F4;
  padding: 20px 20px 0 20px;
  box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
  transition: all 0.6s ease;
  transform: translateX(100%);
  -ms-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateZ(0%);
  -ms-transform: translateZ(0%);
  -webkit-transform: translateZ(0%);
  z-index: 999;
}	
.sp-g-nav .g-nav-inner .box_inner {
	height: 100%;
  background: #E4F4F4;
	padding: 80px 0 80px;
	box-sizing: border-box;
}
.sp-g-nav .g-nav-inner .navi {
  width: 100%;
  background: #fff;
  border-radius: 5px;
  margin: 0 0 10px;
	display: block;
}
.sp-g-nav .g-nav-inner .navi.single a {
	width: 100%;
  color: #36A29C;
	font-size: 16px;
  font-weight: bold;
  background: #fff;
  border-radius: 5px;
	padding: 25px 20px;
	box-sizing: border-box;
	display: block;
  position: relative;
}	
.sp-g-nav .g-nav-inner .navi.single a:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
  transform: translate(0,-50%);
  background: url("../img/arrow_gr.png") left top no-repeat;
  background-size: contain;
	width: 19px;
	height: 7px;
  box-sizing: border-box;
}
/*.sp-g-nav .g-nav-inner .navi.last {
  padding: 15px 0 0;
  box-sizing: border-box;
}*/
.sp-g-nav .g-nav-inner .navi.last {
  margin: 20px 0 0;
}  
.sp-g-nav .g-nav-inner .navi.last a {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  background: #E94688;
  border-radius: 3px;
  text-align: center;
	padding: 25px 20px 25px;
	box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sp-g-nav .g-nav-inner .navi.last a img {
  width: 20px;
  margin: 0 0 0 15px;
}  
	
/* accordion */	
.sp-g-nav .g-nav-inner .parent_menu {
  color: #36A29C;
	font-size: 16px;
  font-weight: bold;
  padding: 25px 20px;
	box-sizing: border-box;
	cursor: pointer;
	position: relative;
}	
.sp-g-nav .g-nav-inner .parent_menu:before,
.sp-g-nav .g-nav-inner .parent_menu:after {
	content: "";
	position: absolute;
	width: 14px;
	height: 1px;
	top: 50%;
	right: 20px;
	margin: -2px 0 0;
	background: #36A29C;
	transition: all 0.4s;
}
.sp-g-nav .g-nav-inner .parent_menu:after {
	transform: rotate(90deg);
}
.sp-g-nav .g-nav-inner .parent_menu.open:before {
  display: none;
}
.sp-g-nav .g-nav-inner .parent_menu.open::after {
  transform: rotate(180deg);
}		
.sp-g-nav .g-nav-inner .child_menu {
  width: 100%;
	display: none;
}
.sp-g-nav .g-nav-inner .child_menu li {
  padding: 0 20px;
}  
.sp-g-nav .g-nav-inner .child_menu li a {
  font-size: 14px;
  font-weight: normal;
  border-bottom: 1px solid #E5E5E5;
	padding: 20px 10px;
  box-sizing: border-box;
  position: relative;
}
.sp-g-nav .g-nav-inner .child_menu li a:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  transform: translate(0,-50%);
  background: url("../img/arrow_gr.png") left top no-repeat;
  background-size: contain;
	width: 19px;
	height: 7px;
  box-sizing: border-box;
}  
.sp-g-nav .g-nav-inner .child_menu li.first a {
  padding: 10px 10px 20px;
} 
.sp-g-nav .g-nav-inner .child_menu li.last a {
  border-bottom: none;
  padding: 20px 10px 30px;
}	
.sp-g-nav .g-nav-inner .child_menu.show {
	display: block;
}
}


/*--------------------------------------
　footer
---------------------------------------*/
footer {
	background: #E4F4F4;
	width: 100%;
	min-width: 1280px;
  overflow: hidden;
}

footer .footer_inner {
	max-width: 1280px;
	margin: auto;
}

footer .footerL {
  padding: 80px 30px 30px;
  width: 380px;
  border-right: 1px solid #E5E5E5;
  position: relative;
}

.footer_logo {
  width: 280px;
  margin: auto;
}

footer .copy {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translate(-50%,0);
  width: 100%;
	color: rgba(51,51,51,0.5);
	font-size: 12px;
	text-align: center;
	line-height: 1.4;
}

footer .footerR {
  width: calc(100% - 380px);
}

.footer_nav01 {
  display: flex;
  justify-content: space-between;
  padding: 80px 60px 80px;
  position: relative;
}
.footer_nav01::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  min-width: 1280px;
  box-sizing: border-box;
  border-bottom: 1px solid #E5E5E5;
}
.footer_nav01 > li {
  width: calc((100% / 3) - 20px);
  color: #64A4E3;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}
.footer_nav01 > li > ul {
  margin: 25px 0 0;
}
.footer_nav01 > li > ul li {
  margin: 0 0 20px;
  padding: 0 0 15px;
  border-bottom: 1px solid #E5E5E5;
}
.footer_nav01 > li > ul li:last-child {
  margin: 0 0 0;
}
.footer_nav01 > li > ul li a {
  padding: 0 30px 0 0;
  font-size: 16px;
  line-height: 1.4;
  position: relative;
}
.footer_nav01 > li > ul li a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  transform: translate(0,-50%);
  background: url("../img/arrow_bl.png") left top no-repeat;
  background-size: contain;
	width: 19px;
	height: 7px;
}
.footer_nav02 {
  display: flex;
  justify-content: center;
  padding: 30px 60px 30px;
}
.footer_nav02 li {
  margin: 0 50px;
  font-size: 16px;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  footer {
    min-width: 100%;
    padding: 50px 0 100px;
  }

  footer .footer_inner {
    max-width: 100%;
  }

  footer .flexBox {
    display: flex;
    flex-wrap: wrap;
  }

  footer .footerL {
    padding: 0 0 0;
    width: 100%;
    border-right: none;
    order: 2;
  }

  .footer_logo {
    width: 55%;
  }

  footer .copy {
    position: relative;
    bottom: inherit;
    left: inherit;
    transform: translate(0,0);
  }

  footer .footerR {
    width: 100%;
    order: 1;
  }

  .footer_nav01 {
    display: block;
    padding: 50px 20px 50px;
  }
  .footer_nav01::after {
    min-width: 100%;
  }
  .footer_nav01 > li {
    width: 100%;
    font-size: 16px;
    margin: 0 0 30px;
  }
  .footer_nav01 > li:last-child {
    margin: 0 0 0;
  }
  /*.footer_nav01 > li {
    font-size: 16px;
  }*/
  .footer_nav01 > li > ul {
    margin: 20px 0 0;
  }
  .footer_nav01 > li > ul li {
    margin: 0 0 15px;
    padding: 0 0 10px;
  }
  .footer_nav01 > li > ul li a {
    font-size: 14px;
  }
  .footer_nav01 > li > ul li a::after {
    width: 15px;
    height: 6px;
  }

  .footer_nav02 {
    display: block;
    padding: 40px 20px 40px;
    text-align: center;
  }
  .footer_nav02 li {
    margin: 0 0 20px;
  }
  .footer_nav02 li:last-child {
    margin: 0 0 0;
  }
}


/*--------------------------------------
　quick_navi
---------------------------------------*/
.quick_navi {
  position: fixed;
  top: 230px;
  right: 0;
  /*width: 390px;
  height: auto;*/
	z-index: 999;
	transition: all 0.5s ease;
	transform: translateX(100%);
	-ms-transform: translateX(100%);
	-webkit-transform: translateX(100%);
}
.quick_navi.is-open {
	transform: translateX(0);
	-ms-transform: translateX(0);
	-webkit-transform: translateX(0);
	transform: translateZ(0);
	-ms-transform: translateZ(0);
	-webkit-transform: translateZ(0);
}
.quick_navi_inner {
  transition: all 0.3s ease;
}

/* quick_navi_ttl */
.quick_navi_ttl {
  display: block;
	position: absolute;
  color: #fff;
	font-size: 18px;
	font-weight: bold;
  background: #ffa200;
  border-radius: 5px 0 0 5px;
  letter-spacing: 0.2em;
  padding: 55px 20px 40px;
  box-sizing: border-box;
	top: 0;
	right: 100%;
  transition: all 0.3s ease;
  cursor: pointer;
	-webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -ms-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.quick_navi_ttl::before,
.quick_navi_ttl::after {
  content: "";
  position: absolute;
}
.quick_navi_ttl::before {
  width: 30px;
  height: 30px;
	background: url("../img/icon_tel02.png") center center no-repeat;
  background-size: contain;
	top: 15px;
  left: 50%;
  margin: auto;
	transform: translate(-50%,0);
  box-sizing: border-box;
}
.quick_navi_ttl::after {
  width: 19px;
	height: 7px;
	background: url("../img/arrow_wh.png") center center no-repeat;
  background-size: contain;
	bottom: 20px;
  left: 50%;
  margin: auto;
	transform: translate(-50%,0) scaleX(-1);
  box-sizing: border-box;
}

/* quick_navi_block */
.quick_navi_block {
  background: #ffa200;
  padding: 20px 20px;
	box-sizing: border-box;
}
.quick_navi_block ul li {
  margin: 0 0 10px;
}
.quick_navi_block ul li:last-child {
  margin: 0 0 0;
}
.quick_navi_block ul li a {
  color: #FF6F00;
  font-size: 15px;
  font-weight: 700;
	background: #fff;
  border-radius: 3px;
  padding: 15px 20px 15px 20px;
	box-sizing: border-box;
}
.quick_navi_block ul li a span {
  font-weight: 700;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
.quick_navi {
  position: fixed;
  top: inherit;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
	z-index: 999;
	transition: all 0.5s ease;
	transform: translateX(0);
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateY(100%);
  -ms-transform: translateY(100%);
  -webkit-transform: translateY(100%);
}
.quick_navi.is-open {
  transform: translateX(0);
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateZ(0);
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
	
/* quick_navi_ttl */
.quick_navi_ttl {
  display: block;
  width: 85%;
  font-size: 16px;
  border-radius: 5px 5px 0 0;
  text-align: center;
  letter-spacing: 0.1em;
  padding: 15px 10px 15px 25px;
	top: inherit;
  bottom: 100%;
  left: 0;
	right: 0;
  margin: auto;
	-webkit-writing-mode: inherit;
  -moz-writing-mode: inherit;
  -ms-writing-mode: inherit;
  writing-mode: inherit;
}
.quick_navi_ttl::before {
  width: 25px;
  height: 25px;
	background: url("../img/icon_tel02.png") center center no-repeat;
  background-size: contain;
	top: 50%;
  left: inherit;
  right: 50%;
  margin: auto;
	transform: translate(0,-50%);
  box-sizing: border-box;
}  
.quick_navi_ttl::after {
  width: 19px;
	height: 7px;
	background: url("../img/arrow_wh.png") center center no-repeat;
  background-size: contain;
	bottom: 50%;
  left: inherit;
  right: 10%;
  margin: 0 0 0 auto;
	transform: translate(0,50%) scaleX(-1) rotate(-90deg);
  box-sizing: border-box;
}
.quick_navi.is-open .quick_navi_ttl::after {
	transform: translate(0,50%) scaleX(-1) rotate(90deg);
}

/* quick_navi_block */
.quick_navi_block {
  width: 85%;
  margin: auto;
  padding: 10px 15px 20px;
}
.quick_navi_block ul li a {
  font-size: 15px;
  padding: 15px 15px 15px 15px;
}
}


/*--------------------------------------
　PageTop
---------------------------------------*/
.l-pagetop {
  width: 60px;
  height: 60px;
  position: fixed;
  bottom: 105px;
  right: 20px;
  z-index: 111;
}
.l-pagetop a {
	display: block;
}
.l-pagetop__link {
	background: url("../img/pagetop.png")center center no-repeat;
	background-size: 100% auto;
  width: 60px;
  height: 60px;
  display: block;
  position: relative;
}
.l-pagetop span {
	display: none;
}

@media screen and (max-width: 768px) {
.l-pagetop {
  width: 40px;
  height: 40px;
  bottom: 100px;
  right: 10px;
}
.l-pagetop__link {
	background: url("../img/pagetop.png")center center no-repeat;
	background-size: 100% auto;
  width: 40px;
  height: 40px;
  display: block;
  position: relative;
}	
}


/*--------------------------------------------------
  page link 調整
--------------------------------------------------*/
.anchor01 {
	display: block;
	padding-top: 110px;
	margin-top: -110px;
}
.anchor02 {
	display: block;
	padding-top: 80px;
	margin-top: -80px;
}

@media screen and (max-width: 750px){
.anchor01 {
	display: block;
	padding-top: 70px;
	margin-top: -70px;
}
.anchor02 {
	display: block;
	padding-top: 60px;
	margin-top: -60px;
}   
}


/*--------------------------------------
　flexBox
---------------------------------------*/
.flexBox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.flexBox.ai-c {
  align-items: center;
}
.flexBox.jc-c {
  justify-content: center;
}
.flexBox.jc-end {
  justify-content: flex-end;
}

@media screen and (max-width: 768px) {
  .flexBox {
    display: block;
  }
  
  .flexBox_sp {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .flexBox_sp.ai-c {
    align-items: center;
  }
}


/*--------------------------------------
　btn
---------------------------------------*/
.btn01 a {
	background: #E94688;
	width: 250px;
	margin: 30px auto 0;
	padding: 18px 40px 18px 25px;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
  border: 1px solid #E5E5E5;
	border-radius: 3px;
	position: relative;
}
.btn01 a:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 15px;
  transform: translate(0,-50%);
  background: url("../img/arrow_wh.png") left top no-repeat;
  background-size: contain;
	width: 19px;
	height: 7px;
}

.btn02 a {
	background: #fff;
	width: 250px;
	margin: 30px auto 0;
	padding: 18px 40px 18px 25px;
	color: #06AAEB;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
  border: 1px solid #E5E5E5;
	border-radius: 3px;
	position: relative;
}
.btn02 a:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 15px;
  transform: translate(0,-50%);
  background: url("../img/arrow_bl.png") left top no-repeat;
  background-size: contain;
	width: 19px;
	height: 7px;
}

.btn03 a {
	background: #fff;
	width: 250px;
	margin: 30px auto 0;
	padding: 18px 40px 18px 25px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
  border: 1px solid #E5E5E5;
	border-radius: 3px;
	position: relative;
}
.btn03 a:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 15px;
  transform: translate(0,-50%);
  background: url("../img/arrow_pk.png") left top no-repeat;
  background-size: contain;
	width: 19px;
	height: 7px;
  box-sizing: border-box;
}

.btn04 a {
	background: #fff;
	width: 250px;
	margin: 30px auto 0;
	padding: 18px 40px 18px 25px;
  color: #64A4E3;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
  border: 1px solid #E5E5E5;
	border-radius: 3px;
	position: relative;
}
.btn04 a:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 15px;
  transform: translate(0,-50%);
  background: url("../img/arrow_bl.png") left top no-repeat;
  background-size: contain;
	width: 19px;
	height: 7px;
  box-sizing: border-box;
}

.btn_web a:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 15px;
  transform: translate(0,-50%);
  background: url("../img/icon_web.png") left top no-repeat;
  background-size: contain;
	width: 14px;
	height: 14px;
  box-sizing: border-box;
}

.btn01.left a,
.btn02.left a,
.btn03.left a,
.btn04.left a {
	margin: 30px 0 0;
}
.btn01.right a,
.btn02.right a,
.btn03.right a,
.btn04.right a {
	margin: 30px 0 0 auto;
}

.btnBox {
	display: flex;
	flex-wrap: wrap;
	margin: 50px 0 0;
}
.btnBox > div {
  margin: 0 20px 0 0;
}
.btnBox > div a {
	width: inherit;
	margin: 0 0 0;
}

@media screen and (max-width: 768px) {
  .btn01 a {
    width: 80%;
    margin: 20px auto 0;
    padding: 15px 30px 15px 15px;
    font-size: 14px;
  }
  .btn01 a:after {
    right: 10px;
    width: 15px;
    height: 6px;
  }

  .btn02 a {
    width: 80%;
    margin: 20px auto 0;
    padding: 15px 30px 15px 15px;
    font-size: 14px;
  }
  .btn02 a:after {
    right: 10px;
    width: 15px;
    height: 6px;
  }

  .btn03 a {
    width: 80%;
    margin: 20px auto 0;
    padding: 15px 30px 15px 15px;
    font-size: 14px;
  }
  .btn03 a:after {
    right: 10px;
    width: 15px;
    height: 6px;
  }

  .btn04 a {
    width: 80%;
    margin: 20px auto 0;
    padding: 15px 30px 15px 15px;
    font-size: 14px;
  }
  .btn04 a:after {
    right: 10px;
    width: 15px;
    height: 6px;
  }
  
  .btn_web a:after {
    right: 10px;
    width: 12px;
    height: 12px;
  }  

  .btn01.left a,
  .btn02.left a,
  .btn03.left a,
  .btn04.left a {
    margin: 20px auto 0;
  }
  .btn01.right a,
  .btn02.right a,
  .btn03.right a,
  .btn04.right a {
    margin: 20px auto 0;
  }

  .btnBox {
    display: block;
    /*display: flex;
    justify-content: space-between;
    flex-wrap: wrap;*/
    margin: 30px 0 0;
  }
  .btnBox > div a {
    width: 80%;
    margin: 0 auto 10px;
  }
}


/*--------------------------------------
　hospital_parts
---------------------------------------*/

/*----- h_name -----*/
.hospital_parts .h_name {
  font-size: 24px;
}

/*----- tag -----*/
.hospital_parts .tag_list {
  display: flex;
  flex-wrap: wrap;
  margin: 15px 0 0;
}
.hospital_parts .tag_list li {
  background: #fff;
  margin: 0 10px 10px 0;
  padding: 4px 10px 5px;
  font-size: 16px;
  border-radius: 100px;
}
.hospital_parts .tag_list li.green {
  color: #36A29C;
  border: 1px solid #36A29C;
}
.hospital_parts .tag_list li.blue {
  color: #06AAEB;
  border: 1px solid #06AAEB;
}
.hospital_parts .tag_list li.pink {
  color: #ec81af;
  border: 1px solid #ec81af;
}

/*----- tel & fax -----*/
.hospital_parts .tel,
.hospital_parts .fax {
  margin: 15px 0 0;
  /*font-size: 32px;*/
}
.hospital_parts .tel a,
.hospital_parts .fax {
  padding: 0 0 0 45px;
  font-size: 32px;
  font-weight: 500;
  position: relative;
}
.hospital_parts .tel a::before,
.hospital_parts .fax::before {
	content: "";
	position: absolute;
	top: 50%;
  left: 0;
  transform: translate(0,-50%);
  background: url("../img/icon_tel.png") left top no-repeat;
  background-size: contain;
	width: 34px;
	height: 34px;
  box-sizing: border-box;
}
.hospital_parts .tel a::before {
	background: url("../img/icon_tel.png") left top no-repeat;
  background-size: contain;
}
.hospital_parts .fax::before {
	background: url("../img/icon_fax.png") left top no-repeat;
  background-size: contain;
}
.hospital_parts .h_txt {
  margin: 15px 0 0;
  font-size: 18px;
  line-height: 1.5;
}
.hospital_parts .note {
  font-size: 15px!important;
  line-height: 1.8;
  margin: 10px 0 0;
}

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

/*----- h_name -----*/  
.hospital_parts .h_name {
  font-size: 16px;
}

/*----- tag -----*/  
.hospital_parts .tag_list {
  display: flex;
  margin: 15px 0 0;
}
.hospital_parts .tag_list li {
  margin: 0 5px 5px 0;
  padding: 3px 8px;
  font-size: 13px;
}

/*----- tel & fax -----*/  
.hospital_parts .tel,
.hospital_parts .fax {
  margin: 10px 0 0;
  /*font-size: 26px;*/
}
.hospital_parts .tel a,
.hospital_parts .fax {
  font-size: 26px;
  padding: 0 0 0 30px;
}
.hospital_parts .tel a::before,
.hospital_parts .fax::before  {
  width: 26px;
  height: 26px;
}
.hospital_parts .h_txt {
  margin: 10px 0 0;
  font-size: 13px;
}
.hospital_parts .note {
  font-size: 12px!important;
  line-height: 1.6;
  margin: 5px 0 0;
}  
}


/*--------------------------------------
　news_tab
---------------------------------------*/
.news_tab .tabArea {
  display: flex;
}
.news_tab .tabArea li {
  width: calc(100% / 7);
  padding: 12px 0;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
}
.news_tab .tabArea li.active {
  background: #C4F1EE;
  color: #36A29C;
  border-radius: 3px 3px 0 0;
}

.news_tab .tabContents {
  display: none;
  background: #C4F1EE;
  padding: 40px 40px 40px;
  border-radius: 5px;
}
.news_tab .tabContents.show {
  display: block;
}
.news_tab .tabContents:first-child {
  border-radius: 0 5px 5px 5px;
}
.news_tab .tabContents:last-child {
  border-radius: 5px 0 5px 5px;
}

@media screen and (max-width: 768px) {
  .news_tab .tab_wrap {
    width: calc(100% + 20px);
    overflow-x: scroll;
  }
  .news_tab .tab_wrap::-webkit-scrollbar {
    display: none;
  }
  .news_tab .tabArea {
    margin: 0 0 10px;
    min-width: 768px;
  }
  .news_tab .tabArea li {
    width: inherit;
    padding: 12px 12px;
    font-size: 3vw;
  }
  .news_tab .tabArea li.active {
    border-radius: 3px;
  }

  .news_tab .tabContents {
    padding: 20px 20px 20px;
  }
  .news_tab .tabContents:first-child {
    border-radius: 5px;
  }
  .news_tab .tabContents:last-child {
    border-radius: 5px;
  }
}


/*--------------------------------------
　post_list
---------------------------------------*/
.post_list li {
  margin: 0 0 20px;
}
.post_list li:last-child {
  margin: 0 0 0;
}
.post_list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 30px 100px 30px 30px;
  border-radius: 5px;
  position: relative;
}
.post_list li a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 30px;
  transform: translate(0,-50%);
  background: #fff url("../img/arrow_bl.png") center center no-repeat;
  background-size: 19px auto;
	width: 56px;
	height: 56px;
  box-sizing: border-box;
  border: 1px solid #E5E5E5;
  border-radius: 50%;
}

.post_list .date {
  width: 14%;
  font-size: 16px;
}

.post_list .post_ttl {
  width: 84%;
  font-size: 18px;
  line-height: 1.5;
}

.case_list .date {
  width: 13%;
}
.case_list .cate {
  background: #fff;
  width: 140px;
  margin: 0 20px 0 0;
  padding: 5px 0;
  color: #64A4E3;
  font-size: 16px;
  text-align: center;
  border: 1px solid #64A4E3;
  border-radius: 100px;
}
.case_list .post_ttl {
  width: calc(87% - 140px);
}

@media screen and (max-width: 768px) {
  .post_list li {
    margin: 0 0 10px;
  }
  .post_list li a {
    display: block;
    padding: 15px 45px 15px 15px;
  }
  .post_list li a::after {
    top: inherit;
    bottom: 15px;
    right: 10px;
    transform: translate(0,0);
    background: #fff url("../img/arrow_bl.png") center center no-repeat;
    background-size: 12px auto;
    width: 25px;
    height: 25px;
  }

  .post_list .date {
    width: 100%;
    font-size: 13px;
  }

  .post_list .post_ttl {
    width: 100%;
    margin: 10px 0 0;
    font-size: 15px;
  }

  .case_list .date {
    display: inline-block;
    width: inherit;
    margin: 0 10px 0 0;
  }
  .case_list .cate {
    display: inline-block;
    width: inherit;
    margin: 0 5px 0 0;
    padding: 3px 8px;
    font-size: 12px;
  }
  .case_list .post_ttl {
    width: 100%;
  }
}


/*--------------------------------------
　com_parts01
---------------------------------------*/
.com_parts01 {
  max-width: 1080px;
  margin: auto;
  padding: 60px 60px 40px;
  box-shadow: 0 0 24px rgba(0,0,0,0.1);
}
.com_parts01.bg-gn {
  background: #36A29C;
}
.com_parts01.bg-pk {
  background: #E94688;
}
.com_parts01.bg-bl {
  background: #06AAEB;
}

.com_parts01 .txt {
  margin: 0 0 50px;
  font-size: 18px;
  font-weight: 500;
}

.com_parts01 .linkList {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.com_parts01 .linkList li {
  width: calc((100% - 80px) / 3);
  margin: 0 0 25px 0;
  padding: 0 0 25px 15px;
  font-size: 16px;
  border-bottom: 1px solid #fff;
}
.com_parts01 .linkList li:nth-of-type(3n-1):nth-last-of-type(1) {
	margin: 0 auto 25px 40px;
}
.com_parts01 .linkList li a {
  padding: 0 0 0 50px;
  color: #fff;
  font-weight: 500;
  position: relative;
}
.com_parts01 .linkList li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0,-50%);
  width: 40px;
  height: 48px;
  box-sizing: border-box;
}
.com_parts01 .linkList li.list01 a::before {
  background: url("../img/icon01.png") left top no-repeat;
  background-size: contain;
}
.com_parts01 .linkList li.list02 a::before {
  background: url("../img/icon02.png") left top no-repeat;
  background-size: contain;
}
.com_parts01 .linkList li.list03 a::before {
  background: url("../img/icon03.png") left top no-repeat;
  background-size: contain;
}
.com_parts01 .linkList li.list04 a::before {
  background: url("../img/icon04.png") left top no-repeat;
  background-size: contain;
}
.com_parts01 .linkList li.list05 a::before {
  background: url("../img/icon05.png") left top no-repeat;
  background-size: contain;
}
.com_parts01 .linkList li.list06 a::before {
  background: url("../img/icon06.png") left top no-repeat;
  background-size: contain;
}
.com_parts01 .linkList li.list07 a::before {
  background: url("../img/icon07.png") left top no-repeat;
  background-size: contain;
}
.com_parts01 .linkList li.list08 a::before {
  background: url("../img/icon08.png") left top no-repeat;
  background-size: contain;
}
.com_parts01 .linkList li.list09 a::before {
  background: url("../img/icon09.png") left top no-repeat;
  background-size: contain;
}
.com_parts01 .linkList li.list10 a::before {
  background: url("../img/icon10.png") left top no-repeat;
  background-size: contain;
}
.com_parts01 .linkList li.list11 a::before {
  background: url("../img/icon11.png") left top no-repeat;
  background-size: contain;
}
.com_parts01 .linkList li.list12 a::before {
  background: url("../img/icon12.png") left top no-repeat;
  background-size: contain;
}
.com_parts01 .linkList li a:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  transform: translate(0,-50%);
  background: url("../img/arrow_wh.png") left top no-repeat;
  background-size: contain;
	width: 19px;
	height: 7px;
}
.com_parts01 .linkList li a.point_none:after {
  background: none;
}

@media screen and (max-width: 768px) {
  .com_parts01 {
    max-width: 100%;
    padding: 30px 20px 20px;
  }

  .com_parts01 .txt {
    margin: 0 0 30px;
    font-size: 3.5vw;
    text-align: center;
  }

  .com_parts01 .linkList {
    gap: 15px;
  }
  .com_parts01 .linkList li {
    width: calc((100% / 2) - 15px);
    margin: 0 0 5px 0;
    padding: 0 0 20px;
    font-size: 3.5vw;
    flex-grow: 1;
  }
  .com_parts01 .linkList li:nth-of-type(3n-1):nth-last-of-type(1) {
    margin: 0 0 5px 0;
  }
  .com_parts01 .linkList li a {
    padding: 0 0 0 35px;
  }
  .com_parts01 .linkList li a::before {
    width: 28px;
    height: 34px;
  }
}


/*--------------------------------------
　table_parts
---------------------------------------*/

/*----- table_parts01 -----*/
.table_parts01 table {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #64A4E3;
}
.table_parts01 tr {
  width: 100%;
  box-sizing: border-box;
}
.table_parts01 tr:nth-child(even) {
  background: #f0f0f0;
}
.table_parts01 th {
  background: #64A4E3;
  padding: 20px 20px;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  border-left: 1px solid #64A4E3;
  border-bottom: 1px solid #fff;
}
.table_parts01 tr:last-child th {
  border-bottom: none;
}
.table_parts01 td {
  padding: 20px 20px;
  font-size: 16px;
  line-height: 1.5;
  border-left: 1px solid #64A4E3;
  border-bottom: 1px solid #64A4E3;
}

/*----- table_parts02 -----*/
.table_parts02 table {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #64A4E3;
}
.table_parts02 table tr {
  width: 100%;
  box-sizing: border-box;
}
.table_parts02 table th {
  background: #64A4E3;
  padding: 20px 0;
  box-sizing: border-box;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 1.3em;
  border-left: 1px solid #fff;
}
.table_parts02 table th:first-child {
  border-left: none;
}
.table_parts02 table td {
  font-size: 16px;
  text-align: justify;
  border-left: 1px solid #64A4E3;
  border-bottom: 1px solid #64A4E3;
  line-height: 1.5em;
  padding: 20px 15px;
  box-sizing: border-box;
}
.table_parts02 table td:first-child {
  font-weight: bold;
  text-align: center;
}
.table_parts02 table td.center {
  text-align: center;
}
.table_parts02 table tbody tr:nth-child(even) {
  background: #f0f0f0;
}

@media screen and (max-width: 768px) {
  
/*----- table_parts01 -----*/
.table_parts01 th {
  padding: 12px 10px;
  font-size: 13px;
}
.table_parts01 td {
  padding: 12px 10px;
  font-size: 13px;
}
  
/*----- table_parts02 -----*/
.table_parts02 table th {
  padding: 12px 5px;
  font-size: 3vw;
}
.table_parts02 table td {
  font-size: 3vw;
  line-height: 1.3em;
  padding: 12px 5px;
}
}

