@charset "UTF-8";
/*CSSライブラリのインポート*/
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&display=swap&subset=japanese");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #333;
  font-family: "Sawarabi Mincho", serif;
  font-weight: 400;
  font-style: normal;
  scroll-behavior: smooth;
  font-size: 14px;
}

a {
  text-decoration: none;
  cursor: pointer;
}

button {
  width: 500px;
  height: 50px;
  margin: 48px auto 96px;
  padding: 0;
  font-size: 18px;
  text-align: center;
  font-weight: bold;
  line-height: 50px;
  text-decoration: none;
  color: #fff;
  background: #333;
  border-radius: 4px;
  -webkit-box-shadow: 2px 2px 5px #b9b9b9;
          box-shadow: 2px 2px 5px #b9b9b9;
}

button:hover {
  opacity: 0.7;
  cursor: pointer;
}

p {
  text-align: justify;
}

li {
  list-style: none;
}

header {
  width: 100%;
  max-width: 100vw;
  height: 70px;
  background-color: #fff;
  position: fixed;
  z-index: 999;
}

.heading a {
  font-size: 14px;
}

footer {
  background-color: #f6f6f6;
}

.footer-text p {
  text-align: center;
  padding: 24px 0;
  font-size: 14px;
  font-weight: bold;
}

/* =========================
      nav menu
=========================== */
nav {
  height: 70px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

nav > :first-child {
  margin-right: auto;
  font-size: 20px;
  padding: 0 48px;
  width: 100%;
}

.nav-list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.nav-list-item {
  list-style: none;
  line-height: 68px;
  text-align: center;
  color: #333;
  margin: auto 0;
}

.nav-list-item a {
  text-decoration: none;
  color: #333;
  font-family: "Sawarabi Mincho", serif;
  font-size: 18px;
  font-weight: bold;
  position: relative;
}

#drawer_input {
  display: none;
}

.drawer_open {
  display: none;
}

.nav-list {
  display: block;
}

.nav-list-item a {
  display: inline-block;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  -webkit-perspective-origin: 50% 50%;
          perspective-origin: 50% 50%;
  vertical-align: bottom;
  overflow: hidden;
}

.nav-list-item a {
  color: #333;
  font-size: 16px;
  font-weight: bold;
  padding: 1px 30px;
  display: inline-block;
}

.nav-list-item a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #333;
  bottom: 15px;
  border-radius: 10px;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.nav-list-item a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

/* =========================
      main visual
=========================== */
.main-visual {
  margin-top: 70px;
  width: 100vw;
  height: 750px;
  background-image: url(./img/main-visual.jpeg);
  background-size: cover;
  background-position: center;
}

h2 {
  color: #fff;
  text-align: center;
  font-size: 42px;
  padding-top: 30%;
  text-shadow: 2px 0 black;
}

/* =========================
      pc版
=========================== */
@media screen and (min-width: 886px) {
  .pc-logo {
    display: block;
  }
  .sm-logo, .footer-nav {
    display: none;
  }
  .nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .pc-logo {
    margin: auto 0;
  }
  .main-visual {
    width: 100%;
  }
  .main-visual {
    margin-top: 0;
    height: 770px;
    background-size: cover;
    background-position: center;
  }
  .flex {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr  1fr;
        grid-template-columns: 1fr  1fr;
    gap: 0px;
  }
  footer ~ .nav-list-item a span {
    max-width: 100%;
    margin: auto 0;
    padding: 0px 10px;
    font-size: 16px;
    font-weight: bold;
    line-height: 200px;
  }
}

/* =========================
      sp版
=========================== */
@media screen and (max-width: 425px) {
  .menu-con img {
    max-width: 100%;
  }
}

