@charset "UTF-8";

/*--------------------------------------------------
  body
--------------------------------------------------*/
html {
  font-size: 62.5%;
	-webkit-text-size-adjust: 100%;
}
body {
  color: #000;
  font-size: 16px;
  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)";
}
img {
	width: 100%;
}
body, html {
	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;
	}
}



/*--------------------------------------
　Font
---------------------------------------*/
.josefin {
  font-family: "Josefin Sans", serif;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.fb {
  font-weight: 700;
}
.fb span {
  font-weight: 700;
}

.tl {
  text-align: left;
}
.tr {
  text-align: right;
}
.tc {
  text-align: center;
}

.marker {
	background: linear-gradient(transparent 75%, #63D1CA 0%);
	font-weight: 700;
  line-height: 1.7;
}

.fs16 {
  font-size: 16px;
}
.fs20 {
  font-size: 20px;
}
.fs22 {
  font-size: 22px;
}
.fs24 {
  font-size: 24px;
}
.fs28 {
  font-size: 28px;
}

@media screen and (max-width: 768px){
	.fs16 {
    font-size: 14px;
  }
  .fs20 {
    font-size: 16px;
  }
	.fs22 {
    font-size: 18px;
  }
  .fs24 {
    font-size: 18px;
  }
  .fs28 {
    font-size: 20px;
  }
}



/*--------------------------------------
　Color
---------------------------------------*/
.wh {
  color: #fff;
}
.cl-bl01 {
  color: #4BC9C1;
}
.cl-bl02 {
  color: #63D1CA;
}
.cl-gn01 {
  color: #9CD97C;
}
.cl-gn02 {
  color: #6BC63C;
}
.cl-or {
  color: #FFA060;
}
.cl-gy {
  color: #D1D1D1;
}



/*--------------------------------------
　Background
---------------------------------------*/
.bg-wh {
  background: #fff;
}
.bg-bl01 {
  background: #4BC9C1;
}
.bg-bl02 {
  background: #63D1CA;
}
.bg-gn {
  background: #9CD97C;
}
.bg-gn02 {
  background: #6BC63C;
}
.bg-or {
  background: #FFA060;
}
.bg-gy {
  background: #F8F8FA;
}



/*--------------------------------------
　border-radius
---------------------------------------*/
.br10 {
  border-radius: 10px;
}
.br20 {
  border-radius: 20px;
}

@media screen and (max-width: 768px){
  .br10 {
    border-radius: 7px;
  }
  .br20 {
    border-radius: 14px;
  }
}



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

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



/*--------------------------------------
　Header
---------------------------------------*/
header {
  background: #fff;
	width: 100%;
	min-width: 1200px;
  padding: 30px 30px 0;
  position: relative;
  z-index: 9999;
}

/*----- header_block -----*/
.header_block {
  display: flex;
  justify-content: space-between;
}
.header_block .leftBox {
  width: 250px;
}
.header_block .rightBox {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: calc(100% - 250px);
}
.header_block .logo_header {
  width: 100%;
}
.header_block .tel {
  margin: 0 30px 0 0;
}
.header_block .tel a {
  font-size: 32px;
}
.header_block .btnWrap {
  margin: 0 0 0;
}

/*----- hd_cont -----*/
.hd_cont {
	background: rgba(255,255,255,0.9);
  padding: 30px 0 30px;
  transition: all 0.3s;
}
.hd_cont.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 30px 30px;
  z-index: 1;
}
.hd_cont .flexwrap {
  display: flex;
  flex-wrap: wrap;
}
.hd_cont-pc {
  display: block;
}
.hd_cont-pc nav {
}
.hd_cont-pc nav > ul {
	display: flex;
  justify-content: space-between;
  text-align: center;
}
.hd_cont-pc nav > ul.main > li {
	width: 14.28%;
	border-right: 1px solid #D1D1D1;
	box-sizing: border-box;
  position: relative;
}
.hd_cont-pc nav > ul.main > li:last-child {
  border-right: none;
}
.hd_cont-pc nav > ul.main > li > a {
	font-size: 18px;
	font-weight: 700;
  border-bottom: 4px solid rgba(255,255,255,0.0);
	padding: 5px 10px;
	box-sizing: border-box;
	display: inline-block;
}
.hd_cont-pc nav > ul.main > li > a:hover {
  border-bottom: 4px solid #63D1CA;
}
.hd_cont-pc nav > ul.main > li .parent_menu {
  cursor: pointer;
  display: inline-block;
	font-size: 18px;
	font-weight: 700;
  border-bottom: 4px solid rgba(255,255,255,0.0);
  position: relative;
  padding: 5px 10px;
}
.hd_cont-pc nav > ul.main > li .parent_menu::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg) translateY(-50%);
  right: -5px;
  top: 45%;
  transition: 0.3s;
}
.hd_cont-pc nav > ul.main > li.selected .parent_menu {
  position: relative;
  box-sizing: border-box;
  border-bottom: 4px solid #63D1CA;
  z-index: 102;
}
.hd_cont-pc nav > ul.main > li.selected .parent_menu::before {
  top: 50%;
  transform: rotate(45deg) translateY(-50%) scale(-1, -1);
}
.hd_cont-pc nav > ul.main > li .child_wrap {
  display: none;
  position: absolute;
  top: 32px;
  left: 0;
  width: 100%;
  max-height: 70vh;
  overflow-y: auto;
  background: #e2f5f4;
  z-index: 101;
  padding: 10px 20px 10px;
  border-radius: 0 0 10px 10px;
}
.hd_cont-pc nav > ul.main > li .child_wrap li {
	font-size: 14px;
  border-bottom: 1px dashed #cdcdcd;
}
.hd_cont-pc nav > ul.main > li .child_wrap li:last-of-type {
  border-bottom: none;
}
.hd_cont-pc nav > ul.main > li .child_wrap li a {
  display: block;
  padding: 10px 0;
}
.hd_cont-pc nav > ul.main > li .child_wrap li a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 768px) {
header {
  position: fixed;
  top: 0;
  left: 0;
  height: 60px;
  min-width: 100%;
  padding: 0 15px 0;
}

/*----- header_block -----*/	
.header_block {
  display: block;
}
.header_block .leftBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 60px;
  padding: 0 103px 0 0;
  box-sizing: border-box;
}
.header_block .rightBox {
  display: none;
  width: 100%;
}
.header_block .logo_header {
  width: 57%;
} 
.header_block .btn-web-top a {
  max-width: 100%;
  height: 30px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  background: #4BC9C1;
  text-align: center;
  border-radius: 100px;
  padding: 0 17px 0 17px;
  display: table;
} 
.header_block .btn-web-inner a {
  display: table-cell;
  vertical-align: middle;
}

