@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Caudex:wght@400;700&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, main, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

article, aside, details, figcaption, figure, footer, header, hgroup, nav, main, section, summary {
  display: block;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-y: scroll;
  /*background: url(images/bg.png);*/
}

body {
  line-height: 1.5;
  font-size: 4vw;
  letter-spacing: -.01rem;
  background: url(images/bg.jpg);
  color: #540A00;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-optical-sizing: auto;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

@media only screen and (min-width: 768px) {
  body {
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: .1rem;
  }
}

ul {
  list-style: none;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  font-size: 100%;
  color: #540A00;
  background: transparent;
  -webkit-tap-highlight-color: rgba(84, 10, 0, 0.6);
  text-decoration: none;
}

a:focus {
  outline: none;
}

a:hover, a:active {
  text-decoration: none;
  color: #871000;
}

img {
  vertical-align: top;
  -ms-interpolation-mode: bicubic;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #999999;
}

::selection {
  color: #FFFFFF;
  background: #6e0d00;
}

input::selection,
textarea::selection {
  color: #000000;
}

textarea {
  resize: vertical;
}

:placeholder-shown {
  color: rgba(0, 0, 0, 0.4);
}

::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

:-moz-placeholder {
  opacity: 1;
  color: rgba(0, 0, 0, 0.4);
}

::-moz-placeholder {
  opacity: 1;
  color: rgba(0, 0, 0, 0.4);
}

:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.row {
  width: 90%;
  margin: auto;
}

@media only screen and (min-width: 1025px) {
  .row {
    max-width: 1200px;
  }
}

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

.no-scroll {
  overflow: hidden;
  height: 100vh;
}

html {
  /* background-image: url('images/bg.jpg');*/
  /* 背景画像 */
  scroll-behavior: smooth;
}

body {
  /*background-image: url('images/bg.jpg');*/
  /* 背景画像 */
}

body a {
  color: #540A00;
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

#loading.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* アニメーション */
#loading img {
  width: 250px;
  height: auto;
  opacity: 0;
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-animation: loadingFadeZoom 1s ease-out forwards;
  animation: loadingFadeZoom 1s ease-out forwards;
}

@-webkit-keyframes loadingFadeZoom {
  from {
    opacity: 0;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes loadingFadeZoom {
  from {
    opacity: 0;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.view-pc {
  display: none !important;
}

@media only screen and (min-width: 768px) {
  .view-pc {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

@media only screen and (min-width: 768px) {
  .view-sp {
    display: none !important;
  }
}

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

.pc-br {
  display: none;
}

@media only screen and (min-width: 768px) {
  .pc-br {
    display: inherit;
  }
}

body.loaded #mv-slider {
  opacity: 1;
  -webkit-transition: opacity .5s ease;
  transition: opacity .5s ease;
}

#mv-slider {
  opacity: 0;
}

.l-header,
.logo,
.glade,
.openbtn {
  opacity: 0;
  /* 最初は透明にしておく */
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
  /* 1秒かけてゆっくりと透明度を変える */
}

.l-header.is-visible,
.logo.is-visible,
.glade.is-visible,
.openbtn.is-visible {
  opacity: 1;
  /* このクラスが追加されると不透明になる */
}

.logo {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 200;
  top: 10px;
}

.logo {
  width: 200px;
  -webkit-transition: .5s;
  transition: .5s;
}

@media only screen and (min-width: 1920px) {
  .logo {
    width: 300px;
  }
  .logo img {
    width: 100%;
  }
}

.l-header {
  position: fixed;
  top: 0;
  /*left: -30px;*/
  width: 100%;
  z-index: 99;
}

.l-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(48, 6, 0, 0.8)), to(rgba(48, 6, 0, 0)));
  background: linear-gradient(to bottom, rgba(48, 6, 0, 0.8) 0%, rgba(48, 6, 0, 0) 100%);
  pointer-events: none;
  /* 背景のクリック操作を邪魔しない */
  z-index: 10;
  -webkit-transition: .3s;
  transition: .3s;
}

@media only screen and (min-width: 768px) {
  .l-header::before {
    height: 140px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(48, 6, 0, 0.58)), to(rgba(48, 6, 0, 0)));
    background: linear-gradient(to bottom, rgba(48, 6, 0, 0.58) 0%, rgba(48, 6, 0, 0) 100%);
  }
}

.l-header .global {
  position: absolute;
  left: -45px;
  top: 150px;
  display: none;
  font-family: "Caudex", serif;
  font-style: normal;
  font-weight: 700;
  z-index: 99;
}

@media only screen and (min-width: 768px) {
  .l-header .global {
    display: inherit;
  }
}

.l-header .global a {
  margin-bottom: 100px;
  display: block;
  color: #540A00;
  font-size: 1.3rem;
}

.l-header .global a span {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  display: block;
  background: #FFFFFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-shadow: 1px 3px 33px -13px #000;
  box-shadow: 1px 3px 33px -13px #000;
  -webkit-filter: drop-shadow(5px 10px 10px rgba(0, 0, 0, 0.2));
  filter: drop-shadow(5px 10px 10px rgba(0, 0, 0, 0.2));
  padding: 10px 25px 10px 25px;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  -webkit-transition: .3s;
  transition: .3s;
}

.l-header .global a span:hover {
  background: #540A00;
  color: #FFFFFF;
}

@media only screen and (min-width: 768px) {
  .l-header.fixed::before {
    opacity: 0;
  }
}

section.mv {
  height: 100vh;
  position: relative;
}

section.mv .glade {
  position: fixed;
  top: 0;
  z-index: 99;
  width: 100%;
}

@media only screen and (min-width: 768px) {
  section.mv .glade {
    display: none;
  }
}

section.mv .glade img {
  width: 100%;
}

section.mv #mv-slider .swiper-wrapper {
  height: 100vh;
}

section.mv #mv-slider .swiper-wrapper img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.tit-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 40px;
}

@media only screen and (min-width: 768px) {
  .tit-wrap {
    margin-bottom: 70px;
  }
}

.tit-wrap .icon {
  width: 82px;
  position: relative;
  right: -0px;
}

@media only screen and (min-width: 768px) {
  .tit-wrap .icon {
    width: 125px;
    right: -20px;
  }
}

