@charset "UTF-8";
.btn {
  position: relative;
  display: inline-block;
  background-color: white;
  border: 1px solid black;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: black;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 400;
}

.btn:hover {
  background-color: black;
  color: white;
}

.hero {
  position: relative;
}

.hero__menu-sp {
  position: absolute;
  z-index: 10;
  width: 100%;
}

.hero__arrow {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: inline-block;
  bottom: 60px;
  width: 20px;
  z-index: 10;
}

.hero__main {
  position: absolute;
  top: 43%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 10;
  width: 180px;
}

.hero__header {
  display: none;
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 20;
}

.hero__radius {
  position: absolute;
  bottom: 0;
  z-index: 100;
}

@media (min-width: 900px) {
  .hero__header {
    display: block;
  }
  .hero__logo {
    display: none;
  }
}

.swiper-slide {
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center;
  min-height: 98vh;
}

.swiper-slide_fir {
  background-image: url(../img/main_visual_13-0x0.jpg);
}

.swiper-slide_sec {
  background-image: url(../img/main_visual_7-0x0.jpg);
}

.swiper-slide_thi {
  background-image: url(../img/main_visual_111-0x0.jpg);
}

.swiper-slide_fou {
  background-image: url(../img/main_visual_2-0x0.jpg);
}

.swiper-slide_fiv {
  background-image: url(../img/main_visual_6-0x0.jpg);
}

@media (min-width: 1700px) {
  .swiper-slide {
    background-size: cover;
  }
}

