/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.modaal-wrapper * {
  -webkit-box-sizing: border-box;
          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;
  -moz-appearance: none;
       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;
}

.modaal-container {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: auto;
  text-align: left;
  color: #000;
  max-width: 1000px;
  border-radius: 0;
  background: #fff;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 15px rgba(0, 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 0.2s ease-in-out;
  transition: all 0.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 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

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

.modaal-close:after {
  -webkit-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 0.2s ease-in-out;
  transition: background 0.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;
  -webkit-box-shadow: none !important;
          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;
  -webkit-box-shadow: none !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%);
  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 0.2s ease-in-out;
  transition: all 0.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 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

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

.modaal-gallery-control:after {
  margin: 5px 0 0;
  -webkit-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);
  transform: rotate(-45deg);
}

.modaal-gallery-prev:after {
  margin: -5px 0 0;
  -webkit-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%;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 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(0.25);
  transform: scale(0.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) {
  -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: 0.12s;
  animation-delay: 0.12s;
}

.modaal-loading-spinner > div:nth-of-type(2) {
  -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: 0.25s;
  animation-delay: 0.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) {
  -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: 0.37s;
  animation-delay: 0.37s;
}

.modaal-loading-spinner > div:nth-of-type(4) {
  -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: 0.5s;
  animation-delay: 0.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) {
  -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: 0.62s;
  animation-delay: 0.62s;
}

.modaal-loading-spinner > div:nth-of-type(6) {
  -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: 0.75s;
  animation-delay: 0.75s;
}

.modaal-loading-spinner > div:nth-of-type(7) {
  -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: 0.87s;
  animation-delay: 0.87s;
}

.modaal-loading-spinner > div:nth-of-type(8) {
  -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;
    transform: none;
    background: rgba(0, 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;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: 0.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: 0.8em;
  position: relative;
  top: -0.2em;
}

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

.ff-b {
  font-family: "Koburina Gothic W6 JIS2004", sans-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;
}
.delighter.started {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}

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

html {
  font-size: 62.5%;
}

body {
  font-size: 1.5rem;
  line-height: 2.33;
  letter-spacing: 0.05em;
  color: #001000;
  font-family: "Yu Gothic Pr6N M", sans-serif;
  display: none;
}

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

main {
  overflow-x: hidden;
}

#kv {
  width: 100vw;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  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%;
  -webkit-transform: translate(-50%, -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 h3 {
  background: url(../images/date_debut-top2.svg) no-repeat;
  background-size: contain;
  width: 130px;
  height: 130px;
  position: absolute;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  top: 4%;
  right: 4%;
  z-index: 2;
}

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

.title {
  width: 100vw;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  position: absolute;
  top: 0;
}

.title > div {
  position: relative;
}

.swiper {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

.swiper-slide {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #e4e8ea;
  font-weight: bold;
}

.wrapper,
#yodogawa {
  position: relative;
  z-index: 1;
}

#yodogawa {
  width: 100vw;
  padding: 80px 0;
  font-family: "Yu Mincho Pr6N M", serif;
  line-height: 2.26;
  color: #0a2739;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  background-color: #d4dee0;
}

#yodogawa h3 {
  font-size: 2.2rem;
  line-height: 1.77;
  font-weight: normal;
}

#yodogawa h3 span {
  font-size: 1.5rem;
  display: block;
}

#yodogawa .prof {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 2.5em;
}
#yodogawa .prof a.inline:nth-of-type(n + 2) {
  display: block;
  padding-top: 1.2em;
}

.modaal-container {
  max-width: 510px;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: rgba(128, 128, 128, 0.97);
}

.modaal-content-container {
  padding: 60px 25px 40px;
  font-size: 1.45rem;
  color: #e4e8ea;
  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;
  color: #e4e8ea;
}
.modaal-content-container a span {
  text-decoration: underline;
}

.modaal-content-container a:nth-of-type(n + 2) {
  padding-top: 0;
}
.modaal-content-container a:nth-of-type(n + 2) img {
  zoom: 0.83;
}
@media (min-width: 640px) {
  .modaal-content-container a:nth-of-type(n + 2) img {
    zoom: 1;
  }
}

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