/*----- hd_cont -----*/	
.hd_cont {
  display: none;
}
	
/*----- sp-g-nav -----*/	
.sp-g-nav .g-nav-inner .navi {
	border-bottom: 1px solid #fff;
	/*margin: 0 0 15px;*/
	box-sizing: border-box;
}
.sp-g-nav .g-nav-inner .navi:last-child {
	margin: 0 0 35px;
}
.sp-g-nav .g-nav-inner .navi a {
	width: 100%;
	color: #fff;
	font-size: 17px;
	font-weight: bold;
	/*background: #fff;
	border-radius: 100px;*/
	padding: 25px 40px 25px 10px;
	box-sizing: border-box;
	display: block;
	position: relative;
}
.sp-g-nav .g-nav-inner .navi a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0,-50%);
  background: url("../img/arrow02.png") left top no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
}	

/* accordion */	
.sp-g-nav .g-nav-inner .parent_menu {
	color: #fff;
	font-size: 17px;
	font-weight: bold;
	/*background: #fff;
	border-radius: 100px;*/
	padding: 25px 40px 25px 10px;
	box-sizing: border-box;
	cursor: pointer;
	position: relative;
}	
.sp-g-nav .g-nav-inner .parent_menu::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0,-50%) rotateZ(90deg);
  background: url("../img/arrow02.png") left top no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
}
.sp-g-nav .g-nav-inner .parent_menu.open::before {
  transform: translate(0,-50%) rotateZ(-90deg);
}	
.sp-g-nav .g-nav-inner .child_menu {
  width: 100%;
	display: none;
}	
.sp-g-nav .g-nav-inner .child_menu li {
	border-bottom: 1px dashed #fff;
  margin: 0 0 5px;
	box-sizing: border-box;
}
.sp-g-nav .g-nav-inner .child_menu li:first-child {
  border-top: 1px dashed #fff;
}
.sp-g-nav .g-nav-inner .child_menu li:last-child {
  margin: 0 0 30px;
}
.sp-g-nav .g-nav-inner .child_menu li a {
	padding: 15px 20px 18px 40px;
	position: relative;
}
.sp-g-nav .g-nav-inner .child_menu li a::before {
  content: "▲";
  display: block;
  position: absolute;
  color: #f2de36;
  font-size: 11px;
  top: 50%;
  left: 20px;
  margin: -6px 0 0;
  transform: rotate(90deg);
}	
.sp-g-nav .g-nav-inner .child_menu a {
  font-size: 14px;
}		
.sp-g-nav .g-nav-inner .child_menu.show {
	display: block;
}
	
