/**
* Template Name: Amoeba - v2.0.0
* Template URL: https://bootstrapmade.com/free-one-page-bootstrap-template-amoeba/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html{
  scroll-behavior: smooth;
}
body {
	font-family: 'Noto Sans JP', sans-serif;
	color: #777;
}

a {
	color: #E4007F;
}

a:hover {
	color: #FF33A3;
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6, .font-primary {
	font-family: 'Noto Sans JP', sans-serif;
}

ul {
	padding-left: 1.5em;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	display: none;
	width: 40px;
	height: 40px;
	border-radius: 3px;
	right: 15px;
	bottom: 15px;
	background: #E4007F;
	color: #fff;
	transition: display 0.5s ease-in-out;
	z-index: 99999;
}

.back-to-top i {
	font-size: 24px;
	position: absolute;
	top: 8px;
	left: 8px;
}
.back-to-top:hover {
	color: #fff;
	background: #FF33A3;
	transition: background 0.2s ease-in-out;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
	height: 80px;
	transition: all 0.5s;
	z-index: 997;
	transition: all 0.5s;
	padding: 20px 0;
	background: #fff;
}
#header.header-scrolled {
	background: #fff;
	height: 60px;
	padding: 10px 0;
}

#header .logo h1 {
	font-size: 30px;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 1px;
}
#header .logo h1 a, #header .logo h1 a:hover {
	color: #fff;
	text-decoration: none;
}
#header .logo img {
	padding: 0;
	margin: 0;
	max-height: 40px;
}
@media (max-width: 768px) {
	#header .logo h1 {
		font-size: 28px;
		padding: 0;
	}
}
#main {
	margin-top: 80px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-menu>ul>li {
	position: relative;
	white-space: nowrap;
	float: left;
}

.nav-menu a {
	display: block;
	position: relative;
	color: #E4007F;
	padding: 10px 15px;
	transition: 0.3s;
	font-size: 14px;
	font-family: "Open Sans", sans-serif;
}

.nav-menu a:hover, .nav-menu .active>a, .nav-menu li:hover>a {
	color: #FF33A3;
	text-decoration: none;
}
@media screen and (min-width:993px) and (max-width:1200px) {
	.nav-menu a {
	padding: 10px 10px;
	font-size: 14px;
	font-family: "Open Sans", sans-serif;
}
}

.nav-menu .drop-down ul {
	display: block;
	position: absolute;
	left: 0;
	top: calc(100% - 30px);
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	padding: 10px 0;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: ease all 0.3s;
}

.nav-menu .drop-down:hover>ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}

.nav-menu .drop-down li {
	min-width: 180px;
	position: relative;
}
.nav-menu .drop-down ul a {
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 500;
	text-transform: none;
	color: #E4007F;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active>a, .nav-menu .drop-down ul li:hover>a {
	color: #FF33A3;
}

.nav-menu .drop-down>a:after {
	content: "\ea99";
	font-family: IcoFont;
	padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
	top: 0;
	left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover>ul {
	opacity: 1;
	top: 0;
	left: 100%;
}

.nav-menu .drop-down .drop-down>a {
	padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
	content: "\eaa0";
	font-family: IcoFont;
	position: absolute;
	right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }

  .nav-menu .drop-down .drop-down:hover>ul {
    left: -100%;
  }

  .nav-menu .drop-down .drop-down>a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  /* rightにすると右から出現する */
  width: 260px;
  padding-top: 18px;
  background: #fff;
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #E4007F;
  padding: 10px 20px;
}

.mobile-nav a:hover, .mobile-nav .active>a, .mobile-nav li:hover>a {
  color: #FF33A3;
  text-decoration: none;
}

.mobile-nav .drop-down>a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down>a:after {
  content: "\eaa0";
}