.title_debut {
  height: 60px;
  background-color: #0a2739;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

div.nav-top {
  border-bottom: 0.5px solid;
  padding-bottom: 0;
  background-color: #566c75;
}

div.nav-top ul {
  max-width: 530px;
  width: 85%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 40px 0;
}

div.nav-top img {
  width: initial !important;
}

#lookbook {
  background-color: #cdd7da;
  padding: 70px 0 0;
}
#lookbook > div {
  padding-bottom: 75px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
#lookbook > div > .caption {
  font-size: 1.3rem;
  line-height: 1.83;
  letter-spacing: 0.06em;
  padding-top: 1em;
  text-indent: -1.3em;
  padding-left: 1.3em;
}
#lookbook div.nav {
  border-top: 0.5px solid;
  padding-bottom: 0;
}
#lookbook div.nav ul {
  max-width: 530px;
  width: 85%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 40px 0;
}
#lookbook div.nav img {
  width: initial;
}

.detail {
  background-color: #566c75;
  font-family: "Yu Mincho Pr6N M", serif;
  font-size: 1.3rem;
  line-height: 2;
  letter-spacing: 0.06em;
  padding-top: 100px;
}
@media (min-width: 835px) {
  .detail {
    font-size: 1.5rem;
  }
}
.detail p + p {
  margin-top: 0.5em;
}
.detail h4 {
  font-family: "Yu Mincho Pr6N D", serif;
  font-size: 1.2em;
  margin-bottom: 35px;
  white-space: nowrap;
}
@media (min-width: 835px) {
  .detail h4 {
    margin-bottom: 50px;
  }
}
.detail .yen {
  margin-top: 1em;
}
.detail .yen small {
  font-size: 0.8em;
}
.detail > div {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100vw;
  color: #e9f1f2;
  padding-right: 40px;
  padding-left: 40px;
  margin-right: auto;
  margin-left: auto;
}

.information {
  font-family: "Yu Mincho Pr6N M", serif;
  width: 88vw;
  max-width: 700px;
  background-color: #fff;
  margin-bottom: 74px;
  padding: 45px 0;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 835px) {
  .information {
    margin-bottom: 100px;
    padding: 80px 0;
  }
}
.information_title {
  display: block;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 20px;
}
.information h4 {
  font-size: 1.55rem;
  letter-spacing: 0.06em;
  text-align: center;
  padding-bottom: 10px;
}
@media (min-width: 835px) {
  .information h4 {
    font-size: 1.8rem;
    padding-bottom: 20px;
  }
}
.information .img {
  max-width: 560px;
  width: 74.666vw;
  margin: 0 auto;
}
.information .text {
  padding-top: 20px;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  width: 74.666vw;
  margin: 0 auto;
  font-size: 1.4rem;
}
@media (min-width: 835px) {
  .information .text {
    font-size: 1.5rem;
    padding-top: 40px;
  }
}

