@charset "UTF-8";

/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,
*::before,
*::after {
  box-sizing: border-box
}

* {
  margin: 0
}

html,
body {
  height: 100%
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%
}

input,
button,
textarea,
select {
  font: inherit
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word
}

#root,
#__next {
  isolation: isolate
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

/*!
	Modaal - accessible modals - v0.4.4
	by Humaan, for all humans.
	http://humaan.com
 */
.modaal-noscroll {
  overflow: hidden
}

.modaal-accessible-hide {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden
}

.modaal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0
}

.modaal-wrapper {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: auto;
  opacity: 1;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out
}

.modaal-wrapper * {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.modaal-wrapper .modaal-close {
  border: none;
  background: 0 0;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
}

.modaal-wrapper.modaal-start_none {
  display: none;
  opacity: 1
}

.modaal-wrapper.modaal-start_fade {
  opacity: 0
}

.modaal-wrapper [tabindex="0"] {
  outline: 0 !important
}

.modaal-wrapper.modaal-fullscreen {
  overflow: hidden
}

.modaal-outer-wrapper {
  display: table;
  position: relative;
  width: 100%;
  height: 100%
}

.modaal-fullscreen .modaal-outer-wrapper {
  display: block
}

.modaal-inner-wrapper {
  display: table-cell;
  width: 100%;
  height: 100%;
  position: relative;
  vertical-align: middle;
  text-align: center;
  padding: 80px 25px
}

.modaal-fullscreen .modaal-inner-wrapper {
  padding: 0;
  display: block;
  /*vertical-align: top;*/
}

.modaal-container {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: auto;
  text-align: left;
  color: #fff;
  max-width: 1000px;
  border-radius: 0;
  background-color: #c1b580;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .2);
  cursor: auto
}

.modaal-container.is_loading {
  height: 100px;
  width: 100px;
  overflow: hidden
}

.modaal-fullscreen .modaal-container {
  max-width: none;
  height: 100%;
  overflow: auto
}

.modaal-close {
  position: fixed;
  right: 20px;
  top: 20px;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border-radius: 100%;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out
}

.modaal-close:focus,
.modaal-close:hover {
  outline: 0;
  background: #fff
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #b93d0c
}

.modaal-close span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden
}

.modaal-close:after,
.modaal-close:before {
  display: block;
  content: " ";
  position: absolute;
  top: 14px;
  left: 23px;
  width: 4px;
  height: 22px;
  border-radius: 4px;
  background: #fff;
  -webkit-transition: background .2s ease-in-out;
  transition: background .2s ease-in-out
}

.modaal-close:before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg)
}

.modaal-close:after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg)
}

.modaal-fullscreen .modaal-close {
  background: #afb7bc;
  right: 10px;
  top: 10px
}

.modaal-content-container {
  padding: 30px
}

.modaal-confirm-wrap {
  padding: 30px 0 0;
  text-align: center;
  font-size: 0
}

.modaal-confirm-btn {
  font-size: 14px;
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  background: 0 0
}

.modaal-confirm-btn.modaal-ok {
  padding: 10px 15px;
  color: #fff;
  background: #555;
  border-radius: 3px;
  -webkit-transition: background .2s ease-in-out;
  transition: background .2s ease-in-out
}

.modaal-confirm-btn.modaal-ok:hover {
  background: #2f2f2f
}

.modaal-confirm-btn.modaal-cancel {
  text-decoration: underline
}

.modaal-confirm-btn.modaal-cancel:hover {
  text-decoration: none;
  color: #2f2f2f
}

.modaal-instagram .modaal-container {
  width: auto;
  background: 0 0;
  box-shadow: none !important
}

.modaal-instagram .modaal-content-container {
  padding: 0;
  background: 0 0
}

.modaal-instagram .modaal-content-container>blockquote {
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important
}

.modaal-instagram iframe {
  opacity: 0;
  margin: -6px !important;
  border-radius: 0 !important;
  width: 1000px !important;
  max-width: 800px !important;
  box-shadow: none !important;
  -webkit-animation: instaReveal 1s linear forwards;
  animation: instaReveal 1s linear forwards
}

.modaal-image .modaal-inner-wrapper {
  padding-left: 140px;
  padding-right: 140px
}

.modaal-image .modaal-container {
  width: auto;
  max-width: 100%
}

.modaal-gallery-wrap {
  position: relative;
  color: #fff
}

.modaal-gallery-item {
  display: none
}

.modaal-gallery-item img {
  display: block
}

.modaal-gallery-item.is_active {
  display: block
}

.modaal-gallery-label {
  position: absolute;
  left: 0;
  width: 100%;
  margin: 20px 0 0;
  font-size: 18px;
  text-align: center;
  color: #fff
}

