@charset "utf-8";

/* ==================== body ==================== */
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #414141;
}

img {
  width: 100%;
  height: auto;
}

/* ==================== /body ==================== */
/* ==================== header ==================== */
#header {
  position: fixed;
  top: 0;
  width: 100%;
  max-height: 100vh;
  background: #009675;
  opacity: 1.0;
  z-index: 1000;
  overflow: auto;
}

.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 3.0rem;
  position: relative;
}

@media screen and (min-width: 1200px) {
  #header {
    background: rgba(255, 255, 255, 0.75);
  }

  .header_inner {
    height: 5.0rem;
    justify-content: left;
  }
}

/* logo_container */
.logo_container {
  display: flex;
  align-items: center;
  width: 90%;
}

.logo_container img {
  width: auto;
  height: 3.0rem;
  margin-right: 0.5rem;
}

.logo_container h1 {
  font-size: 1.0rem;
  color: #ffffff;
  line-height: 1.25;
}

.logo_container span {
  font-size: 0.75rem;
  font-weight: 400;
  color: #ffffff;
}

@media screen and (min-width: 1200px) {
  .logo_container img {
    height: 4.5rem;
  }

  .logo_container h1 {
    font-size: 2.0rem;
    font-weight: 700;
    line-height: 0.75;
    color: #414141;
  }

  .logo_container span {
    font-size: 1.0rem;
    color: #009675;
  }
}

/* hamburger_container */
.hamburger_container {
  width: 2.0rem;
  height: 1.25rem;
}

.hamburger_inner {
  position: relative;
}

.hamburger_inner li {
  width: 2.0rem;
  height: 0.1rem;
  position: absolute;
  background: #ffffff;
  transition-duration: 0.25s;
}

.hamburger_inner li:nth-child(1) {
  top: 0;
  left: 0;
}

.hamburger_inner li:nth-child(2) {
  top: 0.5rem;
  left: 0;
}

.hamburger_inner li:nth-child(3) {
  top: 1.0rem;
  left: 0;
}

.hamburger_inner.open li:nth-child(1) {
  top: 0.55rem;
  transform: rotate(-45deg);
}

.hamburger_inner.open li:nth-child(2) {
  opacity: 0;
}

.hamburger_inner.open li:nth-child(3) {
  top: 0.55rem;
  transform: rotate(45deg);
}

/* nav_container_sp */
.nav_container_sp {
  display: none;
}

.nav_inner_sp {
  padding: 2.0rem 0;
}

.nav_inner_sp li {
  margin-bottom: 1.0rem;
  font-size: 1.125rem;
  text-align: center;
}

.nav_inner_sp li:last-child {
  margin: 0;
}

.nav_inner_sp .nav_contents_sp {
  margin-bottom: 2.0rem;
  font-size: 0.875rem;
  color: #ffffff;
}

.nav_inner_sp .nav_contents_sp:last-child {
  margin: 0;
  padding: 0;
  border: none;
}

.nav_inner_sp .nav_contents_sp span {
  display: block;
  padding: 0.25rem 0;
  background: #ffffff;
  color: #009675;
}

.nav_inner_sp .nav_contents_sp ul {
  margin-top: 0.25rem;
  margin-top: 1.0rem;
}

.nav_inner_sp .nav_contents_sp ul li {
  font-weight: 400;
}

.nav_inner_sp .nav_contents_sp ul li a {
  color: #ffffff;
}

@media screen and (min-width: 768px) {
  .nav_contents_sp ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav_contents_sp ul li {
    width: 33.3%;
  }
}

/* visit_banner */
@media screen and (min-width: 1200px) {
  .visit_banner {
    position: absolute;
    right: 25%;
  }

  .visit_banner img {
    width: auto;
    height: 3.0rem;
  }
}

@media screen and (min-width: 2400px) {
  .visit_banner {
    right: 15%;
  }
}

/* ==================== /header ==================== */
/* ==================== navigation ==================== */
#nav {
  position: sticky;
  top: 0;
  width: 20.0rem;
  height: 100vh;
  background: #009675;
  overflow: auto;
  z-index: 1000;
}

/* logo_container_pc */
.logo_container_pc {
  margin-bottom: 1.0rem;
  text-align: center;
}

