@charset "UTF-8";
.appear.up .item {
  transform: translateY(6px);
}

.appear.down .item {
  transform: translateY(-6px);
}

.appear.left .item {
  transform: translateX(40px);
}

.appear.right .item {
  transform: translateX(-40px);
}

.appear .item {
  transition: all 0.8s;
  opacity: 0;
}
.appear.inview .item {
  opacity: 1;
  transform: none;
}
.appear.inview .item:nth-child(1) {
  transition-delay: 0.1s;
}
.appear.inview .item:nth-child(2) {
  transition-delay: 0.2s;
}
.appear.inview .item:nth-child(3) {
  transition-delay: 0.3s;
}
.appear.inview .item:nth-child(4) {
  transition-delay: 0.4s;
}
.appear.inview .item:nth-child(5) {
  transition-delay: 0.5s;
}
.appear.inview .item:nth-child(6) {
  transition-delay: 0.6s;
}
.appear.inview .item:nth-child(7) {
  transition-delay: 0.7s;
}
.appear.inview .item:nth-child(8) {
  transition-delay: 0.8s;
}
.appear.inview .item:nth-child(9) {
  transition-delay: 0.9s;
}
.appear.inview .item:nth-child(10) {
  transition-delay: 1s;
}

.btn {
  position: relative;
  display: inline-block;
  background-color: white;
  border: 1px solid black;
  font-weight: 500;
  padding: 10px 40px;
  margin: 10px auto;
  cursor: pointer;
  transition: all 0.3s;
  color: black;
  text-decoration: none !important;
}
.btn.float:hover {
  background-color: black;
  color: white;
  box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.5);
}
.btn.filled {
  background-color: black;
  color: white;
  box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.5);
}
.btn.filled:hover {
  background-color: white;
  color: black;
  box-shadow: none;
}
.btn.letter-spacing:hover {
  background-color: black;
  letter-spacing: 3px;
  color: white;
}
.btn.shadow {
  box-shadow: none;
}
.btn.shadow:hover {
  transform: translate(-2.5px, -2.5px);
  box-shadow: 5px 5px 0 0 black;
}
.btn.solid {
  box-shadow: 2px 2px 0 0 black;
  border-radius: 7px;
}
.btn.solid:hover {
  transform: translate(2px, 2px);
  box-shadow: none;
}
.btn.slide-bg {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn.slide-bg::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: black;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  transition: transform 0.3s;
  z-index: -1;
}
.btn.slide-bg:hover {
  color: white;
}
.btn.slide-bg:hover::before {
  transform: none;
}
.btn.cover-3d {
  position: relative;
  z-index: 1;
  transform-style: preserve-3d;
  perspective: 300px;
}
.btn.cover-3d span {
  display: inline-block;
  transform: translateZ(20px);
}
.btn.cover-3d::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: black;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotateX(90deg);
  transition: all 0.3s;
  transform-origin: top center;
  opacity: 0;
}
.btn.cover-3d:hover {
  color: white;
}
.btn.cover-3d:hover::before {
  transform: none;
  opacity: 1;
}

.btn-cubic {
  position: relative;
  display: inline-block;
  transform-style: preserve-3d;
  perspective: 300px;
  width: 150px;
  height: 50px;
  margin: 0 auto;
  cursor: pointer;
  font-weight: 600;
}
.btn-cubic span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid black;
  box-sizing: border-box;
  line-height: 48px;
  text-align: center;
  transition: all 0.3s;
  transform-origin: center center -25px;
  color: black;
}
.btn-cubic .hovering {
  background-color: black;
  color: white;
  transform: rotateX(90deg);
}
.btn-cubic .default {
  background-color: white;
  color: black;
  transform: rotateX(0);
}
.btn-cubic:hover .hovering {
  transform: rotateX(0);
}
.btn-cubic:hover .default {
  transform: rotateX(-90deg);
}

.swiper {
  overflow: visible !important;
}

.swiper-slide {
  height: 500px;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .swiper-slide {
    box-shadow: 0 8px 40px -10px rgba(0, 0, 0, 0.8);
  }
}
.swiper-slide > img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.3);
  transition: transform 1.9s ease;
}
.swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 61, 125, 0.1);
}
.swiper-slide-active > img {
  transform: none;
}
.swiper-slide-active .hero__title {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.hero {
  overflow: hidden;
  padding-top: 100px;
}
.hero__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 20px));
  color: white;
  font-size: 25px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease 1s, transform 0.3s ease 1s;
}
.hero__footer {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 2;
  height: 68px;
  width: 22px;
  overflow: hidden;
}
.hero__downarrow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 6px;
  animation-name: kf-arrow-anime;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
