@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@400;500;700&family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@500;600&display=swap");
/*変数設定用*/
img {
  max-width: 100%;
  height: auto;
  width: auto;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
  image-rendering: auto;
}

li {
  list-style: none;
}

a {
  color: #349224;
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
}

html {
  font-size: 62.5%;
}

@media only screen and (min-width: 767px) and (max-width: 1280px) {
  html {
    font-size: calc(1000vw / 1280);
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: calc(1000vw / 375);
  }
}

body {
  font-size: 62.5%;
  color: #000;
  /*ゴシック*/
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  /*明朝*/
  /*font-family: Georgia, "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;*/
}

@media screen and (min-width: 768px) {
  body {
    padding-top: 8rem;
  }
}

@media only screen and (min-width: 767px) and (max-width: 1280px) {
  body {
    font-size: calc(1000vw / 1280);
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: calc(1000vw / 375);
    padding-top: 6rem;
  }
  body.is-open {
    position: fixed;
    overflow: hidden;
    width: 100%;
  }
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

input[type="text"]:focus {
  outline: 0;
}

header {
  width: 100%;
  height: 8rem;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  header {
    height: 6rem;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
  }
}

header .header_inner {
  width: 122rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  header .header_inner {
    width: 100%;
  }
}

header #logo {
  width: 29rem;
}

@media screen and (max-width: 767px) {
  header #logo {
    width: 20rem;
    margin-left: 2rem;
    position: relative;
    z-index: 101;
  }
  header #logo.white {
    background: url(../images/common/logo_white.svg) 0 0 no-repeat;
    background-size: 100% auto;
  }
  header #logo.white img {
    opacity: 0;
  }
}

@media screen and (max-width: 767px) {
  header #menu_trigger {
    width: 6rem;
    height: 6rem;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 101;
    background: #349224;
    background: -webkit-gradient(linear, left top, right top, from(#349224), to(#096759));
    background: linear-gradient(to right, #349224 0%, #096759 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#349224', endColorstr='#096759',GradientType=1 );
  }
  header #menu_trigger span {
    position: absolute;
    left: 1.5rem;
    top: 2.9rem;
    display: block;
    width: 3rem;
    height: 0.2rem;
    background-color: #fff;
    -webkit-transition: all 0.3s ease;
    -webkit-transition: all  0.3s ease;
    transition: all  0.3s ease;
  }
  header #menu_trigger span:before {
    -webkit-transition: all 0.3s ease;
    -webkit-transition: all  0.3s ease;
    transition: all  0.3s ease;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: -0.8rem;
    background-color: #fff;
  }
  header #menu_trigger span:after {
    -webkit-transition: all 0.3s ease;
    -webkit-transition: all  0.3s ease;
    transition: all  0.3s ease;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0.8rem;
    background-color: #fff;
  }
  header #menu_trigger.is-open {
    background: transparent;
  }
  header #menu_trigger.is-open span {
    background: transparent;
  }
  header #menu_trigger.is-open span:before {
    top: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  header #menu_trigger.is-open span:after {
    top: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}

header #menu {
  width: 61rem;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

header #menu .menu_parent,
header #menu .menu_link {
  color: #222222;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  cursor: pointer;
}

header #menu .menu_parent:after,
header #menu .menu_link:after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #349224;
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -webkit-transition: all  0.3s ease;
  transition: all  0.3s ease;
}

header #menu .menu_parent:hover:after,
header #menu .menu_link:hover:after {
  opacity: 1;
}

header #menu .menu_parent:hover .menu_child {
  visibility: visible;
  opacity: 1;
}

header #menu .contact_btn {
  width: 21.6rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #349224;
  background: -webkit-gradient(linear, left top, right top, from(#349224), to(#096759));
  background: linear-gradient(to right, #349224 0%, #096759 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#349224', endColorstr='#096759',GradientType=1 );
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
}

header #menu .contact_btn span {
  padding-left: 4rem;
  display: inline-block;
  position: relative;
}

header #menu .contact_btn span:before {
  content: "";
  width: 2rem;
  height: 1.5rem;
  background: url(../images/common/icon_mail.svg) 0 0 no-repeat;
  background-size: 100% auto;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

header #menu .menu_child {
  -webkit-transition: all 0.3s ease;
  -webkit-transition: all  0.3s ease;
  transition: all  0.3s ease;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 8rem;
  left: 0;
  z-index: 100;
  width: 100vw;
  background-color: rgba(255, 255, 255, 0.9);
  padding-top: 3rem;
  padding-bottom: 3rem;
}