.mobile-nav .drop-down>a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #E4007F;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  right: 0;
  position: fixed;
  background: rgba(220, 220, 220, 0.8);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
  /* rightにすると右から出現する */
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #333;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 60vh;
  background: url("../img/hero-background-2.jpg") top center;
  background-size: cover;
  position: relative;
  margin-bottom: -80px;
  margin: auto;
  overflow: hidden;
}
@media (min-width: 768px) {
	#hero {
	  height: 90vh;
	  margin-bottom: -80px;
	  margin: auto;
	  overflow: hidden;
	}
}
/*--------------------------------------------------------------
# スライダーを使う場合ここから↓
--------------------------------------------------------------*/
#hero .bgImg {
  position   : absolute;
  top        : 0;
  left       : 0;
  bottom     : 0;
  right      : 0;
  opacity    : 0;
  animation  : bgAnime 20s infinite;
}
#hero .src1 {
	background: url("../img/slider-1.webp") top center;
	background-size: cover;
	width: 100%;
	overflow: hidden;
	margin: auto;
}
#hero .src2 {
	background: url("../img/slider-2.webp") top center;
	background-size: cover;
	width: 100%;
	overflow: hidden;
	margin: auto;
  animation-delay  : 5s;
}
#hero .src3 {
	background: url("../img/slider-3.webp") top center;
	background-size: cover;
	width: 100%;
	overflow: hidden;
	margin: auto;
  animation-delay  : 10s;
}
#hero .src4 {
	background: url("../img/slider-4.webp") top center;
	background-size: cover;
	width: 100%;
	overflow: hidden;
	margin: auto;
  animation-delay  : 15s;
}
@keyframes bgAnime {
   0% { opacity: 0; }
   5% { opacity: 1; }
  25% { opacity: 1; }
  30% { opacity: 0; }
 100% { opacity: 0; }
}
/*--------------------------------------------------------------
# スライダーを使う場合ここまで↑
--------------------------------------------------------------*/

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  padding-top: 80px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
  -webkit-filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, .9));
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, .9));
  font-family: 'Noto Serif JP', serif;
}

#hero h2 {
  color: #eee;
  margin-bottom: 50px;
  font-size: 20px;
  font-weight: 300;
}

#hero_low {
  width: 100%;
  height: 35vh;
  background-size: cover;
  position: relative;
  margin-bottom: -35px;
}
.about_hero {
  background: url("../img/hero-background-1.webp") top center;
}
.guidance_hero {
  background: url("../img/hero-background-2.webp") top center;
}
.feature_hero {
  background: url("../img/hero-background-3.webp") top center;
}
.facility_hero {
  background: url("../img/hero-background-4.webp") top center;
}
.checkup_hero {
  background: url("../img/hero-background-5.webp") top center;
}
.q-a_hero {
  background: url("../img/hero-background-6.webp") top center;
}
.for-medical_hero {
  background: url("../img/hero-background-7.webp") top center;
}

#hero_low:before {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero_low .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  padding-top: 125px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#hero_low h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 500;
  line-height: 56px;
  color: #fff;
  -webkit-filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, .9));
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, .9));
}

#hero_low h2 {
  color: #fff;
  margin-bottom: 50px;
  font-size: 20px;
  font-weight: 300;
  -webkit-filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, .9));
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, .9));
}

#hero .btn-get-started {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px 10px 28px;
  border-radius: 50px;
  transition: 0.5s;
  border: 1px solid #fff;
  color: #fff;
}

#hero .btn-get-started:hover {
  background: #fff;
  color: #70b9b0;
  border: 1px solid #70b9b0;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }

  #hero h1 {
    font-size: 60px;
  }

  #hero_low {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero_low {
    height: 28vh;
    margin-bottom: -40px;
  }

  #hero_low .hero-container {
    padding-top: 120px;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero_low h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero_low h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: #FFEBF6;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #555;
}

.section-title p {
  margin-bottom: 0;
}
.conts-title {
}
.conts-title h3 {
	padding: 1rem 1.5rem;
  border-bottom: 1px dashed #E4007F;
  background: #FFEBF6;
	font-size: 140%;
	color: #E4007F;
	margin-bottom: 1.5em;
}
.conts-title .bg_wht {
	background: #fff;
}
/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about h3 {
  font-weight: 400;
  font-size: 26px;
}