/*----- hb-box -----*/	
.hb-box {
  background: #fff;
  margin: 40px 0 0;
  padding: 20px 20px 20px;
  border-radius: 10px;
}
.hb-box .tel {
  margin: 0 0 0;
  text-align: center;
}
.hb-box .tel a {
  font-size: 28px;
}
.hb-box .btnWrap {
  display: flex;
  justify-content: space-between;
  margin: 15px 0 0;
}
.hb-box .btnWrap > div {
  width: calc(50% - 3px);
  margin: 0 0 0 0;
}
}



/*--------------------------------------
　SP Navi
---------------------------------------*/
@media screen and (max-width: 768px) {
/*----- hb-menu -----*/
#hb-menu {
  display: table;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0,-50%);
  background: #FFA060;
  width: 100px;
  height: 30px;
  border-radius: 100px;
  cursor: pointer;
  z-index: 1000;
}
#hb-menu .hb-inner {
  display: table-cell;
  vertical-align: middle;
}
#hb-menu span:nth-of-type(1),
#hb-menu span:nth-of-type(2) {
  display: block;
  background: #fff;
  width: 20px;
  height: 2px;
  margin: 0 0 0 20px;
  /*margin: 0 10px 0 10px;*/
  border-radius: 5px;
  -webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}
#hb-menu span:nth-of-type(2) {
  margin-top: 6px;
}
#hb-menu span:nth-of-type(3)::after {
  content: "MENU";
  /*content: "";*/
  position: absolute;
  top: 55%;
  right: 15px;
  transform: translate(0,-50%);
  color: #fff;
  font-size: 10px;
  font-family: "Josefin Sans", serif;
  letter-spacing: 0.08em;
}
/* ナビゲーションアイコン：アクティブ */
.hb-open span:nth-of-type(1) {
  -webkit-transform: translateY(4px) translateX(0) rotate(45deg);
  -ms-transform: translateY(4px) translateX(0) rotate(45deg);
  transform: translateY(4px) translateX(0) rotate(45deg);
}
.hb-open span:nth-of-type(2) {
  -webkit-transform: translateY(-4px) translateX(0) rotate(-45deg);
  -ms-transform: translateY(-4px) translateX(0) rotate(-45deg);
  transform: translateY(-4px) translateX(0) rotate(-45deg);
}
.hb-open #hb-menu span:nth-of-type(3)::after {
  content: "CLOSE";
  /*content: "";*/
}

/* overlay */
.overlay {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: transparent;
  pointer-events: none;
  z-index: 10;
  transition: 0.2s;
}
.hb-open .overlay {
  background: none;
  pointer-events: auto;
}

/*----- sp-g-nav -----*/
.sp-g-nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
}
.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;
  background: #4BC9C1;
  width: 100%;
  height: 100%;
  padding: 60px 20px;
  box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
  transition: .5s;
  transform: translateX(100%);
  -ms-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  z-index: 10;
}
}





