@charset "UTF-8";
/* ------------------------------
	設定
------------------------------ */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://use.typekit.net/cwj6uxt.css");
@import url("https://use.typekit.net/cwj6uxt.css");
html {
  font-size: 62.5%;
}

/* ----px → vw---- 書き方：vw(px値) */
/* ----px → vw (pc)---- 書き方：vw-pc(px値) */
@media screen and (max-width: 1024px) {
  .pc-only {
    display: none !important;
  }
}

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

:root {
  --c-white: #fff;
  --c-bg: #F7F6F3;
  --c-txt: #333;
  --c-accent: #FEE301;
  --c-line: #F1EFE8;
}

/* ------------------------------
	animation
------------------------------ */
.scale {
  overflow: hidden;
}
.scale img {
  transform: scale(1.2);
  transition: all 1.5s ease;
}
.scale.active img {
  transform: scale(1);
}

.trun-right {
  position: relative;
}
.trun-right::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: var(--c-white);
  z-index: 10;
}
.trun-right.active::after {
  width: 0;
  transition: all 1.9s cubic-bezier(0.6, 0.09, 0.08, 0.9);
}

.blur-in {
  opacity: 0;
  filter: blur(11px);
  transform: translateY(8px);
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), filter 1.4s cubic-bezier(0.16, 1, 0.3, 1), transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, filter, transform;
}

.blur-in.is-active {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.blur-in:nth-child(1) {
  transition-delay: 0s;
}

.blur-in:nth-child(2) {
  transition-delay: 0.15s;
}

.blur-in:nth-child(3) {
  transition-delay: 0.3s;
}

.blur-in:nth-child(4) {
  transition-delay: 0.45s;
}

.blur-in:nth-child(5) {
  transition-delay: 0.6s;
}

.anim-swiper,
.anim-right,
.anim-left {
  opacity: 0;
  filter: blur(12px);
  transition: opacity 2.5s cubic-bezier(0.16, 1, 0.3, 1), filter 2.5s cubic-bezier(0.16, 1, 0.3, 1), transform 2.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, filter, transform;
}

.anim-left {
  transform: translateY(20px);
}

.anim-swiper.is-active,
.anim-right.is-active,
.anim-left.is-active {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.anim-swiper {
  transition-delay: 0s;
}

.anim-right {
  transition-delay: 0.3s;
}

.anim-left {
  transition-delay: 0.6s;
}

/* ------------------------------
	style
------------------------------ */
#contents {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: var(--c-txt);
  background-color: var(--c-bg);
  z-index: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#contents p {
  line-height: 2;
  letter-spacing: 0.1em;
  font-size: 3.2vw;
}
@media screen and (min-width: 1025px) {
  #contents p {
    font-size: 1.2rem;
  }
}
#contents img {
  width: 100%;
  height: auto;
}

h2 {
  font-family: "barlow-semi-condensed", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1;
  text-align: center;
  line-height: 1.2;
  font-style: italic;
  padding: 21.3333333333vw 0;
  background: var(--c-white);
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 1025px) {
  h2 {
    padding: 80px 0;
    font-size: 13px;
  }
}

header {
  width: 100%;
}
@media screen and (min-width: 1025px) {
  header {
    max-width: 1536px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
  }
}
header p {
  width: 74.6666666667vw;
  margin: 0 auto 19.2vw;
}
@media screen and (min-width: 1025px) {
  header p {
    width: 600px;
    margin: 0 auto 96px;
    text-align: center;
  }
}