.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 10px;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #70b9b0;
}

.about p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
  text-align: center;
}

.services .icon {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.services .icon i {
  color: #70b9b0;
  font-size: 42px;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  text-transform: uppercase;
}

.services .title a {
  color: #343a40;
  transition: 0.3s;
}

.services .icon-box:hover .title a {
  color: #70b9b0;
}

.services .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Call To Action
--------------------------------------------------------------*/
.call-to-action {
  background: linear-gradient(rgba(1, 41, 42, 0.5), rgba(7, 56, 57, 0.5)), url("../img/dammy/call-to-action-bg.jpg") fixed center center;
  background-size: cover;
  padding: 60px 0;
}

.call-to-action h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.call-to-action p {
  color: #fff;
}

.call-to-action .cta-btn {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.call-to-action .cta-btn:hover {
  background: #70b9b0;
  border: 2px solid #70b9b0;
}

/*--------------------------------------------------------------
# Our Portfolio
--------------------------------------------------------------*/
.portfolio {
  padding: 60px 0;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 0 35px 0;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 0 15px 15px 0;
  display: inline-block;
  padding: 10px 20px;
  font-size: 12px;
  line-height: 20px;
  color: #777;
  border-radius: 4px;
  text-transform: uppercase;
  background: white;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  background: #70b9b0;
  color: #fff;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  background: #073839;
  overflow: hidden;
  min-height: 200px;
  position: relative;
  border-radius: 4px;
  margin: 0 0 30px 0;
}

.portfolio .portfolio-item img {
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  transition: all .3s linear;
  text-align: center;
  top: 10%;
  left: 0;
  right: 0;
}

.portfolio .portfolio-item .portfolio-info h3 {
  font-size: 22px;
}

.portfolio .portfolio-item .portfolio-info h3 a {
  color: #fff;
  font-weight: bold;
}

.portfolio .portfolio-item .portfolio-info a i {
  color: #70b9b0;
  font-size: 24px;
}

.portfolio .portfolio-item:hover img {
  opacity: 0.4;
  transform: scale(1.1);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  top: calc(50% - 30px);
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  padding: 0 0 20px 25px;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: #70b9b0;
  font-size: 18px;
  font-weight: 500;
}

.faq .faq-list i {
  font-size: 18px;
  position: absolute;
  left: -25px;
  top: 6px;
}

.faq .faq-list p {
  margin-bottom: 20px;
  font-size: 15px;
}

.faq .faq-list a.collapse {
  color: #70b9b0;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #70b9b0;
}

.faq .faq-list a.collapsed i::before {
  content: "\eab2" !important;
}

/*--------------------------------------------------------------
# Our Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  background: #fff;
}

.team .member img {
  max-width: 60%;
  border-radius: 50%;
  margin: 0 0 30px 0;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #aaaaaa;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  color: #92cac3;
  transition: 0.3s;
}

.team .member .social a:hover {
  color: #3c8b81;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
.contact .contact-about h3 {
  font-size: 36px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 1px;
  color: #70b9b0;
}

.contact .contact-about p {
  font-size: 14px;
  line-height: 24px;
  font-family: "Lato", sans-serif;
  color: #888;
}

.contact .social-links {
  padding-bottom: 20px;
}

.contact .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fff;
  color: #70b9b0;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid #70b9b0;
}

.contact .social-links a:hover {
  background: #70b9b0;
  color: #fff;
}

.contact .info {
  color: #777;
}

.contact .info i {
  font-size: 32px;
  color: #70b9b0;
  float: left;
  line-height: 1;
}

.contact .info p {
  padding: 0 0 10px 42px;
  line-height: 28px;
  font-size: 14px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form button[type="submit"] {
  background: #70b9b0;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #92cac3;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer_bottom {
  background: #FFEBF6;
  padding: 2em 0 0.3em 0;
  color: #777;
  font-size: 14px;
}
.copyright {
  text-align: center;
	font-size: 85%;
	padding: 1em 0;
	color: #777;
}

/*--------------------------------------------------------------
# footer　custom
--------------------------------------------------------------*/
@media (max-width: 992px) {
  .footer_navi {
    display: none;
  }
}
.footer_navi ul {
  text-align: center;
  margin-top: 1.5em;
}
.footer_navi ul li {
  display: inline-block;
  text-align: center;
  margin: 1em 1em;
  list-style: none;
}
.footer_ctct {
  text-align: center;
}
.footer_ctct .instagram img {
	max-width: 200px;
}
.footer_ctct .instagram img:hover {
	opacity: 0.5 ;
	transition: .3s ;
}
.footer_ctct .tel {
  font-size: 200%;
  line-height: 140%;
  font-weight: bold;
}
.footer_ctct .tel a {
  color: #777;
}
.footer_ctct .tel a:hover {
  color: #777;
}
.footer_ctct .mail {
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px 10px 28px;
  border-radius: 50px;
  transition: 0.5s;
  border: 1px solid #fff;
  color: #fff;
}
.footer_ctct .mail:hover {
  background: #fff;
  color: #70b9b0;
  border: 1px solid #70b9b0;
}
.footer_ctct .name {
  font-weight: bold;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}
.footer_ctct .add {
  font-size: 90%;
  margin-bottom: 1em;
}

@media (min-width: 769px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

/* -------------------------------------------- /
   スクロールバー・フィード
/ -------------------------------------------- */
.scrollfeed {
  max-width: 800px;
  height: 20em;
  background-color: #FFEBF6;
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
}
.feed-list {
  list-style-type: none;
  text-align: left;
  height: 100%;
  width: 100%;
}

.feed-item {
  display: block;
}

.feed-item a:link,
.feed-item a:visited {
  color: #454545;
  text-decoration: none;
}

.feed-item a:hover,
.feed-item a:active {
  color: #FF99AD;
  text-decoration: underline;
}

.feed-item dl {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

.feed-item .f_date {
  padding-left: 1em;
  padding-right: 1em;
  padding-top: 1em;
  font-weight: normal;
  font-size: 120%;
  line-height: 140%;
  color: #FF5C7C;
}

.feed-item .f_ttl {
  padding-left: 1em;
  padding-right: 1em;
  padding-bottom: 1em;
  font-weight: normal;
  font-size: 120%;
  line-height: 140%;
  border-bottom-width: 1px;
  border-bottom-style: dotted;
  border-bottom-color: #FF5C7C;
  margin-right: 1em;
}


/*--------------------------------------------------------------
# common　custom
--------------------------------------------------------------*/
.tm_harf_em {
  margin-top: 0.5em;
}

.tm_one_em {
  margin-top: 1em;
}

.tm_two_em {
  margin-top: 2em;
}

.tm_three_em {
  margin-top: 3em;
}

.bm_harf_em {
  margin-bottom: 0.5em;
}

.bm_one_em {
  margin-bottom: 1em;
}

.bm_two_em {
  margin-bottom: 2em;
}

.bm_three_em {
  margin-bottom: 3em;
}

.tbm_harf_em {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.tbm_one_em {
  margin-top: 1em;
  margin-bottom: 1em;
}

.tbm_two_em {
  margin-top: 2em;
  margin-bottom: 2em;
}

.tbm_three_em {
  margin-top: 3em;
  margin-bottom: 3em;
}
.fs120 {
	font-size: 120%;
}
.fs110 {
	font-size: 110%;
}
.fs90 {
	font-size: 90%;
}
.fs85 {
	font-size: 85%;
}
.fs80 {
	font-size: 80%;
}
.b_border {
	border-bottom: solid 1px #777;
	padding-bottom: 0.4em;
}
@media (min-width: 993px) {
  .pc_left {
    text-align: left !important;
  }
}

.txt_pink {
  color: #E4007F;
}
.subheading {
	color: #E4007F;
	font-size: 130%;
	margin-bottom: 0.5em;
}
.bdr_box {
  padding: 1em;
  background: #fff;
  border: solid 2px #E4007F;
	color: #E4007F;

}
.sdw_box {
  padding: 1em;
  background: #fff;
  -webkit-filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, .1));
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, .1));
}
.link_btn {
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px 10px 28px;
  border-radius: 50px;
  transition: 0.5s;
  border: 1px solid #E4007F;
  color: #E4007F;
}

.link_btn:hover {
  background: #FF87A0;
  color: #fff;
  border: 1px solid #fff;
}
.w100p {
	width: 100%;
	font-size: 24px;
}
.modal-footer {
  justify-content: flex-start;
}
#map {
	width: 100%;
	box-sizing: border-box;
	margin: 0 auto;
}
#map .inner {
	position: relative;
	height: 0;
	padding-top: 56.25%;
	overflow: hidden;
}
#map .inner iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
@media (max-width: 960px) {

	#map .inner {
		padding-top: 75%;
	}
}
@media (max-width: 600px) {

	#map .inner {
		padding-top: 100%;
	}
}
@media (min-width: 1200px) {

	#map .inner {
		padding-top: 75%;
	}
}
.consul_list li {
  padding-bottom: 1em;
}
.first li {
  padding-bottom: 1em;
}
.quest_table {
  margin-right: 2em;
}

