@charset "UTF-8";
body {
  background-image: url(../images/body-bg.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: bottom;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体",
    "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
@media screen and (min-width: 750px) {
  .body-inner {
    max-width: 750px;
    box-shadow: 0 1px 20px rgb(0 0 0 / 30%);
    background: #fff;
    margin-left: auto;
    margin-right: auto;
  }
}
img {
  width: 100%;
  margin-top: -1px; /*--隙間調整--*/
}

/* フローティングバナー */
/* ============================================ */
  .float-bnr {
    height: 0;
    opacity: 0;
    transition: 1s;
    pointer-events: none;
  }

@media screen and (max-width: 750px) {
  .float-bnr.show {
    display: flex;
    height: auto;
    opacity: 1;
    transition: 1s;
    pointer-events: painted;
    position: fixed;
    bottom: 0px;
    z-index: 9999;
  }
}
/* フローティングバナー ここまで */
/* ============================================ */

/* コンテンツの横幅 */
/* ============================================ */
.contents-inner {
  width: 100%;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
/* コンテンツの横幅 ここまで */
/* ============================================ */
header {
  position: fixed;
  width: 100%;
  padding: 3% 5%;
  background-color: rgba(255,255,255,0.8);
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  z-index: 9999;
}

.header-inner {
  display:  flex;
  justify-content: space-between;
  align-items: center;
}

header img {
  width: 100%;
  padding: 0 10px;
}

@media screen and (max-width: 750px) {
  .pc_btn {
    display: none;
  }

  header img {
    width: 60%;
    padding: 0;
  }
}

/* スライダー */
/* ============================================ */
.swiper-container {
  background-image: url(../images/noguchi_07.png);
  background-size: cover;
}


.slider {
  width: 100%;
  margin: 0 auto;
  padding: 4% 0 12% 0;
}

.slider img {
  width: 92%;
  display: block;
  padding-bottom: 40px;
  margin: 0 auto;
}

.slider .pagination {
  text-align: center;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  margin: 5px;
}

.swiper-pagination-bullet-active {
  background: #565656; /*スライダーのドットの色*/
}

/* スライダー ここまで*/
/* ============================================ */



/* footer */
/* ============================================ */
footer {
  display: block;
  padding: 30px 0 70px 0;
  background: #ffffee;
}

footer .copyright {
  text-align: center;
  line-height: 1.5em;
  padding: 15px 0;
  font-size: 14px;
  padding-bottom: 15px;
  color: #303030;
}
/* footer ここまで */
/* ============================================ */