header #menu .menu_child .menu_child_inner {
  width: 100rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

header #menu .menu_child .menu_ttl {
  width: 19.5%;
  padding-top: 0.5rem;
}

header #menu .menu_child .menu_ttl span {
  display: block;
  line-height: 1;
}

header #menu .menu_child .menu_ttl .jp {
  font-family: 'Noto Serif JP', sans-serif;
  font-weight: 500;
  color: #349224;
  font-size: 2.8rem;
  letter-spacing: 0.1em;
  padding-bottom: 1rem;
}

header #menu .menu_child .menu_ttl .en {
  font-family: 'Heebo', sans-serif;
  font-weight: 500;
  color: #829A7E;
  font-size: 1.2rem;
  letter-spacing: 0.3em;
}

header #menu .menu_child .menu_child_link {
  width: 80.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

header #menu .menu_child .menu_child_link a {
  width: 28%;
  color: #222222;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #666666;
  position: relative;
  padding-bottom: 0.5rem;
}

header #menu .menu_child .menu_child_link a:after {
  content: "";
  width: 0.6rem;
  height: 1rem;
  background: url(../images/common/menu_arrow.svg) 0 0 no-repeat;
  background-size: 100% auto;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

header #menu .menu_child .menu_child_link a.menu_child_link_long {
  width: 35%;
}

header #menu .menu_child .menu_child_link a.menu_child_link_top {
  margin-bottom: 2.5rem;
}

@media screen and (max-width: 767px) {
  header #menu {
    display: none;
  }
}

header #menu_content {
  display: none;
}