.tit-wrap h2 {
  font-family: "Caudex", serif;
  font-style: normal;
  font-size: 5vw;
  letter-spacing: .1rem;
}

@media only screen and (min-width: 768px) {
  .tit-wrap h2 {
    font-size: 2.8rem;
  }
}

.tit-wrap.view-sp {
  margin-bottom: 40px !important;
}

section.about {
  /*background: url(images/bg.jpg);*/
  padding: 70px 0 30px;
}

@media only screen and (min-width: 768px) {
  section.about {
    padding: 100px 0 20px;
  }
}

section.about .txt-wrap {
  text-align: center;
  line-height: 1.7;
}

@media only screen and (min-width: 768px) {
  section.about .txt-wrap {
    line-height: 2.2;
  }
}

@media only screen and (min-width: 768px) {
  section.about .txt-wrap {
    background: url(images/illust.png) center 50% no-repeat;
    background-size: 100%;
  }
}

@media only screen and (min-width: 1025px) {
  section.about .txt-wrap {
    background-size: 90%;
  }
}

@media only screen and (min-width: 1280px) {
  section.about .txt-wrap {
    background-size: 80%;
  }
}

@media only screen and (min-width: 1680px) {
  section.about .txt-wrap {
    background-size: 70%;
  }
}

section.about-btm {
  position: relative;
  background: transparent;
  z-index: 10;
  bottom: -10vw;
}

@media only screen and (min-width: 768px) {
  section.about-btm {
    bottom: -70px;
  }
}

@media only screen and (min-width: 1025px) {
  section.about-btm {
    bottom: -70px;
  }
}

@media only screen and (min-width: 1680px) {
  section.about-btm {
    bottom: -100px;
  }
}

section.about-btm img {
  width: 100%;
}

.about-secound {
  background: url(images/bg02_sp.png);
  padding-top: 80px;
}

@media only screen and (min-width: 768px) {
  .about-secound {
    padding-top: 150px;
    background: url(images/bg02.png);
  }
}

.about-secound .about-column {
  max-width: 1200px;
  margin: auto;
  line-height: 2;
}

@media only screen and (min-width: 768px) {
  .about-secound .about-column {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media only screen and (min-width: 768px) {
  .about-secound .about-column .pic {
    width: 47%;
  }
}

.about-secound .about-column .pic img {
  width: 100%;
}

.about-secound .about-column .txt {
  width: 90%;
  margin: 50px auto;
  font-size: 4.2vw;
}

@media only screen and (min-width: 768px) {
  .about-secound .about-column .txt {
    width: 44%;
    font-size: 1.6rem;
  }
}

.cookie-list {
  padding: 50px 0 70px;
  width: 95%;
  margin: 0px auto 50px;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .cookie-list {
    padding: 70px 0 130px;
    width: 90%;
    margin: 130px auto;
  }
}

.cookie-list::after {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(images/bg.jpg);
  opacity: 0.8;
  /* ここで透明度を設定 */
  z-index: 0;
  /* 子要素の後ろに配置 */
}

.cookie-list .tit-wrap,
.cookie-list .exp {
  position: relative;
  z-index: 10;
}

.cookie-list .tit-wrap {
  margin-bottom: 30px;
}

.cookie-list .exp {
  text-align: center;
  line-height: 2;
}

.cookie-list .cookie-content {
  width: 93%;
  background: url(images/bg03.png);
  margin: 40px auto 0;
  padding: 10vw 3vw;
  position: relative;
  z-index: 10;
  border: 1px solid #540A00;
}

@media only screen and (min-width: 768px) {
  .cookie-list .cookie-content {
    padding: 20px;
    width: 80%;
    margin: 40px auto;
  }
}

@media only screen and (min-width: 768px) {
  .cookie-list .cookie-content {
    padding: 70px 90px;
  }
}

.cookie-list .cookie-content .att {
  margin-bottom: 30px;
  font-size: 2.8vw;
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .cookie-list .cookie-content .att {
    font-size: 1.2rem;
    text-align: right;
    margin-bottom: 50px;
  }
}

.cookie-list .cookie-content #toggle-btn {
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border: none;
  background: #540A00;
  color: #FFFFFF;
  border-radius: 100px;
  padding: 15px 70px;
}

.cookie-list .cookie-content #toggle-btn::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f106";
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.cookie-list .cookie-content #toggle-btn.closed::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f107";
}

.cookie-list .cookie-content .illust01 {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 90px;
}

@media only screen and (min-width: 768px) {
  .cookie-list .cookie-content .illust01 {
    width: 220px;
    left: -120px;
    top: -100px;
  }
}

.cookie-list .cookie-content .illust02 {
  position: absolute;
  bottom: -5vw;
  right: -20px;
  width: 20vw;
}

@media only screen and (min-width: 768px) {
  .cookie-list .cookie-content .illust02 {
    bottom: -40px;
    right: -30px;
    width: 150px;
  }
}

.cookie-list .cookie-box-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-flow: wrap;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
}

.cookie-list .cookie-box-wrap::before {
  content: "";
  width: 18%;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}

.cookie-list .cookie-box-wrap::after {
  content: "";
  width: 18%;
}

.cookie-list .cookie-box-wrap .cookie-box {
  width: 33.33%;
  text-align: center;
  margin-bottom: 0px;
}

@media only screen and (min-width: 768px) {
  .cookie-list .cookie-box-wrap .cookie-box {
    width: 28%;
  }
}

@media only screen and (min-width: 1025px) {
  .cookie-list .cookie-box-wrap .cookie-box {
    width: 18%;
  }
}

.cookie-list .cookie-box-wrap .cookie-box .pic {
  width: 90%;
  margin: auto;
}

.cookie-list .cookie-box-wrap .cookie-box .en {
  font-size: clamp(1.4rem, 1.2vw, 3rem);
  margin-top: 5px;
  font-family: "Caudex", serif;
  font-style: normal;
  font-weight: 600;
  letter-spacing: -.01rem;
  line-height: 1.2;
}

@media only screen and (min-width: 768px) {
  .cookie-list .cookie-box-wrap .cookie-box .en {
    margin-top: 10px;
  }
}

.cookie-list .cookie-box-wrap .cookie-box h3 {
  font-size: clamp(0.9rem, 0.8vw, 3rem);
  padding-bottom: 15px;
  margin-bottom: 10px;
  font-weight: 500;
}

