@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  color: #333;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  list-style: none;
  text-decoration: none;
}
.kosugi-maru-regular {
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
}
img {
  width: 100%;
  vertical-align: bottom;
}
p {
  text-align: justify;
}
/* header */
:root {
  --background-navbar: rgba(255, 255, 255, 0.98);
}
header {
  background: var(--background-navbar);
  box-shadow: 5px 5px 5px rgba(124, 64, 64, 0.08);
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  .pc-nav {
    display: none;
  }
  /* ハンバーガーメニュー */
  .menu {
    list-style: none;
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
    margin-top: 60px;
    padding: 0 0 10px 0;
    clear: both;
    background: var(--background-navbar);
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
    transform: scale(1, 0);
    transform-origin: top;
    li {
      border-top: 2px solid rgb(255, 210, 210);
      padding: 15px 0;
      margin: 0 54px;
      opacity: 0;
      transition: 0.5s;
    }
    a {
      text-decoration: none;
      font-family: "Kosugi Maru", sans-serif;
      font-weight: 500;
      letter-spacing: 2px;
      font-size: 16px;
      text-transform: capitalize;
      opacity: 0;
      transition: 0.5s;
    }
    .top:before {
      content: "";
      display: inline-block;
      background-image: url(../img/icon-osusume.png);
      background-size: contain;
      background-repeat: no-repeat;
      width: 30px;
      height: 30px;
      vertical-align: middle;
      margin-right: 5px;
    }
    .shop::before {
      content: "";
      display: inline-block;
      background-image: url(../img/icon-shop.png);
      background-size: contain;
      background-repeat: no-repeat;
      width: 30px;
      height: 30px;
      vertical-align: middle;
      margin-right: 5px;
    }
    .event::before {
      content: "";
      display: inline-block;
      background-image: url(../img/icon-event.png);
      background-size: contain;
      background-repeat: no-repeat;
      width: 30px;
      height: 30px;
      vertical-align: middle;
      margin-right: 5px;
    }
    .access::before {
      content: "";
      display: inline-block;
      background-image: url(../img/icon-access.png);
      background-size: contain;
      background-repeat: no-repeat;
      width: 30px;
      height: 30px;
      vertical-align: middle;
      margin-right: 5px;
    }
  }
  .menu-btn:checked ~ .menu {
    transform: scale(1, 1);
    transform-origin: top;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  .menu-btn:checked ~ .menu a,
  .menu-btn:checked ~ .menu li {
    opacity: 1;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
  }
  .menu-btn {
    display: none;
  }
  .menu-icon {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding: 24px 14px;
    -webkit-tap-highlight-color: rgba(87, 87, 87, 0);
  }
  .navicon {
    background: rgb(255, 210, 210);
    border-radius: 50px;
    display: block;
    height: 4px;
    width: 33px;
    position: relative;
    top: 6px;
    left: 5px;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  .navicon:before,
  .navicon:after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    background: rgb(255, 210, 210);
    border-radius: 50px;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  .navicon:before {
    top: 9px;
  }
  .navicon:after {
    bottom: 9px;
  }
  .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
  }
  .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
  }
  .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
    top: 0;
  }
  .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    bottom: 0;
  }
  .menu-btn:checked ~ .menu-icon .navicon {
    background: rgba(0, 0, 0, 0);
    transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  .navtext-container {
    width: 100%;
    height: 52px;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .navtext {
    width: 100px;
    padding-top: 20px;
  }
  /* ハンバーガーメニュー閉じ */
}
/* ヘッダーレスポンシブ */
@media screen and (min-width: 767px) {
  header {
    .pc-nav {
      width: 100%;
      height: 80px;
      background-color: white;
      box-shadow: 5px 5px 5px rgba(124, 64, 64, 0.08);
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 999;
      .logo {
        width: 120px;
        /* max-width: 120px; */
        padding-top: 10px;
        margin: 0 0 0 40px;
      }
      nav {
        display: block;
        width: fit-content;
        ul {
          width: 100%;
          display: flex;
          margin-right: 40px;
          li {
            list-style: none;
            padding-right: 35px;
            a {
              align-items: center;
              text-decoration: none;
              color: black;
              font-family: "Kosugi Maru", sans-serif;
              font-size: large;
              font-weight: bold;
              white-space: nowrap;
            }
          }
        }
      }
    }
    .hum {
      display: none;
    }
  }
}

/* ヘッダーレスポンシブ閉じ */
/* headerおわり */
/* main */
.wrap {
  padding: 0 5%;
  margin: 0 auto;
  .access {
    text-align: center;
    margin-bottom: 50px;
    img {
      width: 120px;
      margin: 100px 0 50px;
    }
    .access-text {
      text-align: left;
      font-size: medium;
      line-height: 1.7;
      margin-bottom: 20px;
      dt {
        color: red;
        margin-bottom: 10px;
      }
      .jusho::before {
        content: "";
        display: inline-block;
        background-image: url(../img/icon-access.png);
        width: 25px;
        height: 25px;
        background-size: contain;
        vertical-align: middle;
        margin-right: 5px;
      }
      .kotu::before {
        content: "";
        display: inline-block;
        background-image: url(../img/icon-kotu.png);
        width: 30px;
        height: 30px;
        background-size: contain;
        background-repeat: no-repeat;
        vertical-align: middle;
      }
      .time::before {
        content: "";
        display: inline-block;
        background-image: url(../img/icon-time.png);
        width: 27px;
        height: 27px;
        background-size: contain;
        background-repeat: no-repeat;
        vertical-align: middle;
        margin-right: 5px;
      }
      dd {
        margin-bottom: 20px;
      }
    }
    iframe {
      width: 100%;
      height: 30vh;
    }
  }
}

.breadcrumb {
  display: flex;
  font-size: small;
  margin-top: 70px;
}
h2 {
  width: 100%;
  font-family: "Kosugi Maru", sans-serif;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  border-bottom: solid 10px red;
  margin: 100px 0 50px;
  padding-bottom: 10px;
}

.h3-sp {
  height: 33px;
  background-image: url(../img/tag-long.png);
  background-size: contain;
  background-repeat: no-repeat;
  color: red;
  font-size: medium;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: bold;
  padding: 7px 0 0 5px;
  margin-bottom: 5px;
}
.h3-pc {
  display: none;
}
h4 {
  font-size: large;
  font-family: "Kosugi Maru", sans-serif;
  padding: 10px 0;
}
.osusume-container {
  width: 100%;
  height: 50%;
  min-height: 350px;
  margin-bottom: 50px;
  .osusume-slide {
    max-width: 500px;
    margin: 0 auto;
    .screen {
      width: 100%;
      min-height: 250px;
      position: relative;
      top: 0;
      margin-bottom: 10px;
      .img {
        height: 100%;
        img {
          height: 100%;
        }
      }
      .a_screen {
        position: absolute;
        opacity: 1;
        pointer-events: auto;
        width: 100%;
        height: fit-content;
        transition: 0.5s;
      }
      .a_screen.active {
        opacity: 0;
        pointer-events: none;
      }
      .b_screen {
        position: absolute;
        top: 0;
        opacity: 0;
        pointer-events: none;
      }
      .b_screen.active {
        opacity: 1;
        pointer-events: auto;
        width: 100%;
        transition: 0.5s;
      }
      .c_screen {
        position: absolute;
        top: 0;
        opacity: 0;
        pointer-events: none;
      }
      .c_screen.active {
        opacity: 1;
        pointer-events: auto;
        width: 100%;
        transition: 0.5s;
      }
      .d_screen {
        opacity: 0;
        pointer-events: none;
      }

      .d_screen.active {
        opacity: 1;
        pointer-events: auto;
        width: 100%;
        transition: 0.5s;
      }
    }
    .buttons {
      display: flex;
      gap: 5px;
      margin-bottom: 30px;
      button {
        background: transparent;
        border: none;
      }
      .a-btn {
        border: 4px solid rgb(255, 210, 210);
        transition: 0.3s;
      }
      .a-btn.active {
        border: 0;
      }
      .b-btn.active {
        border: 4px solid rgb(255, 210, 210);
        transition: 0.3s;
      }
      .c-btn.active {
        border: 4px solid rgb(255, 210, 210);
        transition: 0.3s;
      }
      .d-btn.active {
        border: 4px solid rgb(255, 210, 210);
        transition: 0.3s;
      }
    }
  }
}

.tokuten {
  height: 27px;
  background-image: url(../img/tag-midium.png);
  background-size: contain;
  background-repeat: no-repeat;
  color: red;
  font-family: "Kosugi Maru", sans-serif;
  font-size: medium;
  font-weight: bold;
  padding: 5px 0 0 3px;
  margin-bottom: 5px;
}
.osusume-box-text {
  font-size: small;
  background-color: rgb(255, 210, 210);
  border-radius: 10px;
  box-shadow: inset 7px 7px 7px rgba(124, 64, 64, 0.08);
  padding: 15px;
  .osusume-box-moji-text {
    padding: 0 5px;
    margin-bottom: 10px;
  }
}
.osusume-box-img img {
  transition: transform 2s, opacity 2s;
}
.img-nav {
  display: flex;
  justify-content: space-between;
  margin: 10px auto 0;
  gap: 5px;
}

.img-nav img {
  width: 32%;
}
.osusume-box-moji-date {
  width: 100%;
  text-align: left;
  margin-top: 15px;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
  li {
    border-bottom: 1px dashed white;
    padding: 5px;
  }
}
.osusume-box-moji-date li:last-child {
  border-bottom: none;
}
.osusume-box {
  position: relative;
}

.sale {
  width: 20%;
  position: absolute;
  top: -5px;
  left: -5px;
}

@media screen and (min-width: 767px) {
  .wrap {
    padding: 0 15%;
    #page_top {
      width: 90px;
      height: 90px;
      right: 30px;
      bottom: 30px;
      background: red;
      opacity: 0.8;
      border-radius: 50%;
    }
    #page_top a {
      position: relative;
      display: block;
      width: 90px;
      height: 90px;
      text-decoration: none;
    }
    #page_top a::before {
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      content: "\f102";
      font-size: 25px;
      color: #fff;
      position: absolute;
      width: 25px;
      height: 25px;
      top: -30px;
      bottom: 0;
      right: 0;
      left: 0;
      margin: auto;
      text-align: center;
    }
    #page_top a::after {
      content: "トップ";
      font-size: 16px;
      color: #fff;
      position: absolute;
      top: 45px;
      bottom: 0;
      right: 0;
      left: 0;
      margin: auto;
      text-align: center;
    }
  }

  .breadcrumb {
    font-size: medium;
    margin-top: 100px;
    padding: 0;
  }
  h2 {
    width: 100%;
    font-family: "Kosugi Maru", sans-serif;
    text-align: center;
    font-weight: bold;
    font-size: 30px;
    border-bottom: solid 20px red;
    margin: 100px 0 0;
    padding-bottom: 0;
  }
  h2::before {
    content: "";
    display: inline-block;
    background-image: url(../img/icon-osusume.png);
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    background-size: contain;
    vertical-align: middle;
    margin-right: 5px;
  }
  .h3-pc {
    display: block;
    height: 65px;
    background-image: url(../img/tag-large.png);
    background-size: contain;
    background-repeat: no-repeat;
    color: red;
    font-size: larger;
    font-family: "Kosugi Maru", sans-serif;
    font-weight: bold;
    line-height: 1.3;
    padding: 7px 0 0 5px;
    margin-bottom: 10px;
  }
  .h3-sp {
    display: none;
  }
  .osusume-container {
    display: flex;
    justify-content: space-between;
    gap: 5%;
    padding: 100px 0;
    margin: 0;
    .osusume-slide {
      width: 50%;
      height: 100%;
      margin: 0;
      .screen {
        width: 100%;
        position: relative;
        .img {
          height: 100%;
          img {
            height: 100%;
          }
        }
      }
      .buttons {
        width: 100%;
        display: flex;
        gap: 5px;
        /* ➁ボタン単体 */
        .button {
          width: 100%;
          img {
            width: 100%; /* 横幅 210px */
          }
        }
      }
    }
    .osusume-box-text {
      width: 50%;
      height: fit-content;
      font-size: medium;
      padding: 20px;
      .tokuten {
        height: 30px;
        background-image: url(../img/tag-midium.png);
        background-size: contain;
        background-repeat: no-repeat;
        color: red;
        font-family: "Kosugi Maru", sans-serif;
        font-size: large;
        font-weight: bold;
        padding: 7px 0 0 3px;
        margin-bottom: 10px;
      }
      .osusume-box-moji-text {
        font-size: medium;
      }
      .osusume-box-moji-date {
        font-size: medium;
      }
    }
  }
  .osusume-container:nth-child(2n) {
    flex-direction: row-reverse;
  }
  .osusume-container:not(#close) {
    border-bottom: dashed red 2px;
  }
  .sale {
    width: 20%;
    position: absolute;
    top: -6px;
    left: -6px;
  }
  .access {
    margin-bottom: 100px;
    .access-img {
      text-align: center;
      margin: 0;
      img {
        width: 150px;
      }
    }
    .flex-box {
      display: flex;
      justify-content: space-between;
      margin-top: 50px;
      gap: 5vh;
      .access-text {
        text-align: left;
        font-size: large;
        line-height: 1.7;
        margin: 0;
        dt {
          margin-bottom: 10px;
        }
        dd {
          margin-bottom: 30px;
        }
      }
      iframe {
        width: 50%;
        height: auto;
        border: solid 1px black;
      }
    }
  }
}