.color {
  width: 90vw;
  max-width: 900px;
  border: 1px solid #fff;
  text-align: center;
  color: #fff;
  font-family: "Yu Mincho Pr6N M", serif;
  font-size: 1.5rem;
  line-height: 1.44;
  letter-spacing: 0.06em;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 25px;
}
@media (min-width: 835px) {
  .color {
    line-height: 2;
  }
}
.color dl {
  padding-right: 8%;
  padding-left: 8%;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 835px) {
  .color dl {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.color dl dt p:nth-of-type(n + 2) {
  padding-top: 0.5em;
}
@media (min-width: 835px) {
  .color dl dt p:nth-of-type(n + 2) {
    padding-top: 0;
  }
}
.color ul {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px 20px;
}
@media (min-width: 835px) {
  .color ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 60px;
  }
}
.color img {
  width: 100%;
  margin-bottom: 0.8em;
}
@media (min-width: 835px) {
  .color img {
    max-width: 320px;
    margin-bottom: 35px;
  }
}
.color small {
  font-size: 0.75em;
}
@media (min-width: 835px) {
  .color br {
    display: none;
  }
}

.note {
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 0.06em;
  font-family: "Yu Mincho Pr6N M", serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: left;
  color: #001000;
}
.note .span {
  padding-bottom: 0.3em;
  display: block;
  text-align: center;
}
.note a {
  color: #001000;
}
.note a.viewpage {
  color: #6e6e6e;
  pointer-events: none;
}

.banner {
  max-width: 477px;
  width: 88vw;
  margin: 0 auto;
  padding-bottom: 60px !important;
}
@media (min-width: 835px) {
  .banner {
    padding-bottom: 120px !important;
    padding-top: 40px;
  }
}
.banner h4 {
  font-family: "Yu Mincho Pr6N M", serif;
  color: #001000;
  font-size: 1.5rem;
  text-align: center;
  padding-bottom: 0.5em;
}
@media (min-width: 835px) {
  .banner h4 {
    font-size: 2rem;
  }
}

footer {
  background: url(../images/bg_footer.jpg);
  background-size: cover;
  font-size: 1.4rem;
  color: #e4e8ea;
}

footer .inner {
  padding: 80px 0 50px;
  text-align: center;
}
@media (min-width: 835px) {
  footer .inner {
    padding: 25px 0 50px;
  }
}

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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 55px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: 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;
}

footer a {
  color: #ffffff;
}

.hidden {
  visibility: hidden;
}

@media screen and (min-width: 835px) {
  a:hover {
    opacity: 0.7;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .title > div {
    width: 50%;
  }
  .swiper-slide .main,
  .swiper-slide .sub {
    width: 50%;
    height: 100%;
  }
  .swiper-slide .main {
    background-size: cover;
    background-position: center;
  }
  .swiper-slide .sub {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .swiper-slide .sub p {
    width: 80%;
    height: 80%;
    background-size: cover;
  }
  .slide1 .main {
    background-image: url(../images/mv26.jpg);
    background-position: center;
  }
  .slide1 .sub p {
    background-image: url(../images/mv26-s.jpg);
    background-position: center;
  }
  .slide2 .main {
    background-image: url(../images/mv27.jpg);
    background-position: center;
  }
  .slide2 .sub p {
    background-image: url(../images/mv27-s.jpg);
    background-position: center;
  }
  .slide3 .main {
    background-image: url(../images/mv28.jpg);
    background-position: center;
  }
  .slide3 .sub p {
    background-image: url(../images/mv28-s.jpg);
    background-position: center;
  }
  .slide4 .main {
    background-image: url(../images/mv29.jpg);
    background-position: center;
  }
  .slide4 .sub p {
    background-image: url(../images/mv29-s.jpg);
    background-position: center;
  }
}
@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%;
  }
  #kv h3 {
    width: 23.2vw;
    height: 0;
    padding-top: 23.2%;
    top: 4vw;
    right: 4vw;
  }
  .title > div {
    width: 100%;
    height: 100%;
    position: absolute;
  }
  .swiper-slide .main,
  .swiper-slide .sub {
    width: 100%;
    height: 100%;
  }
  .swiper-slide .sub {
    display: none;
  }
  .swiper-slide .main {
    background-size: cover;
    background-position: center;
  }
  .slide1 .main {
    background-image: url(../images/mv26_sp.jpg);
    background-position: center;
  }
  .slide2 .main {
    background-image: url(../images/mv27_sp.jpg);
    background-position: center;
  }
  .slide3 .main {
    background-image: url(../images/mv28_sp.jpg);
    background-position: center;
  }
  .slide4 .main {
    background-image: url(../images/mv29_sp.jpg);
    background-position: center;
  }
  #yodogawa {
    padding: 70px 0;
  }
  #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;
  }
  .wrapper {
    padding: 0;
  }
  .title_debut {
    height: 84px;
  }
  .detail {
    padding-top: 70px;
  }
  .note {
    margin-bottom: -10px;
    font-size: 1.3rem;
    letter-spacing: 0.02em;
    line-height: 2.3;
  }
  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 div.text {
    font-size: 3.4vw;
  }
  .modaal-content-container a.js-modal-close img {
    right: 6vw;
    bottom: 5vw;
  }
  div.nav-top ul {
    padding: 30px 0;
  }
  div.nav-top img {
    width: 50px !important;
  }
  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 {
    padding: 0 0 100px;
    position: relative;
  }
  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;
  }
  #lookbook div.nav ul {
    padding: 30px 0;
  }
  #lookbook div.nav ul img {
    width: 50px !important;
  }
}
#lookbook {
  padding: 110px 0 0;
}