.hero__scrolltext {
  position: absolute;
  transform: rotate(90deg);
  color: rgba(255, 255, 255, 0.7);
  left: -8px;
  top: 11px;
  font-size: 1.2em;
}

@keyframes kf-arrow-anime {
  0%, 50%, 100% {
    transform: translateY(-10%);
  }
  30% {
    transform: none;
  }
}
.animate-title,
.tween-animate-title {
  opacity: 0;
}
.animate-title.inview,
.tween-animate-title.inview {
  opacity: 1;
}
.animate-title.inview .char,
.tween-animate-title.inview .char {
  display: inline-block;
}
.animate-title .char,
.tween-animate-title .char {
  opacity: 0;
}

.animate-title.inview .char {
  animation-name: kf-animate-chars;
  animation-duration: 0.5s;
  animation-timing-function: cubic-bezier(0.39, 1.57, 0.58, 1);
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}
.animate-title.inview .char:nth-child(1) {
  animation-delay: 0.04s;
}
.animate-title.inview .char:nth-child(2) {
  animation-delay: 0.08s;
}
.animate-title.inview .char:nth-child(3) {
  animation-delay: 0.12s;
}
.animate-title.inview .char:nth-child(4) {
  animation-delay: 0.16s;
}
.animate-title.inview .char:nth-child(5) {
  animation-delay: 0.2s;
}
.animate-title.inview .char:nth-child(6) {
  animation-delay: 0.24s;
}
.animate-title.inview .char:nth-child(7) {
  animation-delay: 0.28s;
}
.animate-title.inview .char:nth-child(8) {
  animation-delay: 0.32s;
}
.animate-title.inview .char:nth-child(9) {
  animation-delay: 0.36s;
}
.animate-title.inview .char:nth-child(10) {
  animation-delay: 0.4s;
}
.animate-title.inview .char:nth-child(11) {
  animation-delay: 0.44s;
}
.animate-title.inview .char:nth-child(12) {
  animation-delay: 0.48s;
}
.animate-title.inview .char:nth-child(13) {
  animation-delay: 0.52s;
}
.animate-title.inview .char:nth-child(14) {
  animation-delay: 0.56s;
}
.animate-title.inview .char:nth-child(15) {
  animation-delay: 0.6s;
}
.animate-title.inview .char:nth-child(16) {
  animation-delay: 0.64s;
}
.animate-title.inview .char:nth-child(17) {
  animation-delay: 0.68s;
}
.animate-title.inview .char:nth-child(18) {
  animation-delay: 0.72s;
}
.animate-title.inview .char:nth-child(19) {
  animation-delay: 0.76s;
}
.animate-title.inview .char:nth-child(20) {
  animation-delay: 0.8s;
}
.animate-title.inview .char:nth-child(21) {
  animation-delay: 0.84s;
}
.animate-title.inview .char:nth-child(22) {
  animation-delay: 0.88s;
}
.animate-title.inview .char:nth-child(23) {
  animation-delay: 0.92s;
}
.animate-title.inview .char:nth-child(24) {
  animation-delay: 0.96s;
}
.animate-title.inview .char:nth-child(25) {
  animation-delay: 1s;
}
.animate-title.inview .char:nth-child(26) {
  animation-delay: 1.04s;
}
.animate-title.inview .char:nth-child(27) {
  animation-delay: 1.08s;
}
.animate-title.inview .char:nth-child(28) {
  animation-delay: 1.12s;
}
.animate-title.inview .char:nth-child(29) {
  animation-delay: 1.16s;
}
.animate-title.inview .char:nth-child(30) {
  animation-delay: 1.2s;
}