.video-container {
  position: relative;
  padding: 4vw;
  width: 100%;
  background-color: var(--c-white);
}
@media screen and (min-width: 1025px) {
  .video-container {
    width: min(450px, 35.15625vw);
    margin: 0 auto;
    padding: 15px;
  }
}
.video-container__ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  width: 64vw;
  filter: drop-shadow(0px 8px 24px rgba(28, 28, 28, 0.6));
}
@media screen and (min-width: 1025px) {
  .video-container__ttl {
    width: 250px;
  }
}
.video-container video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (min-width: 1025px) {
  .video-container video {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
.video-container video::-webkit-media-controls {
  display: none !important;
}
.video-container video .title__logo {
  position: absolute;
  width: 65.3333333333vw;
  z-index: 10;
}
@media screen and (min-width: 1025px) {
  .video-container video .title__logo {
    top: 30px;
    left: 30px;
    width: 180px;
  }
}
.video-container .title__logo {
  position: absolute;
  width: 65.3333333333vw;
  z-index: 10;
}
@media screen and (min-width: 1025px) {
  .video-container .title__logo {
    top: 30px;
    left: 30px;
    width: 180px;
  }
}

.scroll {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 100;
}

.scroll-text {
  font-family: "barlow-semi-condensed", sans-serif;
  font-size: 3.2vw;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1;
  color: var(--c-white);
  font-style: italic;
  margin-bottom: 15px;
}
@media screen and (min-width: 1025px) {
  .scroll-text {
    font-size: 13px;
  }
}

.scroll-border {
  position: relative;
  width: 10px;
  height: 70px;
  overflow: hidden;
  margin: 0 auto;
}

.scroll-border::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  background: var(--c-white);
  margin: auto;
}

.scroll-border::after {
  content: "";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  left: 0;
  right: 0;
  background: var(--c-white);
  border-radius: 50%;
  -webkit-animation: scrollbar 2s ease-in-out infinite;
          animation: scrollbar 2s ease-in-out infinite;
  margin: auto;
}

@-webkit-keyframes scrollbar {
  0% {
    bottom: 70px;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    bottom: -10px;
    opacity: 0;
  }
}

@keyframes scrollbar {
  0% {
    bottom: 70px;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    bottom: -10px;
    opacity: 0;
  }
}
.header-right {
  position: relative;
  background-color: var(--c-bg);
}
@media screen and (min-width: 1025px) {
  .header-right {
    width: 32.421875vw;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
  }
}
.header-right__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .header-right h2 {
    padding-top: 0 !important;
    background-color: var(--c-bg);
  }
}

.header-left {
  position: relative;
  background-color: var(--c-bg);
}
@media screen and (min-width: 1025px) {
  .header-left {
    width: 32.421875vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
  }
}
.header-left__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  margin: 0 auto;
}
.header-left__img {
  width: 200px;
  margin-bottom: 40px;
}
.header-left__ttl {
  width: 180px;
  margin-bottom: 90px;
}

.btn-wrapper li {
  width: 120px;
  margin: 0 auto 12px;
  padding: 4px 10px 4px 15px;
  background: var(--c-bg);
  border: solid 1px var(--c-txt);
  border-radius: 20px;
  transition: all 0.3s ease;
}
.btn-wrapper li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.btn-wrapper li a .btn-name {
  font-family: "barlow-semi-condensed", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: -height;
}
.btn-wrapper li a .btn-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10px;
}
.btn-wrapper li:hover {
  background: var(--c-accent);
  border: solid 1px var(--c-accent);
}
.btn-wrapper li:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 1025px) {
  .nav {
    margin: 0 auto;
    width: 215px;
  }
}
.nav li {
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .nav li {
    margin-bottom: 40px;
  }
}
.nav li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  transition: all 0.3s ease;
}
.nav li a:hover {
  opacity: 0.6;
}
.nav li img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.nav li:last-child {
  margin-bottom: 0;
}
.nav__img {
  flex-shrink: 0;
}
@media screen and (min-width: 1025px) {
  .nav__img {
    width: 100px;
  }
}
.nav__img img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.nav__name {
  font-family: "norman-variable", sans-serif;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--c-txt);
  flex-grow: 1;
  font-size: min(20px, 3.7333333333vw);
}
@media screen and (min-width: 1025px) {
  .nav__name {
    font-size: 14px;
    margin-left: 40px;
  }
}

.h2__wrapper {
  width: 100vw;
  margin: 0 auto;
  background: var(--c-white);
}
@media screen and (min-width: 1025px) {
  .h2__wrapper {
    width: min(450px, 35.15625vw);
  }
}

