@charset "UTF-8";
.flex_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex_between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

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

body {
  font-family: "M PLUS 1p", sans-serif;
  color: #333;
}

.center {
  text-align: center;
}

p,
h1,
h2,
h3,
h4 {
  line-height: 180%;
}

.pink {
  color: #e5497e;
}

h3 {
  font-size: 1.8em !important;
  font-weight: bold !important;
  margin-bottom: 20px !important;
}

h2 {
  font-size: 2.4em !important;
  text-align: center;
}

.h2_wrapper {
  background-color: #ffbcd3;
  padding: 50px 0;
}

.content_lower .h2_wrapper {
  background-color: unset;
  padding: 90px 0;
  background-image: url(../image/lower_h2_bg.jpg);
  background-size: cover;
}

.search {
  margin-top: 40px;
}
.search p {
  text-align: center;
}
.search form {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.search input[type=text] {
  width: 300px;
  padding: 12px;
  border-left: 1px solid #ccc;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.search input[type=submit] {
  padding: 12px 20px;
  border: 1px solid #e5497e;
  cursor: pointer;
  background-color: #e5497e;
  color: #FFF;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.search input[type=submit]:hover {
  opacity: 0.8;
}

.side_bar .search {
  margin-top: 0;
}
.side_bar .search form {
  margin: 0 0 20px 0;
}
.side_bar .search input[type=text] {
  width: 80%;
}
.side_bar .search input[type=submit] {
  width: 20%;
  text-align: center;
  padding: 12px 0;
}

/* フェードイン(スクロールした後) */
.js-fadeUp {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, transform 0.8s;
  transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s;
}

.js-fadeUp.is-inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.js-fadeUp.sec_2.is-inview {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.js-fadeUp.sec_3.is-inview {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
  .pc {
    display: none;
  }
  h3 {
    font-size: 1.5em !important;
  }
  h2 {
    font-size: 2em !important;
    line-height: 140%;
  }
  .h2_wrapper {
    padding: 20px 0;
  }
  .js-fadeUp.sec_2.is-inview {
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
  .js-fadeUp.sec_3.is-inview {
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
}/*# sourceMappingURL=base.css.map */