@media only screen and (min-width: 768px) {
  .cookie-list .cookie-box-wrap .cookie-box h3 {
    padding-bottom: 10px;
  }
}

.cookie-list .cookie-box-wrap .cookie-box dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: clamp(1.5rem, 0.7vw, 3rem);
}

.cookie-list .cookie-box-wrap .cookie-box dl dt {
  width: 150px;
  text-align: right;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  display: none;
}

@media only screen and (min-width: 768px) {
  .cookie-list .cookie-box-wrap .cookie-box dl dt {
    display: inherit;
  }
}

.cookie-list .cookie-box-wrap .cookie-box dl dt::after {
  content: ":";
  display: block;
  margin-left: .5rem;
}

.cookie-list .cookie-box-wrap .cookie-box dl dd {
  width: 100%;
  padding-left: 1rem;
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .cookie-list .cookie-box-wrap .cookie-box dl dd {
    text-align: left;
  }
}

.cookie-list .cookie-box-wrap .cookie-box.en-lineh .en {
  margin-top: 3px;
}

@media only screen and (min-width: 768px) {
  .cookie-list .cookie-box-wrap .cookie-box.en-lineh .en {
    line-height: 1;
    position: relative;
    top: -16px;
    margin-top: 7px;
  }
}

@media only screen and (min-width: 768px) {
  .cookie-list .cookie-box-wrap .cookie-box.en-lineh h3 {
    position: relative;
    top: -16px;
  }
}

.infinity-scroll {
  margin-bottom: 50px;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .infinity-scroll {
    margin-bottom: 0;
  }
}

.infinity-scroll .dog {
  position: absolute;
  top: -45px;
  right: 30px;
  z-index: 99;
}

@media only screen and (min-width: 768px) {
  .infinity-scroll .dog {
    top: -55px;
    right: 150px;
  }
}

.infinity-scroll .dog img {
  width: 48px;
}

@media only screen and (min-width: 768px) {
  .infinity-scroll .dog img {
    width: 60px;
  }
}

#about-infinity {
  margin-top: 100px;
  position: relative;
}

#about-infinity .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

#about-infinity .swiper-wrapper .swiper-slide img {
  width: 100%;
}

.coming {
  font-family: "Caudex", serif;
  font-style: normal;
  font-size: 6vw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 50px;
}

@media only screen and (min-width: 768px) {
  .coming {
    padding-bottom: 0;
    font-size: 2.8rem;
  }
}

.l-footer {
  background: #540A00;
  color: #FFFFFF;
  padding: 50px 0 30px;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .l-footer {
    padding: 100px 0 30px;
  }
}

.l-footer .logo-f {
  width: 160px;
  display: block;
  margin: auto;
}

@media only screen and (min-width: 768px) {
  .l-footer .logo-f {
    width: 220px;
  }
}

.l-footer .copy {
  text-align: center;
  font-size: 1rem;
  color: #FBEDC8;
  margin-top: 70px;
  font-family: "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "メイリオ", Meiryo, serif;
}

.l-footer .page-top {
  position: absolute;
  right: 30px;
  bottom: 60px;
}

@media only screen and (min-width: 768px) {
  .l-footer .page-top {
    right: 30px;
    bottom: 30px;
  }
}

.l-footer .page-top a {
  color: #FBEDC8;
  font-size: 1.4rem;
  display: block;
  border-radius: 100px;
  border: 1px solid #FBEDC8;
  padding: 12px 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: .5s;
  transition: .5s;
}

.l-footer .page-top a:hover {
  opacity: .8;
}

.l-footer .page-top a::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f106";
  margin-left: 1rem;
  font-size: 1rem;
}

.bg-paper {
  background: url(images/bg04.png);
  position: relative;
  z-index: 1;
}

.lineup-column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.lineup-column .pic {
  width: 50%;
}

.lineup-column .pic img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  aspect-ratio: 1 / 1;
  width: 100%;
  height: auto;
  -webkit-transition: .5s;
  transition: .5s;
}

.lineup-column .detail {
  width: 50%;
  padding: 100px 100px 20px 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
}

.lineup-column .detail h3 {
  font-size: 1.4rem;
  font-weight: 500;
}

.lineup-column .detail .txt {
  margin-top: 80px;
  line-height: 2;
}

.lineup-column.pocket {
  background: url(images/bg03.png);
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-flow: row-reverse;
  -ms-flex-flow: row-reverse;
  flex-flow: row-reverse;
}

.lineup-column.round {
  background: url(images/bg.jpg);
}

.lineup-column.bell {
  background: url(images/bg03.png);
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-flow: row-reverse;
  -ms-flex-flow: row-reverse;
  flex-flow: row-reverse;
}

.price-wrap {
  font-size: 1.2rem;
  margin-top: 20px;
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .price-wrap {
    margin-top: 50px;
  }
}

.price-wrap .first {
  font-weight: 800;
  font-size: 1.4rem;
}

.price-wrap .num {
  font-size: 2rem;
  font-weight: 800;
}

.price-wrap .last {
  margin-left: .5rem;
}

.price-wrap .sub-txt {
  margin-top: 10px;
}

.price-wrap .sub-txt ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.price-wrap .sub-txt ul li::before {
  content: "※";
  display: block;
}

.catch-column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.catch-column .txt-min {
  width: 50%;
  margin-top: 30px;
  line-height: 1.8;
}

.catch-column .pic-wrap {
  width: 45%;
  text-align: center;
  position: relative;
  top: -50px;
}

.catch-column .pic-wrap .last {
  display: block;
  width: 100%;
  text-align: center;
}

.catch-en {
  font-family: "Caudex", serif;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(3rem, 3.5vw, 5rem);
  line-height: 1;
  margin-bottom: 5px;
}

.catch-en-min {
  font-family: "Caudex", serif;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(1.6rem, 2.5vw, 5rem);
  line-height: 1;
  margin-bottom: 5px;
}

.star {
  letter-spacing: 1rem;
  font-size: clamp(1rem, 0.8vw, 1.3rem);
  margin-top: 20px;
  margin-bottom: 10px;
}

@media only screen and (min-width: 768px) {
  .star {
    margin-bottom: 30px;
  }
}

.star span {
  display: none;
}

@media only screen and (min-width: 768px) {
  .star span {
    display: inline;
  }
}