/*--------------------------------------------------------------
# about　custom
--------------------------------------------------------------*/
.greeting {
	font-size: 120%;
}
.career_ttl {
  padding-bottom: 0.5em;
  border-bottom: 1px dotted #ccc;
}
.career_list {
  padding: 0;
  margin: 0;
}

.career_list dt {
  padding-top: 0.2em;
  padding-bottom: 0.6em;
  float: left;
  width: 5.5em;
}
.career_list dd {
  padding-top: 0.2em;
  padding-bottom: 0.6em;
  border-bottom: 1px dotted #ccc;
  padding-left: 5.5em;
}

/*--------------------------------------------------------------
# guidance　custom
--------------------------------------------------------------*/
/* テーブル横スクロール */
.t_scroll {
  width: 100%;
  overflow-y: hidden;
  overflow-x: auto;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1em;
}
.t_scroll table {
  border-collapse: collapse;
}
.t_scroll th,
.t_scroll td {
  border: solid 1px #ccc;
  white-space: nowrap;
  padding: 1em;
  font-size: 140%;
  line-height: 140%;
  background-color: #FFF;
  width: auto;
  text-align: center;
}
.t_scroll td span {
  display: block;
  font-size: 85%
}
.t_scroll .txt_red {
  color: rgb(255, 0, 0)
}
.t_scroll::-webkit-scrollbar {
  height: 8px;
  /* スクロールバーの高さ */
}
.t_scroll::-webkit-scrollbar-thumb {
  background: #aaa;
  /* スクロールバーの色 */
}
.t_scroll::-webkit-scrollbar-track {
  background: #ccc;
  /* スクロールバーの背景色 */
}