.menu-sp {
  color: white;
  font-size: 14px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.menu-sp__transform {
  -webkit-transform: translateY(-275px);
          transform: translateY(-275px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.menu-sp__link {
  background-color: rgba(0, 0, 0, 0.4);
  height: 53px;
  margin: 1px;
  line-height: 53px;
  padding-left: 40px;
}

.menu-sp__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.menu-sp__bar {
  color: #656c6e;
  background-color: #fff;
  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;
  height: 45px;
  padding: 0 40px;
}

.menu-sp__bartxt {
  margin-bottom: 0;
}

.menu-sp__navi {
  display: inline-block;
  width: 15px;
  height: 15px;
}

@media (min-width: 900px) {
  .menu-sp {
    display: none;
  }
}

.header {
  color: white;
  padding-top: 55px;
  font-size: 14px;
}

.header__inner {
  width: 85%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__logo {
  width: 270px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.header__menu {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__link {
  margin-left: 30px;
  text-decoration: none;
  position: relative;
}

.header__link:hover::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: white;
  position: absolute;
  bottom: -4px;
  left: 0px;
}

.about {
  background-color: #f6f6f6;
  color: #13191b;
  font-size: 15px;
  padding: 60px 0 50px 0;
}

.about__inner {
  width: 85%;
  margin: 0 auto;
}

.about__ttl {
  font-weight: 400;
  font-size: 36px;
  margin-bottom: 30px;
}

.about__img {
  width: 150px;
  padding: 10px 0 20px 0;
}

@media (min-width: 700px) {
  .about {
    font-size: 20px;
  }
  .about__inner {
    width: 400px;
  }
  .about__ttl {
    text-align: center;
    font-size: 44px;
  }
  .about__img-wrapper {
    text-align: center;
  }
  .about__img {
    width: 210px;
  }
}

.product {
  padding: 60px 0 50px 0;
  width: 85%;
  margin: 0 auto;
  text-align: center;
}

.product__head {
  margin-bottom: 40px;
}

.product__ttl {
  font-family: "Gill Sans Std Book";
  font-size: 30px;
  font-weight: 400;
  position: relative;
}

.product__ttl::before {
  content: "";
  background: url(../img/sectionTitle-underLine@2x.png);
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  width: 75px;
  height: 50px;
  top: 50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.product__product-box {
  margin-bottom: 50px;
}

.product__btn {
  font-size: 14px;
  font-weight: 400;
  padding: 10px 60px;
}

.product__pcbtn-wrapper {
  display: none;
  position: relative;
}

.product__btn-pc {
  width: 170px;
  height: 45px;
}

.product__btn-arrow {
  position: absolute;
  width: 10px;
  top: 50%;
  right: 5%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (min-width: 501px) {
  .product {
    width: 90%;
  }
  .product__ttl::before {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    left: 0px;
  }
  .product__pcbtn-wrapper {
    display: block;
  }
  .product__btn {
    display: none;
  }
  .product__head {
    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;
    margin-bottom: 60px;
  }
}

@media (min-width: 770px) {
  .product {
    max-width: 850px;
  }
  .product__boxup {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .product__product-box {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 0 15px;
  }
  .product__boxdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.product-box {
  cursor: pointer;
}

.product-box:hover {
  opacity: 0.6;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.product-box__txt {
  text-align: left;
  font-size: 18px;
  width: 80%;
  margin: 0 auto;
}

@media (min-width: 501px) {
  .product-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .product-box__img-wrapper {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .product-box__txt {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
    padding-top: 30px;
    font-size: 20px;
  }
}

@media (min-width: 770px) {
  .product-box {
    display: initial;
  }
}

.news {
  background-color: #f6f6f6;
  padding: 60px 0 50px 0;
}

.news__head {
  margin-bottom: 40px;
}

.news__inner {
  width: 85%;
  margin: 0 auto;
}

.news__ttl {
  text-align: center;
  font-family: "Gill Sans Std Book";
  font-size: 30px;
  font-weight: 400;
  position: relative;
}

.news__ttl::before {
  content: "";
  background: url(../img/sectionTitle-underLine@2x.png);
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  width: 75px;
  height: 50px;
  top: 50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.news__news-box {
  margin-bottom: 40px;
}

.news__btn-wrapper {
  text-align: center;
}

.news__btn {
  font-size: 14px;
  font-weight: 400;
  padding: 10px 60px;
}

.news__pcbtn-wrapper {
  display: none;
  position: relative;
}

.news__btn-pc {
  width: 170px;
  height: 45px;
}

.news__btn-arrow {
  position: absolute;
  width: 10px;
  top: 50%;
  right: 5%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (min-width: 501px) {
  .news__ttl::before {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    left: 0px;
  }
  .news__inner {
    width: 90%;
    max-width: 850px;
  }
  .news__btn {
    display: none;
  }
  .news__btn-pc {
    display: block;
  }
  .news__pcbtn-wrapper {
    display: block;
  }
  .news__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 60px;
  }
}

.news-box {
  cursor: pointer;
}

.news-box:hover {
  opacity: 0.6;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.news-box__img-wrapper {
  margin-bottom: 15px;
}

.news-box__ttl {
  font-size: 18px;
}

.news-box__desc {
  font-size: 13px;
  display: none;
  color: #656c6e;
}

.news-box__date {
  font-size: 12px;
  color: #656c6e;
}

@media (min-width: 501px) {
  .news-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .news-box__img-wrapper {
    -webkit-box-flex: 1.5;
        -ms-flex: 1.5;
            flex: 1.5;
  }
  .news-box__txt-wrapper {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
    padding-left: 30px;
  }
  .news-box__desc {
    display: block;
  }
}

.sns {
  width: 85%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 30px 0;
  height: 180px;
}

.sns__btn {
  font-size: 13px;
  font-weight: 400;
  width: 200px;
  height: 45px;
  margin-bottom: 5px;
  margin-left: 5px;
}

.sns__btn_facebook {
  border: 1px solid #4871A9;
  color: #4871a9;
}

.sns__btn_facebook:hover {
  background-color: #4871a9;
  color: white;
}

.sns__btn_twitter {
  border: 1px solid #70bdd3;
  color: #70bdd3;
}

.sns__btn_twitter:hover {
  background-color: #70bdd3;
  color: white;
}

.sns__btn_hatena {
  border: 1px solid #2f9bcd;
  color: #2f9bcd;
}

.sns__btn_hatena:hover {
  background-color: #2f9bcd;
  color: white;
}

.sns__btn_line {
  border: 1px solid #8ec09d;
  color: #8ec09d;
}

.sns__btn_line:hover {
  background-color: #8ec09d;
  color: white;
}

@media (min-width: 580px) {
  .sns {
    height: 120px;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 550px;
  }
  .sns__btn {
    width: 150px;
  }
  .sns__btn_line {
    display: none;
  }
}

@media (min-width: 700px) {
  .sns__btn {
    width: 160px;
  }
}

.menu__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-size: 14px;
}

.menu__link {
  color: white;
  background-color: #939899;
  width: 100%;
  height: 55px;
  margin: 0.5px 0;
  line-height: 55px;
}

@media (min-width: 580px) {
  .menu {
    background-color: #939899;
    height: 90px;
  }
  .menu__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 440px;
    margin: auto;
  }
  .menu__link {
    height: 89px;
    line-height: 90px;
  }
}

.footer {
  background-color: #656c6e;
  text-align: center;
  color: white;
  height: 220px;
  font-size: 10px;
  padding: 40px 0;
}

.footer__inner {
  width: 85%;
  margin: 0 auto;
}

.footer__logo {
  width: 90px;
  padding-bottom: 30px;
}

@media (min-width: 580px) {
  .footer__inner {
    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;
    max-width: 780px;
  }
}

/***************************************************************

Stylesheet: ベーススタイル スマートフォン表示

******************************************************************/
body {
  font-family: "Helvetica Neue", Helvetica, Arial, 游ゴシック, YuGothic,
 "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo,
 sans-serif;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: white;
}

a:hover {
  text-decoration: none;
  color: white;
}

.font-sm {
  font-size: 13px;
}

.font-md {
  font-size: 15px;
}

.font-lr {
  font-size: 22px;
}

@media (min-width: 800px) {
  /******************************************************************

Stylesheet: 800px以上のモニタで適用

******************************************************************/
  .font-lr {
    font-size: 24px;
  }
}
/*# sourceMappingURL=style.css.map */