.txt-item {
  font-size: clamp(1.4rem, 1vw, 1.5rem);
  line-height: 2;
}

.txt-item br {
  display: none;
}

@media only screen and (min-width: 768px) {
  .txt-item br {
    display: inherit;
  }
}

.item-wrap {
  max-width: 800px;
  margin: 80px auto 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 50px;
}

.item-wrap .en {
  font-family: "Caudex", serif;
  font-style: normal;
  text-align: center;
  font-weight: 700;
  letter-spacing: -.01rem;
  font-size: clamp(1.5rem, 1.4vw, 3rem);
}

.item-wrap h3 {
  font-size: clamp(1.2rem, 0.8vw, 3rem);
  text-align: center;
}

section.shop {
  background: url(images/bg03.png);
  padding: 50px 0;
  position: relative;
}

@media only screen and (min-width: 768px) {
  section.shop {
    padding: 100px 0;
  }
}

@media only screen and (min-width: 1025px) {
  section.shop {
    padding: 150px 0;
  }
}

section.shop .shop-wrap {
  margin: auto;
  position: relative;
  width: 90%;
}

@media only screen and (min-width: 768px) {
  section.shop .shop-wrap {
    max-width: 800px;
  }
}

@media only screen and (min-width: 1025px) {
  section.shop .shop-wrap {
    max-width: 900px;
  }
}

section.shop .shop-box {
  border-bottom: 1px solid #540A00;
  padding: 40px 0;
}

@media only screen and (min-width: 768px) {
  section.shop .shop-box {
    padding: 60px 90px 60px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

section.shop .shop-box:first-child {
  border-top: 1px solid #540A00;
}

@media only screen and (min-width: 768px) {
  section.shop .shop-box .name {
    width: 30%;
  }
}

section.shop .shop-box .name span {
  font-size: 1.2rem;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

section.shop .shop-box .name h4 {
  font-weight: normal;
  font-size: 2rem;
  margin-bottom: 20px;
}

@media only screen and (min-width: 768px) {
  section.shop .shop-box .name h4 {
    font-size: 2.2rem;
    margin-bottom: 0;
  }
}

section.shop .shop-box .add {
  font-size: 1.4rem;
}

@media only screen and (min-width: 768px) {
  section.shop .shop-box .add {
    width: 50%;
  }
}

section.shop .shop-box .map {
  padding-top: 20px;
}

@media only screen and (min-width: 768px) {
  section.shop .shop-box .map {
    padding-top: 50px;
  }
}

section.shop .shop-box .map a {
  display: block;
  width: 100px;
  border: 1px solid #540A00;
  border-radius: 100px;
  text-align: center;
  padding: 10px 0;
  font-size: 1.4rem;
  -webkit-transition: .5s;
  transition: .5s;
}

section.shop .shop-box .map a:hover {
  background: #540A00;
  color: #FFFFFF;
}

section.shop .shop-illust01 {
  position: absolute;
  top: -50px;
  left: -100px;
  display: none;
}

@media only screen and (min-width: 1025px) {
  section.shop .shop-illust01 {
    display: inherit;
  }
}

section.shop .shop-illust01 img {
  width: 70px;
}

section.shop .shop-illust02 {
  position: absolute;
  bottom: -100px;
  right: -100px;
  display: none;
}

@media only screen and (min-width: 1025px) {
  section.shop .shop-illust02 {
    display: inherit;
  }
}

section.shop .shop-illust02 img {
  width: 120px;
}

section.insta {
  background: url(images/bg03.png);
  padding: 0px 0 0px;
}

section.insta .tit-wrap {
  margin-bottom: 20px;
}

section.insta .btn-insta a {
  display: block;
  border-radius: 100px;
  border: 1px solid #540A00;
  width: 180px;
  text-align: center;
  padding: 10px;
  font-size: 1.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  white-space: nowrap;
  margin: auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: .5s;
  transition: .5s;
}

section.insta .btn-insta a:hover {
  background: #540A00;
  color: #FFFFFF;
}

section.insta .btn-insta a i {
  font-size: 2rem;
  margin-left: 1rem;
}

section.insta .insta-inner {
  max-width: 1000px;
  margin: 0 auto 30px;
  width: 90%;
}

@media only screen and (min-width: 768px) {
  section.insta .insta-inner {
    margin: 0 auto 20px;
  }
}

#sb_instagram .sbi_photo img {
  /*  -webkit-transform: scale(1.1);
    transform: scale(1.1);*/
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  aspect-ratio: 310 / 414;
  width: 100%;
  height: auto;
  -webkit-transition: .5s;
  transition: .5s;
}

@media only screen and (min-width: 1025px) {
  .line-up-column {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.line-up-column .pic-wrap {
  position: relative;
  overflow: hidden;
}

@media only screen and (min-width: 1025px) {
  .line-up-column .pic-wrap {
    width: 50%;
  }
}

.line-up-column .pic-wrap .pic img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  aspect-ratio: 1 / 1;
  width: 100%;
  height: auto;
  -webkit-transition: .5s;
  transition: .5s;
}

@media only screen and (min-width: 768px) {
  .line-up-column .pic-wrap .pic img {
    aspect-ratio: 4 / 3;
  }
}

.line-up-column .pic-wrap .detail {
  -webkit-transition: .5s;
  transition: .5s;
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  width: 100%;
  height: 100%;
  padding: 0 5vw 0px 5vw;
}

.line-up-column .pic-wrap .detail::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 200px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  pointer-events: none;
  z-index: 1;
}

.line-up-column .pic-wrap .detail .detail-inner {
  /*opacity: 0;
      transform: translateY(20px);
      transition: 1s;
      max-height: 0;
      overflow: hidden;*/
  padding-right: 5vw;
  position: absolute;
  opacity: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.9, 0, 0.2, 1);
  transition: all 0.5s cubic-bezier(0.9, 0, 0.2, 1);
  top: 100%;
  z-index: 15;
}

@media only screen and (min-width: 768px) {
  .line-up-column .pic-wrap .detail .detail-inner {
    padding-right: 7vw;
  }
}

.line-up-column .pic-wrap .detail .detail-inner .price-wrap {
  text-align: left;
}

.line-up-column .pic-wrap .detail.active .detail-inner {
  /*opacity: 1;
      transform: translateY(0);
      max-height: 1000px;
      transition: 1s;*/
  position: absolute;
  top: 56%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 1;
}

@media only screen and (min-width: 768px) {
  .line-up-column .pic-wrap .detail.active .detail-inner {
    position: absolute;
    top: 55%;
    -webkit-transform: translateY(-55%);
    transform: translateY(-55%);
    opacity: 1;
  }
}

.line-up-column .pic-wrap .detail.closing .detail-inner {
  /*transition: 1s;*/
}

.line-up-column .pic-wrap .detail .catch-tit-wrap {
  bottom: 20px;
  position: absolute;
  -webkit-transition: all 0.5s cubic-bezier(0.9, 0, 0.2, 1);
  transition: all 0.5s cubic-bezier(0.9, 0, 0.2, 1);
  width: 100%;
  z-index: 10;
}

@media only screen and (min-width: 768px) {
  .line-up-column .pic-wrap .detail .catch-tit-wrap {
    bottom: 50px;
  }
}

.line-up-column .pic-wrap .detail .catch-tit-wrap h3 {
  font-size: clamp(1.2rem, 1vw, 5rem);
}

.line-up-column .pic-wrap .detail.active {
  background: rgba(0, 0, 0, 0.5);
}

.line-up-column .pic-wrap .detail.active .catch-tit-wrap {
  bottom: inherit;
  position: absolute;
  bottom: 50%;
  padding-bottom: 26vw;
}

@media only screen and (min-width: 768px) {
  .line-up-column .pic-wrap .detail.active .catch-tit-wrap {
    padding-bottom: 130px;
  }
}

.line-up-column .pic-wrap .detail.active .pocket {
  opacity: 1;
}

.line-up-column .pic-wrap .detail .txt {
  line-height: 2;
}

.line-up-column .pic-wrap .btn-detail {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: #fff;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  z-index: 20;
  border-radius: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (min-width: 768px) {
  .line-up-column .pic-wrap .btn-detail {
    width: 50px;
    height: 50px;
  }
}

.line-up-column .pic-wrap .btn-detail::before {
  content: " ";
  display: block;
  background: url(images/plus.png) center center no-repeat;
  width: 10px;
  height: 10px;
}

.line-up-column .pic-wrap .btn-detail.active::before {
  background: url(images/minus.png) center center no-repeat;
}

.line-up-column .item-slide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding: 8vw 6vw;
}

@media only screen and (min-width: 1025px) {
  .line-up-column .item-slide {
    width: 50%;
    padding: 0 5vw;
  }
}

.line-up-column.line-up-bell, .line-up-column.line-up-box {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-flow: row-reverse;
  -ms-flex-flow: row-reverse;
  flex-flow: row-reverse;
  background: url(images/bg03.png);
}

.line-up-column.line-up-bell .pic-wrap .pic img, .line-up-column.line-up-box .pic-wrap .pic img {
  aspect-ratio: 1 / 0.7;
}

@media only screen and (min-width: 768px) {
  .line-up-column.line-up-bell .pic-wrap .pic img, .line-up-column.line-up-box .pic-wrap .pic img {
    aspect-ratio: 1 / 0.6;
  }
}

.line-up-column.line-up-bell .detail.active .catch-tit-wrap, .line-up-column.line-up-box .detail.active .catch-tit-wrap {
  padding-bottom: 45px;
}

@media only screen and (min-width: 768px) {
  .line-up-column.line-up-bell .detail.active .catch-tit-wrap, .line-up-column.line-up-box .detail.active .catch-tit-wrap {
    padding-bottom: 60px;
  }
}

.line-up-column.line-up-bell .item-slide, .line-up-column.line-up-box .item-slide {
  padding-bottom: 70px;
}

@media only screen and (min-width: 768px) {
  .line-up-column.line-up-bell .item-slide, .line-up-column.line-up-box .item-slide {
    padding-bottom: 70px;
  }
}

@media only screen and (min-width: 1025px) {
  .line-up-column.line-up-bell .item-slide, .line-up-column.line-up-box .item-slide {
    padding-bottom: 0;
  }
}

@media only screen and (min-width: 768px) {
  .line-up-column.line-up-box .swiper {
    overflow: visible;
  }
}

.line-up-column.line-up-box #item-slider2 .swiper-wrapper {
  -webkit-flex-flow: nowrap;
  -ms-flex-flow: nowrap;
  flex-flow: nowrap;
  gap: 0;
}