/* mainおわり */

/* サムネイルクリック */
.cf:before,
.cf:after {
  content: "";
  display: table;
}

.cf:after {
  clear: both;
}

.cf {
  zoom: 1;
}
/* サムネイルクリックおわり */

/* トップへ戻るボタン */
#page_top {
  width: 50px;
  height: 50px;
  position: sticky;
  left: 83%;
  bottom: 20px;
  background: red;
  opacity: 0.8;
  border-radius: 50%;
  margin-bottom: 20px;
}
#page_top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f102";
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
/* トップへ戻るボタン閉じ */
/* footer */
footer {
  width: 100%;
  background-color: #333;
  padding: 3% 5%;
  margin: 0 auto;
  a,
  p {
    color: white;
    font-size: small;
    text-decoration: none;
  }
  .shop-name {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-family: "Dongle", sans-serif;
    font-size: 40px;
    text-align: center;
    padding: 20px 0;
    margin: 0 auto;
  }
  .shop-name::before,
  .shop-name::after {
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    background-color: white;
  }
  .shop-name::before {
    margin-right: 0.5em;
  }
  .shop-name::after {
    margin-left: 0.5em;
  }
  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 10px;
    li {
      list-style: none;
    }
    .sns {
      display: flex;
      gap: 10px;
      img {
        width: 40px;
        height: 40px;
      }
      .youtube {
        border: 2px solid white;
        border-radius: 10px;
        padding: 3px;
      }
    }
  }
  .copy {
    text-align: center;
    padding: 50px 0 10px;
    small {
      color: white;
    }
  }
}
/* footerレスポンシブ */
@media screen and (min-width: 767px) {
  footer {
    width: 100%;
    background-color: #333;
    padding: 3% 15%;
    margin: 0 auto;
    a,
    p {
      color: white;
      font-size: large;
      text-decoration: none;
    }
    .shop-name {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      font-family: "Dongle", sans-serif;
      font-size: 70px;
      text-align: center;
      padding: 20px 0;
      margin: 0 auto;
    }
    .shop-name::before,
    .shop-name::after {
      display: block;
      content: "";
      width: 100%;
      height: 2px;
      background-color: white;
    }
    .shop-name::before {
      margin-right: 0.3em;
    }
    .shop-name::after {
      margin-left: 0.3em;
    }
    .footer-container {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      padding: 0 20px;
      li {
        margin-bottom: 10px;
        a:hover {
          opacity: 0.5;
          transition: 0.3s;
        }
      }
      .sns {
        display: flex;
        gap: 20px;
        img {
          width: 70px;
          height: 70px;
        }
        .youtube {
          border: 4px solid white;
          border-radius: 20px;
          padding: 3px;
        }
      }
    }
    .copy {
      color: white;
    }
  }
}
/* footerレスポンシブ閉じ */
