/* CSS Document */
@charset "utf-8";
html {
  font-size: 100%;
}
body {
  font-family: source-han-sans-japanese, sans-serif;
  line-height: 1.7;
  color: #432;
}
a {
  text-decoration: none;
  color: #000;
}
a:visited {
  color: #000;
}
a:hover {
  color: #2D99E7;
}
/* header
    ----------------------------------*/
.container {
  background-color: #8cc63f;
  width: 100%;
}
.headerWrap {
  background-color: transparent;
  max-width: 768px;
  padding: 20px 10px 20px 10px;
}
.header-logo {
  width: 200px;
  margin: 0 auto;
}
.header-logo a img {}
.header-contact {
  display: none;
}
/* hamburger
    ----------------------------------*/
#menu-btn-check {
  display: none;
}
.hamburger {
  position: fixed;
  top: 10px;
  right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 15, 0.7);
  cursor: pointer;
}
.hamburger-line {
  position: relative;
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
}
.hamburger-line:before, .hamburger-line:after {
  position: absolute;
  content: "";
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
}
.hamburger-line:before {
  top: -8px;
}
.hamburger-line:after {
  top: 8px;
}
#menu-btn-check:checked ~ .hamburger {
  background-color: rgba(0, 0, 15, 0.8);
}
#menu-btn-check:checked ~ .hamburger .hamburger-line {
  background-color: transparent;
}
#menu-btn-check:checked ~ .hamburger span.hamburger-line:before {
  top: 0;
  transform: rotate(45deg);
}
#menu-btn-check:checked ~ .hamburger .hamburger-line:after {
  top: 0;
  transform: rotate(-45deg);
}
.gnav {}
.gnav-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 60px;
  left: 100%; /*leftの値を変更してメニューを画面外へ*/
  z-index: 100;
  background-color: rgba(0, 0, 15, 0.7);
  padding: 70px 50px 20px 50px;
  transition: all 0.5s;
}
.gnav-list {
  display: block;
  width: 100%;
  height: 100%;
}
.gnav-item a {
  display: block;
  width: 100%;
  color: #fff;
  text-decoration: none;
  padding: 10px 15px 10px 15px;
  position: relative;
  border-bottom: solid 1px #fff;
}
.gnav-item a:hover {
  background-color: hsla(0, 0%, 7%, 1.00);
  color: #fff;
}
.gnav-item a:before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 18px;
  right: 4px;
}
#menu-btn-check:checked ~ .gnav-content {
  left: 0;
}
.categoryTitle {
  margin: 0 10px;
  width: calc(100%-20px);
  max-width: 768px;
  text-align: center;
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  background-color: #fff;
  padding-top: 20px;
}
.categoryTitle-inner {
  width: 150px;
  margin: 0 auto;
}
.articleTitle {
  border-bottom: solid 2px #EC6734;
}
/* main  */
.mainWrap {
  width: 100%;
  max-width: 768px;
}
.mainContents {
  background-color: #fff;
  padding: 10px 5px 5px 5px;
  border-radius: 0 0 10px 10px;
  margin: 0 10px 10px;
}
main {
  margin-bottom: 20px;
  padding: 0;
}
.pageContents {
  padding: 0;
}
/* aside */
aside {
  background-color: #ECAB8D;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
}
.asideSection {}
.asideSection_title {
  font-size: 140%;
  color: #fff;
}
.asideSection_contents {}
.subContents {}
.snsBox {}
.snsBox_title {
  font-size: 150%;
  font-weight: 800;
  text-transform: capitalize;
  display: block;
  width: 6em;
  color: #E3E3E3;
  border-left: solid 10px #e3e3e3;
  line-height: 1em;
  padding-left: 1em;
  margin-bottom: 20px;
}
.snsBox_plugin {
  width: 100%;
  max-width: 500px;
  height: 500px;
  max-height: 500px;
}
/* footer */
.footerWrap {
  text-align: center;
  max-width: 1000px;
  background: url("../images/building-line.png") repeat-x #FFFFFF;
  padding-top: 100px;
}
footer {
  background: url("../images/shop-exterior.jpg") no-repeat top center/contain;
  padding-top: 50%;
}
.footerLocation {
  border: solid 5px #D88720;
  border-radius: 10px;
}
.footerLocation_info {
  margin-bottom: 30px;
}
.footerLocation_title {
  text-align: left;
  font-size: 130%;
  width: 80%;
  margin: 0 auto;
  border-bottom: solid #0E9FB7 2px;
}
.footerLocation_info p {
  display: inline-block;
  font-size: 90%;
  text-align: left;
  width: 70%;
  margin: 0 auto;
}
.footerLocation_info p a {
  font-size: 150%;
}
.location_map {
  position: relative;
  text-align: center;
  width: 100%;
  hegith: 0;
  padding-top: 75%;
}
.location_map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* PC用　
----------------------------------*/
@media screen and (min-width: 768px), print {
  .container {
    background-color: #fff;
  }
  .headerWrap {
    background-color: #fff;
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 0 0 0;
  }
  .mainVisual-inner, .mainContents, .footerWrap {
    margin: 0 auto 20px;
  }
  .mainWrap {
    background-color: #ECF3D3;
    padding-top: 40px;
    width: 100%;
    max-width: 100%;
  }
  .mainContents {
    background-color: transparent;
    margin: 10 auto;
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 65% 30%;
    grid-template-areas:
      "main aside";
    gap: 20px;
    max-width: 1000px;
    border-radius: 0;
    border: none;
  }
  .header-logo {
    width: 400px;
    margin: 0;
  }
  .header-logo a img {
    width: 100%;
    height: auto;
  }
  .header-contact {
    display: inherit;
    width: 327px;
  }
  .header-contact a img {
    width: 500px;
  }
  .logoWrap {
    display: flex;
    justify-content: space-between;
  }
  #menu-btn-check {
    display: none;
  }
  .hamburger {
    display: none;
  }
  .gnav {
    padding-bottom: 20px;
    margin-top: 40px;
  }
  .gnav-content {
    width: 100%;
    height: 50px;
    position: inherit;
    background-color: #fff;
    margin: 0 auto;
    padding: 0;
  }
  .gnav-list {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    margin-bottom: 0;
  }
  .gnav-item a {
    display: block;
    width: 160px;
    height: 100%;
    text-decoration: none;
    margin: 0 0 0 20px;
    position: static;
    border-left: dotted 2px #ccc;
    color: #000;
    text-align: left;
    font-weight: bold;
    font-size: 18px;
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
    background-image: url("../images/gnav-all.png");
    background-repeat: no-repeat;
      overflow: hidden;
  }
  .gnav-item a:hover {
    color: #2d99e7;
    background-color: #fff;
    background-repeat: no-repeat;
  }
  .gnav-item a:before {
    display: none;
  }
  /*.gnav-item_service {
    background: url("../images/gnavItem_service_off.png");
  }
  .gnav-item_price {
    background: url("../images/gnavItem_price_off.png");
  }
  .gnav-item_access {
    background: url("../images/gnavItem_access_off.png");
  }
  .gnav-item_contact {
    background: url("../images/gnavItem_contact_off.png");
  }
  .gnav-item_service:hover, .gnav-item_service_on {
    background: url("../images/gnavItem_service_on.png");
  }
  .gnav-item_price:hover, .gnav-item_price_on {
    background: url("../images/gnavItem_price_on.png");
  }
  .gnav-item_access:hover, .gnav-item_access_on {
    background: url("../images/gnavItem_access_on.png");
  }
  .gnav-item_contact:hover, .gnav-item_contact_on {
    background: url("../images/gnavItem_contact_on.png");
  }*/
  .gnav-item a.gnav-item_home {
    background-position: 0px 0px;
    padding-left: 60px;
  }
  .gnav-item a.gnav-item_service {
    background-position: -140px 0px;
   padding-left: 55px;
  }
  .gnav-item a.gnav-item_price {
    background-position: -280px 0px;
    padding-left: 68px;
  }
  .gnav-item a.gnav-item_access {
    background-position: -420px 0px;
    padding-left: 55px;
  }
  .gnav-item a.gnav-item_contact {
    background-position: -560px 0px;
    padding-left: 50px;
  }
  .gnav-item a.gnav-item_home:hover {
    background-position: 0px -70px;
  }
  .gnav-item a.gnav-item_service:hover, .gnav-item_service_on {
    background-position: -140px -70px;
  }
  .gnav-item a.gnav-item_price:hover, .gnav-item_price_on {
    background-position: -280px -70px;

  }
  .gnav-item a.gnav-item_access:hover, .gnav-item_access_on {
    background-position: -420px -70px;
  }
  .gnav-item a.gnav-item_contact:hover, .gnav-item_contact_on {
    background-position: -560px -70px;
  }
  main {
    background-color: #fff;
    border-radius: 10px;
  }
  .pageContents {
    padding: 0 10px;
  }
  /* aside */
  aside {
    background-color: #fff;
    padding: 0;
    border-radius: 10px;
  }
  .asideSection {
    background-color: transparent;
    padding: 20px;
  }
  .snsBox {
    width: 100%;
    max-width: 300px;
  }
  .asideSection_title {
    font-size: 30px;
    font-weight: 400;
    text-transform: capitalize;
    display: block;
    color: #8CC63F;
    line-height: 1em;
    padding-left: 0;
    margin-bottom: 10px;
  }
  .asideSection_contents {
    width: 100%;
    margin: 0 auto;
  }
  /* footer */
  .footerWrap {
    text-align: center;
    max-width: 1000px;
    background: url("../images/building-line.png") repeat-x;
    padding-top: 100px;
  }
  footer {
    background: url("../images/shop-exterior.jpg") no-repeat top center/contain;
    padding-top: 50%;
  }
  .footerLocation {
    border: none;
    display: flex;
    justify-content: space-between;
  }
  .footerLocation_info {
    margin-bottom: 30px;
    width: calc((100%-40px)/3);
  }
  .footerLocation_title {
    font-size: 100%;
    margin: 0;
    border-bottom: solid 2px #0E9FB7;
    width: 100%;
  }
  .footerLocation_info p {
    display: inherit;
    font-size: 90%;
    margin: 0;
    width: 100%;
  }
  .footerLocation_info p a {
    font-size: 150%;
  }
  .location_map {
    position: relative;
    text-align: center;
    border: solid 5px #D88720;
    border-radius: 10px;
    width: 600px;
    height: 0;
    padding-top: 300px;
  }
  .location_map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}