@media screen and (max-width: 767px) {
  header #menu_content {
    width: 100vw;
    height: 100vh;
    padding-top: 6rem;
    background: #349224;
    background: -webkit-gradient(linear, left top, right top, from(#349224), to(#096759));
    background: linear-gradient(to right, #349224 0%, #096759 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#349224', endColorstr='#096759',GradientType=1 );
    position: fixed;
    top: 0;
    left: 0;
    color: #fff;
    z-index: 100;
  }
  header #menu_content .menu_content_inner {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media screen and (max-width: 767px) and (max-width: 767px) {
  header #menu_content .menu_content_inner {
    padding-bottom: 7rem;
  }
}

@media screen and (max-width: 767px) {
  header #menu_content a {
    color: #fff;
  }
  header #menu_content .sp_menu_top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 4rem 2rem 7rem;
    border-bottom: 1px solid #9DC9AC;
  }
  header #menu_content .sp_menu_top ul {
    width: 45%;
  }
  header #menu_content .sp_menu_top ul:last-of-type {
    width: 55%;
  }
  header #menu_content .sp_menu_top ul li {
    font-size: 1.6rem;
    letter-spacing: 0.09em;
    margin-bottom: 2.5rem;
    position: relative;
    padding-left: 2rem;
  }
  header #menu_content .sp_menu_top ul li:last-child {
    margin-bottom: 0;
  }
  header #menu_content .sp_menu_top ul li:before {
    content: "";
    width: 0.8rem;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0;
  }
  header #menu_content .sp_menu_top ul li.menu_policy:before {
    top: 1.4rem;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  header #menu_content .sp_menu_top ul li .icon_window {
    display: block;
    position: relative;
    padding-right: 2rem;
  }
  header #menu_content .sp_menu_top ul li .icon_window:after {
    content: "";
    width: 1.1rem;
    height: 1.1rem;
    background: url(../images/common/icon_window.png) 0 0 no-repeat;
    background-size: 100% auto;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
  }
  header #menu_content .sp_menu_top ul li .icon_window:after {
    top: auto;
    bottom: 0.6rem;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  header #menu_content .sp_menu_insta {
    padding: 6.5rem 2rem 7rem;
    border-bottom: 1px solid #9DC9AC;
  }
  header #menu_content .sp_menu_insta .sp_menu_insta_ttl {
    position: relative;
    padding-left: 2rem;
    font-family: 'Heebo', sans-serif;
    font-weight: 500;
    font-size: 2rem;
    letter-spacing: 0.09em;
    margin-bottom: 3rem;
  }
  header #menu_content .sp_menu_insta .sp_menu_insta_ttl:before {
    content: "";
    width: 0.8rem;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0;
  }
  header #menu_content .sp_menu_insta ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  header #menu_content .sp_menu_insta ul li {
    font-family: 'Heebo', sans-serif;
    font-weight: 500;
    font-size: 1.6rem;
    letter-spacing: 0.04em;
    margin-bottom: 2.5rem;
    width: 50%;
  }
  header #menu_content .sp_menu_insta ul li a {
    padding: 1rem 0 1rem 5rem;
    display: inline-block;
    background-size: 3.6rem auto;
  }
  header #menu_content .sp_menu_insta ul li .insta_wakai {
    background: url(../images/common/insta_wakai.png) 0 center no-repeat;
  }
  header #menu_content .sp_menu_insta ul li .insta_diy {
    background: url(../images/common/insta_diy.png) 0 center no-repeat;
  }
  header #menu_content .sp_menu_insta ul li .insta_diawall {
    background: url(../images/common/insta_diawall.png) 0 center no-repeat;
  }
  header #menu_content .sp_menu_insta ul li .insta_nail {
    background: url(../images/common/insta_nail.png) 0 center no-repeat;
  }
  header #menu_content .sp_menu_bottom {
    padding: 6.5rem 2rem 1rem;
  }
  header #menu_content .sp_menu_bottom ul li {
    margin-bottom: 4rem;
  }
  header #menu_content .sp_menu_bottom ul li a {
    position: relative;
    padding-left: 2rem;
    position: relative;
    padding-right: 2rem;
    font-size: 1.6rem;
    letter-spacing: 0.09em;
  }
  header #menu_content .sp_menu_bottom ul li a:before {
    content: "";
    width: 0.8rem;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0;
  }
  header #menu_content .sp_menu_bottom ul li a:after {
    content: "";
    width: 1.1rem;
    height: 1.1rem;
    background: url(../images/common/icon_window.png) 0 0 no-repeat;
    background-size: 100% auto;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
  }
  header #menu_content .sp_menu_bottom ul li a:before {
    background: -webkit-gradient(linear, left top, right top, from(#349224), to(#0fa280));
    background: linear-gradient(to right, #349224 0%, #0fa280 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#349224', endColorstr='#0fa280',GradientType=1 );
  }
}

footer {
  width: 100%;
  padding: 8.5rem 1.5rem 0;
  position: relative;
  color: #fff;
  overflow: hidden;
  background: #349224;
  background: -webkit-gradient(linear, left top, right top, from(#349224), to(#096759));
  background: linear-gradient(to right, #349224 0%, #096759 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#349224', endColorstr='#096759',GradientType=1 );
}

@media screen and (max-width: 767px) {
  footer {
    padding: 3rem 3rem 0;
  }
}

footer a {
  color: #fff;
}

footer .footer_inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

footer .footer_left {
  width: 21.5%;
  border-right: 1px solid #9DC9AC;
  padding-bottom: 5rem;
}

footer .footer_left .footer_logo {
  width: 14rem;
  padding-bottom: 4rem;
}

footer .footer_left p {
  font-size: 1.2rem;
  line-height: 1.5;
  padding-bottom: 4rem;
}

footer .footer_left .footer_contact_btn a {
  border: 1px solid #fff;
  width: 20.7rem;
  height: 5rem;
  padding-left: 2rem;
  font-size: 1.4rem;
  letter-spacing: 0.09em;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .footer_left .footer_contact_btn a:after {
  content: "";
  background: url(../images/common/footer_mail.png) 0 0 no-repeat;
  background-size: 100% auto;
  width: 4rem;
  height: 1.6rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 2rem;
}

@media screen and (max-width: 767px) {
  footer .footer_left {
    width: 100%;
    border: none;
    padding-bottom: 3.5rem;
  }
  footer .footer_left .footer_logo {
    width: 12rem;
  }
}

footer .footer_center {
  width: 41.6%;
  border-right: 1px solid #9DC9AC;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 4%;
}

footer .footer_center ul {
  width: 31%;
}

footer .footer_center ul:last-of-type {
  width: 58%;
}

footer .footer_center ul li {
  font-size: 1.6rem;
  letter-spacing: 0.09em;
  margin-bottom: 3rem;
  position: relative;
  padding-left: 2rem;
}

footer .footer_center ul li:last-child {
  margin-bottom: 0;
}

footer .footer_center ul li:before {
  content: "";
  width: 0.8rem;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}

footer .footer_center ul li .icon_window {
  position: relative;
  padding-right: 2rem;
}

footer .footer_center ul li .icon_window:after {
  content: "";
  width: 1.1rem;
  height: 1.1rem;
  background: url(../images/common/icon_window.png) 0 0 no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}

@media screen and (max-width: 767px) {
  footer .footer_center {
    display: none;
  }
}

footer .footer_right {
  width: 36.9%;
  padding-left: 4%;
  padding-bottom: 4.5rem;
}

footer .footer_right .footer_right_ttl {
  position: relative;
  padding-left: 2rem;
  font-family: 'Heebo', sans-serif;
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 0.09em;
  margin-bottom: 3rem;
}

footer .footer_right .footer_right_ttl:before {
  content: "";
  width: 0.8rem;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}

footer .footer_right ul li {
  font-family: 'Heebo', sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
}

footer .footer_right ul li:last-child {
  margin-bottom: 0;
}

footer .footer_right ul li a {
  padding: 1rem 0 1rem 5rem;
  display: inline-block;
  background-size: 3.6rem auto;
}

footer .footer_right ul li .insta_wakai {
  background: url(../images/common/insta_wakai.png) 0 center no-repeat;
}

footer .footer_right ul li .insta_diy {
  background: url(../images/common/insta_diy.png) 0 center no-repeat;
}

footer .footer_right ul li .insta_diawall {
  background: url(../images/common/insta_diawall.png) 0 center no-repeat;
}

footer .footer_right ul li .insta_nail {
  background: url(../images/common/insta_nail.png) 0 center no-repeat;
}

@media screen and (max-width: 767px) {
  footer .footer_right {
    display: none;
  }
}

footer .footer_bottom {
  position: relative;
  width: 100%;
  padding: 3rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  footer .footer_bottom {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

footer .footer_bottom:before {
  content: "";
  width: 100vw;
  height: 1px;
  background-color: #9DC9AC;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

footer .footer_bottom ul li {
  padding-right: 5rem;
  display: inline-block;
}

footer .footer_bottom ul li:last-child {
  padding-right: 0;
}

footer .footer_bottom ul li a {
  position: relative;
  padding-left: 2rem;
  position: relative;
  padding-right: 2rem;
  font-size: 1.6rem;
  letter-spacing: 0.09em;
}

footer .footer_bottom ul li a:before {
  content: "";
  width: 0.8rem;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}

footer .footer_bottom ul li a:after {
  content: "";
  width: 1.1rem;
  height: 1.1rem;
  background: url(../images/common/icon_window.png) 0 0 no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}

footer .footer_bottom ul li a:before {
  background: -webkit-gradient(linear, left top, right top, from(#349224), to(#0fa280));
  background: linear-gradient(to right, #349224 0%, #0fa280 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#349224', endColorstr='#0fa280',GradientType=1 );
}

footer .footer_bottom small {
  font-family: 'Heebo', sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 0.09em;
}

@media screen and (max-width: 767px) {
  footer .footer_bottom {
    padding: 2rem 0;
    text-align: center;
  }
  footer .footer_bottom ul {
    display: none;
  }
  footer .footer_bottom small {
    font-size: 1rem;
    display: block;
    text-align: center;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .vpc {
    display: block;
  }
}

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

@media screen and (min-width: 768px) {
  .vsp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .vsp {
    display: block;
  }
}

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

.inner {
  max-width: 1220px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (min-width: 767px) and (max-width: 1220px) {
  .inner {
    padding-right: 3%;
    padding-left: 3%;
  }
}

@media screen and (max-width: 767px) {
  .inner {
    width: 100%;
    padding-right: 5%;
    padding-left: 5%;
  }
}

article {
  position: relative;
}

/* ページTOP */
#page-top {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  font-size: 1.4rem;
  letter-spacing: 0.09em;
  color: #349224;
  background: url(../images/common/pagetop.svg) center 0 no-repeat;
  background-size: 3rem auto;
  padding-top: 3.5rem;
  cursor: pointer;
  z-index: 99;
}

#page-top:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  #page-top {
    position: absolute;
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.bg_gray {
  background-color: #EFEFEF;
}
/*# sourceMappingURL=common.css.map */