@charset "UTF-8";
.hero {
  /*position: relative;
    width: 100%;
    height: 800px;
    background: url(../img/index/img_hero.jpg);
    background-size: cover;
    background-position: top;

    .trim {
        display: none;

        img {
            direction: none;
        }
    }

    .hero_txt {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        width: 700px;
        max-height: 180px;
        background-color: rgba(242, 161, 188, 0.5);
        text-align: center;

        p {
            color: #fff;
            padding: 50px;
            font-size: 20px;
            line-height: 2em;
        }
    }*/
  width: 980px;
  margin: 40px auto;
}

.hero .slider__item {
  display: block;
  height: 500px;
  width: 980px;
}

.hero .slider__item .slid_sp {
  display: none;
}

.hero .swiper-button-next,
.hero .swiper-button-prev {
  background-image: none;
}

.hero .swiper-button-next,
.hero .swiper-button-prev {
  width: 28px;
  height: 28px;
  margin-top: -14px;
  border-top: 2px solid #989898;
  border-right: 2px solid #989898;
}

.hero .swiper-button-next {
  right: 16px;
  transform: rotate(45deg);
}

.hero .swiper-button-prev {
  left: 16px;
  transform: rotate(225deg);
}

.hero .swiper-pagination-bullet-active {
  background: #B4D2F7;
}

.news {
  background: #F2F2F2;
  padding: 60px 0;
}

.news .inner {
  width: 980px;
  margin: 0 auto;
  /* news差し替え時用css */
}

.news .inner h2 {
  position: relative;
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: 20px;
  color: #323232;
  padding-bottom: 30px;
  margin-bottom: 40px;
}

.news .inner h2:after {
  content: url(../img/index/border.png);
  position: absolute;
  bottom: 0;
  left: 0;
}

.news .inner dl {
  margin-bottom: 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid #e0e0e0;
}

.news .inner dl:last-child {
  border: none;
}

.news .inner dt {
  display: inline-block;
  float: left;
  width: 20%;
}

.news .inner dd {
  display: inline-block;
  float: right;
  width: 80%;
}

.news .inner .news__ttl {
  margin-bottom: 24px;
  line-height: 30px;
  font-weight: 700;
}

.news .inner .news__ttl span {
  display: inline-block;
  font-size: 16px;
  line-height: 24px;
  padding-top: 16px;
}

.news .inner h3 {
  font-size: 20px;
  text-align: center;
  color: #999999;
  margin-bottom: 24px;
}

.news .inner .news__txt {
  width: 800px;
  margin: auto;
}

.news .inner .news__txt p {
  margin-bottom: 24px;
  text-indent: 1em;
}

.news .inner .news__txt .note {
  color: #999999;
  text-align: right;
}

.section__inner {
  margin: auto;
  padding: 120px 0;
  width: 860px;
}

.section__inner .section__ttl {
  font-size: 2.6rem;
  line-height: 5.0rem;
  font-weight: 700;
}

.section__inner .section__box {
  width: 860px;
  margin: 56px auto 0;
}

.section__inner .section__box .txt + .txt {
  margin-top: 24px;
}