.line-up-column.line-up-collection .pic-wrap .pic img {
  aspect-ratio: 1 / 0.7;
}

@media only screen and (min-width: 768px) {
  .line-up-column.line-up-collection .pic-wrap .pic img {
    aspect-ratio: 1 / 0.6;
  }
}

.line-up-column.line-up-collection .detail.active .catch-tit-wrap {
  padding-bottom: 60px;
}

.line-up-column.line-up-collection .item-slide {
  padding-bottom: 80px;
}

@media only screen and (min-width: 1025px) {
  .line-up-column.line-up-collection .item-slide {
    padding-bottom: 0;
  }
}

.line-up-column.line-up-pocket {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-flow: row-reverse;
  -ms-flex-flow: row-reverse;
  flex-flow: row-reverse;
  background: url(images/bg03.png);
}

.line-up-column .pocket {
  position: absolute;
  top: -20px;
  right: 30px;
  opacity: 0;
  -webkit-transition: .5s;
  transition: .5s;
}

@media only screen and (min-width: 768px) {
  .line-up-column .pocket {
    right: 200px;
    top: -100px;
  }
}

@media only screen and (min-width: 1025px) {
  .line-up-column .pocket {
    right: 200px;
    top: 0px;
  }
}

.line-up-column .pocket img {
  width: 130px;
}

@media only screen and (min-width: 768px) {
  .line-up-column .pocket img {
    width: 22vw;
  }
}

@media only screen and (min-width: 1025px) {
  .line-up-column .pocket img {
    width: 12vw;
    max-width: 230px;
  }
}

.line-up-column.line-up-pie .item-slide {
  padding-bottom: 50px;
  padding-right: 0;
}

@media only screen and (min-width: 768px) {
  .line-up-column.line-up-pie .item-slide {
    padding-bottom: 50px;
    padding-right: 6vw;
  }
}

@media only screen and (min-width: 1025px) {
  .line-up-column.line-up-pie .item-slide {
    padding-bottom: 0;
    padding-right: 6vw;
  }
}

