@charset "UTF-8";
/*
	Filename: common
	Version: 1.0.1
*/
/*-----------------------------------------------------
	Elements
------------------------------------------------------*/
body {
  background: #F8FDFF;
}
ul li {
	list-style-type: none;
}
ol li {
	list-style-type: decimal;
}
img {
	vertical-align: bottom;
}
iframe {
	width: 100%;
}
.flex {
  display: flex;
  flex-wrap: wrap;
}
/*-----------------------------------------------------
	Link
------------------------------------------------------*/
a {
  text-decoration: none;
  color: #555;
  transition: all 0.25s;
}
a img {
  transition: all 0.25s;
}
a:hover, a:hover img {
  opacity: 0.65;
}
.no_link {
  pointer-events: none;
}
/*-----------------------------------------------------
	haeder
------------------------------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 110px;
  background: #F8FDFF;
}
.header_logo {
  position: absolute;
  top: 17px;
  left: 25px;
  z-index: 2;
}
.header_logo img {
  width: 173px;
  height: auto;
}
.header_nav {
  position: absolute;
  top: 0;
  right: 30px;
  z-index: 1;
  width: 470px;
	text-align: center;
}
.header_nav ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
	gap: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
}
.header_nav ul li a {
  display: block;
	position: relative;
	width: 230px;
	padding: 23px 10px 23px 36px;
	border-radius: 100px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  color: #fff;
}
.header_nav ul li.web a {
  background: #00B5F0;
}
.header_nav ul li.web a::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 54px;
	transform: translateY(-50%);
	width: 28px;
	height: 27px;
	background: url("../img/web_icon.svg") no-repeat center center;
	background-size: cover;
}
.header_nav ul li.tel a {
  background: #A1CF74;
}
.header_nav ul li.tel a::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 54px;
	transform: translateY(-50%);
	width: 28px;
	height: 27px;
	background: url("../img/tel_icon.svg") no-repeat center center;
	background-size: cover;
}
.header_nav ul li.web a:hover {
  background: #35D3FF;
  opacity: 1;
  transition: all 0.3s ease;
}
.header_nav p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
#sp-fixed-menu {
  display: none;
}
@media screen and (max-width: 750px) {
	header {
    height: 94px;
  }
	.header_logo {
		top: 17px;
		left: 20px;
	}
  .header_logo img {
    width: 126px;
  }
	.header_nav {
		width: 190px;
		right: 20px;
	}
	.header_nav ul {
		margin-top: 17px;
		margin-bottom: 8px;
	}
	.header_nav ul li a {
		width: 90px;
		padding: 31px 10px 7px;
		border-radius: 10px;
		font-size: 12px;
	}
	.header_nav ul li.web a {
		background: #00B5F0;
	}
	.header_nav ul li.web a::before {
		top: 7px;
		left: 50%;
		transform: translateY(0) translateX(-50%);
		width: 20px;
		height: 19px;
	}
	.header_nav ul li.tel a::before {
		top: 7px;
		left: 50%;
		transform: translateY(0) translateX(-50%);
		width: 20px;
		height: 19px;
	}
	.header_nav p {
		font-size: 11px;
	}
}
#sp-fixed-menu {
  display: none;
}
@media screen and (max-width: 750px) {
  #sp-fixed-menu {
    display: none;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 99;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  #sp-fixed-menu.show {
    display: block;
    opacity: 1;
  }
  #sp-fixed-menu ul li a {
    display: block;
    padding: 23px 5px;
    border-radius: 7vw 7vw 0 0;
    font-size: 19px;
    font-weight: 500;
    color: #fff;
  }
  #sp-fixed-menu ul li a span {
    position: relative;
    padding-left: 32px;
  }
  #sp-fixed-menu ul li {
    width: 50%;
    text-align: center;
  }
  #sp-fixed-menu ul li:nth-of-type(1) a {
    background: #A1CF74;
  }
  #sp-fixed-menu ul li:nth-of-type(1) a span::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 22px;
    height: 21px;
    background: url("../img/tel_icon.svg") no-repeat center center;
    background-size: cover;
  }
  #sp-fixed-menu ul li:nth-of-type(2) a {
    background: #00B5F0;
  }
  #sp-fixed-menu ul li:nth-of-type(2) a span::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 22px;
    height: 21px;
    background: url("../img/web_icon.svg") no-repeat center center;
    background-size: cover;
  }
	#sp-fixed-menu ul li:nth-of-type(3) a {
    background: #236DCF;
  }
  #sp-fixed-menu ul li:nth-of-type(3) a span::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    background: url("../img/common/medical_icon.svg") no-repeat center center;
    background-size: cover;
  }
}
@media screen and (max-width: 500px) {
	#sp-fixed-menu ul li a {
    font-size: 14px;
  }
	#sp-fixed-menu ul li a span {
    padding-left: 25px;
  }
}
/*-----------------------------------------------------
	midasi
------------------------------------------------------*/
.midasi_01 span {
  padding-bottom: 15px;
  border-bottom: 2px solid #00B5F0;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}
.h_title {
  position: relative;
}
.midasi_02 {
  position: absolute;
  top: 12px;
  left: -105px;
}
.midasi_02 span {
  position: relative;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
}
.midasi_02 span::after {
  content: "";
  display: block;
  position: absolute;
  top: 2.5%;
  right: -20px;
  width: 2px;
  height: 95%;
  background: #00B5F0;
}
.midasi_03 {
	display: inline-block;
	margin-bottom: 40px;
	padding-bottom: 5px;
	border-bottom: 2px solid #00B5F0;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.8;
	text-align: center;
}
.center {
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .midasi_02 {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 60px;
    text-align: center;
  }
  .midasi_02 span {
    writing-mode: horizontal-tb;
  }
  .midasi_02 span::after {
    top: auto;
    bottom: -20px;
    right: 0;
    width: 100%;
    height: 2px;
  }
}
@media screen and (max-width: 750px) {
	.midasi_03 {
		font-size: 24px;
	}
}
/*-----------------------------------------------------
	ボタン
------------------------------------------------------*/
.link_more {
  display: inline-block;
  position: relative;
  width: 340px;
  max-width: 100%;
  background: #00B5F0;
  border-radius: 50px;
  padding: 20px 10px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  transition: all 0.3s ease;
}
.link_more:hover {
  background: #35D3FF;
  opacity: 1;
  transition: all 0.3s ease;
}
.link_more::after {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
  width: 8px;
  height: 14px;
  background: url("../img/common/arrow_w.svg") no-repeat center center;
  background-size: cover;
}
.link_w {
  background: none;
  border: 2px solid #fff;
}
.link_w:hover {
  background: #35D3FF;
  border: 2px solid #35D3FF;
}
.link_g {
  background: #A1CF74;
  border: 2px solid #A1CF74;
}
.link_g:hover {
  background: #B3F474;
  border: 2px solid #B3F474;
}
.link_more_02 {
  display: inline-block;
  position: relative;
  width: 160px;
  max-width: 100%;
  background: #00B5F0;
  border-radius: 50px;
  padding: 7px 10px 9px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  transition: all 0.3s ease;
}
.link_more_02:hover {
  background: #35D3FF;
  opacity: 1;
  transition: all 0.3s ease;
}
.link_more_02::after {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
  width: 7px;
  height: 10px;
  background: url("../img/common/arrow_w_small.svg") no-repeat center center;
  background-size: cover;
}
/*-----------------------------------------------------
	Layout
------------------------------------------------------*/
.wrap {
  width: 1080px;
  margin: 0 auto;
}
@media screen and (max-width: 1130px) {
  .wrap {
    width: calc(100% - 50px);
  }
}
@media screen and (max-width: 750px) {
  .wrap {
    width: calc(100% - 25px);
  }
}

/*-----------------------------------------------------
	footer_access
------------------------------------------------------*/
.footer_access iframe {
  width: 100%;
  height: 575px;
}
@media screen and (max-width: 750px) {
  .footer_access iframe {
    height: 112vw;
  }
}
/*-----------------------------------------------------
	footer
------------------------------------------------------*/
footer {
  padding: 80px 0 17px;
}
footer .wrap {
  width: 1060px;
  margin: 0 auto;
}
footer .wrap .flex {
  gap: 20px;
  margin-bottom: 40px;
}
footer .wrap .flex .footer_child {
  flex: 1;
}
footer .wrap .flex .footer_child h2 {
  margin-bottom: 30px;
}
footer .wrap .flex .footer_child h3 {
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
footer .wrap .flex .footer_child ul li {
  margin-bottom: 16px;
}
footer .wrap .flex .footer_child ul li:last-child {
  margin-bottom: 0;
}
footer .wrap .flex .footer_child ul li a {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
footer .wrap .flex .footer_child ul li a::before {
  content: "-";
  display: inline-block;
  margin-right: 10px;
}
footer .wrap .flex .footer_child:first-of-type ul li {
  margin-bottom: 30px;
}
footer .wrap .flex .footer_child:first-of-type ul li:last-child {
  margin-bottom: 0;
}
footer .wrap .flex .footer_child:first-of-type ul li a {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
}
footer .wrap .flex .footer_child:first-of-type ul li a::before {
  display: none;
}
footer small {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1100px) {
  footer .wrap {
    width: 100%;
    padding: 0 25px;
  }
}
@media screen and (max-width: 750px) {
  footer {
    padding: 80px 0 100px;
  }
  footer .wrap .flex {
    flex-direction: column;
    margin-bottom: 35px;
  }
  footer .wrap .flex .footer_child h2 {
    text-align: center;
  }
  footer .wrap .flex .footer_child ul li {
    margin-left: 22px;
  }
}

/*-----------------------------------------------------
	others
------------------------------------------------------*/
.ani {
  visibility: hidden;
}
.tb {
	display: none !important;
}
.sp {
	display: none !important;
}

/*---------------------------------------------------------------------------------------------------------------------------------------------------------------
	~750px SP
----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 750px) {
	/*-----------------------------------------------------
		Elements
	------------------------------------------------------*/	
  img {
    max-width: 100%;
    height: auto;
  }
	/*-----------------------------------------------------
		Elements
	------------------------------------------------------*/
	body {
		word-wrap: break-word;
	}
	a[href^="tel:"] {
		pointer-events: auto;
	}
	/*-----------------------------------------------------
		others
	------------------------------------------------------*/
	.tb {
		display: block !important;
	}
	.pc {
		display: none !important;
	}
}

@media screen and (max-width: 414px) {
  .tb {
		display: none !important;
	}
  .sp {
		display: block !important;
	}
}