.sticky-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 4vw 4vw;
  box-sizing: border-box;
  background: var(--c-white);
  /* もっと見るボタン */
}
@media screen and (min-width: 1025px) {
  .sticky-content {
    margin: 0 auto;
    padding: 0 15px;
    width: min(450px, 35.15625vw);
  }
}
.sticky-content p {
  line-height: 2.3 !important;
}
@media screen and (min-width: 1025px) {
  .sticky-content p {
    margin-bottom: 7.8125vw;
  }
}
.sticky-content .prologue__img {
  position: relative;
}
.sticky-content .prologue__img__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 92vw;
  font-family: "barlow-semi-condensed", sans-serif;
  font-size: min(18px, 2.9333333333vw);
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1;
  color: var(--c-accent);
  font-style: italic;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .sticky-content .prologue__img__text {
    width: 380px;
    font-size: 11px;
  }
}
.sticky-content .profile__wrapper {
  position: relative;
  max-height: min(1000px, 208vw);
  overflow: hidden;
  transition: max-height 0.6s ease;
}
@media screen and (min-width: 1025px) {
  .sticky-content .profile__wrapper {
    max-height: 700px;
  }
}
.sticky-content .profile__wrapper.is-open {
  max-height: 2000px;
}
.sticky-content .profile__wrapper.is-open .profile-gradient {
  opacity: 0;
  visibility: hidden;
}
.sticky-content .profile {
  font-family: "barlow-semi-condensed", sans-serif;
  font-size: -size;
  font-weight: 500;
  letter-spacing: -spacing;
  line-height: -height;
}
.sticky-content .profile li {
  width: min(400px, 85.3333333333vw);
}
@media screen and (min-width: 1025px) {
  .sticky-content .profile li {
    width: 320px;
  }
}
.sticky-content .profile .profile-top {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: -weight;
  letter-spacing: -spacing;
  line-height: -height;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 0 auto 15px;
}
.sticky-content .profile .profile-top__img {
  display: flex;
  align-items: center;
}
.sticky-content .profile .profile-top__img div {
  width: 60px;
}
.sticky-content .profile .profile-top__img span {
  font-size: 12px;
  display: block;
  margin-left: 6px;
}
.sticky-content .profile .profile-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 5px;
  margin-bottom: 30px;
  border-bottom: solid 1px var(--c-line);
}
@media screen and (min-width: 1025px) {
  .sticky-content .profile .profile-bottom {
    padding-bottom: 0;
    margin-bottom: 25px;
  }
}
.sticky-content .profile .staff-img {
  overflow: hidden;
  width: min(108px, 20vw);
  border-radius: 50%;
}
@media screen and (min-width: 1025px) {
  .sticky-content .profile .staff-img {
    width: 66px;
  }
}
.sticky-content .profile .staff-comment {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: -weight;
  letter-spacing: 0.06em;
  line-height: 2;
  margin-bottom: 15px;
  width: 220px;
}
.sticky-content .profile .follow {
  display: flex;
  align-items: center;
  font-size: 10px;
}
.sticky-content .profile .follow .instagram {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: underline;
  margin-right: 15px;
}
.sticky-content .profile .follow .instagram__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8px;
  margin-right: 2px;
}
.sticky-content .profile .follow .staff-styling {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: underline;
}
.sticky-content .profile .follow .staff-styling__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 9px;
  margin-right: 2px;
}
.sticky-content .profile-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.sticky-content .more-btn {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  display: block;
  margin: 20px auto 0;
  padding: 10px 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--c-txt);
}
@media screen and (min-width: 1025px) {
  .sticky-content .more-btn {
    margin: 20px auto 40px;
    padding: 10px 20px;
  }
}
.sticky-content .more-btn:hover {
  opacity: 0.7;
}

.styling-section {
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .styling-section {
    display: flex;
    justify-content: center;
  }
}
.styling-section p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.2vw;
  font-weight: -weight;
  letter-spacing: -spacing;
  line-height: -height;
  width: 100%;
  margin: 0 auto 10.6666666667vw;
  padding: 0 4vw;
}
@media screen and (min-width: 1025px) {
  .styling-section p {
    width: 320px;
    margin: 0 auto 64px;
    padding: 0;
    font-size: 1.2rem;
  }
}
.styling-section h2 {
  text-align: center;
}

.styling-section__inner {
  width: 100%;
  padding: 4vw 0 21.3333333333vw;
  background: var(--c-white);
  border-top: solid 1px var(--c-line);
  border-bottom: solid 1px var(--c-line);
}
@media screen and (min-width: 1025px) {
  .styling-section__inner {
    height: 100%;
    width: min(450px, 35.15625vw);
    padding: 15px 0 80px;
  }
}

.styling-section__top {
  width: 92vw;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .styling-section__top {
    width: min(420px, 32.8125vw);
  }
}

h3 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 40px;
}
h3 .triangle {
  width: 1.3333333333vw;
  margin-right: 2.6666666667vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1025px) {
  h3 .triangle {
    width: 5px;
    margin-right: 15px;
  }
}
h3 .sec-number {
  width: 16vw;
}
@media screen and (min-width: 1025px) {
  h3 .sec-number {
    width: 65px;
  }
}

.staff-name h4 {
  font-family: "norman-variable", sans-serif;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 6.6666666667vw;
  font-size: 6.4vw;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .staff-name h4 {
    margin-bottom: 25px;
    font-size: 24px;
  }
}
.staff-name .catchcopy {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.7333333333vw;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (min-width: 1025px) {
  .staff-name .catchcopy {
    font-size: 14px;
    letter-spacing: 0.08em;
  }
}
.staff-name .catchcopy span {
  font-weight: 300;
}

.follow {
  font-family: "barlow-semi-condensed", sans-serif;
  font-size: 2.6666666667vw;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 4vw;
}
@media screen and (min-width: 1025px) {
  .follow {
    font-size: 12px;
    margin-bottom: 15px;
  }
}
.follow .instagram {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: underline;
  margin-right: 4vw;
  font-weight: 500;
}
@media screen and (min-width: 1025px) {
  .follow .instagram {
    margin-right: 15px;
  }
}
.follow .instagram__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.4vw;
  margin-right: 0.5333333333vw;
}
@media screen and (min-width: 1025px) {
  .follow .instagram__icon {
    width: 9px;
    margin-right: 2px;
  }
}
.follow .staff-styling {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: underline;
  font-weight: 500;
}
.follow .staff-styling__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.4vw;
  margin-right: 0.5333333333vw;
}
@media screen and (min-width: 1025px) {
  .follow .staff-styling__icon {
    width: 9px;
    margin-right: 2px;
  }
}