/*--------------------------------------
　footer
---------------------------------------*/
footer {
	background: rgba(242,236,228,0.28);
	width: 100%;
	min-width: 1200px;
	padding: 80px 0 80px;
}
footer .footer_inner {
	max-width: 1200px;
	margin: auto;
}
.footer_block {
  display: flex;
  justify-content: space-between;
}
.footer_block .leftBox {
  width: 50%;
}
.footer_block .logo_footer {
  width: 200px;
}
.footer_block .address {
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 1.5;
}
.footer_block .tel {
  margin: 20px 0 0;
}
.footer_block .btnWrap {
  display: flex;
  justify-content: flex-start;
  margin: 20px 0 0;
}
.footer_block .rightBox {
  width: 35%;
  margin: auto;
}
.footer_nav ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer_nav ul li {
  width: calc(50% - 20px);
  margin: 0 0 30px 0;
}
.footer_nav ul li a {
  color: #63D1CA;
  font-size: 18px;
  font-weight: 700;
}
footer .copy {
  margin: 80px 0 0;
  color: #C3C3C3;
  font-size: 12px;
  text-align: right;
}

@media screen and (max-width: 768px) {
footer {
  min-width: 100%;
  padding: 50px 20px 40px;
}
footer .footer_inner {
  max-width: 100%;
}
.footer_block {
  display: block;
}
.footer_block .leftBox {
  width: 100%;
}
.footer_block .logo_footer {
  width: 60%;
  margin: auto;
}
.footer_block .address {
  font-size: 14px;
  text-align: center;
}
.footer_block .tel {
  margin: 15px 0 0;
  text-align: center;
}
.footer_block .btnWrap {
  display: block;
  margin: 15px 0 0;
}
.footer_block .rightBox {
  width: 100%;
  margin: 30px 0 0;
}
.footer_nav ul {
  width: calc(100% + 40px);
  margin: 0 20px 0 -20px;
  text-align: center;
  border-top: 1px solid #E6E6E6;
}
.footer_nav ul li {
  width: 50%;
  margin: 0 0 0 0;
  border-right: 1px solid #E6E6E6;
  border-bottom: 1px solid #E6E6E6;
}
.footer_nav ul li:nth-child(2n) {
  border-right: none;
}
.footer_nav ul li:last-child {
  width: 100%;
  border-right: none;
}
.footer_nav ul li a {
  padding: 20px 20px;
  font-size: 16px;
}
footer .copy {
  margin: 40px 0 0;
  font-size: 11px;
  text-align: center;
}
}



/*--------------------------------------
　Title
---------------------------------------*/
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
	line-height: 1.5;
}
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
	font-weight: 700;
}
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	font-weight: 700;
}



/*--------------------------------------
　text
---------------------------------------*/
.txt {
  font-size: 16px;
  text-align: justify;
  line-height: 2;
}

.lead {
  margin: 40px 0 0;
  font-size: 16px;
  text-align: justify;
  line-height: 2;
}

.note {
  margin: 20px 0 0;
  font-size: 13px;
  text-align: justify;
  line-height: 1.8;
}

.lh_20 {
	line-height: 2.0em;
}

@media screen and (max-width: 768px) {
  .txt {
    font-size: 14px;
    line-height: 1.8;
  }
  
  .lead {
    margin: 20px 0 0;
    font-size: 14px;
    text-align: justify;
    line-height: 1.8;
  }  
  
  .note {
    margin: 15px 0 0;
  }
	
	.lh_20 {
    line-height: 1.8em;
  }
}

  
  
/*--------------------------------------
　tel
---------------------------------------*/
.tel {
  margin: 30px 0 0;
}
.tel a {
  display: inline-block;
  padding: 0 0 0 35px;
  font-size: 40px;
  font-weight: 700;
  pointer-events: none;
  position: relative;
}
.tel a::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: 26px;
  height: 26px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .tel {
    margin: 20px 0 0;
  }
  .tel a {
    padding: 0 0 0 30px;
    font-size: 28px;
    pointer-events: auto;
  }
  .tel a::before {
    width: 20px;
    height: 20px;
  }
}



/*--------------------------------------
　btn
---------------------------------------*/

/*----- btnWrap -----*/
.btnWrap {
  display: flex;
  justify-content: flex-start;
  margin: 30px 0 0;
}
.btnWrap > div {
  width: 180px;
  margin: 0 20px 0 0;
}
.btnWrap > div:last-child {
  margin: 0 0 0 0;
}
.btnWrap > div a {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*----- btn-line -----*/
.btn-line a {
  background: #03C755;
  max-width: 100%;
  padding: 15px 40px 15px 50px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  border-radius: 3px;
  position: relative;
  z-index: 0;
}
.btn-line a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translate(0,-50%);
  background: url("../img/icon_line.png") left top no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
  box-sizing: border-box;
  z-index: -1;
}