.modaal-gallery-label:focus {
  outline: 0
}

.modaal-gallery-control {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 1;
  cursor: pointer;
  color: #fff;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border: none;
  border-radius: 100%;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out
}

.modaal-gallery-control.is_hidden {
  opacity: 0;
  cursor: default
}

.modaal-gallery-control:focus,
.modaal-gallery-control:hover {
  outline: 0;
  background: #fff
}

.modaal-gallery-control:focus:after,
.modaal-gallery-control:focus:before,
.modaal-gallery-control:hover:after,
.modaal-gallery-control:hover:before {
  background: #afb7bc
}

.modaal-gallery-control span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden
}

.modaal-gallery-control:after,
.modaal-gallery-control:before {
  display: block;
  content: " ";
  position: absolute;
  top: 16px;
  left: 25px;
  width: 4px;
  height: 18px;
  border-radius: 4px;
  background: #fff;
  -webkit-transition: background .2s ease-in-out;
  transition: background .2s ease-in-out
}

.modaal-gallery-control:before {
  margin: -5px 0 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg)
}

.modaal-gallery-control:after {
  margin: 5px 0 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg)
}

.modaal-gallery-next-inner {
  left: 100%;
  margin-left: 40px
}

.modaal-gallery-next-outer {
  right: 45px
}

.modaal-gallery-prev:after,
.modaal-gallery-prev:before {
  left: 22px
}

.modaal-gallery-prev:before {
  margin: 5px 0 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg)
}

.modaal-gallery-prev:after {
  margin: -5px 0 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg)
}

.modaal-gallery-prev-inner {
  right: 100%;
  margin-right: 40px
}

.modaal-gallery-prev-outer {
  left: 45px
}

.modaal-video-wrap {
  margin: auto 50px;
  position: relative
}

.modaal-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, .3);
  background: #000;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto
}

.modaal-video-container embed,
.modaal-video-container iframe,
.modaal-video-container object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

.modaal-iframe .modaal-content {
  width: 100%;
  height: 100%
}

.modaal-iframe-elem {
  width: 100%;
  height: 100%;
  display: block
}

.modaal-loading-spinner {
  background: 0 0;
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  margin: -100px 0 0 -100px;
  -webkit-transform: scale(.25);
  -ms-transform: scale(.25);
  transform: scale(.25)
}

.modaal-loading-spinner>div {
  width: 24px;
  height: 24px;
  margin-left: 4px;
  margin-top: 4px;
  position: absolute
}

.modaal-loading-spinner>div>div {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: #fff
}

.modaal-loading-spinner>div:nth-of-type(1)>div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0s;
  animation-delay: 0s
}

.modaal-loading-spinner>div:nth-of-type(2)>div,
.modaal-loading-spinner>div:nth-of-type(3)>div {
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite
}

.modaal-loading-spinner>div:nth-of-type(1) {
  -ms-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(45deg) translate(70px, 0)
}

.modaal-loading-spinner>div:nth-of-type(2)>div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .12s;
  animation-delay: .12s
}

.modaal-loading-spinner>div:nth-of-type(2) {
  -ms-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(90deg) translate(70px, 0)
}

.modaal-loading-spinner>div:nth-of-type(3)>div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .25s;
  animation-delay: .25s
}

.modaal-loading-spinner>div:nth-of-type(4)>div,
.modaal-loading-spinner>div:nth-of-type(5)>div {
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite
}

.modaal-loading-spinner>div:nth-of-type(3) {
  -ms-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(135deg) translate(70px, 0)
}

.modaal-loading-spinner>div:nth-of-type(4)>div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .37s;
  animation-delay: .37s
}

.modaal-loading-spinner>div:nth-of-type(4) {
  -ms-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(180deg) translate(70px, 0)
}

.modaal-loading-spinner>div:nth-of-type(5)>div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .5s;
  animation-delay: .5s
}

.modaal-loading-spinner>div:nth-of-type(6)>div,
.modaal-loading-spinner>div:nth-of-type(7)>div {
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite
}

.modaal-loading-spinner>div:nth-of-type(5) {
  -ms-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(225deg) translate(70px, 0)
}

.modaal-loading-spinner>div:nth-of-type(6)>div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .62s;
  animation-delay: .62s
}

.modaal-loading-spinner>div:nth-of-type(6) {
  -ms-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(270deg) translate(70px, 0)
}

.modaal-loading-spinner>div:nth-of-type(7)>div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .75s;
  animation-delay: .75s
}

.modaal-loading-spinner>div:nth-of-type(7) {
  -ms-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(315deg) translate(70px, 0)
}