#img_top {
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  #img_top {
    width: min(420px, 32.8125vw);
  }
}
#img_top .swiper {
  margin-bottom: 16vw;
  position: relative;
}
@media screen and (min-width: 1025px) {
  #img_top .swiper {
    margin-bottom: 60px;
  }
}
#img_top .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#img_top .swiper-pagination {
  display: flex !important;
  justify-content: flex-end !important;
  position: absolute !important;
  width: auto !important;
  left: auto !important;
  right: 3.7333333333vw !important;
  bottom: 3.7333333333vw !important;
  gap: 2.6666666667vw !important;
  z-index: 10;
  text-align: right !important;
}
@media screen and (min-width: 1025px) {
  #img_top .swiper-pagination {
    right: 15px !important;
    bottom: 15px !important;
    gap: 12px !important;
  }
}
#img_top .swiper-pagination-bullet {
  width: 1.6vw !important;
  height: 1.6vw !important;
  margin: 0 !important;
  border: 1px solid #fff !important;
  background-color: transparent !important;
  border-radius: 50% !important;
  opacity: 1;
  transition: all 0.3s ease;
}
@media screen and (min-width: 1025px) {
  #img_top .swiper-pagination-bullet {
    width: 7px !important;
    height: 7px !important;
  }
}
#img_top .swiper-pagination-bullet-active {
  background-color: #fff !important;
  border-color: #fff !important;
}

.img_bottom-01 {
  width: 80vw;
  margin: 16vw auto 21.3333333333vw;
}
@media screen and (min-width: 1025px) {
  .img_bottom-01 {
    width: 300px;
    margin: 60px auto 80px;
  }
}

.img_bottom-02 {
  width: 87.4666666667vw;
  margin: 10.6666666667vw 0 21.3333333333vw auto;
}
@media screen and (min-width: 1025px) {
  .img_bottom-02 {
    width: 328px;
    margin: 40px 0 80px auto;
  }
}

.flexbox {
  position: relative;
  padding-bottom: 107.2vw;
}
@media screen and (min-width: 1025px) {
  .flexbox {
    padding-bottom: min(470px, 36.71875vw);
  }
}
.flexbox .img_bottom-03 {
  position: absolute;
  top: 150.4vw;
  left: 8vw;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-left: auto;
  width: 92vw;
}
@media screen and (min-width: 1025px) {
  .flexbox .img_bottom-03 {
    top: min(627px, 48.984375vw);
    left: min(40px, 3.125vw);
    width: min(410px, 32.03125vw);
  }
}
.flexbox .img_bottom-03__right {
  width: 36.2666666667vw;
}
@media screen and (min-width: 1025px) {
  .flexbox .img_bottom-03__right {
    width: min(166px, 12.96875vw);
  }
}
.flexbox .img_bottom-03__left {
  width: 48vw;
  margin-top: 90px;
}
@media screen and (min-width: 1025px) {
  .flexbox .img_bottom-03__left {
    width: min(219px, 17.109375vw);
  }
}

.link__none {
  cursor: default !important;
  pointer-events: none !important;
  opacity: 0.5;
}
.link__none small {
  display: block;
  margin-top: 7px;
  text-align: center;
}

#cp-pickup {
  margin-left: 10.6666666667vw;
  padding-right: 4vw;
}
@media screen and (min-width: 1025px) {
  #cp-pickup {
    margin-left: 40px;
    padding-right: 15px;
  }
}
#cp-pickup .swiper-slide {
  width: 131px;
}
#cp-pickup .swiper-slide a {
  transition: all 0.3s ease;
}
#cp-pickup .swiper-slide a:hover {
  opacity: 0.6;
}
#cp-pickup h3 {
  font-family: "barlow-semi-condensed", sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -spacing;
  line-height: -height;
  margin-bottom: 8vw;
  font-family: "barlow-semi-condensed", sans-serif !important;
  font-style: italic;
}
@media screen and (min-width: 1025px) {
  #cp-pickup h3 {
    margin-bottom: 30px;
  }
}
#cp-pickup h4 {
  font-family: "barlow-semi-condensed", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  margin-bottom: 10px;
}