#lookbook h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
}

#lookbook > div.conv dl dt {
  font-family: "Yu Mincho Pr6N D", serif;
}

#lookbook > div.conv dl dd {
  font-family: "Yu Mincho Pr6N M", serif;
}

#lookbook > div.conv h3 {
  font-family: "Yu Mincho Pr6N D", serif;
  font-size: 2rem;
  line-height: 1.44;
  border-left: 10px solid;
  border-bottom: 1px solid;
  color: #0a2739;
  padding-left: 1.2em;
  padding-bottom: 0.25em;
  margin: 90px auto 60px;
}

#lookbook > div.conv h3 span {
  position: relative;
  top: 0;
  right: 0;
}

#lookbook > div.conv .continued {
  text-align: center;
  padding-top: 2em;
  font-family: "Yu Mincho Pr6N M", serif;
}

#lookbook .product {
  padding: 95px 0 0;
}

#lookbook .product img {
  max-width: 420px;
  width: 100%;
  margin: 0 auto !important;
  padding-top: 25px;
}

#lookbook div.nav {
  width: 100vw !important;
  padding-left: initial !important;
}

div.nav-top {
  border-bottom: 0.5px solid;
  padding-bottom: 0;
  background-color: #cdd7da;
}

div.nav-top ul {
  max-width: 530px;
  width: 85%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 40px 0;
}

div.nav-top img {
  width: initial !important;
}

@media screen and (min-width: 641px) {
  .spOnly {
    display: none;
  }
  #lookbook > div.conv {
    max-width: 550px;
    width: initial;
    margin: 0 auto;
    padding-bottom: 90px;
  }
  #lookbook > div img {
    margin-left: auto;
    margin-right: auto;
  }
  #lookbook > div.conv dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 1.6rem;
    line-height: 2.18;
    letter-spacing: 0.06em;
  }
  #lookbook > div.conv dl dt {
    width: 21%;
  }
  #lookbook > div.conv dl dd {
    width: 79%;
    margin: 0 0 2em 0;
    white-space: nowrap;
  }
  #lookbook > div.conv .image {
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 834px) {
  #lookbook .note {
    width: 76.533% !important;
    margin: 0 auto -10px !important;
  }
}
@media screen and (max-width: 640px) {
  #yodogawa div.text {
    font-size: 3.4vw;
    line-height: 2.15;
  }
  #lookbook {
    padding: 45px 0 0;
  }
  #lookbook h2 {
    margin-bottom: 30px;
  }
  #lookbook > div.conv {
    width: 85.333vw;
    margin: 0 auto;
  }
  #lookbook > div.conv .image {
    margin-bottom: 35px;
  }
  #lookbook > div.conv .image img {
    width: 100% !important;
  }
  #lookbook .product {
    padding: 10px 0 0;
  }
  #lookbook > div.conv dl {
    font-size: 1.4rem;
  }
  #lookbook > div.conv dl dd {
    padding-left: 10px;
    padding-bottom: 45px;
    line-height: 2.14;
  }
  #lookbook > div.conv h3 {
    font-size: 1.55rem;
    line-height: 1.44;
    padding-left: 1em;
    padding-bottom: 0.2em;
    margin: 45px auto 30px;
    border-left: 8px solid;
  }
  #lookbook .product {
    padding: 30px 0 0;
  }
  #lookbook .product img {
    padding-top: 20px;
  }
  #lookbook > div.conv .continued {
    padding-top: 0;
  }
  div.nav-top ul {
    padding: 30px 0;
  }
  div.nav-top img {
    width: 50px !important;
  }
}/*# sourceMappingURL=pre07.css.map */