.modaal-loading-spinner>div:nth-of-type(8)>div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .87s;
  animation-delay: .87s
}

.modaal-loading-spinner>div:nth-of-type(8) {
  -ms-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(360deg) translate(70px, 0)
}

@media only screen and (min-width:1400px) {
  .modaal-video-container {
    padding-bottom: 0;
    height: 731px
  }
}

@media only screen and (max-width:1140px) {
  .modaal-image .modaal-inner-wrapper {
    padding-left: 25px;
    padding-right: 25px
  }

  .modaal-gallery-control {
    top: auto;
    bottom: 20px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    background: rgba(0, 0, 0, .7)
  }

  .modaal-gallery-control:after,
  .modaal-gallery-control:before {
    background: #fff
  }

  .modaal-gallery-next {
    left: auto;
    right: 20px
  }

  .modaal-gallery-prev {
    left: 20px;
    right: auto
  }
}

@media screen and (max-width:900px) {
  .modaal-instagram iframe {
    width: 500px !important
  }
}

@media only screen and (max-width:600px) {
  .modaal-instagram iframe {
    width: 280px !important
  }
}

@media screen and (max-height:1100px) {
  .modaal-instagram iframe {
    width: 700px !important
  }
}

@media screen and (max-height:1000px) {
  .modaal-inner-wrapper {
    padding-top: 60px;
    padding-bottom: 60px
  }

  .modaal-instagram iframe {
    width: 600px !important
  }
}

@media screen and (max-height:900px) {
  .modaal-instagram iframe {
    width: 500px !important
  }

  .modaal-video-container {
    max-width: 900px;
    max-height: 510px
  }
}

@media only screen and (max-height:820px) {
  .modaal-gallery-label {
    display: none
  }
}

@keyframes instaReveal {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

@-webkit-keyframes instaReveal {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

@-webkit-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    transform: scale(1.5)
  }

  100% {
    opacity: .1;
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1)
  }
}

@keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    transform: scale(1.5)
  }

  100% {
    opacity: .1;
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1)
  }
}

*:focus {
  outline: none;
}

ol,
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

a[target=_blank]:after {
  font-family: "Hobonichi-Icons";
  content: "\e914";
  font-weight: normal;
  font-size: .8em;
  position: relative;
  top: -.2em;
}

a {
  color: #463c0e;
  text-decoration: none;
  -webkit-tap-highlight-color:rgba(0,0,0,0);
}

.ff-b {
  font-family: 'Yu Mincho Pr6N D', serif;
}

.disabled {
  visibility: hidden;
}

.delighter {
  opacity: 0;
  -webkit-transform: translatey(40px);
  transform: translatey(40px);
  -webkit-transition: all 1.5s ease-out;
  transition: all 1.5s ease-out;
}

.delighter2 {
  -webkit-transform: translatey(40px);
  transform: translatey(40px);
  -webkit-transition: all 1.5s ease-out 1s;
  transition: all 1.5s ease-out .3s;
}

.delighter.started {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.5rem;
  line-height: 2.33;
  letter-spacing: 0.05em;
  color: #322723;
  display: none;
  font-family: 'Yu Mincho Pr6N M', serif;
}

.modaal-noscroll {
  overflow: auto;
  scrollbar-gutter: stable;
}

main {
  overflow-x: hidden;
}

small {
  font-size: 87.5%;
}

#kv {
  width: 100vw;
  height: 100vh;
  height: 100svh;
  position: relative;
}

#kv h1 {
  background: url(../images/logo_cacco.svg) no-repeat;
  background-size: contain;
  width: 198px;
  height: 45px;
  position: absolute;
  overflow: hidden;
  text-indent: 100%;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#kv h2 {
  background: url(../images/text_mv.svg) no-repeat;
  background-size: contain;
  width: 141px;
  height: 15px;
  position: absolute;
  overflow: hidden;
  text-indent: 100%;
  bottom: 12%;
  right: 15%;
  z-index: 2;
}

#kv h1,
#kv h2 {
  display: none;
}

.title {
  width: 100vw;
  height: 100vh;
  height: 100svh;
  position: absolute;
  top: 0;
}

.title>div {
  position: relative;
}

.swiper {
  width: 100%;
  height: 100vh;
  height: 100svh;
}

.swiper-slide {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
}
.wrapper{
  background-color: #e0e5e0;
}