@media screen and (max-width: 885px) {
  html, body, header, nav, main, footer {
    width: 100%;
  }
  .pc-logo {
    display: none;
  }
  .sm-logo {
    display: block;
  }
  /* =========================
      header
  =========================== */
  header {
    position: fixed;
    top: 0;
    left: 0;
  }
  .nav-list .sp-nav {
    padding: 0;
  }
  /* =========================
        hamburger menu
  =========================== */
  .sp-nav {
    padding: 0;
    display: block;
  }
  .drawer_hidden {
    display: none;
  }
  .drawer_open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
    z-index: 999;
    cursor: pointer;
    top: 18px;
    right: 26px;
    width: 40px;
    height: 40px;
  }
  .drawer_open span, .drawer_open span:before, .drawer_open span:after {
    content: '';
    display: block;
    height: 3px;
    width: 35px;
    border-radius: 3px;
    background: #333;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    position: absolute;
  }
  .drawer_open span:before {
    bottom: 10px;
  }
  .drawer_open span:after {
    top: 10px;
  }
  #drawer_input:checked ~ .drawer_open span {
    background: rgba(255, 255, 255, 0);
  }
  #drawer_input:checked ~ .drawer_open span::before {
    bottom: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  #drawer_input:checked ~ .drawer_open span::after {
    top: 0;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  nav {
    height: 100%;
    position: fixed;
    left: -100%;
    background: #fff;
    -webkit-transition: .5s;
    transition: .5s;
    text-align: center;
  }
  .nav-list-item {
    margin: 0 auto;
  }
  .nav-list-item a {
    font-size: 24px;
  }
  .nav-list-item a {
    font-size: 24px;
  }
  #drawer_input:checked ~ nav {
    left: 0;
  }
  .nav-list-item:last-child {
    width: 100vw;
  }
  .footer-nav-pc {
    display: none;
  }
}

.heading a {
  font-size: 16px;
  padding-left: 20px;
  line-height: 70px;
}

.news-bar {
  height: unset;
}

.news-wrapper {
  position: relative;
}

.news-bar {
  background-color: #fff;
  width: 80%;
  height: auto;
  margin: 0 auto;
  position: absolute;
  top: -70px;
  left: 10%;
  padding: 20px 0;
  -webkit-box-shadow: #333 2px 2px 20px;
          box-shadow: #333 2px 2px 20px;
}

.news-img img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 10px;
}

.flex3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-columns: auto;
      grid-template-columns: auto;
}

.flex-c {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 10px;
}

.more a {
  text-decoration: underline;
}

.main-visual {
  padding-top: 70px;
  max-height: 100vh;
  background-image: url(./img/main-sp.jpg);
}

h2 {
  position: relative;
  top: 1rem;
  left: 0%;
}

.news {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  width: 100%;
}

.more {
  -webkit-writing-mode: inherit;
      -ms-writing-mode: inherit;
          writing-mode: inherit;
  -ms-flex-line-pack: end;
      align-content: end;
  padding-right: 10px;
}