/*--------------------------------------------------------------
# facility　custom
--------------------------------------------------------------*/
.outline_list {
	padding: 0;
	margin: 0;
	font-size: 120%;
}
.outline_list dt {
  padding-top: 0.2em;
  	text-align: left;
  width: 100%;
}
.outline_list dd {
  padding-top: 0.2em;
  padding-bottom: 0.6em;
  border-bottom: 1px dotted #777;
  width: 100%;
}
@media (min-width: 769px) {
	.outline_list {
	  padding: 0;
	  margin: 0;
		font-size: 120%;
	}
	.outline_list dt {
	  padding-top: 0.2em;
	  padding-bottom: 0.6em;
		text-align: right;
	  float: left;
	  width: 7em;
	}
	.outline_list dd {
	  padding-top: 0.2em;
	  padding-bottom: 0.6em;
	  border-bottom: 1px dotted #777;
	  padding-left: 13em;
	}
}
/*--------------------------------------------------------------
# checkup　custom
--------------------------------------------------------------*/
.step_area {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 3em;
}
.step_box {
	position:relative;
	background: #FF33A3;
	padding: 1em 1em 0.3em 1em;
	color: #fff;
	width: 100%;
	margin: 0;
}
.step_box2 {
	position:relative;
	background: #FF33A3;
	padding: 1em 1em 0.3em 1em;
	color: #fff;
	width: 100%;
	margin: 0;
}
.step_box .step_number {
	position: absolute;
	left: 0;
	top: -1.8em;
	background: #FF33A3;
	padding: 0.2em 0.7em;
}
.step_box2 .step_number {
	position: absolute;
	left: 0;
	top: -1.8em;
	background: #FF33A3;
	padding: 0.2em 0.7em;
}
@media (max-width: 349px) {
	.step_area {
		margin-bottom: 4em;
	}
	.step_box:after{
		border-width: 2em 43vw 0 43vw;
	}
	.step_box2:after{
		border-width: 2em 43vw 0 43vw;
	}
}
@media screen and (min-width:350px) and ( max-width: 575px) {
	.step_area {
		margin-bottom: 4em;
	}
	.step_box:after{
		border-width: 2em 45vw 0 45vw;
	}
	.step_box2:after{
		border-width: 2em 45vw 0 45vw;
	}
}
@media screen and (min-width:576px) and ( max-width: 767px) {
	.step_area {
		margin-bottom: 4em;
	}
	.step_box:after{
		border-width: 2em 16em 0 16em;
	}
	.step_box2:after{
		border-width: 2em 16em 0 16em;
	}
}
@media (max-width: 767px) {
	.step_box:after{
		content: "";
		position:absolute;
		bottom:-2em;
		width:0;
		height:0;
		left:0;
		right:0;
		border-style: solid;
		border-color: #FF33A3 transparent transparent transparent;
	}
	.step_box2:after{
		content: "";
		position:absolute;
		bottom:-2em;
		width:0;
		height:0;
		left:0;
		right:0;
		border-style: solid;
		border-color: #FF33A3 transparent transparent transparent;
	}
}
@media (min-width: 768px) {
	.step_box {
		margin: 0 2em 0 0;
	}
	.step_box2 {
		margin: 0 2em 0 0;
	}
	.step_box:after{
		content: "";
		position:absolute;
		top:0;
		right:-2em;
		width:0;
		height:0;
		border-style: solid;
		border-color: transparent transparent transparent #FF33A3;
		border-width: 3.4em 0 3.4em 2em;
	}
	.step_box2:after{
		content: "";
		position:absolute;
		top:0;
		right:-2em;
		width:0;
		height:0;
		border-style: solid;
		border-color: transparent transparent transparent #FF33A3;
		border-width: 5.6em 0 5.6em 2em;
	}
}
@media (min-width: 992px) {
	.step_box:after{
		border-width: 2.65em 0 2.65em 2em;
	}
	.step_box2:after{
		border-width: 4.2em 0 4.2em 2em;
	}
}
@media (min-width: 1200px) {
	.step_box:after{
		border-width: 2.65em 0 2.65em 2em;
	}
	.step_box2:after{
		border-width: 3.4em 0 3.4em 2em;
	}
}
.step_last_box {
	position:relative;
	background: #FF33A3;
	padding: 1em 1em 0.3em 1em;
	color: #fff;
	margin: 0;
	width: 100%;
}
.step_last_box .step_number {
	position: absolute;
	left: 0;
	top: -1.8em;
	background: #FF33A3;
	padding: 0.2em 0.7em;
}

/*--------------------------------------------------------------
# q-a　custom
--------------------------------------------------------------*/
.answer {
	text-indent: -1em;
	padding-left: 1em
}

/*--------------------------------------------------------------
# for-medical　custom
--------------------------------------------------------------*/
.burden_tb {
}
.burden_tb tr td {
	font-size: 100%;
}
.burden_tb .tb_bg_pk {
	background: #FFEBF6;
}