.wrapper,#yodogawa {
  position: relative;
  z-index: 1;
}
#yodogawa {
  width: 100vw;
  padding: 80px 0;
  font-family: 'Yu Mincho Pr6N M', serif;
  line-height: 2.33;
  color: #332723;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url(../pre/images/bg_yodogawa.webp) no-repeat;
  background-size: cover;
  background-position: center bottom;
}
#yodogawa h3 {
  font-size: 2.2rem;
  line-height: 1.77;
  font-weight: normal;
}
#yodogawa h3 span {
  font-size: 1.5rem;
  display: block;
}
#yodogawa div.text {
  padding: 35px 0;
}
#yodogawa div.text p:nth-of-type(n + 2) {
  padding-top: .8em;
}
#yodogawa .prof {
  display: flex;
  justify-content: center;
  padding-top: 3em;
}

.modaal-container {
  max-width: 400px;
  box-shadow: none;
}

.modaal-content-container {
  padding: 60px 25px 40px;
  font-size: 1.45rem;
  font-family: 'Yu Mincho Pr6N M', serif;
}

.modaal-content-container .name {
  font-size: 2rem;
}

.modaal-content-container .name span {
  font-size: 1.5rem;
}

.modaal-wrapper .modaal-close {
  display: none;
}

.modaal-content-container a.js-modal-close img {
  position: absolute;
  right: 40px;
  bottom: 30px;
}

.modaal-content-container a {
  padding-top: 1.5em;
  display: block;
}

.modaal-content-container a[target=_blank]:after {
  display: none;
}

.date {
  background-color: #be9f84;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
}

#product .swiper {
  height: 100vh;
  position: relative;
}

#product .swiper-button-prev {
  width: auto;
  height: auto;
  left: 30px;
}

#product .swiper-button-prev::after {
  content: "";
  background: url(../images/btn_prev.svg) no-repeat;
  background-size: contain;
  width: 16px;
  height: 38px;
}

#product .swiper-button-next {
  width: auto;
  height: auto;
  right: 30px;
}

#product .swiper-button-next::after {
  content: "";
  background: url(../images/btn_next.svg) no-repeat;
  background-size: contain;
  width: 16px;
  height: 38px;
}

#product .swiper-pagination {
  width: auto;
  left: auto;
  right: 37px;
  bottom: 17px;
}

#product .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  border: 1px solid #fff;
  background-color: initial;
  margin: 0 8px;
}

#product .swiper-pagination-bullet-active {
  background-color: #fff;
}

#product .product-title {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 270px;
}
#product .product-title h2{
  display: inline-block;
  width: max-content;
}
#product .product-title h2 img{
  max-height: 100%;
  height: 270px;
}

#product .product-title p{
  position: absolute;
  bottom: 40px;
  left: 60px;
}

#product .product-title p img{
  height: 23px;
}

#product .product-title.sold p{
  opacity: 0;
}

#product2 {
  padding: 100px 0;
}

#product2 ul {
  max-width: 780px;
  margin: 0 auto;
}

#product2 ul + ul {
  margin-top: 30px;
  padding-top: 50px;
  border-top: 0.5px solid #808888;
}

#product2 ul li:nth-of-type(n + 2) {
  padding-top: 60px;
}

#product2 ul li h3 {
  font-size: 1.8rem;
  line-height: 1.55;
  padding-top: .5em;
}

#product2 ul li ._price {
  font-size: 1.6rem;
  line-height: 1;
  padding: 0.5em 0;
  font-family: 'Yu Mincho Pr6N D', serif;
}

#product2 ul li .text {
  font-size: 1.4rem;
  line-height: 1.78;
  padding-top: .5em;
  padding-bottom: 1em;
}

#product2 ul li a {
  display: inline-block;
}

#product2 ul li .resale {
  color: #c03a29;
  font-size: 1.3rem;
  line-height: 1;
  display: none;
  font-family: 'Yu Gothic Pr6N M', serif;
}

#product2 ul li .resale.note {
  display: block;
  line-height: 1.33;
}

#product2 ul li dt {
  position: relative;
}

#product2 ul li.sold dt::after {
  content: '';
  display: block;
  background: url(../images/icon_soldout.svg);
  background-size: contain;
  width: 90px;
  height: 26px;
  position: absolute;
  top: 15px;
  left: 15px;
}

#product2 ul li.sold .resale {
  display: block;
}

#product2 dt.new::after{
  content: "";
  display: block;
  background-image: url(../images/icon_new.svg);
  background-size: contain;
  width: 57px;
  height: 26px;
  position: absolute;
  top: 15px;
  left: 15px;
}

#product2 dd span img{
  width: 36px;
}
#product2 ul li dl dd .new{
  display: flex;
  gap: 15px;
}
#product2 ul li dl dd .new img:last-of-type {
  width: 68px;
}
#banner_wrapper hr{
  width: calc(100% - 16vw);
  max-width: 780px;
  margin: 0 auto;
  margin-bottom: 95px;
}
#banner_wrapper .banner {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: -5px;
  margin-bottom: 100px;
}
#banner_wrapper .banner li {
  width: 320px;
}
#banner_wrapper .tobichi-info{
  margin-right: auto;
  margin-left: auto;
  width: calc(100% - 16vw);
  max-width: fit-content;
  margin-bottom: 95px;
  line-height: calc(25 / 14);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