@keyframes kf-animate-chars {
  0% {
    opacity: 0;
    transform: translateY(-50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.cover-slide {
  position: relative;
  overflow: hidden;
}
.cover-slide::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #eaebe6;
  opacity: 0;
}
.cover-slide.inview::after {
  opacity: 1;
  animation-name: kf-cover-slide;
  animation-duration: 1.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}

@keyframes kf-cover-slide {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.1% {
    transform-origin: right;
    transform: scaleX(1);
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
.img-zoom, .bg-img-zoom {
  opacity: 0;
}
.inview .img-zoom, .inview .bg-img-zoom {
  opacity: 1;
  transition: transform 0.3s ease;
  animation-name: kf-img-show;
  animation-duration: 1.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;
}
.inview .img-zoom:hover, .inview .bg-img-zoom:hover {
  transform: scale(1.05);
}

@keyframes kf-img-show {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  50.1% {
    opacity: 1;
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
  }
}
.hover-darken::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: background-color 0.3s ease;
  pointer-events: none;
  animation-name: kf-img-show;
  animation-duration: 1.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;
}
.hover-darken:hover::before {
  background-color: rgba(0, 0, 0, 0.4);
}

.bg-img-zoom {
  background-image: url(images/image-1.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
}

.img-bg50 {
  position: relative;
}
.img-bg50::before {
  display: block;
  content: "";
  padding-top: 50%;
}

.mobile-menu {
  position: fixed;
  right: 0;
  top: 60px;
  width: 300px;
}
.mobile-menu .logo {
  padding: 0 40px;
  font-size: 38px;
}
.mobile-menu__btn {
  background-color: unset;
  border: none;
  outline: none !important;
  cursor: pointer;
}
@media screen and (min-width: 960px) {
  .mobile-menu__btn {
    display: none;
  }
}
.mobile-menu__btn > span {
  background-color: black;
  width: 35px;
  height: 2px;
  display: block;
  margin-bottom: 9px;
  transition: transform 0.7s;
}
.mobile-menu__btn > span:last-child {
  margin-bottom: 0;
}
.mobile-menu__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s;
  cursor: pointer;
  z-index: 200;
}
.mobile-menu__main {
  padding: 0;
  perspective: 2000px;
  transform-style: preserve-3d;
}
.mobile-menu__item {
  list-style: none;
  display: block;
  transform: translate3d(0, 0, -1000px);
  padding: 0 40px;
  transition: transform 0.3s, opacity 0.2s;
  opacity: 0;
}
.mobile-menu__link {
  display: block;
  margin-top: 30px;
  color: black;
  text-decoration: none !important;
}

.menu-open #container {
  transform: translate(-300px, 60px);
  box-shadow: 0 8px 40px -10px rgba(0, 0, 0, 0.8);
}
.menu-open .mobile-menu__cover {
  opacity: 1;
  visibility: visible;
}
.menu-open .mobile-menu__item {
  transform: none;
  opacity: 1;
}
.menu-open .mobile-menu__item:nth-child(1) {
  transition-delay: 0.07s;
}
.menu-open .mobile-menu__item:nth-child(2) {
  transition-delay: 0.14s;
}
.menu-open .mobile-menu__item:nth-child(3) {
  transition-delay: 0.21s;
}
.menu-open .mobile-menu__item:nth-child(4) {
  transition-delay: 0.28s;
}
.menu-open .mobile-menu__item:nth-child(5) {
  transition-delay: 0.35s;
}
.menu-open .mobile-menu__btn > span {
  background-color: black;
}
.menu-open .mobile-menu__btn > span:nth-child(1) {
  transition-delay: 70ms;
  transform: translateY(11px) rotate(135deg);
}
.menu-open .mobile-menu__btn > span:nth-child(2) {
  transition-delay: 0s;
  transform: translateX(-18px) scaleX(0);
}
.menu-open .mobile-menu__btn > span:nth-child(3) {
  transition-delay: 140ms;
  transform: translateY(-11px) rotate(-135deg);
}

body {
  font-family: "Cormorant Garamond", "Shippori Mincho", "Noto Serif JP", serif;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

.mb-sm, .contact__img, .recommend__img, .flowers__title, .occasion__title, .sub-title {
  margin-bottom: 16px !important;
}

.mb-lg, .contact, .recommend, .flowers, .occasion__btn {
  margin-bottom: 80px !important;
}
@media screen and (min-width: 960px) {
  .mb-lg, .contact, .recommend, .flowers, .occasion__btn {
    margin-bottom: 150px !important;
  }
}

.pb-sm, .contact__texts, .recommend__texts {
  padding-bottom: 16px !important;
}

.pb-lg, .hero {
  padding-bottom: 80px !important;
}
@media screen and (min-width: 960px) {
  .pb-lg, .hero {
    padding-bottom: 150px !important;
  }
}

.content-width, .recommend-hero__inner, .gallery__inner, .occasion-hero__inner, .gallery-hero__inner, .header__inner, .contact, .recommend, .flowers, .occasion__header, .occasion__container, .footer {
  width: 90%;
  margin: 0 auto;
  max-width: 1070px;
}

.flex, .header__nav, .contact__inner, .recommend__inner, .flowers__inner, .occasion__container, .footer__nav, .footer__ul {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 600px) {
  .flex, .header__nav, .contact__inner, .recommend__inner, .flowers__inner, .occasion__container, .footer__nav, .footer__ul {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.purple {
  color: #904669;
}

#main-content {
  position: relative;
  z-index: 0;
}

.font-ss, .contact__description {
  font-size: 12px;
  line-height: 1.9;
}
@media screen and (min-width: 960px) {
  .font-ss, .contact__description {
    font-size: 14px;
  }
}

.font-sm, .introduction__text, .info__text, .location .title, .location .address, .access .access__text, .logo__subtitle, .occasion__title, .sub-title {
  font-size: 14px;
  line-height: 1.8;
}
@media screen and (min-width: 960px) {
  .font-sm, .introduction__text, .info__text, .location .title, .location .address, .access .access__text, .logo__subtitle, .occasion__title, .sub-title {
    font-size: 16px;
  }
}

.font-md, .access .title {
  font-size: 18px;
  font-weight: 500;
}
@media screen and (min-width: 960px) {
  .font-md, .access .title {
    font-size: 20px;
  }
}

.font-lr, .introduction__name, .flowers__title, .main-title {
  font-size: 20px;
  font-family: "Cormorant Garamond", "Shippori Mincho", "Noto Serif JP", serif;
  font-weight: 600;
}
@media screen and (min-width: 960px) {
  .font-lr, .introduction__name, .flowers__title, .main-title {
    font-size: 26px;
  }
}

.font-lg {
  font-size: 28px;
  font-family: "Cormorant Garamond", "Shippori Mincho", "Noto Serif JP", serif;
  font-weight: 600;
}
@media screen and (min-width: 960px) {
  .font-lg {
    font-size: 40px;
  }
}

.main-title {
  font-weight: 600;
  margin-bottom: 0;
  display: block;
  font-family: "Cormorant Garamond", "Shippori Mincho", "Noto Serif JP", serif;
  letter-spacing: 0.08em;
}

.sub-title {
  color: #535353;
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  letter-spacing: 0.1em;
  font-weight: 500;
}

#container {
  position: relative;
  z-index: 10;
  background: white;
  transition: transform 0.5s box-shadow 0.5s;
}

#main-content {
  position: relative;
  z-index: 0;
}

main {
  position: relative;
  z-index: -1;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: transparent;
  display: flex;
  align-items: center;
  z-index: 100;
}
.header.triggered {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 10px 0 25px -10px rgba(0, 0, 0, 0.5);
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__nav {
  justify-content: space-between;
  align-items: center;
  text-align: center;
  display: none;
}
@media screen and (min-width: 960px) {
  .header__nav {
    display: block;
  }
}
.header__ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
}
.header__li {
  margin: 10px;
}
@media screen and (min-width: 600px) {
  .header__li {
    margin-left: 30px;
    margin-right: 0;
  }
}
.header__li > a {
  color: black;
  text-decoration: none;
  text-transform: uppercase;
}
.header .logo {
  font-size: 35px;
  justify-content: center;
}
@media screen and (min-width: 600px) {
  .header .logo {
    font-size: 35px;
    justify-content: flex-start;
  }
}

.recommend__inner {
  position: relative;
  z-index: 0;
  justify-content: space-between;
  background: #eaebe6;
  padding: 15px;
}
@media screen and (min-width: 600px) {
  .recommend__inner {
    padding: 50px;
  }
}
@media screen and (min-width: 1280px) {
  .recommend__inner {
    padding: 50px 150px;
  }
}
.recommend__img {
  height: 300px;
  transition: box-shadow 0.5s ease 1.6s;
}
@media screen and (min-width: 600px) {
  .recommend__img {
    flex-basis: 47%;
  }
}
@media screen and (min-width: 960px) {
  .recommend__img {
    height: 400px;
  }
}
.recommend__img > img {
  position: relative;
  z-index: -1;
  opacity: 1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 600px) {
  .recommend__texts {
    display: flex;
    align-items: flex-end;
    flex-basis: 47%;
  }
}
.recommend__texts.inview .recommend__title::before {
  animation-name: scaleX;
  animation-duration: 0.3s;
  animation-timing-function: ease;
  animation-delay: 1.5s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
.recommend__title {
  position: relative;
}
.recommend__title::before {
  display: none;
  position: absolute;
  content: "";
  height: 1px;
  width: 100px;
  top: 50%;
  left: -120px;
  background: black;
  transform: scaleX(0);
  transform-origin: right;
}
@media screen and (min-width: 960px) {
  .recommend__title::before {
    display: block;
  }
}
@media screen and (min-width: 960px) {
  .recommend__description {
    margin-bottom: 40px;
  }
}

@keyframes scaleX {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@media screen and (min-width: 600px) {
  .flowers__item {
    flex-basis: 50%;
  }
}
@media screen and (min-width: 960px) {
  .flowers__item {
    margin-bottom: 60px;
  }
}
.flowers__btn {
  text-align: center;
  flex-basis: 100%;
}

.occasion__inner {
  position: relative;
}
.occasion__inner::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90%;
  background: #eaebe6;
}
.occasion__container {
  position: relative;
  z-index: 2;
  justify-content: space-between;
}
@media screen and (min-width: 600px) {
  .occasion__item {
    flex-basis: 47%;
  }
}
@media screen and (min-width: 960px) {
  .occasion__item {
    flex-basis: 25%;
  }
}
@media screen and (min-width: 1280px) {
  .occasion__item {
    flex-basis: 23%;
  }
}
.occasion__img {
  height: 150px;
  margin-bottom: 5px;
}
@media screen and (min-width: 960px) {
  .occasion__img {
    height: 335px;
  }
}
.occasion__img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.occasion__btn {
  text-align: center;
  flex-basis: 100%;
}

.footer {
  padding: 60px 0;
}
.footer__nav {
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
.footer__ul {
  list-style: none;
  padding: 0;
}
.footer__li {
  margin: 10px;
}
@media screen and (min-width: 600px) {
  .footer__li {
    margin-left: 0;
    margin-right: 30px;
  }
}
.footer__li > a {
  color: #535353;
  text-decoration: none;
}
.footer > .logo {
  font-size: 38px;
  justify-content: center;
}
@media screen and (min-width: 600px) {
  .footer > .logo {
    justify-content: flex-start;
  }
}

.logo {
  font-size: 42px;
  display: flex;
}
.logo__img {
  width: 1.1em;
}
.logo__subtitle {
  padding-top: 30px;
}
.logo__shop-name {
  color: #904669;
  font-size: 26px;
  padding-top: 20px;
  padding-left: 5px;
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.side {
  display: none;
  position: fixed;
  top: 70%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
@media screen and (min-width: 1280px) {
  .side {
    display: block;
  }
}
.side .tween-animate-title {
  color: black;
  text-decoration: none !important;
  margin: 0 40px;
  vertical-align: middle;
  letter-spacing: 2px;
}
.side.left {
  left: -50px;
}
.side.left.inview {
  left: 50px;
}
.side.left .side__inner {
  transform-origin: top left;
  transform: rotate(-90deg);
}
.side.right {
  right: -50px;
}
.side.right.inview {
  right: 50px;
}
.side.right .side__inner {
  transform-origin: top right;
  transform: rotate(90deg);
}

.icon {
  position: relative;
}
.icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  width: 1em;
  height: 1em;
  transform: translateY(-50%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.icon.x::before {
  background-image: url("../images/x.png");
}
.icon.fb::before {
  background-image: url("../images/facebook.png");
}
.icon.insta::before {
  background-image: url("../images/instagram.png");
}
.icon.line::before {
  background-image: url("../images/line.png");
}

#container {
  position: relative;
  z-index: 10;
  background: white;
  transition: transform 0.5s box-shadow 0.5s;
}

#main-content {
  position: relative;
  z-index: 0;
}

main {
  position: relative;
  z-index: -1;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  z-index: 100;
}
.header.triggered {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 10px 0 25px -10px rgba(0, 0, 0, 0.5);
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__nav {
  justify-content: space-between;
  align-items: center;
  text-align: center;
  display: none;
}
@media screen and (min-width: 960px) {
  .header__nav {
    display: block;
  }
}
.header__ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
}
.header__li {
  margin: 10px;
}
@media screen and (min-width: 600px) {
  .header__li {
    margin-left: 30px;
    margin-right: 0;
  }
}
.header__li > a {
  color: black;
  text-decoration: none;
  text-transform: uppercase;
}
.header .logo {
  font-size: 35px;
  justify-content: center;
}
@media screen and (min-width: 600px) {
  .header .logo {
    justify-content: flex-start;
  }
}

.contact__inner {
  position: relative;
  z-index: 0;
  justify-content: space-between;
  background: #eaebe6;
  height: 100%;
  padding: 15px;
}
@media screen and (min-width: 600px) {
  .contact__inner {
    height: 450px;
    padding: 30px;
  }
}
@media screen and (min-width: 960px) {
  .contact__inner {
    height: 620px;
    padding: 50px 150px;
  }
}
.contact__img {
  height: 300px;
  margin-top: 110px;
  transition: box-shadow 0.5s ease 1.6s;
}
@media screen and (min-width: 600px) {
  .contact__img {
    flex-basis: 52%;
  }
}
@media screen and (min-width: 960px) {
  .contact__img {
    height: 400px;
  }
}
.contact__img > img {
  position: relative;
  display: block;
  opacity: 1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 600px) {
  .contact__texts {
    display: flex;
    align-items: flex-end;
    flex-basis: 42%;
  }
}
.contact__texts.inview .contact__title::before {
  transform: scaleX(1);
}
.contact__title {
  position: relative;
}
.contact__title::before {
  display: none;
  position: absolute;
  content: "";
  height: 1px;
  width: 100px;
  top: 50%;
  left: -120px;
  background: black;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease 1.5s;
}
@media screen and (min-width: 960px) {
  .contact__title::before {
    display: block;
  }
}
@media screen and (min-width: 960px) {
  .contact__description {
    margin-bottom: 40px;
  }
}

@keyframes scaleX {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes extendLine {
  0% {
    width: 0;
  }
  100% {
    width: 100px;
  }
}
.logo {
  font-size: 42px;
  display: flex;
}
.logo__img {
  width: 1.1em;
}
.logo__subtitle {
  padding-top: 30px;
}
.logo__shop-name {
  color: #904669;
  font-size: 26px;
  padding-top: 20px;
  padding-left: 5px;
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.side {
  display: none;
}
@media screen and (min-width: 1280px) {
  .side {
    display: block;
    position: fixed;
    top: 70%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
  }
}
.side .tween-animate-title {
  color: black;
  text-decoration: none !important;
  margin: 0 40px;
  vertical-align: center;
  letter-spacing: 2px;
}
.side.left {
  left: -50px;
}
.side.left.inview {
  left: 50px;
}
.side.left .side__inner {
  transform-origin: top left;
  transform: rotate(-90deg);
}
.side.right {
  right: -50px;
}
.side.right.inview {
  right: 50px;
}
.side.right .side__inner {
  transform-origin: bottom right;
  transform: rotate(90deg);
}

p {
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  line-height: 2;
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
}

.icon {
  position: relative;
}
.icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  width: 1em;
  height: 1em;
  transform: translateY(-50%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.icon.x::before {
  background-image: url("../images/x.png");
}
.icon.fb::before {
  background-image: url("../images/facebook.png");
}
.icon.insta::before {
  background-image: url("../images/instagram.png");
}
.icon.line::before {
  background-image: url("../images/line.png");
}

.shop-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 130px 26px;
  width: 100%;
  margin: 0 auto;
  background: #eaebe6;
}
@media screen and (min-width: 600px) {
  .shop-container {
    padding: 160px 40px;
  }
}
@media screen and (min-width: 960px) {
  .shop-container {
    max-width: 1230px;
    padding: 180px 60px;
    align-items: center;
  }
}
@media screen and (min-width: 1280px) {
  .shop-container {
    padding: 200px 80px;
  }
}
.shop-container .section-inner {
  width: 100%;
}
@media screen and (min-width: 960px) {
  .shop-container .section-inner {
    max-width: 1230px;
  }
}

/* 初期状態：透明＆少し下にずらす */
.img-zoom {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

/* inviewクラスを付与したら表示 */
.img-zoom.inview {
  opacity: 1;
  transform: translateY(0);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 600px) {
  .content-wrapper {
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 960px) {
  .content-wrapper {
    gap: 80px;
  }
}
@media screen and (min-width: 1280px) {
  .content-wrapper {
    gap: 100px;
  }
}

.introduction,
.shop {
  flex: 1;
}

.introduction__name {
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}
.introduction__text {
  line-height: 1.8;
  margin-bottom: 25px;
}

.info {
  margin-top: 100px;
}
.info__text {
  line-height: 1.8;
  margin-top: 5px;
  margin-bottom: 25px;
}

.shop__img {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}
.shop__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.location {
  width: 100%;
}
.location .section-inner {
  width: 100%;
}
@media screen and (min-width: 960px) {
  .location .section-inner {
    max-width: 1230px;
  }
}
.location .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 600px) {
  .location .content-wrapper {
    gap: 30px;
  }
}
@media screen and (min-width: 960px) {
  .location .content-wrapper {
    gap: 40px;
  }
}
.location .title {
  font-weight: 600;
}
@media screen and (min-width: 960px) {
  .location .title {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 1280px) {
  .location .title {
    font-size: 1.375rem;
  }
}
.location .location-map {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.location .location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.location .address {
  line-height: 1.6;
}
@media screen and (min-width: 960px) {
  .location .address {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1280px) {
  .location .address {
    font-size: 1.0625rem;
  }
}

@media screen and (min-width: 960px) {
  .access .section-inner {
    margin-left: 0;
    margin-right: auto;
  }
}
.access .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 960px) {
  .access .content-wrapper {
    margin-left: 0;
    margin-right: auto;
  }
}
.access .title {
  font-weight: 600;
}
@media screen and (min-width: 960px) {
  .access .title {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1280px) {
  .access .title {
    font-size: 1.625rem;
  }
}
.access .access__text {
  line-height: 1.8;
  margin-bottom: 10px;
}
@media screen and (min-width: 960px) {
  .access .access__text {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1280px) {
  .access .access__text {
    font-size: 1.0625rem;
  }
}

.gallery-hero {
  background: url("../images/gallery-hero.jpg") center/cover no-repeat;
  height: 35vh;
  padding: 5rem 1rem;
  text-align: center;
  color: #fff;
  margin-top: 40px;
  margin-bottom: 0px;
  /* 最初は非表示＋少し下にずらしておく */
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}
.gallery-hero.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (min-width: 600px) {
  .gallery-hero {
    height: 50vh;
    padding: 8rem 1rem;
  }
}
@media screen and (min-width: 960px) {
  .gallery-hero {
    height: 70vh;
    padding: 8rem 1rem;
  }
}
@media screen and (min-width: 1280px) {
  .gallery-hero {
    height: 80vh;
    padding: 8rem 1rem;
  }
}
.gallery-hero__inner {
  padding: 0;
}
@media screen and (min-width: 600px) {
  .gallery-hero__inner {
    padding: 1rem 2rem;
  }
}
@media screen and (min-width: 960px) {
  .gallery-hero__inner {
    padding: 3rem 4rem;
  }
}
@media screen and (min-width: 1280px) {
  .gallery-hero__inner {
    padding: 5.5rem 4rem;
  }
}

.gallery-title {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  margin-top: 1.5rem;
  color: white;
}
@media screen and (min-width: 600px) {
  .gallery-title {
    font-size: 3rem;
    margin-top: 1.9rem;
  }
}
@media screen and (min-width: 960px) {
  .gallery-title {
    font-size: 4rem;
    margin-top: 5rem;
  }
}
@media screen and (min-width: 1280px) {
  .gallery-title {
    font-size: 4.5rem;
    margin-top: 6rem;
  }
}

.gallery-subtitle {
  margin-top: 0.5rem;
  font-size: 0.6rem;
  font-weight: 100;
  color: white;
}
@media screen and (min-width: 960px) {
  .gallery-subtitle {
    font-size: 0.8rem;
  }
}
@media screen and (min-width: 1280px) {
  .gallery-subtitle {
    font-size: 1.2rem;
  }
}

.gallery {
  padding: 4rem 2rem;
}
.gallery .gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 600px) {
  .gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media screen and (min-width: 960px) {
  .gallery .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}
.gallery .gallery-item {
  background: #fff;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}
.gallery .gallery-item:hover {
  transform: scale(1.03);
}
.gallery .gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}
.gallery .gallery-item p {
  margin: 1rem 0;
  font-weight: 200;
  color: #535353;
}

.occasion-hero {
  background: url("../images/recommend4.jpg") center/cover no-repeat;
  height: 35vh;
  padding: 5rem 1rem;
  text-align: center;
  color: #fff;
  margin-top: 40px;
  margin-bottom: 0px;
  /* 最初は非表示＋少し下にずらしておく */
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}
.occasion-hero.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (min-width: 600px) {
  .occasion-hero {
    height: 50vh;
    padding: 8rem 1rem;
  }
}
@media screen and (min-width: 960px) {
  .occasion-hero {
    height: 70vh;
    padding: 8rem 1rem;
  }
}
@media screen and (min-width: 1280px) {
  .occasion-hero {
    height: 80vh;
    padding: 8rem 1rem;
  }
}
@media screen and (min-width: 600px) {
  .occasion-hero__inner {
    padding: 1rem 2rem;
  }
}
@media screen and (min-width: 960px) {
  .occasion-hero__inner {
    padding: 3rem 4rem;
  }
}
@media screen and (min-width: 1280px) {
  .occasion-hero__inner {
    padding: 5.5rem 4rem;
  }
}

.gallery-title {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  margin-top: 1.5rem;
  color: white;
}
@media screen and (min-width: 600px) {
  .gallery-title {
    font-size: 3rem;
    margin-top: 1.9rem;
  }
}
@media screen and (min-width: 960px) {
  .gallery-title {
    font-size: 4rem;
    margin-top: 5rem;
  }
}
@media screen and (min-width: 1280px) {
  .gallery-title {
    font-size: 4.5rem;
    margin-top: 6rem;
  }
}

.gallery-subtitle {
  margin-top: 0.5rem;
  font-size: 0.6rem;
  font-weight: 100;
  color: white;
}
@media screen and (min-width: 960px) {
  .gallery-subtitle {
    font-size: 0.8rem;
  }
}
@media screen and (min-width: 1280px) {
  .gallery-subtitle {
    font-size: 1.2rem;
  }
}

.gallery-category {
  font-size: 1.3rem;
  font-weight: bold;
  margin-top: 3rem;
  grid-column: 1/-1;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.5rem;
  color: #535353;
}

.gallery {
  padding: 4rem 2rem;
}
.gallery .gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 600px) {
  .gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media screen and (min-width: 960px) {
  .gallery .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}
.gallery .gallery-item {
  background: #fff;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}
.gallery .gallery-item:hover {
  transform: scale(1.03);
}
.gallery .gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}
.gallery .gallery-item p {
  margin: 1rem 0;
  font-weight: 200;
  color: #535353;
}

.recommend-hero {
  background: url("../images/recommend3.jpg") center/cover no-repeat;
  height: 35vh;
  padding: 5rem 1rem;
  text-align: center;
  color: #fff;
  margin-top: 100px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}
.recommend-hero.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (min-width: 600px) {
  .recommend-hero {
    height: 50vh;
    padding: 8rem 1rem;
  }
}
@media screen and (min-width: 960px) {
  .recommend-hero {
    height: 70vh;
    padding: 8rem 1rem;
  }
}
@media screen and (min-width: 1280px) {
  .recommend-hero {
    height: 80vh;
    padding: 8rem 1rem;
  }
}
@media screen and (min-width: 600px) {
  .recommend-hero__inner {
    padding: 1rem 2rem;
  }
}
@media screen and (min-width: 960px) {
  .recommend-hero__inner {
    padding: 3rem 4rem;
  }
}
@media screen and (min-width: 1280px) {
  .recommend-hero__inner {
    padding: 5.5rem 4rem;
  }
}

.gallery-title {
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-top: 1.5rem;
  color: white;
}
@media screen and (min-width: 960px) {
  .gallery-title {
    font-size: 2rem;
    margin-top: 1.9rem;
  }
}
@media screen and (min-width: 1280px) {
  .gallery-title {
    font-size: 3rem;
    margin-top: 5rem;
  }
}

.gallery-subtitle {
  margin-top: 0.5rem;
  font-size: 0.6rem;
  font-weight: 100;
  color: white;
}
@media screen and (min-width: 960px) {
  .gallery-subtitle {
    font-size: 0.8rem;
  }
}
@media screen and (min-width: 1280px) {
  .gallery-subtitle {
    font-size: 1.2rem;
  }
}

.gallery {
  padding: 4rem 2rem;
}
.gallery .gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 600px) {
  .gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media screen and (min-width: 960px) {
  .gallery .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}
.gallery .gallery-item {
  background: #fff;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}
.gallery .gallery-item:hover {
  transform: scale(1.03);
}
.gallery .gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}
.gallery .gallery-item p {
  margin: 1rem 0;
  font-weight: 200;
  color: #535353;
}/*# sourceMappingURL=style.css.map */