.sec-text {
  padding: 0 10.6666666667vw;
  margin-bottom: 8vw;
}
@media screen and (min-width: 1025px) {
  .sec-text {
    padding: 0 40px;
    margin-bottom: 30px;
  }
}
.sec-text__ttl {
  font-family: "norman-variable", sans-serif;
  font-weight: 500;
  letter-spacing: 0.16em;
  font-size: 5.8666666667vw;
  margin-bottom: 10.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .sec-text__ttl {
    font-size: 22px;
    margin-bottom: 40px;
  }
}
.sec-text__ttl span {
  font-family: "barlow-semi-condensed", sans-serif;
  font-size: 3.4666666667vw;
  font-weight: 400;
  letter-spacing: 0.16em;
  line-height: 1;
  font-style: italic;
  display: block;
}
@media screen and (min-width: 1025px) {
  .sec-text__ttl span {
    font-size: 13px;
  }
}
.sec-text p {
  width: 100%;
  margin-bottom: 21.3333333333vw;
  padding: 0 !important;
}
@media screen and (min-width: 1025px) {
  .sec-text p {
    margin-bottom: 80px;
  }
}

.mustbuy {
  width: 100vw;
  margin: 0 auto;
  padding: 0 4vw 4vw;
  background: var(--c-white);
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .mustbuy {
    width: min(450px, 35.15625vw);
    padding: 0 15px 15px;
  }
}
.mustbuy__flexbox {
  display: flex;
}
.mustbuy .decorated-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: -spacing;
  line-height: -height;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  gap: 1em;
  color: var(--c-txt);
  text-align: center;
}
.mustbuy .decorated-text::before {
  content: "＼";
  font-weight: normal;
}
.mustbuy .decorated-text::after {
  content: "／";
  font-weight: normal;
}

.mustbuy__sec {
  width: 54.6666666667vw;
  padding: 4vw 4.8vw;
  border: solid 1px var(--c-line);
  border-radius: 1.6vw;
  list-style: none;
}
@media screen and (min-width: 1025px) {
  .mustbuy__sec {
    width: 205px;
    padding: 15px 18px;
    border-radius: 6px;
  }
}
.mustbuy__sec .name {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-weight: 500;
}
.mustbuy__sec .name div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(8px, 1.3333333333vw);
  margin-right: min(10px, 1.6vw);
}
@media screen and (min-width: 1025px) {
  .mustbuy__sec .name div {
    width: 5px;
    margin-right: 6px;
  }
}
.mustbuy__sec figure {
  width: min(200px, 36vw);
  margin: 0 auto 20px;
}
@media screen and (min-width: 1025px) {
  .mustbuy__sec figure {
    width: 135px;
    margin: 0 auto 20px;
  }
}
.mustbuy__sec .item-name {
  font-family: "barlow-semi-condensed", sans-serif;
  font-size: 3.4666666667vw;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-align: center;
  margin-bottom: min(20px, 2.6666666667vw);
}
@media screen and (min-width: 1025px) {
  .mustbuy__sec .item-name {
    font-size: 13px;
    margin-bottom: 10px;
  }
}
.mustbuy__sec .price {
  font-family: "barlow-semi-condensed", sans-serif;
  font-size: 2.6666666667vw;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  margin-bottom: min(20px, 2.6666666667vw);
}
@media screen and (min-width: 1025px) {
  .mustbuy__sec .price {
    font-size: 10px;
    margin-bottom: 10px;
  }
}
.mustbuy__sec .check {
  font-family: "barlow-semi-condensed", sans-serif;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto 6.6666666667vw;
  padding: 0.5333333333vw 2.6666666667vw;
  width: 21.3333333333vw;
  background: var(--c-txt);
  border-radius: 5.3333333333vw;
  transition: all 0.3s ease;
}
@media screen and (min-width: 1025px) {
  .mustbuy__sec .check {
    margin: 0 auto 25px;
    padding: 2px 10px;
    width: 80px;
    border-radius: 20px;
  }
}
.mustbuy__sec .check p {
  color: var(--c-white);
  font-size: 2.4vw !important;
}
@media screen and (min-width: 1025px) {
  .mustbuy__sec .check p {
    font-size: 9px !important;
  }
}
.mustbuy__sec .check div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(18px, 2.4vw);
}
@media screen and (min-width: 1025px) {
  .mustbuy__sec .check div {
    width: 9px;
  }
}
.mustbuy__sec__comment div {
  font-family: "barlow-semi-condensed", sans-serif;
  font-size: min(19px, 2.9333333333vw);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 10px;
}
@media screen and (min-width: 1025px) {
  .mustbuy__sec__comment div {
    font-size: 11px;
    margin-bottom: 10px;
  }
}
.mustbuy__sec__comment p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.6666666667vw;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-align: start;
  font-size: min(18px, 2.6666666667vw);
}
@media screen and (min-width: 1025px) {
  .mustbuy__sec__comment p {
    font-size: 10px;
  }
}