.logo_container_pc img {
  width: 50%;
}

/* nav_inner_pc */
.nav_inner_pc {
  margin-bottom: 5.0rem;
}

.nav_contents_pc {
  margin-bottom: 1.0rem;
  font-size: 1.125rem;
  color: #ffffff;
}

.nav_contents_pc a {
  color: #ffffff;
}

.nav_contents_pc a:hover {
  opacity: 0.5;
}

.nav_contents_pc.each_nursery {
  margin: 0 -15px 1.0rem;
  padding: 1.0rem 0;
  background: #00cfac;
  font-size: 0.875rem;
  text-align: center;
}

.nav_contents_pc.each_nursery ul {
  margin-top: 0.5rem;
}

.nav_contents_pc.each_nursery ul li {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  color: #ffffff;
}

.nav_contents_pc.each_nursery ul li:last-child {
  margin: 0;
}

.nav_contents_pc.common {
  padding-top: 1.0rem;
  border-top: 0.1rem solid #ffffff;
}

/* ==================== /navigation ==================== */
/* ==================== main ==================== */
.main_inner {
  width: 100%;
}

@media screen and (min-width: 1200px) {
  .main_container {
    display: flex;
  }
}

/* breadcrumb_section */
.breadcrumb_section {
  margin: 3.0rem 0;
  background: #e9ecef;
}

.breadcrumb {
  margin: 0;
  padding: 0.75rem 0;
}

@media screen and (min-width: 1200px) {
  .breadcrumb_section {
    margin-top: 5.0rem;
  }
}

/* article_title */
.article_title {
  margin-bottom: 1.0rem;
  padding-left: 0.5rem;
  border-left: 0.25rem solid #a9d165;
  font-size: 1.5rem;
}

.article_detail {
  font-size: 0.875rem;
}

@media screen and (min-width: 992px) {
  .article_title {
    font-size: 2.0rem;
  }

  .article_detail {
    font-size: 1.0rem;
  }
}

/* new_info */
  .new_info{
    display: inline-block;
    margin-left: 0.5rem;
    padding: 0.125rem 0.25rem;
    background: yellow;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: bold;
    color: red;
  }

/* ==================== /main ==================== */
/* ==================== footer ==================== */
#footer {
  position: relative;
  background: #a9d165;
}

#footer:before {
  content: '';
  display: block;
  width: 100%;
  height: 3.0rem;
  position: absolute;
  top: -3.0rem;
  background: url(../img/footer_decoration.png);
  background-position: center;
  background-size: cover;
}

.footer_container {
  padding: 1.0rem 0;
}

@media screen and (min-width: 1720px) {
  #footer:before {
    background-size: contain;
  }
}

/* footer_info */
.footer_info {
  margin-bottom: 1.0rem;
}

.footer_info h4 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  color: #ffffff;
}

.footer_info p {
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.footer_info .linkto_top {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.25rem 1.0rem;
  border: 0.1rem solid #ffffff;
  border-radius: 1.0rem;
}

.footer_info .linkto_top a {
  color: #ffffff;
}

.footer_info .linkto_top a:hover {
  opacity: 0.5;
}

.footer_info>li {
  margin-bottom: 1.0rem;
  font-size: 1.125rem;
  color: #ffffff;
}

.footer_info>li:last-child {
  margin: 0;
}

.footer_info li ul {
  padding-left: 1.125rem;
}

.footer_info li ul li {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.footer_info li ul li:first-child {
  margin-top: 0.5rem;
}

.footer_info li ul li:last-child {
  margin-bottom: 0;
}

.footer_info li ul li a {
  color: #ffffff;
}

.footer_info li ul li a:hover {
  opacity: 0.5;
}

@media screen and (min-width: 768px) {
  .footer_info {
    margin-bottom: 2.0rem;
  }

  .footer_info .tel, .footer_info .fax {
    display: inline-block;
  }

  .footer_info .tel {
    margin-right: 1.0rem;
  }
}

/* link_banner */
.link_banner {
  margin-bottom: 1.0rem;
}

/* copy_right */
.copy_right {
  text-align: center;
}

.copy_right small {
  font-size: 0.75rem;
  color: #ffffff;
}

/* ==================== /footer ==================== */
