@charset "utf-8";

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* ローディング画面 */
.loading {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  opacity: 1;
  transition: opacity 2s;
  pointer-events: none;
}
.loaded {
  opacity: 0;
}

/* 時計のアニメーション（大きさ、速さのみ編集）
https://www.benricho.org/loading_images/index.html#How_to_use
 */
.sp {
  width: 128px;
  height: 128px;
  clear: both;
}
.sp-clock {
  border: 2px #000 solid;
  border-radius: 50%;
  position: relative;
}
.sp-clock:before {
  content: '';
  border-left: 2px #000 solid;
  position: absolute;
  top: 2px;
  left: 64px;
  width: 2px;
  height: calc( 50% - 2px );
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -ms-transform-origin: 0% 100%;
  -webkit-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
  -webkit-animation: spClock 5s infinite linear;
  animation: spClock 5s infinite linear;
}
@-webkit-keyframes spClock {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
@keyframes spClock {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

/* header */
.header {
  margin: 0 auto;
  width: 200px;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  color: #fff;
  background: #7a530df5;
}

.header__ttl {
  margin: 230px auto;
  font-size: 26px;
  writing-mode: vertical-rl;
  letter-spacing: .3em;
}

.header__link {
  color: #fff;
  text-decoration: none;
}

.gnav {
  margin: 0 auto;
  width: fit-content;
}

.gnav__list,
.gnav__snslist {
  list-style-type: none;
}

.gnav__link {
  padding: 10px 5px;
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.gnav__sns {
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gnav__snsicon {
  padding: 5px;
  display: block;
  width: 30px;
}

/* 左固定スライドショー */
.sv {
  width: 1050px;
  height: 100vh;
  position: fixed;
  overflow: hidden;
}

.sv__img {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s;
}
.active {
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: opacity 1s;
  animation: zoom 6s;
}
@keyframes zoom {
  0% {transform: scale(1.1);}
  100% {transform: scale(1);}
}

/* 中央コンテンツ */
.container {
  width: calc(100% - 1050px - 200px);
  position: absolute;
  top: 0;
  left: 1050px;
}

.key__nav {
  padding-top: 30px;
  width: calc(100% - 1050px - 200px);
  position: fixed;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  mix-blend-mode: color-dodge;
}

.key__list {
  list-style-type: none;
}

.key__link {
  font-size: 12px;
}

.key__img {
  width: 50px;
  display: block;
}

.key__ol {
  position: relative;
  letter-spacing: .1em;
  color: #4e4e4e;
  text-decoration: none;
}

.key__ol::before {
  content: "";
  /* ↓（画像サイズ-フォントサイズ）/2 */
  top: -4px;
  left: -30px;
  width: 20px;
  height: 20px;
  background: url("img/bag.png") center center / cover;
  display: block;
  position: absolute;
}

/* メインビジュアル */
.mv {
  padding: 100px 50px 30px;
  height: 100vh;
}

.mv__pic {
  margin-bottom: 30px;
  width: 100%;
  height: 80vh;
  position: relative;
}

.mv__pic::before {
  content: "We are made chocolat\Ain Sapporo\Asince 1987.";
  white-space: pre;
  top: 20px;
  left: 0;
  position: absolute;
  color: #7a530df5;
  letter-spacing: .2em;
  line-height: 2;
}

.mv__img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  object-fit: cover;
  border-radius: 200px 200px 0 0;
  opacity: 0;
  transition: opacity 1s;
}
.current {
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: opacity 1s;
}

.mv__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

.mv__link {
  color: #7a530df5;
  text-decoration: none;
}

.mv__scroll {
  animation: fadeOut 2s infinite;
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}

/* こだわり */
.about {
  padding: 0 50px 100px;
  background: #cfaf78f5;
}

.about__ttl {
  margin: 0 auto;
  padding: 100px 0;
  font-size: 20px;
  letter-spacing: .3em;
  writing-mode: vertical-rl;
}

.about__txt {
  letter-spacing: .1em;
  line-height: 1.8;
}

/* 商品紹介 */
.menu {
  padding: 0 50px;
}

.menu__ttl {
  margin: 0 auto;
  padding: 100px 0;
  font-size: 20px;
  letter-spacing: .3em;
  writing-mode: vertical-rl;
}

.menu__box {
  margin-bottom: 50px;
}

.menu__pic {
  margin-bottom: 10px;
  width: 100%;
  height: 300px;
}

.menu__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 15px;
}

.menu__name {
  margin-bottom: 10px;
  font-size: 16px;
}

.menu__txt {
  font-size: 14px;
}

.menu__flex {
  margin-bottom: 50px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}

.menu__subbox {
  width: 48%;
}

.menu__subpic {
  margin-bottom: 10px;
  width: 100%;
  height: 150px;
}

.menu__subimg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 15px;
}

.menu__subname {
  margin-bottom: 10px;
  font-size: 16px;
}

.menu__online {
  padding: 10px;
  display: block;
  color: #7a530df5;
  border: 1px solid #7a530df5;
  border-radius: 25px;
  text-decoration: none;
  text-align: center;
}

.menu__online:hover {
  color: #fff;
  background: #7a530df5;
  border: 1px solid #fff;
}

/* 店舗情報 */
.shop {
  padding: 100px 50px;
  letter-spacing: 0.1em;
}

.shop__ttl {
  margin: 0 auto;
  padding-bottom: 100px;
  font-size: 20px;
  letter-spacing: 0.3em;
  writing-mode: vertical-rl;
}

.shop__map {
  margin-bottom: 30px;
  width: 100%;
  height: 450px;
  position: relative;
  overflow: hidden;
  border-radius: 80px 80px 0 0;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}

.shop__name {
  margin-bottom: 10px;
  font-size: 16px;
}

.shop__address {
  margin-bottom: 10px;
  font-size: 14px;
}

.shop__list {
  margin-bottom: 30px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
}

.shop__dt {
  width: 50px;
  border: 1px solid #000;
  border-radius: 25px;
  text-align: center;
}

.shop__dd {
  width: calc(100% - 70px);
}

.shop__lo {
  font-size: 12px;
}

.shop__btn {
  margin-bottom: 50px;
}

.shop__reserve {
  padding: 10px;
  display: block;
  color: #7a530df5;
  border: 1px solid #7a530df5;
  border-radius: 25px;
  text-decoration: none;
  text-align: center;
}

.shop__reserve:hover {
  color: #fff;
  background: #7a530df5;
  border: 1px solid #fff;
}

.shop__sche {
  margin-bottom: 50px;
  width: 100%;
  height: 350px;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}

.shop__flex {
  width: 100%;
  display: flex;
  gap: 10px;
}

.shop__about {
  margin: 0 auto;
  width: 30px;
  font-size: 16px;
  writing-mode: vertical-rl;
}
.shop__box {
  margin-bottom: 50px;
}
.shop__pic {
  margin-bottom: 10px;
  width: 100%;
  height: 300px;
}

.shop__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 15px;
}
.shop__boxttl {
  margin-bottom: 10px;
  font-size: 16px;
}
.shop__boxspan {
  margin-right: 10px;
  display: inline-block;
  width: 50px;
  border: 1px solid #000;
  border-radius: 25px;
  text-align: center;
}
.shop__boxtxt {
  font-size: 14px;
}

/* フッター */
.footer {
  padding: 15px;
}
.footer__small {
  width: 100%;
  display: block;
  text-align: center;
}