#banner_wrapper .tobichi-info div{
  font-size: 1.4rem;
}
#banner_wrapper .tobichi-info ul{
  font-family: 'Yu Mincho Pr6N D', sans-serif;
  letter-spacing: calc((50 / 1000) * 1em);
  font-size: 1.6rem;
}
#banner_wrapper .tobichi-info img{
  max-width: 320px;
  display: block;
  margin-right: auto;
  margin-left: auto;
}

#info {
  color: #fff;
  background-color: #463c0e;
  padding: 50px 0;
  text-align: center;
  font-size: 1.8rem;
}

#info h2 {
  font-size: 1.8rem;
}

#info .note {
  font-size: 1.6rem;
  margin-top: -5px;
}

#banner {
  background-color: #838177;
  padding: 40px 0 100px;
}

#banner .inner {
  max-width: 960px;
  width: 96%;
  margin: 0 auto;
}

#banner .inner h2 {
  padding: 60px 0 20px;
}

#banner .inner ul {
  display: flex;
  flex-wrap: wrap;
  gap: 26px 30px;
}

#banner .inner ul li {
  width: calc((100% - 60px)/3);
}

#news {
  background-color: #463c0e;
  color: #263d2b;
  font-size: 1.4rem;
  line-height: 1.92;
  padding: 65px 0;
}

#news .inner {
  border: 1px solid #838177;
  padding: 50px 0;
  max-width: 680px;
  width: 88%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

#news .inner>div {
  text-align: center;
}

#news .inner>div h2 {
  font-family: "Yu Mincho Pr6N D", serif;
  font-size: 1.6rem;
}

#news .inner>div div.text {
  font-size: 1.5rem;
  line-height: 1.933;
}

#news .inner>div>div {
  padding-top: 30px;
}

#news .inner>div>div ul {
  text-align: left;
  line-height: 1.42;
}

#news .inner>div>div ul li {
  padding-left: 1em;
}

#news .inner>div>div ul li:nth-of-type(n + 2) {
  padding-top: .5em;
}

#news .inner>div>div ul li::before {
  content: '・';
  display: inline-block;
  text-indent: -1em;
}

footer {
  background: url(../images/bg_footer.webp);
  background-size: cover;
  background-position: center;
  font-size: 1.4rem;
  color: #463c0e;
  font-family: 'Yu Gothic Pr6N M', sans-serif;
}

footer .inner {
  padding: 70px 0 50px;
  text-align: center;
}

footer .staff h3 {
  font-size: 1.4rem;
}

footer .staff span {
  font-size: 1.3rem;
  line-height: 1.44;
  display: block;
  padding-top: 1em;
}

footer ul {
  display: flex;
  gap: 55px;
  justify-content: center;
  align-items: center;
}

footer ul.hobo a {
  width: 80px;
  display: inline-block;
  font-size: 1.3rem;
  line-height: 2;
  border: 1px solid;
}

footer ul.sns {
  padding: 50px 0 60px;
  font-size: 1.3rem;
}

footer ul.link {
  font-size: 1.2rem;
  padding-top: 60px;
}

footer ul.link li {
  position: relative;
}

footer ul.link li:nth-of-type(n + 2)::before {
  content: '';
  display: block;
  position: absolute;
  left: -26px;
  top: 6px;
  border-left: 1px solid;
  height: 16px;
}

footer .copyright {
  font-size: 1.1rem;
  padding-top: 60px;
  display: inline-block;
}

.hidden {
  visibility: hidden;
}