.line-up-column.line-up-round .detail::after, .line-up-column.line-up-pie .detail::after {
  height: 300px;
}

.line-up-column.line-up-round .pic-wrap .pic img, .line-up-column.line-up-pie .pic-wrap .pic img {
  aspect-ratio: 1 / 1.3;
}

@media only screen and (min-width: 768px) {
  .line-up-column.line-up-round .pic-wrap .pic img, .line-up-column.line-up-pie .pic-wrap .pic img {
    aspect-ratio: 4 / 3;
  }
}

.line-up-round .item-box .pic img {
  width: 80%;
}

@media only screen and (min-width: 768px) {
  .line-up-round .item-box .pic img {
    width: 100%;
  }
}

.detail-inner-one {
  bottom: -150px;
  position: absolute;
  -webkit-transition: all 0.5s cubic-bezier(0.9, 0, 0.2, 1);
  transition: all 0.5s cubic-bezier(0.9, 0, 0.2, 1);
  padding-right: 7vw;
  z-index: 15;
}

.detail-inner-two {
  bottom: -150px;
  position: absolute;
  -webkit-transition: all 0.5s cubic-bezier(0.9, 0, 0.2, 1);
  transition: all 0.5s cubic-bezier(0.9, 0, 0.2, 1);
  padding-right: 7vw;
  z-index: 15;
}

.detail.active .detail-inner-one {
  bottom: 54%;
}

.detail.active .detail-inner-two {
  bottom: 10%;
}

.detail.active .tw-catch-wrap {
  bottom: 50%;
  padding-bottom: 35%;
}

@media only screen and (min-width: 768px) {
  .detail.active .tw-catch-wrap {
    padding-bottom: 20%;
  }
}

.detail.active .tw-catch-wrap.catch-btm {
  bottom: 7%;
}

@media only screen and (min-width: 768px) {
  .detail.active .tw-catch-wrap.catch-btm {
    bottom: 7%;
  }
}

.tw-catch-wrap.catch-btm {
  margin-top: 50px;
}

.tw-catch-wrap {
  position: absolute;
  bottom: 100px;
  -webkit-transition: all 0.5s cubic-bezier(0.9, 0, 0.2, 1);
  transition: all 0.5s cubic-bezier(0.9, 0, 0.2, 1);
  z-index: 15;
}

@media only screen and (min-width: 768px) {
  .tw-catch-wrap {
    bottom: 150px;
  }
}

.tw-catch-wrap.catch-btm {
  bottom: 20px;
}

@media only screen and (min-width: 768px) {
  .tw-catch-wrap.catch-btm {
    bottom: 50px;
  }
}

.tw-catch-wrap h3 {
  font-size: clamp(1.2rem, 1vw, 5rem);
}

.item-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.item-box .price-wrap {
  margin-top: 0;
}

.item-box-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.item-box-wrap .item-box .pic {
  width: 95%;
  text-align: center;
}

@media only screen and (min-width: 768px) {
  #item-slider .swiper-wrapper,
  #pie-slider .swiper-wrapper,
  #item-slider2 .swiper-wrapper,
  #item-slider3 .swiper-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
  }
}

@media only screen and (min-width: 768px) {
  #item-slider .swiper-wrapper .swiper-slide,
  #pie-slider .swiper-wrapper .swiper-slide,
  #item-slider2 .swiper-wrapper .swiper-slide,
  #item-slider3 .swiper-wrapper .swiper-slide {
    width: calc((100% - 40px) / 3);
    /* gapが20px × 2 */
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}

@media only screen and (min-width: 768px) {
  .price-wrap-cr {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    white-space: nowrap;
  }
}

.price-wrap-cr .price-wrap {
  margin: 0px 10px;
}

