@charset "UTF-8";
/*======================================================================
 * ママ・パパに役立つ便利ガイド レイアウト
======================================================================*/
.hero {
  margin: 26px 0 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .hero {
    margin: 14px -5.5vw 20px;
  }
}

.guide-tab {
  margin-bottom: 26px;
}
@media screen and (max-width: 768px) {
  .guide-tab {
    margin-bottom: 15px;
  }
}
.guide-tab ul {
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .guide-tab ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.guide-tab ul li {
  position: relative;
  width: 100%;
  min-height: 50px;
  margin-right: 7px;
  font-size: 1.4rem;
  border-radius: 5px;
  background: #F4F4F4;
}
@media screen and (max-width: 768px) {
  .guide-tab ul li {
    width: calc(50% - 5px);
    min-height: 64px;
    margin-right: 0;
  }
  .guide-tab ul li:nth-child(n+3) {
    margin-top: 20px;
  }
}
.guide-tab ul li:last-child {
  margin-right: 0;
}
.guide-tab ul li.-current {
  position: relative;
  background: #FF8387;
}
.guide-tab ul li.-current:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -15px;
  width: 0;
  height: 0;
  margin: auto;
  border: 6px solid transparent;
  border-top: 10px solid #FF8387;
}
.guide-tab ul li.-current a {
  color: #ffffff;
  font-weight: bold;
}
.guide-tab ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding: 10px;
  color: #000;
  text-decoration: none;
}
@media screen and (max-width: 390px) {
  .guide-tab ul li a {
    padding: 5px;
    font-size: 1.2rem;
  }
}

.guide-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding-bottom: 5px;
  color: #FF8B8B;
  font-weight: normal;
}
.guide-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: currentColor;
  border-radius: 5px;
}
.guide-heading .icon {
  width: 64px;
  margin: 0 13px 0 3px;
}
.guide-heading .text {
  font-size: 2.2rem;
  line-height: 1.5;
}

/* ------------------------------------------------------------
  * 共通
------------------------------------------------------------ */
.plain-text {
  margin: -8px 0 28px;
}
.plain-text p {
  font-size: 1.5rem;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .link-button-group {
    margin-bottom: 28px;
  }
}
.link-button-group .link-button {
  color: #FF8B8B;
  border-color: #FF8B8B;
}
.link-button-group .link-button span {
  margin-top: -0.2em;
}
.link-button-group .link-button span::after {
  content: "";
  display: inline-block;
  position: relative;
  top: 4px;
  width: 17px;
  height: 21px;
  -webkit-mask: url("../images/common/icon-pdf.svg") no-repeat 0 0;
  mask: url("../images/common/icon-pdf.svg") no-repeat 0 0;
  background-color: currentColor;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.link-button-group .link-button::after {
  border-color: #FF8B8B;
}

.link-text {
  margin: -10px 0 15px;
  text-align: center;
}
/* @media screen and (max-width: 768px) {
  .link-text {
    margin: -13px 0 -14px;
  }
} */
.link-text a {
  color: #FF8B8B;
  font-size: 1.2rem;
  text-decoration: none;
}
@media screen and (max-width: 330px) {
  .link-text a {
    font-size: 1.1rem;
  }
}

/* ------------------------------------------------------------
  * 施設情報
------------------------------------------------------------ */
.facilities-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 680px;
  margin: 48px auto 20px;
}
@media screen and (max-width: 768px) {
  .facilities-block {
    margin: 36px auto 0;
  }
}
.facilities-block .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(50% - 10px);
  margin-bottom: 20px;
}
.facilities-block .item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: 100%;
  color: #fff;
  text-decoration: none;
  border: 1px solid #FF8B8B;
  border-radius: 16px;
  background: rgba(255, 139, 139, 0.2);
  overflow: hidden;
}
.facilities-block .item .image {
  text-align: center;
}
.facilities-block .item .text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  padding: 14px 32px 10px 36px;
  font-size: 1.2rem;
  background: #FF8B8B;
}
.facilities-block .item .text::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  width: 4px;
  height: 4px;
  margin: auto;
  border: 1px solid #fff;
  border-width: 1px 1px 0 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.facilities-block .item .text p {
  letter-spacing: -1px;
}
.facilities-block .item .text p.title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 13px;
  margin-bottom: -8px;
}
.facilities-block .item .text p.title img {
  width: auto;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .facilities-block .item {
    margin-bottom: 22px;
  }
  .facilities-block .item .text {
    padding: 5px 10px 5px 7px;
  }
  .facilities-block .item .text::after {
    right: 4px;
  }
  .facilities-block .item .text p.title {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media screen and (max-width: 364px) {
  .facilities-block .item .text {
    font-size: 1rem;
  }
}

.break-brock {
  position: relative;
  margin: 60px 0 50px;
  padding: 35px 20px 40px;
  background: rgba(20, 174, 204, 0.1);
}
@media screen and (max-width: 768px) {
  .break-brock {
    margin: 15px -5.5vw 20px;
    padding: 50px 5.5vw 40px;
  }
}
.break-brock::before, .break-brock::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 55px;
}
.break-brock::before {
  left: 0;
  background: url("../images/mama_guide/obj-flag01.png") 0 0/contain no-repeat;
}
.break-brock::after {
  right: 0;
  background: url("../images/mama_guide/obj-flag02.png") 0 0/contain no-repeat;
}
.break-brock h3 {
  margin-bottom: 40px;
  color: #14AECC;
  font-size: 2.2rem;
  font-weight: normal;
  line-height: 1.64;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .break-brock h3 {
    margin-bottom: 30px;
  }
}
.break-brock .break-places {
  max-width: 660px;
  margin: 0 auto;
}
.break-brock .break-places .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.break-brock .break-places .item:not(:last-child) {
  margin-bottom: 40px;
}
.break-brock .break-places .image {
  position: relative;
  width: 48.48%;
  padding-bottom: 10px;
  text-align: center;
}
.break-brock .break-places .image .title {
  position: absolute;
  left: 10px;
  bottom: 0;
  width: 84px;
  height: 83px;
}
.break-brock .break-places .text {
  width: 42.42%;
  font-size: 1.4rem;
  line-height: 1.94;
}
.break-brock .break-places .text p {
  margin: 0;
}
.break-brock .break-places .text .title {
  margin-bottom: 6px;
  color: #14AECC;
  font-size: 1.6rem;
  line-height: 1.6875;
}
@media screen and (max-width: 768px) {
  .break-brock .break-places .item {
    display: block;
  }
  .break-brock .break-places .image {
    width: 100%;
  }
  .break-brock .break-places .image img {
    width: 100%;
  }
  .break-brock .break-places .text {
    width: 100%;
    margin-top: 5px;
    padding: 0 20px;
  }
}