@media screen and (min-width: 835px) {
  a:hover {
    opacity: .7;
    transition: opacity .5s;
  }

  .spOnly {
    display: none;
  }

  .swiper-slide {
    display: flex;
  }

  .title {
    display: flex;
  }

  .title>div {
    width: 50%;
  }

  .swiper-slide .main,
  .swiper-slide .sub {
    width: 50%;
    height: 100%;
  }

  .slide1 .main {
    background-image: url(../pre/images/mv01.jpg);
    background-size: cover;
  }

  .slide2 .main {
    background-image: url(../pre/images/mv02.jpg);
    background-size: cover;
  }

  .slide3 .main {
    background-image: url(../pre/images/mv03.jpg);
    background-size: cover;
  }

  .slide4 .main {
    background-image: url(../pre/images/mv04.jpg);
    background-size: cover;
  }

  .slide5 .main {
    background-image: url(../pre/images/mv05.jpg);
    background-size: cover;
  }
  .slide6 .main {
    background-image: url(../pre/images/mv06.jpg);
    background-size: cover;
    background-position: center right;
  }

  .swiper-slide .sub {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .swiper-slide .sub p {
    width: 80%;
    height: 80%;
  }

  .slide1 .sub p {
    background-image: url(../pre/images/mv01-s.jpg);
    background-size: cover;
  }

  .slide2 .sub p {
    background-image: url(../pre/images/mv02-s.jpg);
    background-size: cover;
    background-position: left center;
  }

  .slide3 .sub p {
    background-image: url(../pre/images/mv03-s.jpg);
    background-size: cover;
    background-position: right center;
  }

  .slide4 .sub p {
    background-image: url(../pre/images/mv04-s.jpg);
    background-size: cover;
  }

  .slide5 .sub p {
    background-image: url(../pre/images/mv05-s.jpg);
    background-size: cover;
    background-position: bottom center;
  }

  .slide6 .sub p {
    background-image: url(../pre/images/mv06-s.jpg);
    background-size: cover;
    background-position: bottom center;
  }

  .section01 .slide1 {
    background-image: url(../images/slide/slide1-1.jpg);
    background-size: cover;
  }

  .section01 .slide2 {
    background-image: url(../images/slide/slide1-2.jpg);
    background-size: cover;
  }

  .section01 .slide3 {
    background-image: url(../images/slide/slide1-3.jpg);
    background-size: cover;
  }

  .section01 .slide4 {
    background-image: url(../images/slide/slide1-4.jpg);
    background-size: cover;
  }

  .section01 .slide5 {
    background-image: url(../images/slide/slide1-5.jpg);
    background-size: cover;
  }

  .section02 .slide1 {
    background-image: url(../images/slide/slide2-1.jpg);
    background-size: cover;
  }

  .section02 .slide2 {
    background-image: url(../images/slide/slide2-2.jpg);
    background-size: cover;
  }

  .section02 .slide3 {
    background-image: url(../images/slide/slide2-3.jpg);
    background-size: cover;
  }

  .section02 .slide4 {
    background-image: url(../images/slide/slide2-4.jpg);
    background-size: cover;
  }

  .section03 .slide1 {
    background-image: url(../images/slide/slide3-1.jpg);
    background-size: cover;
  }

  .section03 .slide2 {
    background-image: url(../images/slide/slide3-2.jpg);
    background-size: cover;
  }

  .section03 .slide3 {
    background-image: url(../images/slide/slide3-3.jpg);
    background-size: cover;
  }

  .section03 .slide4 {
    background-image: url(../images/slide/slide3-4.jpg);
    background-size: cover;
  }

  .section04 .slide1 {
    background-image: url(../images/slide/slide4-1.jpg);
    background-size: cover;
  }

  .section04 .slide2 {
    background-image: url(../images/slide/slide4-2.jpg);
    background-size: cover;
  }

  .section04 .slide3 {
    background-image: url(../images/slide/slide4-3.jpg);
    background-size: cover;
  }

  .section04 .slide4 {
    background-image: url(../images/slide/slide4-4.jpg);
    background-size: cover;
  }
  #product2 ul li h3 {
    text-wrap: nowrap;
  }
  #product2 ul li dl {
    display: flex;
    gap: 35px;
  }

  #product2 ul li dl dt {
    max-width: 360px;
  }

  #product2 ul li dl dd {
    padding-top: .5em;
  }
}

