@charset "UTF-8";

/* .m-container
---------------------------------------------------------------------------- */
.m-container {
    margin: 0 auto;
    position: relative;
}

.m-content {
  max-width: 1020px;
  padding: 0 30px;
  margin: 0 auto;
}

.m-section {
  padding: 100px 0;
}

@media screen and (max-width: 767px){

  .m-content {
    padding: 0 20px;
  }

  .m-section {
    padding: 60px 0 50px;
  }

}


/* .m-contact
---------------------------------------------------------------------------- */
.m-contact {
    background: #F8F8F8;
    padding: 100px 0;
}

.m-contact-block {
    border: solid 1px #CCCCCC;
    background: #fff;
    text-align: center;
    padding: 60px 20px;
}

.m-contact-heading {
  font-weight: bold;
  font-size: 1.8rem;
  position: relative;
  padding: 24px 0;
}

.m-contact-heading span {
  position: relative;
  z-index: 1;
  padding: 0 16px;
}

.m-contact-heading span::before {
  position: absolute;
  content: "";
  background: url("../../images/common/txt_right.svg")no-repeat;
  background-size: 10px;
  background-position: center;
  width: 10px;
  height: 100%;
  top: 0;
  right: 0;
}

.m-contact-heading span::after {
  position: absolute;
  content: "";
  background: url("../../images/common/txt_left.svg")no-repeat;
  background-size: 10px;
  background-position: center;
  width: 10px;
  height: 100%;
  top: 0;
  left: 0;
}

.m-contact-heading::before {
  position: absolute;
  content: "";
  background: url("../../images/common/head_contact.svg")no-repeat;
  background-size: 100%;
  background-position: center;
  max-width: 451px;
  width: 90%;
  height: 76px;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}


@media screen and (min-width: 768px){
  .m-contact-2col {
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 40px auto 0;
  }

  .m-contact-2col .m-button {
      width: 34%;
      max-width: 300px;
      margin: 0 10px;
  }

  .m-contact-2col p {
    font-size: 1.8rem;
    font-weight: bold;
    margin-right: 35px;
  }

}

@media screen and (max-width: 767px){

  .m-contact {
      padding: 50px 0;
  }

  .m-contact-block {
      padding: 40px 20px;
  }

  .m-contact-heading::before {
    width: 270px;
  }

  .m-contact-heading {
    font-size: 1.6rem;
    padding: 15px 0;
    margin: 0 0 4px;
  }

  .m-contact-2col + .m-contact-2col {
    margin-top: 20px;
  }

  .m-contact-2col p {
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
  }


}




/* タイトル系
---------------------------------------------------------------------------- */
.m-title01 {
}

.m-heading {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  margin: 0 auto 20px;
}

.m-heading span {
  display: block;
  margin: 0 auto 20px;
}

@media screen and (max-width: 767px){

  .m-heading {
      font-size: 1.8rem;
  }

  .m-heading span {
      margin: 0 auto 15px;
  }

}


/* ボタン系
---------------------------------------------------------------------------- */
.m-button {
    max-width: 440px;
    margin: 0 auto;
    position: relative;
    background: #D61B45;
    border-radius: 30px;
    min-height: 60px;
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
}

.m-button.is-yellow {
  background: #F4BA19;
  margin: 0 0 0 20px;
}

.m-button a {
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
  text-decoration: none;
  position: absolute;
  top: -8px;
  background: url("../../images/common/ico_button.svg")no-repeat,#F3476D;
  background-size: 12px;
  background-position: center right 30px;
  border: solid 2px #D61B45;
  border-radius: 30px;
  transition: .3s;
  font-size: 1.8rem;
  font-weight: bold;
  min-height: 60px;
  padding: 14px 0;
}

.m-button.is-yellow a {
  background: url("../../images/common/ico_button.svg")no-repeat,#FFCE04;
  background-size: 12px;
  background-position: center right 30px;
  border: solid 2px #F4BA19;
}

@media screen and (min-width: 768px){

  .m-button a:hover {
    top: 0;
  }
}

@media screen and (max-width: 767px){

  .m-button {
    max-width: 270px;
    min-height: 56px;
  }

  .m-button a {
    min-height: 56px;
    padding: 12px 0;
    background-position: center right 20px;
  }

  .m-button.is-yellow {
    background: #F4BA19;
    margin: 20px auto 0;
  }

}


/* m-product
---------------------------------------------------------------------------- */

.m-product {
    background: #333333;
    padding: 70px 0 80px;
}

.m-product-content {
    margin: 80px auto 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.m-product-heading {
    max-width: 311px;
    margin: 0 auto;
}

.m-product-box {
    max-width: 200px;
    text-align: center;
    width: 24%;
}

.m-product-box a {
    display: block;
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    font-size: 1.4rem;
}

.m-product-box .img {
    margin: 0 auto 20px;
}

.m-product-box strong {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.1em;
}

@media screen and (min-width: 768px){

  .m-product-box a {
      opacity: 0.8;
      transition: .3s;
  }

  .m-product-box a:hover {
    opacity: 1;
  }


}

@media screen and (max-width: 767px){

  .m-product {
      padding: 35px 0;
  }

  .m-product-content {
    margin: 40px auto 0;
  }

  .m-product-box {
      max-width: inherit;
      width: 47%;
  }

  .m-product-box:nth-child(n + 3) {
    margin-top: 30px;
  }

  .m-product-box strong {
      font-size: 1.8rem;
      letter-spacing: 0;
  }

  .m-product-box a {
    font-size: 1.3rem;
  }
}

/* パーツ系
---------------------------------------------------------------------------- */


.m-lead {
  font-size: 1.6rem;
}

.m-heading-lead {
  text-align: center;
  padding-bottom: 80px;
}

@media screen and (max-width: 767px){

  .m-lead {
    font-size: 1.5rem;
  }

  .m-heading-lead {
    text-align: left;
    padding-bottom: 50px;
    line-height: 1.8;
  }

}



/* その他
---------------------------------------------------------------------------- */
/*-- ページナビゲーション --*/
.m-pageNavi {
    clear: both;
    text-align: center;
    padding: 20px 0;
    margin-top: 60px;
    position: relative;
    font-size: 12px;
    font-weight: 0.75rem;
    font-weight: bold;
    line-height: 14px;
}
.m-pageNavi a {
    padding: 9px 12px;
    margin: 0 3px;
    color: #0588ce;
    background-color: #fff;
    border: 1px solid #0588ce;
    border-radius: 4px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-transition: 0.2s ease-in-out;
    -moz-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}
.m-pageNavi a:hover {
    background-color: rgba(5, 136, 206, 0.3);
    text-decoration: none;
}
.m-pageNavi .current {
    padding: 9px 12px;
    margin: 0 3px;
    background-color: #0588ce;
    border: 1px solid #0588ce;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    color: #fff;
}
.m-pageNavi .prev,
.m-pageNavi .next {
    padding: 9px 13px;
}

@media screen and (max-width: 767px){
}