.wall-wrapper {
  padding: 0 20px;
  background: -webkit-gradient(linear, left top, right top, from(#f0f0f0), color-stop(50%, #f0f0f0), color-stop(50%, #f6f6f6), to(#f6f6f6));
  background: linear-gradient(90deg, #f0f0f0 0%, #f0f0f0 50%, #f6f6f6 50%, #f6f6f6 100%);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  text-align: center;
}

.about {
  padding-top: 10rem;
}

.main-title {
  padding: 1rem 0;
  margin-bottom: 24px;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #b2d5de), color-stop(20%, #dedede));
  background-image: linear-gradient(90deg, #b2d5de 0 20%, #dedede 20%);
  background-repeat: no-repeat;
  background-size: 100% 10%;
  background-position: bottom;
  color: #333;
  font-size: 24px;
  text-align: center;
  display: inline-block;
}

.sub-title {
  font-size: 30px;
  text-align: center;
}

.image img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-con, .shop-con {
  padding-top: 96px;
  padding-bottom: 96px;
}

.special-con {
  padding-top: 48px;
  padding-bottom: 96px;
}

.about-con .text p {
  padding-bottom: 24px;
}

.text {
  padding: 48px 0 0 0;
}

.special-con > .text p {
  padding: 0;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 24px;
}

.sub-title-s {
  font-size: 14px;
  padding-bottom: 48px;
}

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

.in-title {
  padding-top: 24px;
  font-size: 20px;
}

.menu-con .text p, .menu-con {
  padding-bottom: 24px;
}

.menu-con .text ul li {
  list-style: disc;
  text-align: left;
  margin-left: 16px;
}

.menu-con .text ul li:last-child {
  padding-bottom: 24px;
}

img, .viewall {
  -webkit-box-shadow: 5px 2px 15px gray;
          box-shadow: 5px 2px 15px gray;
}

.menu-con .text {
  padding: 48px;
}

.gallery img {
  width: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

button {
  width: 80%;
}

.gallery-top, .gallery-bottom {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.gallery-top img, .gallery-bottom img {
  height: 213px;
  width: unset;
  -o-object-fit: cover;
     object-fit: cover;
}

.shop-card img {
  width: 100%;
}

.shop-card {
  text-align: left;
}

.sub-title-m {
  font-size: 16px;
  padding-top: 22px;
  padding-bottom: 9px;
}

.shop-card p {
  padding-bottom: 9px;
}

.links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: underline;
}

.maplinks p {
  padding: 0 10px;
}

.shop-con {
  background-color: #f6f6f6;
  padding: 96px 0px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  text-align: center;
}

/* =========================
      pc版
=========================== */
@media screen and (min-width: 769px) {
  button {
    width: 80%;
  }
  .heading a {
    font-size: 18px;
    padding-left: 0;
  }
  .nav-list-item a {
    padding: 0px 10px;
    font-size: 14px;
  }
  .main-visual {
    height: 100vh;
    background-image: url(./img/main-visual.jpeg);
  }
  h2 {
    font-size: 72px;
    padding-top: 25%;
    top: -1.8rem;
  }
  .flex3 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 60px 120px 1fr 60px 20px;
        grid-template-columns: 60px 120px 1fr 60px 20px;
  }
  .sub-title {
    font-size: 36px;
  }
  .image img {
    width: 50%;
    max-height: 590px;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    margin: 0 auto;
  }
  .about-con {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr  1fr;
        grid-template-columns: 1fr  1fr;
    padding-top: 96px;
    padding-bottom: 96px;
  }
  .about-con > .text {
    padding: 48px;
  }
  .sub-title-s {
    font-size: 14px;
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
  }
  .menu-con .image img {
    width: 100%;
    max-width: 700px;
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-box-shadow: 5px 2px 15px gray;
            box-shadow: 5px 2px 15px gray;
  }
  .menu-con .text {
    padding: 0 48px;
  }
  .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .pdb96 {
    padding-bottom: 48px;
  }
  .menu-con .text {
    padding: 48px;
  }
  .text {
    padding: 48px 0 0 0;
  }
  .row .image {
    max-width: 700px;
    width: 100%;
  }
  .gallery-bottom img:nth-child(2) {
    width: 220px;
  }
  .gallery-bottom img {
    width: calc(100% / 4);
    -o-object-fit: cover;
       object-fit: cover;
  }
  .gallery-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .gallery-top img {
    width: 50%;
    height: 311px;
  }
  .gallery-top, .gallery-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100vw;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .gallery-bottom img {
    width: 360px;
    height: 311px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .gallery-bottom img:nth-child(2) {
    width: 360px;
  }
  .shop-contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: unset;
    max-width: 1680px;
    margin: 48px auto 0;
  }
  .shop-card img {
    width: 224px;
    height: 180px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .shop-card {
    max-width: 224px;
    height: auto;
    margin: 0 24px 24px 24px;
  }
  .viewall {
    width: 500px;
  }
  .heading a {
    font-size: 20px;
  }
}

/* =========================
      sp版
=========================== */
@media screen and (max-width: 425px) {
  .heading a {
    font-size: 10px;
  }
  h2 {
    font-size: 24px;
  }
  .more {
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
  }
}
/*# sourceMappingURL=style.css.map */