@media screen and (max-height: 1000px) {
  .modaal-inner-wrapper {
    padding: 30px 6vw;
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 834px) {

  /* img {
        width: 100%;
    } */
  #kv h1 {
    width: 42.5vw;
    height: 44vw;
    height: 0;
    padding-top: 11%;
  }

  #kv h2 {
    width: 30.4vw;
    height: 0;
    padding-top: 3%;
    bottom: 20px;
    right: 6%;
  }

  .title>div {
    width: 100%;
    height: 100%;
    position: absolute;
  }

  .swiper-slide .main,
  .swiper-slide .sub {
    width: 100%;
    height: 100%;
  }

  .swiper-slide .sub {
    display: none;
  }

  .slide1 .main {
    background-image: url(../pre/images/mv01_sp.jpg);
    background-size: cover;
  }

  .slide2 .main {
    background-image: url(../pre/images/mv02_sp.jpg);
    background-size: cover;
    background-position: top left;
  }

  .slide3 .main {
    background-image: url(../pre/images/mv03_sp.jpg);
    background-size: cover;
  }

  .slide4 .main {
    background-image: url(../pre/images/mv04_sp.jpg);
    background-size: cover;
  }

  .slide5 .main {
    background-image: url(../pre/images/mv05_sp.jpg);
    background-size: cover;
    background-position: center bottom;
  }
  .slide6 .main {
    background-image: url(../pre/images/mv06_sp.jpg);
    background-size: cover;
    background-position: center right;
  }

  .section01 .slide1 {
    background-image: url(../images/slide/slide1-1_sp.jpg);
    background-size: cover;
  }

  .section01 .slide2 {
    background-image: url(../images/slide/slide1-2_sp.jpg);
    background-size: cover;
  }

  .section01 .slide3 {
    background-image: url(../images/slide/slide1-3_sp.jpg);
    background-size: cover;
  }

  .section01 .slide4 {
    background-image: url(../images/slide/slide1-4_sp.jpg);
    background-size: cover;
  }

  .section01 .slide5 {
    background-image: url(../images/slide/slide1-5_sp.jpg);
    background-size: cover;
  }


  .section02 .slide1 {
    background-image: url(../images/slide/slide2-1_sp.jpg);
    background-size: cover;
  }

  .section02 .slide2 {
    background-image: url(../images/slide/slide2-2_sp.jpg);
    background-size: cover;
  }

  .section02 .slide3 {
    background-image: url(../images/slide/slide2-3_sp.jpg);
    background-size: cover;
  }

  .section02 .slide4 {
    background-image: url(../images/slide/slide2-4_sp.jpg);
    background-size: cover;
  }

  .section03 .slide1 {
    background-image: url(../images/slide/slide3-1_sp.jpg);
    background-size: cover;
  }

  .section03 .slide2 {
    background-image: url(../images/slide/slide3-2_sp.jpg);
    background-size: cover;
  }

  .section03 .slide3 {
    background-image: url(../images/slide/slide3-3_sp.jpg);
    background-size: cover;
  }

  .section03 .slide4 {
    background-image: url(../images/slide/slide3-4_sp.jpg);
    background-size: cover;
  }

  .section04 .slide1 {
    background-image: url(../images/slide/slide4-1_sp.jpg);
    background-size: cover;
  }

  .section04 .slide2 {
    background-image: url(../images/slide/slide4-2_sp.jpg);
    background-size: cover;
  }

  .section04 .slide3 {
    background-image: url(../images/slide/slide4-3_sp.jpg);
    background-size: cover;
  }

  .section04 .slide4 {
    background-image: url(../images/slide/slide4-4_sp.jpg);
    background-size: cover;
  }

  #yodogawa {
    padding: 70px 0 160px;  
  }
  #yodogawa div.text {
      font-size: 1.4rem;
      padding: 2em;
      margin: 0 auto;
  }

  .modaal-content-container {
    font-size: 1.2rem;
    padding: 6vw;
  }

  .modaal-content-container .name {
    font-size: 1.7rem;
  }

  .modaal-content-container .name span {
    font-size: 1.3rem;
  }

  .date {
    height: 50px;
  }

  .date img {
    zoom: .92;
  }

  .wrapper {
    padding: 0;
  }

  #product .swiper {
    height: calc(100vh - 50px);
    height: calc(100lvh - 50px);
  }

  #product2 {
    padding: 70px 8vw;
  }

  #product2 ul li dl dd {
    padding-top: 25px;
  }

  #product2 ul li:nth-of-type(n + 2) {
    padding-top: 50px;
  }

  footer ul.sns {
    padding: 0 0 100px;
    position: relative;
  }

  footer ul.sns img {
    height: 29px;
  }

  footer ul.sns .mail img {
    height: 12px;
  }

  footer ul {
    gap: 40px;
  }

  footer .copyright {
    padding-top: 50px;
  }
}