@media only screen and (min-width: 768px) {
  .swiper-num01 {
    width: 100% !important;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 768px) {
  .swiper-num02 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media only screen and (min-width: 768px) {
  .swiper-num03 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.pie-01 .pic img {
  max-width: 180px;
}

@media only screen and (min-width: 768px) {
  .pie-01 .pic img {
    max-width: 220px;
  }
}

.pie-02 {
  margin-right: 0 !important;
}

@media only screen and (min-width: 768px) {
  .pie-02 {
    margin-right: 20px !important;
  }
}

.pie-02 .price-wrap {
  position: relative;
}

@media only screen and (min-width: 768px) {
  .pie-02 .price-wrap {
    top: -10px;
  }
}

.pie-02 .pic img {
  margin-top: 3vw;
}

@media only screen and (min-width: 768px) {
  .pie-02 .pic img {
    max-width: 220px;
    margin-top: 0;
  }
}

.pie-03 .price-wrap {
  position: relative;
}

@media only screen and (min-width: 768px) {
  .pie-03 .price-wrap {
    top: -10px;
  }
}

.pie-03 .pic img {
  margin-top: 3vw;
}

@media only screen and (min-width: 768px) {
  .pie-03 .pic img {
    max-width: 220px;
    margin-top: 0;
  }
}

.only-txt {
  text-align: center;
  font-size: 1.2rem;
}

.colle-num01 .pic {
  max-width: 170px;
}

.colle-num01 .pic img {
  position: relative;
  top: 12px;
}

@media only screen and (min-width: 768px) {
  .colle-num01 .pic img {
    top: 0;
  }
}

@media only screen and (min-width: 768px) {
  .colle-num01 .pic {
    max-width: 190px;
  }
}

.item-bell01 .pic {
  text-align: center;
}

.item-bell01 .pic img {
  max-width: 150px;
  margin: auto;
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .item-bell01 .pic img {
    max-width: 180px;
  }
}

@media only screen and (min-width: 768px) {
  .item-bell02 {
    margin: 0 0px;
  }
}

.item-bell02 .pic {
  text-align: center;
}

.item-bell02 .pic img {
  max-width: 150px;
  margin: auto;
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .item-bell02 .pic img {
    max-width: 180px;
  }
}

.item-bell03 .pic {
  text-align: center;
}

.item-bell03 .pic img {
  max-width: 150px;
  margin: auto;
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .item-bell03 .pic img {
    max-width: 180px;
  }
}

@media only screen and (min-width: 768px) {
  .bell-wrapper {
    -webkit-flex-wrap: nowrap !important;
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
}

.footer-illust {
  margin-top: 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media only screen and (min-width: 768px) {
  .footer-illust {
    margin-top: 0;
  }
}

/*========= ハンバーガーメニュー ===============*/
.openbtn {
  position: fixed;
  z-index: 99999;
  /*ボタンを最前面に*/
  top: 15px;
  right: 10px;
  cursor: pointer;
  width: 70px;
  height: 65px;
  -webkit-transition: .3s;
  transition: .3s;
}

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

.openbtn.active {
  position: fixed;
}

.openbtn.fixed {
  top: 18px;
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  -webkit-transition: all .3s;
  transition: all .3s;
  position: absolute;
  left: 30px;
  height: 2px;
  border-radius: 2px;
  background-color: #FFFFFF;
  width: 35%;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 27px;
}

.openbtn span:nth-of-type(3) {
  top: 39px;
}

.openbtn.active span:nth-of-type(1) {
  /*top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-35deg);
    width: 60%;
        background-color: $black;*/
  display: inline-block;
  -webkit-transition: all .3s;
  transition: all .3s;
  position: absolute;
  left: 27px;
  height: 2px;
  border-radius: 2px;
  background-color: #540A00;
  width: 35%;
  -webkit-transform: translateY(6px) rotate(-45deg);
  transform: translateY(6px) rotate(-45deg);
  top: 21px;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  /*top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(35deg);
    width: 60%;
    background-color: $black;*/
  display: inline-block;
  -webkit-transition: all .3s;
  transition: all .3s;
  position: absolute;
  left: 27px;
  height: 2px;
  border-radius: 2px;
  background-color: #540A00;
  width: 35%;
  -webkit-transform: translateY(-18px) rotate(45deg);
  transform: translateY(-18px) rotate(45deg);
  top: 45px;
}

/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 9999;
  /*ナビのスタート位置と形状*/
  top: 0;
  -webkit-transform: translate(100vw, 0);
  transform: translate(100vw, 0);
  width: 100%;
  height: 85vh;
  /*ナビの高さ*/
  background: url(images/bg.jpg);
  /*動き*/
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: .5;
  border-bottom-left-radius: 50px;
}

/* アクティブクラスがついたら位置を0に + 左25vwのスペース */
#g-nav.panelactive {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  width: 75vw;
  /* 全体の100vwから左スペース25vwを引く */
  margin-left: 25vw;
  /* 左にスペース確保 */
  opacity: 1;
}

.sp-insta {
  font-size: 3rem;
  margin-top: 20px;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 10vw 30px 30px;
  z-index: 0;
}

#g-nav.panelactive #g-nav-list a {
  -webkit-transition: .5s;
  transition: .5s;
}

#g-nav.panelactive #g-nav-list a:hover {
  opacity: .5;
}

#g-nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

#g-nav-list .logo-nav {
  margin-top: 35px;
}

#g-nav-list .logo-nav img {
  width: 150px;
}

#g-nav-list ul {
  margin-top: 50px;
}

#g-nav-list ul li {
  margin-bottom: 30px;
}

#g-nav-list ul li a {
  font-family: "Caudex", serif;
  font-style: normal;
  font-size: 6.5vw;
  font-weight: 600;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.effect {
  opacity: 0;
}

.effect.is-active {
  -webkit-animation-name: fadeup;
  animation-name: fadeup;
  /*--アニメーション名--*/
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  /*--時間--*/
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  /*--3秒後に開始--*/
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  /*--状態指定--*/
}

@-webkit-keyframes fadeup {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes fadeup {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}

/* ----------------------------------

モーダル

---------------------------------- */
.modal__trigger {
  display: inline-block;
  width: 150px;
  margin: 10px;
  cursor: pointer;
}

.modal__trigger img {
  width: 100%;
}

.modal__wrapper {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.modal__container {
  background: #fff;
  max-width: 325px;
  width: 90%;
  padding: 40px 60px;
  position: absolute;
  /* fixed でもOK */
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 30px;
}

.modal__container .modal-en {
  font-family: "Caudex", serif;
  font-style: normal;
  text-align: center;
  font-size: clamp(1.9rem, 1.6vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -.01rem;
  white-space: nowrap;
}

.modal__container h4 {
  font-size: clamp(1.3rem, 1vw, 1.5rem);
  text-align: center;
  position: relative;
  margin-top: 5px;
  font-weight: 500;
}

.modal__container h4::after {
  content: "";
  display: block;
  width: 45px;
  height: 1px;
  background: #540A00;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  margin-top: 1.5rem;
}

.modal__container .pic {
  text-align: center;
  margin: 20px auto 10px;
  width: 100%;
}

.modal__container .txt-content {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.modal__container dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0px;
}

.modal__container dl dt {
  width: 55px;
}

.modal__container dl dd {
  text-align: center;
  width: 100%;
  font-size: clamp(1.3rem, 1vw, 1.4rem);
  letter-spacing: -.01rem;
  white-space: nowrap;
}

.modal__container dl.short {
  max-width: 200px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: auto;
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #540A00;
}

/* 缶スライド */
.kan-box {
  width: 100%;
  text-align: center;
}

.kan-box .kan img {
  width: 85%;
  height: auto;
  -webkit-transition: .3s;
  transition: .3s;
}

.kan-box .kan img:hover {
  -webkit-transform: scale(1.12);
  transform: scale(1.12);
}

@media only screen and (min-width: 768px) {
  .kan-box .kan img {
    width: 70%;
  }
}

.kan-box .kan-en {
  font-size: clamp(1.5rem, 1vw, 1.7rem);
  font-family: "Caudex", serif;
  font-style: normal;
  font-weight: 600;
  text-align: center;
  letter-spacing: -.01rem;
}

.kan-box h4 {
  font-size: clamp(1rem, 0.8vw, 1.2rem);
  text-align: center;
  font-weight: 500;
  letter-spacing: -.01rem;
}

.slide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 0px;
  width: 90%;
  margin: auto;
  position: relative;
  padding-right: 1vw;
}

@media only screen and (min-width: 768px) {
  .slide-grid {
    width: 90%;
  }
}

.slide-grid > .kan-box:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.slide-grid > .kan-box:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}

.slide-grid > .kan-box:nth-child(3) {
  grid-column: 2;
  grid-row: 1;
}

.slide-grid > .kan-box:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}