/*----- btn-web -----*/
.btn-web a {
  background: #FFA060;
  max-width: 100%;
  padding: 15px 20px 15px 20px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  border-radius: 3px;
}

/*----- btn-link -----*/
.btn-link a {
  display: inline-block;
  margin: 40px auto 0;
  padding: 0 35px 15px 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  border-bottom: 1px solid #000;
  position: relative;
}
.btn-link.space01 a {
	margin: 0 0 0;
}
.btn-link.space02 a {
	margin: 20px 0 0;
}
.btn-link a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0,-50%);
  background: url("../img/arrow01.png") left top no-repeat;
  background-size: contain;
  width: 22px;
  height: 22px;
  margin-top: -7px;
  box-sizing: border-box;
}

/*----- btn-link02 -----*/
.btn-link02 a {
  /*display: inline-block;*/
	width: 320px;
	font-size: 18px;
	color: #fff;
  font-weight: 700;
	background: #FFA060;
	border-radius: 3px;
	line-height: 1.4;
	text-align: center;
  margin: 0 auto 0;
  padding: 15px 0;
  position: relative;
}
.btn-link02 a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(0,-50%);
  background: url("../img/arrow02.png") left top no-repeat;
  background-size: contain;
  width: 22px;
  height: 22px;
  box-sizing: border-box;
}

/*----- linkList -----*/
.linkList {
  display: flex;
  justify-content: center;
  margin: 30px 0 0;
  padding: 40px 40px 40px;
}
.linkList > div {
  margin: 0 40px;
}
.linkList > div a {
  margin: 0 0 0;
}

@media screen and (max-width: 768px) {
	
/*----- btnWrap -----*/	
.btnWrap {
  display: block;
  margin: 20px 0 0;
}
.btnWrap > div {
  width: 80%;
  margin: 0 auto 10px auto;
}
.btnWrap > div:last-child {
  margin: 0 auto 0 auto;
}
.btnWrap > div a {
  display: block;
}

/*----- btn-line -----*/
.btn-line a {
  padding: 12px 15px 12px 25px;
  font-size: 15px;
}
.btn-line a::before {
  left: 5px;
  width: 25px;
  height: 25px;
}

/*----- btn-web -----*/	
.btn-web a {
  padding: 12px 15px 12px 15px;
  font-size: 15px;
}

/*----- btn-link -----*/
.btn-link a {
  margin: 20px 0 0;
  padding: 0 30px 10px 0;
  font-size: 15px;
}
.btn-link a::before {
  width: 20px;
  height: 20px;
  margin-top: -5px;
}
	
/*----- btn-link02 -----*/
.btn-link02 a {
	width: 80%;
	font-size: 15px;
  padding: 15px 0;
}
.btn-link02 a::before {
  width: 20px;
  height: 20px;
}	

/*----- linkList -----*/
.linkList {
  display: block;
  margin: 20px 0 0;
  padding: 30px 20px 30px;
}
.linkList > div {
  margin: 0 0 20px;
}
.linkList > div:last-child {
  margin: 0 0 0;
}
.linkList > div a {
  display: block;
  margin: 0 0 0;
}
}



/*--------------------------------------
　flexBox
---------------------------------------*/
.flexBox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* column2_01 */
.column2_01 .flex_item {
  width: calc(50% - 30px);
  margin: 0 0 60px;
}
.column2_01 .flex_item .imgBox {
	margin: 0 0 20px;
}
.column2_01 .flex_item .imgBox .movie_block video {
	border-radius: 20px;
}

/* column3_01 */
.column3_01 .flex_item {
  width: 33.33%;
  padding: 0 30px 0;
  border-right: 1px solid #fff;
}
.column3_01 .flex_item:last-child {
  border-right: none;
}