@media screen and (max-width: 640px) {
  br:not(.sp-br) {
    display: none;
  }

  .pcOnly {
    display: none;
  }

  #yodogawa {
    background: url(../pre/images/bg_yodogawa_sp.webp) no-repeat;
    background-size: cover;
    background-position: center bottom;
  }
  #yodogawa div.text {
      font-size: 3.4vw;
  }
  .modaal-content-container a.js-modal-close img {
    right: 6vw;
    bottom: 5vw;
  }

  #product .product-title {
    height: initial;
  }
  #product .product-title h2{
    display: initial;
  }
  #product .product-title h2 img{
    width: 100%;
    height: initial;
  }

  #product .product-title p {
    left: 7.5%;
    bottom: 10%;
  }


  #product .swiper-button-prev {
    width: 13px;
    height: 30px;
    left: 5.33vw;
  }

  #product .swiper-button-next {
    width: 13px;
    height: 30px;
    right: 5.33vw;
  }

  #product .swiper-pagination {
    right: 8vw;
    bottom: 0;
  }

  #product .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
  }

  #product2 ul li.sold dt::after {
    top: 14px;
    left: 14px;
  }
  #banner_wrapper .banner {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: -10px;
    margin-bottom: 70px;
  }
  #banner_wrapper .banner li {
      width: 270px;
  }
  #banner_wrapper hr,
  #banner_wrapper .tobichi-info{
    margin-bottom: 70px;
  }
  #banner_wrapper .tobichi-info ul{
    width: 100%;
    font-size: 1.4rem;
  }
  #banner_wrapper .tobichi-info li{
    margin-bottom: 1rem;
  }
  #info {
    font-size: 1.6rem;
    line-height: 1.68;
  }

  #info h2 {
    font-size: 1.6rem;
    padding-bottom: 1em;
  }

  #info .note {
    font-size: 1.3rem;
    padding-top: 1em;
  }

  #banner {
    padding: 20px 0 60px;
  }

  #banner .inner {
    width: 100%;
    padding: 0 8vw;
  }

  #banner .inner h2 {
    padding: 50px 0 20px;
  }

  #banner .inner ul {
    gap: 10px;
  }

  #banner .inner ul li {
    width: calc((100% - 10px)/2);
  }

  #news .inner {
    padding: 50px 25px;
  }

  #news .inner>div h2 {
    font-size: 1.8rem;
  }

  #news .inner>div div {
    text-align: left;
  }

  #news .inner>div>div {
    padding-top: 25px;
  }

  footer .staff {
    width: 45.33vw;
    margin: 0 auto 85px;
    border-bottom: 1px solid;
    padding-bottom: 50px;
    font-size: 1.3rem;
  }

  footer .staff h3 {
    font-size: 1.3rem;
  }

  footer .staff span {
    font-size: 1.2rem;
  }

  footer ul.sns li.share {
    position: absolute;
    top: -40px;
  }

  footer ul.sns li.mail {
    position: absolute;
    bottom: 50px;
  }

  footer ul.link {
    display: block;
  }

  footer ul.link li:nth-of-type(n + 2)::before {
    display: none;
  }
}

/* ------------------------------------------
Header
------------------------------------------ */
[class*=hbi-] {
  font-size: 24px;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
  vertical-align: top;
}

.hbr-header {
  background-color: rgba(128, 133, 133, 0.95);
  position: fixed;
  z-index: 11;
  top: 0;
  width: 100vw;
  transform: translateY(-100px);
  opacity: 0;
  transition: transform 0.6s, opacity 0.6s;
}

.hbr-header.is-show {
  transform: translateY(0);
  opacity: 1;
}

.navbar {
  background-color: initial;
  display: flex;
  align-items: stretch;
  height: 54px;
  margin: 0 10px;
}

.navbar-link,
a.navbar-item {
  cursor: pointer;
}

.navbar-menu {
  display: flex;
  flex-grow: 1;
  background-color: initial;
  box-shadow: none;
  padding: 0;
}

.navbar-item {
  align-items: center;
  display: flex;
  gap: 12px;
}

.navbar-end {
  justify-content: flex-end;
  margin-left: auto;
  display: flex;
  align-items: center;
}

.navbar-end ul {
  display: flex;
  gap: 40px;
}

.brandlogo {
  margin: 10px 0;
}

.hbr-header .hbr-navbar-item {
  margin: 0;
}

.hbr-header .navbar-brand {
  align-items: center;
}

.navbar-brand a {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin: 5px 0;
}

.navbar a:link,
.navbar a:visited {
  color: #ffffff;
  transition: all .3s;
  font-family: 'Yu Gothic Pr6N M', san-serif;
  font-size: 1.4rem;
}

.device-pointer .hbr-navbar a:hover,
.device-pointer .hbr-navbar a:active {
  opacity: .5;
}

@media (min-width: 1200px) {
  .navbar {
    max-width: 1200px;
    margin: 0 auto;
  }

  .container {
    max-width: 1040px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  .hbr-header .hbr-navbar-item {
    margin: 0 4px;
  }
}

@media (max-width: 769px) {
  .navbar {
    height: 46px;
  }

  .navbar-brand a {
    margin: 8px 0;
  }

  .navbar-brand a img {
    width: 30px;
  }

  .navbar-brand .brandlogo {
    width: 80px;
    margin-top: 6px;
    margin-left: 20px;
  }

  .navbar-menu {
    margin-right: 22px;
  }

  .navbar-end ul {
    gap: 31px;
  }
}

@media (max-width: 640px) {
  .navbar-item-icon+div {
    display: none;
  }
}