.section__inner .section__box .txt--strong strong {
  font-weight: 700;
  font-size: 2.0rem;
  line-height: 3.4rem;
  background: linear-gradient(transparent 60%, #abd0fd 60%);
}

.section__inner .section__box strong {
  color: #323232;
}

.section__area--1 {
  background: linear-gradient(180deg, rgba(190, 218, 255, 0.9), rgba(229, 241, 255, 0.9)), url(../img/index/section1.jpg);
  background-size: cover;
  background-position: center bottom;
}

.section__area--1 .section__ttl {
  color: #20314D;
}

.section__area--2 {
  background: linear-gradient(180deg, rgba(253, 211, 225, 0.9), rgba(252, 238, 242, 0.9)), url(../img/index/section2.jpg);
  background-size: cover;
  background-position: center top;
}

.section__area--2 .section__ttl {
  color: #352f31;
}

.section__area--2 strong {
  background: linear-gradient(transparent 60%, #eeb2c6 60%);
}

.section__area--3 {
  background: linear-gradient(180deg, rgba(190, 218, 255, 0.85), rgba(255, 255, 255, 0.9)), url(../img/index/section3.jpg);
  background-size: cover;
  background-position: center 80%;
}

.section__area--3 .section__inner .section__ttl {
  color: #20314D;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .hero {
    width: 100%;
    height: auto;
    margin: 0 auto;
    /*.trim{
            display: block;
            width: 100%;/* トリミングしたい枠の幅 */
    /*height: 100%;/* トリミングしたい枠の高さ */
    /*position: relative;
            overflow: hidden;
            background: #000;
            img{
                display: block;
                position: absolute;
                top: 50%;
                left: 50%;
                -webkit-transform: translate(-50%, -50%);
                -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
                width: 100%;
                height: auto;
                -webkit-transition:0.2s ease-in-out;
                -moz-transition:0.2s ease-in-out;
                -ms-transition:0.2s ease-in-out;
                -o-transition:0.2s ease-in-out;
                transition:0.2s ease-in-out;
            }
        }
        .hero_txt {
            position: relative;
            top: 230px;
            margin: auto;
            width: 90%;
            background-color: rgba(242, 161, 188, 1);
            text-align: center;

            p {
                color: #fff;
                padding: 5% 0;
                font-size: 2.0rem;
                line-height: 2em;
            }
        }

        */
  }
  .hero .slider__item {
    display: block;
    height: auto;
    width: 100%;
  }
  .hero .slider__item .slid_pc {
    display: none;
  }
  .hero .slider__item .slid_sp {
    display: block;
  }
  .hero .slider__item img {
    width: 100%;
    height: auto;
  }
  .hero .swiper-button-next,
  .hero .swiper-button-prev {
    width: 14px;
    height: 14px;
    margin-top: -7px;
  }
  .news {
    background: #fff;
    padding: 0 0 60px;
    margin-top: 200px;
  }
  .news .inner {
    width: 90%;
    margin: 0 auto;
    /* news差し替え時用css */
  }
  .news .inner h2 {
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 2.4rem;
    color: #323232;
    padding-bottom: 30px;
    margin-bottom: 20px;
  }
  .news .inner h2:after {
    content: '';
    width: 100%;
    height: auto;
    position: static;
    display: block;
    margin: 0 auto;
    border-bottom: 10px solid #B4D2F7;
  }
  .news .inner dl {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .news .inner dl:last-child {
    border: none;
  }
  .news .inner dt {
    display: block;
    float: none;
    width: 100%;
    margin-bottom: 1%;
    color: #7c7c7c;
    font-size: 1.5rem;
  }
  .news .inner dd {
    display: block;
    float: none;
    width: 100%;
  }
  .news .inner .news__ttl {
    margin-bottom: 0;
    line-height: 30px;
    font-weight: 700;
  }
  .news .inner .news__ttl span {
    display: inline-block;
    font-size: 16px;
    line-height: 24px;
    padding-top: 16px;
    margin-bottom: 16px;
  }
  .news .inner h3 {
    font-size: 20px;
    text-align: center;
    color: #999999;
    margin-bottom: 24px;
  }
  .news .inner .news__txt {
    width: 100%;
    margin: auto;
  }
  .news .inner .news__txt .note {
    color: #999999;
    text-align: right;
  }
  .section__area {
    background-image: none;
  }
  .section__inner {
    padding: 64px 0;
    width: 94%;
    margin: auto;
  }
  .section__inner .section__ttl {
    font-size: 1.8rem;
    line-height: 3.8rem;
  }
  .section__inner .section__box {
    width: 100%;
    margin: 40px auto 0;
  }
  .section__inner .section__box .txt + .txt {
    margin-top: 24px;
  }
  .section__inner .section__box .txt--strong strong {
    font-size: 1.8rem;
    line-height: 3.2rem;
  }
  .section__inner .section__box strong {
    color: #323232;
  }
  .section__area--1 {
    background: linear-gradient(180deg, rgba(190, 218, 255, 0.9), rgba(229, 241, 255, 0.9));
  }
  .section__area--2 {
    background: linear-gradient(180deg, rgba(253, 211, 225, 0.9), rgba(252, 238, 242, 0.9));
  }
  .section__area--3 {
    background: linear-gradient(180deg, rgba(190, 218, 255, 0.85), rgba(255, 255, 255, 0.9));
  }
  .footer_index .inner {
    position: relative;
    padding: 0;
    width: 100%;
    flex-direction: column;
  }
  .footer_index .inner .box {
    width: 100%;
    height: auto;
  }
  .footer_index .inner .box h3 {
    display: block;
    width: 90%;
    margin: 0 auto;
    position: static;
    padding: 20px 0;
    font-size: 2.4rem;
  }
  .footer_index .inner .box p {
    display: block;
    position: static;
    width: 86%;
    margin: 0 auto;
    left: 18%;
    padding: 0 0 20px 3%;
    line-height: 2em;
  }
  .footer_index .inner .box .copy {
    position: static;
    width: 86%;
    left: 18%;
    display: block;
    text-align: left;
    display: block;
    margin: 0 auto;
    padding-top: 20px;
  }
  .footer_index .inner .box .bg {
    width: 100%;
    height: 198px;
    overflow: hidden;
    position: relative;
  }
  .footer_index .inner .box .bg img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
  }
}
/*# sourceMappingURL=index.css.map */