/* column3_02 */
.top .column3_02 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.lower .column3_02 {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.top .column3_02 .flex_item {
  width: calc(33.33% - 30px);
  margin: 0 15px 50px;
}
.lower .column3_02 .flex_item {
  width: 31%;
  margin: 0 3.5% 30px 0;
}
.lower .column3_02 .flex_item:nth-of-type(3n) {
	margin: 0 0 30px;
}
.lower .column3_02 .flex_item:last-child {
	margin: 0 0 0;
}
.top .column3_02 .flex_item .imgBox {
	margin: 0 0 0;
}
.lower .column3_02 .flex_item .imgBox {
	margin: 0 0 20px;
}
.lower .column3_02 .flex_item .txtBox h4 {
	text-align: justify;
}
.expert_area .column3_02 .flex_item .txtBox h3 {
	font-size: 20px;
	font-weight: bold;
	text-align: center;
}
.expert_area .column3_02 .flex_item .txtBox h3 img {
	width: 20px;
	height: 17.9px;
	margin: 6px 10px 0;
}
.expert_area .column3_02 .flex_item .txtBox h3 img:first-child {
  margin: 6px 10px 0 0;
}
.expert_area .column3_02 .flex_item .txtBox h3 img:last-child {
  margin: 6px 0 0 10px;
}

/* column4_01 */
.column4_01 {
  display: flex;
  justify-content: flex-start;
}
.column4_01 .flex_item {
  /*width: calc(25% - 20px);*/
  width: 23.5%;
  margin: 0 2% 25px 0;
}
.column4_01 .flex_item:nth-of-type(4n) {
  margin: 0 0 25px 0;
}

/* column4_02 */
.column4_02 .flex_item {
  width: 25%;
  padding: 0 30px 0;
  border-right: 1px solid #fff;
}
.column4_02 .flex_item:last-child {
  border-right: none;
}
	
@media screen and (max-width: 768px) {
.flexBox {
  display: block;
}

/* column2_01 */	
.column2_01 .flex_item {
  width: 100%;
  margin: 0 0 30px;
}
.column2_01 .flex_item:last-child {
  margin: 0 0 0;
}
.column2_01 .flex_item .imgBox .movie_block video {
	border-radius: 14px;
}  

/* column3_01 */	
.column3_01 .flex_item {
  width: 100%;
  padding: 30px 0 30px;
  border-right: none;
  border-bottom: 1px solid #fff;
}
.column3_01 .flex_item:first-child {
  padding: 0 0 30px;
}
.column3_01 .flex_item:last-child {
  border-bottom: none;
  padding: 30px 0 0;
}

/* column3_02 */
.top .column3_02 {
  display: block;
}
.lower .column3_02 {
  display: block;
}
.top .column3_02 .flex_item {
  width: 100%;
  margin: 0 0 30px;
}
.lower .column3_02 .flex_item {
  width: 100%;
  margin: 0 0 30px;
}
.lower .column3_02 .flex_item:nth-of-type(3n) {
	margin: 0 0 30px;
}
.lower .column3_02 .flex_item:last-child {
	margin: 0 0 0;
}
.lower .column3_02 .flex_item .imgBox {
	margin: 0 0 15px;
}	
.expert_area .column3_02 .flex_item .txtBox h3 {
	font-size: 16px;
}
.expert_area .column3_02 .flex_item .txtBox h3 img {
	width: 16px;
	height: 14.32px;
	margin: 6px 10px 0;
}

/* column4_01 */
.column4_01 {
  display: flex;
  justify-content: flex-start;
}
.column4_01 .flex_item {
  /*width: calc(25% - 20px);*/
  width: 48%;
  margin: 0 4% 25px 0;
}
.column4_01 .flex_item:nth-child(even) {
  margin: 0 0 25px 0;
}
.column4_01 .flex_item:nth-of-type(4n) {
  margin: 0 0 25px 0;
}  
  
  
  
/*.column4_01 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.column4_01 .flex_item {
  width: calc(50% - 20px);
  margin: 0 auto 20px;
}*/
	
/* column4_02 */
.column4_02 .flex_item {
  width: 100%;
  padding: 30px 0 30px;
  border-right: none;
  border-bottom: 1px solid #fff;
}
.column4_02 .flex_item:first-child {
  padding: 0 0 30px;
}	
.column4_02 .flex_item:last-child {
  border-bottom: none;
  padding: 30px 0 0;
}	

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



/*--------------------------------------
　com_parts01
---------------------------------------*/
.com_parts01 {
  margin: 80px 0 0;
}
.com_parts01 .parts_ttl01 {
  margin: 0 0 -35px;
  font-size: 24px;
  text-align: center;
  line-height: 1.4;
}
.com_parts01 .parts_ttl01 span {
  display: inline-block;
  padding: 15px 60px 20px;
  border-radius: 100px;
}
.com_parts01 .flexBox {
  margin: 0 0 0;
}
.com_parts01 .icon_num {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #63D1CA;
  width: 60px;
  height: 60px;
  margin: -30px auto 0;
  padding: 6px 0 0 4px;
  font-size: 38px;
  text-align: center;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
.com_parts01 .txtBox {
  margin: 30px 0 0;
}
.com_parts01 .parts_ttl02 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}
.com_parts01 .txt {
  margin: 20px 0 0;
}
.com_parts01 .parts_block01 {
  padding: 80px 50px 80px;
}
.com_parts01 .parts_block02 {
  padding: 80px 50px 50px;
  border-radius: 20px;
}

@media screen and (max-width: 768px) {
.com_parts01 {
  margin: 50px 0 0;
}
.com_parts01 .parts_ttl01 {
  margin: 0 0 -30px;
  font-size: 18px;
}
.com_parts01 .parts_ttl01 span {
  display: block;
  width: calc(100% - 40px);
  margin: auto;
  padding: 15px 20px 15px;
}
.com_parts01 .icon_num {
  width: 50px;
  height: 50px;
  margin: -25px auto 0;
  padding: 5px 0 0 3px;
  font-size: 30px;
}
.com_parts01 .txtBox {
  margin: 20px 0 0;
}
.com_parts01 .parts_ttl02 {
  display: block;
  font-size: 18px;
}
.com_parts01 .txt {
  margin: 15px 0 0;
}
.com_parts01 .parts_block01 {
  padding: 40px 20px 40px;
}
.com_parts01 .parts_block02 {
  padding: 40px 20px 40px;
  border-radius: 0;
}
}



/*--------------------------------------
　info_parts
---------------------------------------*/
.info_parts {
  margin: 80px 0 0;
  padding: 100px 0 100px;
}

.info_parts .info_parts_inner {
  display: flex;
  justify-content: space-between;
}

.info_parts .info_item {
  width: calc(50% - 30px);
}

.info_parts .info_ttl {
  margin: 0 0 -35px;
  font-size: 24px;
  text-align: center;
  line-height: 1.4;
}
.info_parts .info_ttl span {
  display: inline-block;
  width: 330px;
  padding: 15px 20px 20px;
  border-radius: 100px;
}

.info_parts .item_inner {
  padding: 40px 50px 60px;
}

.info_parts .sub {
  text-align: center;
}
.info_parts .sub span {
  display: inline-block;
  background: #6BC63C;
  padding: 10px 30px;
  font-size: 16px;
}

.info_parts .schedule {
  margin: 40px 0 0;
  padding: 0 30px;
}
.info_parts .schedule table th {
  width: 25%;
  text-align: center;
}

.infoBox {
  background: #F6F6F6;
  margin: 30px 0 0;
  padding: 30px 30px 30px;
}
.infoBox .tel {
  margin: 0 0 0;
}
.infoBox .btnWrap {
  display: flex;
  justify-content: center;
}
.infoBox .linkList {
  display: flex;
  justify-content: space-between;
  padding: 0 0 0;
}
.infoBox .linkList > div {
  width: 50%;
  margin: 0 10px;
}
.infoBox .linkList > div a {
  display: block;
}

.info_parts .info_txt {
  margin: 30px 0 0;
}
.info_parts .info_txt dt {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}
.info_parts .info_txt dd {
  margin: 15px 0 20px;
}
.info_parts .info_txt dd:last-of-type {
  margin: 15px 0 0;
}
.info_parts .info_txt .txt {
  font-size: 12px;
}

.info_parts .map {
  width: 100%;
  height: 0;
  padding-top: 58.69%;
  margin: 20px 0 0;
  position: relative;
}
.info_parts .map iframe {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
  width: 100%;
  height: 100%;
}

.info_parts .info_hospital {
  margin: 100px 0 0;
}

@media screen and (max-width: 768px) {
  .info_parts {
    margin: 50px 0 0;
    padding: 40px 20px 40px;
  }

  .info_parts .info_parts_inner {
    display: block;
  }

  .info_parts .info_item {
    width: 100%;
    margin: 0 0 40px;
  }
  .info_parts .info_item:last-child {
    width: 100%;
    margin: 0 0 0;
  }

  .info_parts .info_ttl {
    margin: 0 0 -30px;
    font-size: 18px;
  }
  .info_parts .info_ttl span {
    width: 80%;
    margin: auto;
    padding: 15px 20px 15px;
  }

  .info_parts .item_inner {
    padding: 30px 20px 40px;
  }

  .info_parts .sub span {
    padding: 10px 15px;
    font-size: 14px;
  }

  .info_parts .schedule {
    margin: 20px 0 0;
    padding: 0 0;
  }
  .info_parts .schedule table th {
    width: 30%;
  }

  .infoBox {
    margin: 20px 0 0;
    padding: 30px 20px 30px;
  }
  .infoBox .tel {
    margin: 0 0 0;
  }
  .infoBox .btnWrap {
    display: block;
  }
  .infoBox .linkList {
    display: block;
    padding: 0 0 0;
  }
  .infoBox .linkList > div {
    width: 100%;
    margin: 0 0 20px;
  }
  .infoBox .linkList > div:last-child {
    margin: 0 0 0;
  }

  .info_parts .info_txt {
    margin: 20px 0 0;
  }
  .info_parts .info_txt dd {
    margin: 10px 0 15px;
  }
  .info_parts .info_txt dd:last-of-type {
    margin: 10px 0 0;
  }

  .info_parts .map {
    margin: 15px 0 0;
  }

  .info_parts .info_hospital {
    margin: 40px 0 0;
  }
  .info_parts .info_hospital .table_parts table tr {
    display: block;
  }
  .info_parts .info_hospital .table_parts table th {
    display: block;
    text-align: center;
    border-bottom: none;
  }
  .info_parts .info_hospital .table_parts table td {
    display: block;
    border-bottom: none;
  }
  .info_parts .info_hospital .table_parts .txt {
    text-align: center;
  }
}



/*--------------------------------------
　table_parts
---------------------------------------*/
.table_parts {
  margin: 50px 0 0;
}
.table_parts table {
  width: 100%;
  box-sizing: border-box;
  border-top: 1px solid #F4F4F4;
	border-collapse: collapse;
  border-spacing: 0;
}
.table_parts table tr {
  width: 100%;
  box-sizing: border-box;
}
.table_parts table th {
  background: #F2ECE4;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  box-sizing: border-box;
  border-bottom: 1px solid #fff;
}
.table_parts.table_parts03 table th {
  width: 30%;
}
.table_parts table td {
  padding: 15px 20px;
  font-size: 16px;
  line-height: 1.4;
  box-sizing: border-box;
  border-bottom: 1px solid #F4F4F4;
}
.table_parts.table_parts03 table td {
  width: 70%;
}
.table_parts table .txt {
  margin: 0 0 0;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .table_parts {
    margin: 30px 0 0;
  }
  .table_parts table th {
    padding: 10px 10px;
    font-size: 14px;
  }
  .table_parts table td {
    padding: 10px 10px;
    font-size: 14px;
  }
}



/*--------------------------------------
　newsList
---------------------------------------*/
.newsList li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 20px;
}
.newsList li:last-child {
  margin: 0 0 0;
}
.newsList .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 28%;
}
.newsList .date {
  width: calc(100% - 130px);
  font-size: 16px;
}
.newsList .cate {
  background: #6BC63C;
  width: 120px;
  padding: 10px 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  border-radius: 100px;
}
.newsList .news_ttl {
  width: calc(72% - 20px);
}
.newsList .news_ttl a {
  color: #6BC63C;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .newsList li {
    display: block;
    margin: 0 0 25px;
  }
  .newsList .wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
  }
  .newsList .date {
    width: 30%;
    font-size: 14px;
  }
  .newsList .cate {
    width: 50%;
    margin: 0 0 0 10px;
    padding: 5px 8px;
    font-size: 12px;
  }
  .newsList .news_ttl {
    width: 100%;
    margin: 10px 0 0;
  }
}