.mustbuy__sec a:hover .check {
  background: var(--c-accent);
}

.favorite {
  width: 100%;
  margin: 0 auto;
  padding: 4vw 4vw 16vw;
  background: var(--c-white);
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .favorite {
    width: min(450px, 35.15625vw);
    padding: 15px 15px 60px;
  }
}
.favorite p {
  width: 84vw;
  margin: 0 auto 80px;
}
@media screen and (min-width: 1025px) {
  .favorite p {
    width: min(370px, 28.90625vw);
  }
}
.favorite ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.favorite ul li {
  width: 45.6vw;
}
@media screen and (min-width: 1025px) {
  .favorite ul li {
    width: min(206px, 16.09375vw);
  }
}
.favorite .favorite__staff {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.favorite .favorite__staff div {
  width: min(80px, 16vw);
}
@media screen and (min-width: 1025px) {
  .favorite .favorite__staff div {
    width: 60px;
  }
}
.favorite .favorite__staff span {
  font-size: min(16px, 3.2vw);
  display: block;
  margin-left: 6px;
  font-weight: 500;
}
@media screen and (min-width: 1025px) {
  .favorite .favorite__staff span {
    font-size: 12px;
    margin-left: 6px;
  }
}
.favorite .favorite__img {
  width: 45.6vw;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .favorite .favorite__img {
    width: min(206px, 16.09375vw);
  }
}
.favorite .favorite__img__ttl {
  font-family: "barlow-semi-condensed", sans-serif;
  font-size: min(17px, 3.4666666667vw);
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1;
  position: absolute;
  top: 10px;
  left: 10px;
  font-style: italic;
  color: var(--c-white);
}
@media screen and (min-width: 1025px) {
  .favorite .favorite__img__ttl {
    font-size: 13px;
  }
}
.favorite .favorite__img__open {
  font-family: "barlow-semi-condensed", sans-serif;
  font-size: min(40px, 8vw);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1;
  position: absolute;
  bottom: 4px;
  right: 8px;
  color: var(--c-white);
}
@media screen and (min-width: 1025px) {
  .favorite .favorite__img__open {
    font-size: 30px;
  }
}

/* モーダル全体構造 */
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  background: rgba(247, 246, 243, 0.6705882353);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(10px);
  /* ヘッダー */
  /* タイトル */
  /* メインエリア（画像と前後ボタン） */
  /* 説明文 */
  /* 閉じるボタン */
}
.modal__content {
  position: relative;
  width: 90%;
  max-width: 450px;
  height: calc(100vh - 40px);
  max-height: 700px;
  background: var(--c-white);
  padding: 30px 0 45px;
  box-sizing: border-box;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 1025px) {
  .modal__content {
    max-height: 100%;
  }
}
.modal__inner {
  width: 100%;
  max-height: 100%;
  overflow-y: auto;
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
}
.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modal__content {
  position: relative;
  width: 100%;
  max-width: 450px;
  height: 100vh;
  background: #fff;
  padding: 4vw;
  box-sizing: border-box;
  z-index: 1;
}
@media screen and (min-width: 1025px) {
  .modal__content {
    padding: 20px;
  }
}
.modal__header {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 14px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 80px;
}
.modal__header .modal__staff-num {
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__header .modal__staff-num img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.modal__header .modal__staff-num span {
  display: inline-block;
  border: 1px solid #333;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  line-height: 20px;
  text-align: center;
  font-size: 11px;
}
.modal__header .modal__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__header #modalStaff {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
}
.modal__ttl {
  font-family: "barlow-semi-condensed", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1;
  text-align: center;
  font-style: italic;
  margin-bottom: 40px;
}
.modal__main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}
.modal__img-wrap {
  width: 100%;
  max-width: 280px;
}
.modal__img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.modal__nav {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: absolute;
  top: 50%;
  color: var(--c-txt);
}
@media screen and (min-width: 1025px) {
  .modal__nav {
    padding: 10px;
  }
}
.modal__nav--prev {
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__nav--next {
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.5;
  line-height: 1.8;
  color: var(--c-txt);
  margin: 0 auto;
  width: 100%;
  max-width: 280px;
  white-space: pre-wrap;
}
.modal__close {
  font-family: "barlow-semi-condensed", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  position: absolute;
  right: 15px;
  bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.modal__close-icon {
  font-size: 22px;
  line-height: 1;
}

.modal-trigger {
  cursor: pointer; /* ホバー時に指マークにする */
  display: block; /* エリア全体をクリック可能にする */
  /* ホバー時に少し透明にする演出（お好みで） */
  transition: opacity 0.3s ease;
}
.modal-trigger:hover {
  opacity: 0.6;
}

.recommend {
  width: 100%;
  margin: 0 auto;
  padding: 0 15px 60px;
  background: var(--c-white);
  border-top: solid 1px var(--c-line);
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .recommend {
    width: min(450px, 35.15625vw);
  }
}
.recommend p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  margin-bottom: 40px;
}
.recommend__btn {
  font-family: "barlow-semi-condensed", sans-serif;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto 6.6666666667vw;
  padding: 0.5333333333vw 2.6666666667vw;
  width: min(140px, 26.6666666667vw);
  height: auto;
  background: var(--c-white);
  border: solid 1px var(--c-txt);
  border-radius: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .recommend__btn {
    margin: 0 auto 25px;
    padding: 2px 10px;
    width: 100px;
    border-radius: 20px;
  }
}
.recommend__btn p {
  color: var(--c-txt);
  margin-bottom: 0;
  font-size: min(13px, 2.4vw) !important;
}
@media screen and (min-width: 1025px) {
  .recommend__btn p {
    font-size: 9px !important;
  }
}
.recommend__btn div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(13px, 2.4vw);
}
@media screen and (min-width: 1025px) {
  .recommend__btn div {
    width: 9px;
  }
}
.recommend__btn:hover {
  background: var(--c-accent);
  border: solid 1px var(--c-accent);
}

