@charset "UTF-8";
/*------------------------------
media query
------------------------------*/
/*------------------------------
変数の定義
--------------------------------*/
/*------------------------------
基本設定
--------------------------------*/
html,
body {
  font-family: 'Noto Sans JP', sans-serif;
  overflow-x: hidden;
}

body {
  letter-spacing: 0.1em;
  text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  color: #000;
}

button {
  font-family: "Noto Sans JP", sans-serif;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

a {
  text-decoration: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

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

p {
  font-weight: 500;
}

.pc_br {
  display: block;
}

.sp_br {
  display: none;
}

.f_80 {
  font-size: 80%;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

@media all and (max-width: 768px) {
  .pc_br {
    display: none;
  }
  .sp_br {
    display: block;
  }
}

.pc_img {
  display: block;
}

.sp_img {
  display: none;
}

.se_none {
  display: none;
}

@media all and (max-width: 768px) {
  .pc_img {
    display: none;
  }
  .sp_img {
    display: block;
  }
}

.se_br {
  display: none;
}

@media all and (max-width: 374px) {
  .se_br {
    display: block !important;
  }
}

@media all and (max-width: 350px) {
  .se_none {
    display: block;
  }
}

/*----------------------------------
wrapper
----------------------------------*/
.wrapper {
  position: relative;
  background: #fff;
  max-width: 1200px;
  min-width: 1200px;
  margin: 0 auto;
  overflow-x: hidden;
  overflow-y: hidden;
}

@media all and (max-width: 768px) {
  .wrapper {
    min-width: auto;
  }
}

/*----------------------------------
header
----------------------------------*/
header {
  width: 1200px;
  position: relative;
}

@media all and (max-width: 768px) {
  header {
    width: 100%;
  }
}

/*----------------------------------
footer
----------------------------------*/
footer.wrapper {
  background-color: #49bab4;
  padding: 30px 0 30px;
}

@media screen and (min-width: 450px) {
  footer.wrapper {
    margin-top: 0px;
    padding: 30px 0 30px;
  }
}

@media screen and (min-width: 769px) {
  footer.wrapper {
    margin-top: 0px;
    padding: 30px 0 30px;
  }
}

footer .footer-wrap .top {
  text-align: center;
}

footer .footer-wrap .top a {
  position: relative;
  color: #fff;
}

footer .footer-wrap .top a::before {
  position: absolute;
  content: "";
  background-image: url(../img/common/arrow_t.png);
  top: -10px;
  left: 50%;
  -webkit-transform: translatex(-50%);
          transform: translatex(-50%);
  width: 17px;
  height: 10px;
}

footer .footer-wrap .sns-list {
  width: calc(100% - 50px);
  padding: 20px 25px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 450px) {
  footer .footer-wrap .sns-list {
    width: 100%;
    max-width: 400px;
    padding: 30px 25px 25px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

footer .footer-wrap .sns-list li {
  width: 100%;
  max-width: 50px;
  padding: 0 5px;
}

@media screen and (min-width: 450px) {
  footer .footer-wrap .sns-list li {
    padding: 0;
  }
}

footer .footer-wrap .sns-list li a.sp-view {
  display: block;
}

@media screen and (min-width: 769px) {
  footer .footer-wrap .sns-list li a.sp-view {
    display: none;
  }
}

footer .footer-wrap .sns-list li a.pc-view {
  display: none;
}

@media screen and (min-width: 769px) {
  footer .footer-wrap .sns-list li a.pc-view {
    display: block;
  }
}

footer .footer-wrap .logo {
  text-align: center;
}

footer .footer-wrap .logo img {
  width: 100%;
  max-width: 90px;
}
/*# sourceMappingURL=common.css.map */