.slide-grid > .kan-box:nth-child(5) {
  grid-column: 3;
  grid-row: 1;
}

.slide-grid > .kan-box:nth-child(6) {
  grid-column: 3;
  grid-row: 2;
}

/* PC用スライダーをデフォルト表示 */
#kan-slider {
  display: block;
}

#kan-slider-sp {
  display: none;
}

#pk-slider .kan-box .kan img {
  width: 60%;
}

.pk-sp-slider .kan-box .kan img {
  width: 60%;
}

/* スマホ（768px以下）で切り替え */
@media (max-width: 768px) {
  #kan-slider {
    display: none;
  }
  #kan-slider-sp {
    display: block;
  }
  /* スマホ用スライドグリッドは2列×2行 */
  #kan-slider-sp .slide-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
  }
  #kan-slider-sp .slide-grid > .kan-box:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  #kan-slider-sp .slide-grid > .kan-box:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }
  #kan-slider-sp .slide-grid > .kan-box:nth-child(3) {
    grid-column: 2;
    grid-row: 1;
  }
  #kan-slider-sp .slide-grid > .kan-box:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }
}

#pk-slider {
  display: none;
}

@media only screen and (min-width: 768px) {
  #pk-slider {
    display: inherit;
  }
}

@media only screen and (min-width: 768px) {
  #pk-slider-sp {
    display: none;
  }
}

/* スマホ（768px以下）で切り替え */
@media (max-width: 768px) {
  /* スマホ用スライドグリッドは2列×2行 */
  #pk-slider-sp .slide-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
  }
  #pk-slider-sp .slide-grid > .kan-box:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  #pk-slider-sp .slide-grid > .kan-box:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }
  #pk-slider-sp .slide-grid > .kan-box:nth-child(3) {
    grid-column: 2;
    grid-row: 1;
  }
  #pk-slider-sp .slide-grid > .kan-box:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }
}

.swiper-button-next,
.swiper-button-prev {
  opacity: 1 !important;
  pointer-events: auto !important;
  background: #540A00;
  border-radius: 100px;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (min-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 50px;
    height: 50px;
  }
}

.swiper-button-next i,
.swiper-button-prev i {
  color: #FFFFFF;
  font-size: 1rem !important;
}

@media only screen and (min-width: 768px) {
  .swiper-button-next i,
  .swiper-button-prev i {
    font-size: 1.5rem !important;
  }
}

.swiper-button-next {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  right: 0px;
  opacity: 1;
  -webkit-transition: .5s;
  transition: .5s;
}

@media only screen and (min-width: 768px) {
  .swiper-button-next {
    right: 45px;
  }
}

.swiper-button-next::after {
  display: none;
}

.swiper-button-next.next-hidden {
  opacity: 0 !important;
}

.swiper-button-prev {
  left: 0;
  opacity: 1;
  -webkit-transition: .5s;
  transition: .5s;
}

@media only screen and (min-width: 768px) {
  .swiper-button-prev {
    left: 55px;
  }
}

.swiper-button-prev::after {
  display: none;
}

.swiper-button-prev.prev-hidden {
  opacity: 0 !important;
}

#kan-slider-pc-next {
  display: none;
}

@media only screen and (min-width: 768px) {
  #kan-slider-pc-next {
    display: inherit;
  }
}

#kan-slider-pc-prev {
  display: none;
}

@media only screen and (min-width: 768px) {
  #kan-slider-pc-prev {
    display: inherit;
  }
}

#pk-slider-pc-next {
  display: none;
}

@media only screen and (min-width: 768px) {
  #pk-slider-pc-next {
    display: inherit;
  }
}

#pk-slider-pc-prev {
  display: none;
}

@media only screen and (min-width: 768px) {
  #pk-slider-pc-prev {
    display: inherit;
  }
}

@media only screen and (min-width: 768px) {
  .prev-btm,
  .next-btm {
    display: none;
  }
}

.swiper-btn-wrap {
  position: absolute;
  background: #ccc;
  bottom: 30px;
  right: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 70px;
  display: block;
}

/* ----------------------------------



---------------------------------- */
#about {
  display: block;
  margin-top: -20px;
  padding-top: 20px;
}

@media only screen and (min-width: 768px) {
  #about {
    margin-top: -0px;
    padding-top: 0px;
  }
}

#lineup {
  display: block;
  margin-top: -100px;
  padding-top: 100px;
}

@media only screen and (min-width: 768px) {
  #lineup {
    margin-top: -50px;
    padding-top: 50px;
  }
}

#shop {
  display: block;
  margin-top: -100px;
  padding-top: 100px;
}

@media only screen and (min-width: 768px) {
  #shop {
    margin-top: -50px;
    padding-top: 50px;
  }
}

#cookie-list {
  display: block;
  margin-top: -100px;
  padding-top: 100px;
}

@media only screen and (min-width: 768px) {
  #cookie-list {
    margin-top: -50px;
    padding-top: 50px;
  }
}

#about-infinity .swiper-slide {
  width: auto;
  /* デフォルトは自動幅 */
}

#about-infinity .swiper-slide img {
  width: 100%;
  display: block;
}

@media screen and (min-width: 1440px) {
  #about-infinity .swiper-slide {
    width: 330px;
    /* 1440px以上で固定幅 */
  }
}

.box-01 .pic img {
  max-width: 140px;
}

@media only screen and (min-width: 768px) {
  .box-01 .pic img {
    max-width: 140px;
  }
}

@media only screen and (min-width: 768px) {
  .box-02 {
    margin-left: 30px;
    margin-right: 30px;
  }
}

.box-02 .pic img {
  max-width: 120px;
}

.box-03 .pic img {
  max-width: 120px;
}

.selection-01 .pic img {
  max-width: 160px;
}

@media only screen and (min-width: 768px) {
  .selection-01 .pic img {
    max-width: 130px;
  }
}

.selection-02 .pic img {
  max-width: 140px;
  position: relative;
  top: 7px;
}

@media only screen and (min-width: 768px) {
  .selection-02 .pic img {
    max-width: 150px;
    top: 3px;
  }
}

.selection-03 .pic img {
  max-width: 150px;
  position: relative;
  top: 3px;
}

@media only screen and (min-width: 768px) {
  .selection-03 .pic img {
    max-width: 150px;
    top: 6px;
  }
}