#recommend-swiper {
  padding: 0 15px;
  margin-bottom: 5.3333333333vw;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  #recommend-swiper {
    margin-bottom: 20px;
  }
}
#recommend-swiper ul {
  display: flex;
}
#recommend-swiper li {
  width: 57.8666666667vw;
  gap: 40px;
  transition: all 0.3s ease;
}
@media screen and (min-width: 1025px) {
  #recommend-swiper li {
    width: 217px;
  }
}
#recommend-swiper li:hover {
  opacity: 0.6;
}

.all-item {
  background: var(--c-white);
  width: 100vw;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .all-item {
    width: min(450px, 35.15625vw);
  }
}
.all-item figure {
  width: 100px;
  margin: 0 auto 15px;
}
@media screen and (min-width: 1025px) {
  .all-item figure {
    margin: 0 auto 20px;
  }
}
.all-item__btn {
  display: block;
  width: 92vw;
  padding: 30px 0;
  margin: 0 auto;
  text-align: center;
  background-color: var(--c-accent);
  transition: all 0.3s ease;
}
@media screen and (min-width: 1025px) {
  .all-item__btn {
    padding: 30px 0;
    width: 357px;
  }
}
.all-item__btn div {
  font-family: "barlow-semi-condensed", sans-serif;
  font-size: 3.4666666667vw;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 2;
  margin-bottom: 10px;
  text-align: center;
  font-style: italic;
}
@media screen and (min-width: 1025px) {
  .all-item__btn div {
    font-size: 13px;
  }
}
.all-item__btn p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .all-item__btn p {
    font-size: 13px;
  }
}
.all-item__btn:hover {
  opacity: 0.6;
}

/* --------------------
	aside
-------------------- */
aside {
  width: 100vw;
  margin: 0 auto;
  padding: 0 15px 40px;
  background-image: url(/special/260918_onlinestore-w_kbf-staff/common/img/footer-sp__img.webp);
  background-size: cover;
  background-position: bottom center;
  color: var(--c-accent);
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  aside {
    background-image: url(/special/260918_onlinestore-w_kbf-staff/common/img/footer__img.webp);
    background-size: cover;
    background-position: bottom center;
    width: min(450px, 35.15625vw);
    margin: 0 auto;
    padding: 0 0 60px;
  }
}
aside .aside__inner {
  position: relative;
  padding-top: 40px;
}
aside .aside__inner h3 {
  font-family: "barlow-semi-condensed", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1;
  font-style: italic;
  text-align: center;
  display: block;
  margin-bottom: 20px !important;
}
aside .aside__inner ul {
  font-family: "barlow-semi-condensed", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.5;
  width: 300px;
  margin: 0 auto;
  padding-bottom: min(650px, 88vw);
}
@media screen and (min-width: 1025px) {
  aside .aside__inner ul {
    padding-bottom: 330px;
  }
}
aside .aside__inner ul li {
  width: 100%;
  margin-bottom: 4vw;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  aside .aside__inner ul li {
    display: flex;
    align-items: center;
    width: 300px;
    margin-bottom: 10px;
  }
}
aside .aside__inner ul li figure {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  mix-blend-mode: multiply;
  margin-right: 20px;
  margin-left: 10px;
}
aside .aside__inner ul li .address {
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  aside .aside__inner ul li .address {
    margin: 0;
    text-align: start;
  }
}
aside .aside__inner ul li:last-child figure {
  width: 65px;
  margin-right: 15px;
  margin-left: 0;
}
aside .aside__inner p {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  font-style: italic;
  text-align: center;
}
aside .footer__logo {
  width: min(114px, 32vw);
  margin: 0 auto min(16px, 4.2666666667vw);
  transition: all 0.3s ease;
}
@media screen and (min-width: 1025px) {
  aside .footer__logo:hover {
    opacity: 0.5;
  }
}
aside .footer__copyright {
  text-align: center;
  color: var(--c-accent);
  letter-spacing: 0.08em;
  font-size: min(12px, 3.2vw);
}

.stack-section {
  width: 100vw;
  margin: 0 auto;
  height: 150vh;
  position: relative;
  background: var(--c-white);
}
@media screen and (min-width: 1025px) {
  .stack-section {
    width: min(450px, 35.15625vw);
  }
}

/* 画面中央に要素をピタッと固定する */
.stack-container {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 90vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* カードの基本設定 */
.card {
  position: absolute;
  width: 73.6vw;
  height: 92.2666666667vw;
  background-color: #fff;
  transition: transform 0.1s linear; /* スクロールに合わせてぬるっと動かす */
}
@media screen and (min-width: 1025px) {
  .card {
    width: 276px;
    height: 346px;
  }
}

.card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 重なり順の指定（1〜4の順で上に重なっていく） */
.card-1 {
  z-index: 1;
}

.card-2 {
  z-index: 2;
}

.card-3 {
  z-index: 3;
}

/* テキスト */
.center-text {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  font-family: "barlow-semi-condensed", sans-serif;
  font-size: min(18px, 2.9333333333vw);
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1;
  color: var(--c-accent);
  font-style: italic;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .center-text {
    font-size: 11px;
    width: 380px;
  }
}

.menu-btn {
  font-family: "barlow-semi-condensed", sans-serif;
  font-size: 3.7333333333vw;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1;
  position: fixed;
  cursor: pointer;
  top: 5.3333333333vw;
  right: 5.3333333333vw;
  z-index: 10;
  font-style: italic;
  mix-blend-mode: exclusion;
  color: #fff;
}
@media screen and (min-width: 1025px) {
  .menu-btn {
    top: 20px;
    right: 20px;
    font-size: 14px;
  }
}

.close-btn {
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
  /* ボタンのデフォルトスタイル解除 */
  background: transparent;
  border: none;
  padding: 0;
  /* バツ印のサイズ設定 */
  width: 47px; /* 全体の幅 */
  height: 47px; /* 全体の高さ */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 直線2本を作成 */
.close-btn::before,
.close-btn::after {
  content: "";
  position: absolute;
  width: 47px; /* 直線の長さ */
  height: 1px; /* 直線の太さ */
  background-color: var(--c-txt); /* 直線の色 */
}

/* 45度傾けて×印を作成 */
.close-btn::before {
  transform: rotate(45deg);
}

.close-btn::after {
  transform: rotate(-45deg);
}

/* オーバーレイメニュー（全体） */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--c-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
  /* アニメーション用の初期状態（非表示） */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}

/* メニューが開いた状態のクラス */
.overlay.is-active {
  opacity: 1;
  visibility: visible;
}

/* 閉じるボタンの位置 */
.close-btn {
  position: fixed;
  top: 15px;
  right: 15px;
  font-size: min(40px, 10.6666666667vw);
}
@media screen and (min-width: 1025px) {
  .close-btn {
    font-size: 24px;
  }
}

/* メニューの中身 */
.menu-content {
  width: 90%;
  max-width: 400px;
  margin-top: 0;
  padding-bottom: 21.3333333333vw;
  text-align: center;
}
.menu-content h2 {
  background: var(--c-bg);
}
.menu-content .item-list {
  list-style: none;
  padding: 0;
  margin: 0 0 21.3333333333vw;
}
.menu-content .item-list li {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 25px;
}
.menu-content .item-list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 57.3333333333vw;
  margin-bottom: 4vw;
}
.menu-content .item-list li .nav__img {
  width: 26.6666666667vw;
  margin-right: 10.6666666667vw;
}
.menu-content .item-list li .nav__name {
  font-family: "norman-variable", sans-serif;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--c-txt);
}
/*# sourceMappingURL=260918_onlinestore-w_kbf-staff_style.css.map */